@charset "utf-8";
:root {
  --dark: #000;
  --black: #333;
  --light: #666;
  --white: #fff;
  --blue: #4184F3;
  --gray: #e6e6e6;
  --orange: #ffae00;
  --about: #5585B4;
  --menu: #7CD9A4;
  --staff: #F5C1F7;

  --shadow: 0 1px 5px rgba(104, 104, 104, 0.8);
}

/* 全ページで共通 */
/* ふわっと下から出現させるjsのcss*/
.box{
  opacity: 0;
}

.fadeUp {
  animation-name:fadeUpAnime;
  animation-duration:0.6s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }
  
/*ふわっと出現させるjs終了  */


/* 各セクションの外枠 */
/* 各セクション間の余白 */
.section-wrap {
  padding-bottom: 120px;
}
/* 各セクションの横幅を制限する囲み */
.section-box {
  width: 100vw;
  max-width: 1200px;
  height: auto;
  margin: 0 auto;
  padding: 0 16px 16px;
}
/* 各セクションのタイトルエリア */
.section-title-box {
  height: 60px;
  /* 各セクションタイトルとコンテンツ間の余白 */
  margin-bottom: 56px;
}
.section-title-eg {
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  border-bottom: 1px solid var(--black);
}
.section-title-box h2 {
  font-size: 1.4rem;
  text-align: right;
  letter-spacing: 0.1rem;
}



/* 動画エリア */
/* video設定 */
#video-area {
  width: 100vw;
  max-width: 1500px;
  margin: 0 auto;
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: var(--white);
}  

.video-area-bottom {
 max-width: 1360px;
 margin: 0 auto;
 display: flex;
 padding: 0 15px;
}
.cw-logo {
  width: 50px;
  transition: transform 0.4s;
}
.cw-logo:hover {
  transform: rotate(360deg);
}
.video-text {
  margin-left: auto;
  text-align: right;
  font-weight: 500;
}
/* 動画セクション終了 */

/* インデックス*/
.index {
  background-color: var(--white);
  /* インフォメーションとの間の余白 */
  margin-bottom: 60px;
}
.index-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 60px 0px;
  /* 数字のカウントアップリセット */
  counter-reset: ranking;
}

/* btn-narrow-1ボタン装飾 */
.btn-narrow-1 {
  /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
  display: inline-block;
  padding: 0;
}
/* 数字 */
.btn-narrow-1::before {
  content: counter(ranking);
  counter-increment: ranking;
  font-size: 5rem;
  position: absolute;
  top: -10px;
  left: -40px;
  color:rgba(0, 0, 0, 0.8);
  transition: all .3s;
}
.btn-narrow-1:hover::before {
 font-size: 6rem;
}
/*矢印と下線の形状*/
.btn-narrow-1::after{
  content: '';
  position: absolute;
  bottom:-8px;
  left: 0;
  width: 30%;
  height: 1px;
  background: var(--black);
  transition: all .3s;
}
.btn-narrow-1:hover::after{
   width: 120%;
   background:rgb(255, 174, 0);
}
.index-box a {
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgb(216, 214, 214);
}
.index-box a:hover {
  color:rgb(255, 174, 0);
  text-shadow: none;
}





/* インフォメーション */
/* インフォのsection-wrap */
.information {
  max-width: 1500px;
  margin: 0 auto;
 height: auto;
 background-color: #d3eeff;
 padding-top: 48px;
 padding-bottom:  40px;
 margin-bottom: 80px;
 background-image: url(../img/medium/1802_22.jpg) ;
 background-position: middle;
 background-size: cover;
}

div.contents-2 {
  width: 800px;
  margin: 40px auto 0;
  padding: 20px 40px;
  background: rgba(255, 255, 255, .7);
  border-radius: 0px;
}
div.contents-2 p {
  font-size: 140%;
  color: var(--white);
  letter-spacing: 0.6em;
}
div.contents-2 h2  {
  font-size: 135%;
  font-weight: normal;
  border-bottom: 1px solid #333333;
}

div.contents-2 dl dt {
  font-weight: normal;
  margin: 0 0 3px;
  float: left;
}
div.contents-2 dl dd {
  float: left;
  margin-left: 30px;
}
div.contents-2 dl {
  overflow: hidden;
}

div#news {
  word-wrap: break-word;
}

div#news div#information div {
  margin: 20px 0;
  border-top: 2px dotted  var(--white);
  padding-top: 20px;
}

div#news div#information div:first-child {
  border-top: none;
  padding-top: 0;
}


/* インフォメーション終了 */





