/*!
 * ress.css 窶｢ v1.2.2
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  box-sizing: border-box;
  overflow-y: scroll; /* All browsers without overlaying scrollbars */
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}
*, ::before, ::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}
::before, ::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}
* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
header {
  font-family: MyFont, sans-serif;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width:1224px) {
  header {
    background: rgba(255, 255, 255, 0.8);
    min-height: 60px;
  }
}
/*===========================================================*/
/*機能編  5-1-1 ドロップダウンメニュー（上） */
/*===========================================================*/
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
/*ナビゲーションを横並びに*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}
/*2階層目以降は横並びにしない*/
nav ul ul {
  display: block;
}
/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li {
  position: relative;
}
/*ナビゲーションのリンク設定*/
nav ul li a {
  display: block;
  text-decoration: none;
  color: #18153A;
  padding: 20px 15px;
  transition: all .3s;
}
nav ul li li a {
  padding: 10px 35px;
}
@media screen and (max-width:1200px) {
  nav ul li a {
    padding: 20px;
  }
  nav ul li li a {
    padding: 10px 20px;
  }
}
/*==1224px以下の形状*/
/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before {
  content: '';
  position: absolute;
  left: 1px;
  top: 30px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #18153A;
  border-right: 2px solid #18153A;
  transform: rotate(135deg);
}
@media screen and (max-width:1224px) {
  nav ul li.has-child::before {
    top: 20px;
  }
}
@media screen and (max-width:1224px) {
  nav ul li.has-child::before {
    left: 0;
  }
}
/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 62px;
  z-index: 4;
  /*形状を指定*/
  background: rgba(255, 255, 255, 0.8);
  width: 170px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all .3s;
  padding-left: 0px
}
/*hoverしたら表示*/
nav li.has-child:hover > ul, nav li.has-child ul li:hover > ul, nav li.has-child:active > ul, nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  color: #18153A;
  border-bottom: 1px solid #18153A;
}
nav li.has-child ul li:last-child a {
  border-bottom: none;
}
nav li.has-child ul li a:hover, nav li.has-child ul li a:active {
  color: #18153A;
  background: rgba(255, 255, 255, 0.8);
  font-weight: bold
}
/*==1224px以下の形状*/
@media screen and (max-width:1224px) {
  nav {
    padding: 0;
  }
  nav ul {
    display: block;
  }
  nav ul li a {
    border-bottom: 1px solid #18153A;
  }
  /*矢印の位置と向き*/
  nav ul li.has-child::before {
    left: 0;
  }
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 0;
  }
  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}