/* ショップ　アバウト　メニュー　スタッフ共通項目*/
/* 英字タイトル */
/* 各フォントサイズ・カラーはセクションにて設定 */
.eg-title {
  width: 100%;
  font-family: canada-type-gibson, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.eg-title li {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  line-height: 1;
  text-transform: uppercase;
}
/* ショップ　アバウト　メニュー　スタッフ共通項目終了*/


/* shop */
/* ショップセクション */
.variable-box-shop {
  display: flex;
  flex-direction: column;
  gap: 40px;
 }
/* ショップ　英字エリア */
.eg-title-shop .li-top,
.eg-title-shop .li-center {
  font-size: clamp(56px, 15vw, 76px);
}
.eg-title-shop .li-center {
  color: #E6C300;
}
.eg-title-shop .li-bottom {
  font-size: clamp(35px, 10vw, 57px);
}
/* アンダーライン　pcのみ表示 */
.eg-title-shop .under-line {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background-color: #E6C300;
}
.text-box-shop h3 {
  padding-bottom: 15px;
  
}

/* 全ページ共通スライドショー */
.slideshow {
  width: 100%;
  padding-top: 52.5%;
  position: relative;
  list-style-type: none;
}

.slideshow > li {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transition: opacity 3s ease-in-out;
}

.slideshow > li.showSlide {
  opacity: 1;
}

.slideshow > li > img {
  width: 100%;
  height: 100%;
}
/* スタッフ・スライドショー装飾 */
.staff-slideshow {
  width: 100%;
  padding-top: 100%;
  position: relative;
  list-style-type: none;
}
/* スライド項目終了 */
/* ショップ終了 */


/* アバウト・メニュー・スタッフ */
/* about/menu/staff共通項目 */
.variable-box-common {
 display: flex;
 flex-direction: column;
 gap: 24px;
}

/* about/menu/staff画像 */
.img-container {
  width: 100%;
}
.img-container .img {
  width: 100%;
  padding-top: 133%;
}
.staff-img-container .img {
  width: 100%;
  padding-top: 100%;
}

/* about/menu/staff共通リンクエリア */
/* リンクエリア */
.link-box {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 16px;
}
/* タイトル見出し */
.jp-title {
  border-left: solid 10px  #5585B4 ;
  padding: 5px 0 5px 10px;
}
.link-box p {
  font-size: 1.4rem;
  padding-left: 20px;
}
/* カラー変更 */
.menu .jp-title {
  border-left: solid 10px  #7CD9A4;
}
.staff .jp-title {
  border-left: solid 10px  #F5C1F7;
} 

/* read-narrowボタン装飾 */
.btn-narrow {
  /*矢印と下線の基点とするためrelativeを指定*/
	position: relative;
  display: inline-block;
  padding: 0 20px;
}
/*矢印と下線の形状*/
.btn-narrow::before{
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom:-8px;
  left:15%;
  /*下線の形状*/    
  width: 120%;
  height: 1px;
  background: var(--black);
  /*アニメーションの指定*/
  transition: all .3s;
}
.btn-narrow::after{
  content: '';
  /*絶対配置で矢印の位置を決める*/
position: absolute;
  bottom:-3px;
  right: -36%;
  /*矢印の形状*/    
  width: 15px;
  height:1px;
background: var(--black);
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}
/*hoverした際の移動*/
.btn-narrow:hover::before{
  left:20%;
}
.btn-narrow:hover::after{
  right:-41%;
}

/* about/menu/staff共通項目終了 */


/* about/menu/staff英字エリア */
/* about英字エリア */
.eg-title-about .li-top  {
  font-size: clamp(37px, 12vw, 57px);
}

.eg-title-about .li-center,
.eg-title-about .li-bottom{
  font-size: clamp(56px, 15vw, 76px);
}
.eg-title-about .li-center {
  color: #5585B4;
}
/* アンダーライン　pcのみ表示 */
.eg-title-about .under-line {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background-color: #5585B4;
}

 /* menu英字エリア */
.eg-title-menu .li-top {
  font-size: clamp(37px, 12vw, 57px);
}
.eg-title-menu .li-center {
  font-size: clamp(58px, 17vw, 78px);
}
.eg-title-menu .li-center {
  color:#7CD9A4;
}
.eg-title-menu .li-bottom {
  font-size: clamp(54px, 14vw, 74px);
}
/* アンダーライン　pcのみ表示 */
.eg-title-menu .under-line {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background-color: #7CD9A4;
}

/* staff英字エリア */
.eg-title-staff .li-top {
  font-size: clamp(37px, 12vw, 57px);
}
.eg-title-staff .li-center {
  font-size: clamp(56px, 15vw, 76px);
  color: #F5C1F7;
}

.eg-title-staff .li-bottom {
  font-size: clamp(35px, 10vw, 57px);
}

/* アンダーライン　pcのみ表示 */
.eg-title-staff .under-line {
  width: 100%;
  height: 3px;
  margin-top: 20px;
  background-color: #F5C1F7;
}
/* アバウト・メニュー・スタッフ終了 */



/* style */
/* スタイル共通項目 */

/* グリッドエリア */
.grid-box-style {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  column-gap: 30px;
  row-gap: 60px;
  justify-content: center;
}
.box-style {
  display: flex;
  flex-direction: column;
}
.box-style-title {
 padding-bottom: 15px;
}

/* スタイルのテキストサイズ */
.box-style-title h3 {
  font-size: 1.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}
.box-style-title p {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}
/* スタイル画像ボックス */
.img-box-style {
display: flex;
gap: 2px;
width: 100%;
height: 300px;
min-height: 250px;
margin-top: auto;
}

/* 画像サイズ */
.img-box-style img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.img-large {
width: 60%
}

.img-small {
width: 40%;
display: flex;
flex-direction: column;
gap: 2px;
}

.img-small-top {
height: 50%;
}

.img-small-bottom {
height: 50%;
}

/* 写真位置調整２枚 */
.seasonal-3 .img-large img {
  object-position: 20%;
}
.seasonal .img-small .img-small-top img {
  object-position: left;
}
.short .img-small .img-small-top img {
  object-position: left;
}
.short .img-small .img-small-bottom img {
  object-position: left;
}
.medium .img-small .img-small-bottom img {
  object-position: left;
}
.long .img-large img {
  object-position: right;
  }

.mens .img-large img {
  object-position: left;
}
.perm .img-small .img-small-top img {
  object-position: left;
}

/* スタイルボックス・ボトムリンクエリア */
.box-style-bottom {
 display: flex;
 margin-top: 15px;
}
.box-style-bottom .jp-title {
  display: flex;
  justify-content: center;
  align-items: center;
}
.box-style-bottom .jp-title p {
  font-size: 1.2rem;
}
/* スタイルボックス・タイトル見出し */
.seasonal-05 .jp-title {
 border-left: solid 8px  #FC4141;
 padding: 0 0 0 5px;
}
.seasonal-04 .jp-title {
 border-left: solid 8px  #5959BC;
 padding: 0 0 0 5px;
}
.seasonal-03 .jp-title {
 border-left: solid 8px  #F8944B;
 padding: 0 0 0 5px;
}
.seasonal-02 .jp-title {
 border-left: solid 8px  #FFFA7E;
 padding: 0 0 0 5px;
}
.seasonal-01 .jp-title {
 border-left: solid 8px  #CDB2FF;
 padding: 0 0 0 5px;
}
.short .jp-title {
  border-left: solid 8px  #F8944B;
}
.medium .jp-title {
  border-left: solid 8px  #BCE3FF;
}
.long .jp-title {
  border-left: solid 8px  #FC4141;
}
.mens .jp-title {
  border-left: solid 8px #FFFA7E;
}
.perm .jp-title {
  border-left: solid 8px #5959BC;
}
/* ボタン装飾 */
.check-out-btn {
  margin-left: auto;
  padding: 2px 20px;
  
  box-shadow: var(--shadow);
  border-radius: 2px;
   /* アニメーション指定 */
 transition: all 0.4s ease-out;
}
.seasonal-01 .check-out-btn:hover {
  color: var(--white);
  background-color: #CDB2FF;
}
.seasonal-03 .check-out-btn:hover, 
.short .check-out-btn:hover {
  background-color: #F8944B;
}
.medium .check-out-btn:hover {
  background-color: #BCE3FF;
}
.long .check-out-btn:hover {
  background-color: #FC4141;
}
.seasonal-02 .check-out-btn:hover,
.mens .check-out-btn:hover {
  background-color: #FFFA7E;
}
.seasonal-04 .check-out-btn:hover,
.perm .check-out-btn:hover {
  background-color: #5959BC;
}
/* スタイル終了 */


/* フレックスエリア */
.flex-box-flynk {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* 画像エリア */
.img-box-flynk {
  width: 100%; 
}

.img-flynk{
  width: 80%;
  padding-top: 80%;
  margin: 0 auto;
}

.img-box-flynk .flynk-catch {
  padding: 24px 0;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 400;
  font-family: canada-type-gibson, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* テキストエリア */
.text-box-flynk {
  width: 100%;
  text-align: center;
 }
 
 .text-box-flynk h3 {
   padding-top: 24px;
   position: relative;
   display: inline-block;
   font-family: a-otf-ryumin-pr6n, serif;
font-weight: 600;
font-style: normal;
 }
.text-box-flynk h3::after {
  content: '';
  display: inline-block;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background-color:  #8237a8;
}
.flynk-copy {
  padding-bottom: 24px;
  font-size: 1.7rem;
  line-height: 2;
  font-family: a-otf-ryumin-pr6n, serif;
font-weight: bold;
font-style: normal;
}
.flynk-copy-2 {
  font-size: 1.4rem;
  font-family: a-otf-ryumin-pr6n, serif;
font-weight: 300;
font-style: normal;
}
.text-box-flynk p {
  font-size: 1.6rem;
}
/* フリンクリンクロゴ */
.flynk-btn img {
 width: 200px;
 border-radius: 3px;
 background-color: var(--white);
 box-shadow: var(--shadow);
 margin: 64px 10px 16px;
 transition: all .2s ease-out;
}
.flynk-btn img:hover {
  transform: scale(1.05, 1.05);
 }
/* FLYNK終了 */




/* access */
/* アクセス Googleマップ*/
.flex-box-access {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.text-box-access {
  width: 100%;
}
.text-box-access table td {
 padding: 5px 20px;
}
.access-info {
  font-size: 1.4rem;
}
.access-title {
  font-weight: 600;
}

.map-box {
 position: relative;
 width: 100%; 
}
.google-map {
 height: 0;
 padding-top: 56.25%;
}
.google-map-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* アクセス　終了*/


/* booking contact*/
/* ご予約 お問い合わせ*/

.flex-box-booking,
.flex-box-contact {
display: flex;
flex-direction: column;
align-items: center;
gap: 30px;

}
.btn-box {
 display: flex;
 flex-direction: column;
 gap: 60px;
}
.btn-box a {
  color: var(--white);
}
.btn {
  display: inline-block;
  width: 300px;
  height: 50px;
  border-radius: 2px;
  text-decoration: none;
  text-align: center;
  line-height: 50px;
  letter-spacing: 0.08em;
  font-size: 20px;
  background-color: var(--black);
  box-shadow: var(--shadow);
  outline: none;
  /* アニメーション指定 */
  transition: all 0.4s ease-out;
}
.btn:hover {
  color: var(--black);
  background-color: rgb(255, 174, 0);
  transition: all 0.4s ease-out;
}
.icon-btn {
  font-size: 2.5rem;
  color: var(--white);
  padding-right: 30px;
  transition: all 0.4s ease-out;
}
.btn:hover .icon-btn {
  color: var(--black);
  transition: all 0.4s ease-out;
}
/* ご予約　終了 */
/* お問い合わせ　終了 */



/* インフォメーションのメディアクエリ */
@media screen and ( max-width: 1000px ) {

  div.contents-2 {
    width: 85%;
    padding: 20px 5%;
  }
  }
    

@media screen and (min-width: 835px) {
/* 動画エリア */
.cw-logo {
  width: 70px;
}
/* インデックス */
.index-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 120px;
}


/* shopメディアクエリ */
  .variable-box-shop {
    display: grid;
    grid-template-columns: 35% 60%;
    grid-template-rows: 250px 1fr;
    gap: 0;
    column-gap: 5%;
  }
  .slide-show {
    grid-column: 2/3;
    grid-row: 1/3; 
  }
  .variable-box-shop .eg-title {
    grid-column: 1/2;
    grid-row: 1/2;
  }
.text-box-shop {
 grid-column: 1/2;
 grid-row: 2/3;
}
.eg-title {
  font-weight: 500;
}

 /* about/menu/staff共通項目 */
  .variable-box-common {
    display: grid;
    grid-template-columns: 50% 40%;
    grid-template-rows: 40% 55%;
    gap: 5%;
   } 
  .staff .variable-box-common {
    display: grid;
    grid-template-columns: 50% 40%;
    grid-template-rows: 50% 40%;
    gap: 5%;
   } 
   /* 画像 */
   .img-box-common {
     grid-column: 1/2;
     grid-row: 1/3;
     display: flex;
     justify-content: center;
   }
   .img-container {
     width: 80%;
   }
   .about .eg-title, 
   .menu .eg-title, 
   .staff .eg-title {
    grid-column: 2/3;
    grid-row: 1/2;
   }
   /* リンクエリア */
   .link-box {
    grid-column: 2/3;
    grid-row: 2/3;
    flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  gap: 24px;
}


/* FLYNK */
 .flex-box-flynk {
  display: flex;
  flex-direction: row;
}
/* FLYNKテキストエリア */
.text-box-flynk {
width: 50%;

}
/* FLYNK画像 */
.img-box-flynk {
  width: 50%;
}
.img-flynk {
  width: 60%;
  padding-top: 60%;
}

/* アクセスメディアクエリ */
.flex-box-access {
  display:flex ;
  flex-direction: row;
}
.text-box-access {
  width: 40%;
  order: 2;
}
.map-box {
 position: relative;
 width: 60%; 
 order: 1;
}
 
/* 予約 */
.btn-box {
  flex-direction: row;
  gap: 30px;
 }
 /* スマホ以外ではリンク無し */
 a[href*="tel:"] {
  pointer-events: none;
  }
}



/* ipad縦用*/
@media screen and (min-width: 1023px) and (orientation: portrait) {


  /* インデックス */
  .index-box {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 128px;
  }
  }