/*===========================================================*/
/*機能編  5-1-6 スクロール途中から上部固定 */
/*===========================================================*/
#header {
  position: fixed; /*fixedを設定して固定*/
  height: 60px; /*高さ指定*/
  width: 100%; /*横幅指定*/
  z-index: 999; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 30px 20px 20px 0; /*検索窓をつけるときは右の幅を100pxに*/
}
/*==ふわっと出現させるためのCSS*/
/*　上に上がる動き　*/
#header.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width:1224px) {
  #header, #header.UpMove, #header.DownMove {
    animation: none;
    height: auto;
    padding: 0;
    display: block;
  }
}
/*==================================================
機能編 　5-1-11 クリックしたらナビが上から下に出現
===================================*/
@media screen and (max-width:1224px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: rgba(255, 255, 255, 0.9);
    /*動き*/
    transition: all 0.6s;
  }
  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh; /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin: 40px auto 0 auto;
  }
  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }
  /*プルダウンナビのCSS*/
  #g-nav ul li.has-child ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
  }
  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: center;
  }
  #g-nav li a {
    color: #18153A;
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
  }
}
/*==================================================
　機能編 5-2-7 3本線が奥行きを持って回転して×に
===================================*/
.g-nav-openbtn {
  display: none;
}
@media screen and (max-width:1224px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999; /*ボタンを最前面に*/
    top: 5px;
    right: 20px; /*検索窓をつけるときは70px*/
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  /*ボタン内側*/
  .g-nav-openbtn .openbtn-area {
    transition: all .4s;
  }
  .g-nav-openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #18153A;
    width: 45%;
  }
  .g-nav-openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .g-nav-openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .g-nav-openbtn span:nth-of-type(3) {
    top: 31px;
  }
  /*activeクラスが付与されると
線と周りのエリアが回転して×になる*/
  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }
  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 30%;
  }
  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
  }
}
/*==================================================
　機能編 5-3-3 左から右に線が伸びる（下部）
===================================*/
.nav01c li .li-under a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
}
.li-under a:hover {
  color: #18153A;
}
@media screen and (max-width:1224px) {
  .li-under a:hover {
    opacity: 0.6;
  }
}
.nav01c li.li-under a::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  bottom: 16px;
  left: 25%;
  /*線の形状*/
  width: 50%;
  height: 1px;
  background: #18153A;
  /*アニメーションの指定*/
  transition: all .3s;
  transform: scale(0, 1); /*X方向0、Y方向1*/
  transform-origin: left top; /*左上基点*/
}
.nav01c li li a::after {
  display: none;
}
/*現在地とhoverの設定*/
.nav01c li.current a::after, .nav01c li a:hover::after {
  transform: scale(1, 1); /*X方向にスケール拡大*/
}
@media screen and (max-width:1224px) {
  .nav01c li a::after {
    display: none;
  }
}
/*===========================================================*/
/* 機能編 7-2-2 虫眼鏡マークをクリックすると全画面表示で検索窓が出現 */
/*===========================================================*/
/*========= 検索窓を開くための虫眼鏡ボタン設定 ===========*/
.open-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../img/menu/icon_search.svg") no-repeat 15px center; /*虫眼鏡アイコンを背景に表示*/
  background-size: 20px 20px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 999;
}
/*=======　閉じるための×ボタン　========*/
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
}
.close-btn span {
  display: inline-block;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
}
/*×マーク*/
.close-btn span:nth-of-type(1) {
  top: 21px;
  left: 16px;
  transform: translateY(6px) rotate(-135deg);
  width: 50%;
}
.close-btn span:nth-of-type(2) {
  top: 32px;
  left: 16px;
  transform: translateY(-6px) rotate(135deg);
  width: 50%;
}
/* header */
#header .hp-name a {
  color: #18153A;
  font-family: Font-reisho, sans-serif;
}
#header .hp-name {
  font-family: Font-reisho, sans-serif;
  text-transform: uppercase;
  font-size: 1.5rem;
  margin-top: -10px;
  padding: 0 0 0 2%;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width:1224px) {
  #header .hp-name {
    position: absolute;
    top: 30px;
    left: 20px;
    padding: 0;
  }
}
.scrolldown1 span {
  transform: rotate(-90deg);
  text-transform: uppercase;
  left: -23px;
  top: -31px;
}
/* footer */
/* レイアウトのためのCSS */
footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer a {
  color: #fff;
  text-decoration: none;
  outline: none;
}
footer img {
  max-width: 100%;
  height: auto;
}
.l-footer {
  margin-top: 100px;
}
.l-footer-0 {
  margin-top: 0;
}
.l-footer-cv {
  padding: 54px 20px 60px;
  background-color: rgba(239, 239, 239, 0.7);
  text-align: center;
}
@media all and (min-width: 1224px), print {
  .l-footer-cv {
    padding: 79px 88px 80px;
  }
}
.l-footer-cv__lead {
  margin-bottom: 23px;
  line-height: 2.13333;
  letter-spacing: 0.02em;
}
@media all and (min-width: 1224px), print {
  .l-footer-cv__lead {
    margin-bottom: 31px;
  }
}
.l-footer-tel__target {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-footer-tel__target:hover {
  opacity: 0.8;
  color: rgba(255, 255, 255)
}
.l-footer-tel__num {
  margin-left: 5px;
  padding-left: 20px;
  position: relative;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #212529;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}
.l-footer-tel__num::after {
  content: '';
  width: 13px;
  height: 22px;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("/assets/img/common/icon-tel-02.svg") no-repeat center 50%;
  background-size: 100% auto;
}
@media all and (min-width: 1224px), print {
  .l-footer-tel__num {
    letter-spacing: 0.1em;
  }
}
.l-footer-reservation {
  margin-top: 32px;
}
@media all and (min-width: 1224px), print {
  .l-footer-reservation {
    margin-right: auto;
    margin-left: auto;
    max-width: 376px;
  }
}
.l-footer-info-link {
  margin-top: 40px;
}
.l-footer-bottom {
  padding: 60px 20px 56px;
  color: #fff;
  background-color: #0c0b1b;
}
@media all and (min-width: 1224px), print {
  .l-footer-bottom {
    padding: 50px 88px 40px;
  }
}
.l-footer-bottom__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media all and (min-width: 1224px), print {
  .l-footer-bottom__inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
    display: block;
  }
}
.l-footer-nav-hdg {
  margin-bottom: 34px;
  margin-right: auto;
  margin-left: auto;
  width: 160px;
}
.l-footer-nav-hdg img {
  width: 130px;
}
@media all and (min-width: 1224px), print {
  .l-footer-nav-hdg {
    margin-bottom: 52px;
    width: 160px;
  }
}
.l-footer-nav-list {
  text-align: center;
  padding-top: 20px;
  border-top: rgba(255, 255, 255, 0.3) 1px dotted;
  border-bottom: rgba(255, 255, 255, 0.3) 1px dotted;
}
@media screen and (max-width:1224px) {
  .l-footer-nav-list {
    padding-bottom: 20px;
  }
}
@media all and (min-width: 1224px), print {
  .l-footer-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.l-footer-nav-list__item {
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.l-footer-nav-list__item:not(:last-child) {
  margin-bottom: 15px;
}
@media all and (min-width: 1224px), print {
  .l-footer-nav-list__item {}
  .l-footer-nav-list__item:not(:last-child) {
    margin-right: 57px;
  }
}
.l-footer-nav-list__target {
  display: inline-block;
  color: #fff;
  -webkit-transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.l-footer-nav-list__target:hover {
  opacity: 0.8;
  color: rgba(255, 255, 255)
}
}
.l-footer-site-link {
  padding-top: 40px;
  margin-left: 100px;
}
@media all and (max-width: 1224px), print {
  .l-footer-site-link {
    padding-top: 40px;
  }
}
@media all and (min-width: 1224px), print {
  .l-footer-site-link {
    margin-bottom: 50px;
    padding-top: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.l-footer-site-link__item:not(:last-child) {
  margin-bottom: 40px;
}
@media all and (min-width: 1224px), print {
  .l-footer-site-link__item {
    padding-right: 20px;
    width: 33.33%;
  }
  .l-footer-site-link__item:not(:last-child) {
    margin-bottom: 0;
  }
  .l-footer-site-link__item:nth-child(-n + 3) {
    margin-top: 0;
  }
}
.l-footer-site-link__target {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
}
.l-footer-site-link__text {
  padding-left: 14px;
  letter-spacing: 0.02em;
  -webkit-transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  transition: opacity 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
a:hover .l-footer-site-link__text {
  opacity: 0.7;
}
@media all and (min-width: 1224px), print {
  .l-footer-site-link__text {
    padding-left: 20px;
  }
}
.l-footer-site-link__area {
  margin-bottom: 2px;
  line-height: 1.72727;
}
@media all and (min-width: 1224px), print {
  .l-footer-copyright__text-rotate {
    display: inline-block;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}
.bottom-menu ul {
  display: block;
  width: 100%;
  font-size: 60%;
}
.bottom-menu li a {
  float: right;
  margin-left: 20px;
  font-size: 80%;
}
/*=======　copy right　========*/
.copy-right {
  font-size: 60%;
  text-align: center;
  margin-top: 50px
}
/*=======　オンラインショップボタン========*/
a.btn--gold {
  color: #fff;
  background: rgba(170, 153, 74, 1.00);
  top: 18px;
  margin-left: 10px;
}
a.btn--gold:hover {
  color: #fff;
  background: rgb(170, 153, 74, 0.8);
}
a.btn--dark-blue {
  color: #fff;
  background: #18153A;
  top: 18px;
}
a.btn--dark-blue:hover {
  color: #fff;
  background: rgba(24, 21, 58, 0.8);
}
a.btn-c {
  position: relative;
  border-radius: 100vh;
  padding: .3rem 1em .1rem 1rem;
}
a.btn-c i.fa {
  margin-right: 1rem;
}
a.btn-c:before {
  position: absolute;
  right: 1rem;
  padding: 0;
  color: #fff;
}
@media screen and (max-width:1224px) {
  a.btn--gold {
    margin-bottom: 10px;
  }
}