@charset "UTF-8";
/* CSS Document */


/* Reset */
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img{
  max-width: 100%;
  height: auto;
}

body{
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #574241;
}

a{
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
ul{
  list-style: none;
}

/* button reset */
button{
  appearance: none;
  -webkit-appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  box-shadow: none;
  border-radius: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
html{
  scroll-behavior: smooth;
}
html.is-fixed,
html.is-fixed body{
  overflow: hidden;
}

.flex{
  display: flex;
  flex-wrap: wrap;
}

.pc-only-flex{
  display: block;
}

.pc-only{
  display: none;
}
.sp-only{
  display: block;
}

@media screen and (min-width: 1024px){
  body{
    font-size: 16px;
  }

  .pc-only-flex{
    display: flex;
  }

  .pc-only{
    display: block;
  }
  .sp-only{
    display: none;
  }
}

/* ------------------------------
   全体アニメーション
------------------------------ */
.fadein {
	opacity: 0;
	transform: translateY(20px);
	transition: all 1s;
}


/* ------------------------------
   header
------------------------------ */
header{
  justify-content: space-between;
  padding-left: 20px;
  height: 67px;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
header.header-visible{
  transform: translateY(0);
}
header.flex{
  align-items: flex-start;
}

header li{
  margin: 16px 45px;
}

h1.logo{
  margin-top: 16px;
  z-index: 100;
}

h1.logo img{
  width: 120px;
}

.nav-btn-wrap.flex{
  z-index: 10000;
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
  position: fixed;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 85%;
  height: 100vh;
  background: #fff6f5;
  transition: all 0.6s;
  padding: 110px 0 110px 45px;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  right: 0;
}

/*リストのレイアウト設定*/
#g-nav li{
  list-style: none;
  text-align: left;
}

#g-nav li a{
  font-family: "the-seasons", sans-serif;
  color: #17120D;
  text-decoration: none;
  padding: 10px;
  font-size: 18px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
  position: relative;
}
#g-nav li a::before{
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #574241;
  position: absolute;
  left: -30px;
  top: 50%;
}
#g-nav li:last-child a::before{
  display: none;
}
#g-nav li a:hover{
  color: #b74047;
}
#g-nav li a:hover::before{
  background-color: #b74047;
}
a.nav-insta{
  text-align: right;
}
a.nav-insta img{
  width: 210px;
}
#g-nav .flex{
  height: 50vh;
  justify-content: space-evenly;
  margin-bottom: 60px;
}

span.nav-small{
  display: block;
  font-size: 14px;
  font-weight: normal;
  letter-spacing: normal;
  line-height: 1.6;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
  position: relative;
  cursor: pointer;
  width: 70px;
  height: 70px;
  margin: 0px 20px 0 0;
}

/*×に変化*/
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  background-color: #574241;
  height: 1px;
  border-radius: 2px;
  width: 50%;
}

.openbtn span:nth-of-type(1){
  top: 28px;
  width: 60%;
}

.openbtn span:nth-of-type(2){
  top: 36px;
  width: 60%;
}

/*アクティブ時（×に変化）*/
.openbtn.active span:nth-of-type(1){
  top: 32px;
  left: 18px;
  transform: rotate(-45deg);
  width: 45%;
}

.openbtn.active span:nth-of-type(2){
  top: 32px;
  left: 18px;
  transform: rotate(45deg);
  width: 45%;
}

#g-nav li .instagram-icon{
  font-size: 18px;
  margin-left: -40px;
  margin-top: 30px;
}
#g-nav li .instagram-icon::before{
  position: absolute;
  content: "";
  background-image: url(../img/Instagram-b.svg);
  width: 25px;
  height: 25px;
  background-repeat: no-repeat;
  right: -40px;
  top: -3px;
}

@media screen and (min-width: 1024px){
  header{
    padding-left: 45px;
  }

  #g-nav{
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 42%;
    height: 100vh;
    background: #fff6f5;
    transition: all 0.6s;
    padding: 110px 60px;
  }

  #g-nav li a{
    padding: 16px;
    font-size: 21px;
  }

  #g-nav li .instagram-icon{
    font-size: 21px;
  }
}


/* =========================================================
   MVの上に「#concept以降すべて」を重ねる設定（ここが重要）
========================================================= */
:root{
  /* MVに重ねる量（SP/PCで自然に伸縮） */
  --mv-overlap: clamp(90px, 14vh, 220px);
}

/* mainを重なり制御の基準にする */
main#top{
  position: relative;
}

/* MVより上に載せるレイヤー（#concept以降のすべて） */
main#top > section:not(.hero),
main#top > footer{
  position: relative;
  z-index: 2;
  background-color: #fff;
}

/* ------------------------------
   Hero Section（MVをstickyで固定）
------------------------------ */
.hero{
  height: 100svh;
  position: sticky;
  top: 0;
  z-index: 1;
  overflow: hidden;
}
.hero-bg{
  background-image: url("../img/mv-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.main-catch img{
  width: 55%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/* #conceptを起点にMVへ重ねる（これで以降全部が結果的にMV上を流れる） */
/* #concept{
  margin-top: calc(-1 * var(--mv-overlap));
} */

/* 既存.section-boxの上paddingに、重なり分を足す */
#concept.section-box {
    padding-top: 80px;
    margin-top: 0;
}

/* ==============================
  ナビ表示中（スクロール固定中）のレイアウト揺れ対策
  #concept の負マージンが overflow:hidden で暴れるのを抑止
============================== */



/* ==============================
   MV Fade In（スピード微調整版）
============================== */

/* MV全体 */
.hero-bg{
  opacity: 0;
  transition: opacity 0.9s ease;
}

/* ロゴ */
.main-catch img{
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* scroll down */
.scrollbar-text_05,
.scrollbar_05{
  opacity: 0;
  transition: opacity 0.5s ease;
}

/* フェード開始 */
.hero.is-loaded{
  opacity: 1;
}

/* ロゴ：少し遅れて表示 */
.hero.is-loaded .main-catch img{
  opacity: 1;
  transition-delay: 0.25s;
}

/* scroll down：さらに少し遅れて */
.hero.is-loaded .scrollbar-text_05,
.hero.is-loaded .scrollbar_05{
  opacity: 1;
  transition-delay: 0.6s;
}


/* ------------------------------
   スクロールダウン
------------------------------ */
.container_05{
  height: 300px;
}

.scrollbar-text_05{
  display: inline-block;
  position: absolute;
  bottom: 0;
  padding: 10px 10px 110px;
  color: #bc616b;
  font-size: 14px;
  font-family: "the-seasons", serif;
  line-height: 1;
  letter-spacing: 0.02em;
  left: 50%;
  transform: translateX(-50%);
}

.scrollbar_05{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

.scrollbar_05::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 100px;
  background: #bc616b;
  animation: liner 2.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@keyframes liner{
  0%{
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  30%{
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  70%{
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100%{
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}


/* ------------------------------
   各セクション共通
------------------------------ */
.section-box{
  padding: 110px 0 75px;
}
.inner{
  max-width: 1120px;
  padding: 0 20px;
  margin: 0 auto;
}

.title-ja{
  letter-spacing: 0.02em;
  color: #574241;
}

.title-en{
  font-family: "the-seasons", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 1;
  font-style: normal;
  letter-spacing: 0.02em;
  color: #c34a59;
  margin-bottom: 30px;
}
.p-normal{
  font-size: 14px;
}
.serif{
  font-family: "the-seasons", 'Noto Serif JP', serif;
}
.center{
  text-align: center;
}

@media (min-width: 1024px){
  :root{
    --mv-overlap: clamp(120px, 16vh, 280px);
  }

  .section-box{
    padding: 110px 0;
  }

  #concept.section-box{
    padding-top: calc(110px + var(--mv-overlap));
  }

  .title-en{
    font-size: 70px;
  }
}


/* ------------------------------
  About SAYU
------------------------------ */
.concept-wrap{
  background-image: url("../img/concept-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.concept-catch{
  text-align: center;
  padding-bottom: 120px;
}

@media (min-width: 1024px){
  .hero-bg{
    background-image: url("../img/mv-bg-pc.jpg");
  }

  .main-catch img{
    width: 20vw;
  }

  .concept-wrap{
    background-image: url("../img/concept-bg-pc.jpg");
  }
  p.concept-catch{
    font-size: 20px;
  }
  .pc-only-flex .title-en{
    font-size: 78px;
    width: 50%;
  }
}

/* ===== ボタン全体 ===== */

.about-links{
  list-style: none;
  padding: 0;
  margin: 48px 0 0;
  display: flex;
  justify-content: flex-start;
  gap: 32px;
}

.about-btn{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  gap: 10px;
}

/* 丸アイコン */

.about-btn__icon{
  position: relative;                 /* ★重ねるために必要 */
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #c34a59;
  border: 2px solid #c34a59;          /* ★hover時の枠として使う */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .25s ease, opacity .25s ease;
}

/* 画像を重ねる（中央固定） */
.about-btn__icon img{
  position: absolute;                 /* ★重ねる */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: auto;
  transition: opacity .25s ease;
}

/* 通常サイズ */
.about-btn__icon img{
  width: 32px;
}

/* noteだけ少し小さく */
.about-btn__icon.note__icon img{
  width: 25px;
}

/* 初期：白だけ表示 */
.icon-white{ opacity: 1; }
.icon-color{ opacity: 0; }

/* ラベル */

.about-btn__label{
  color: #c34a59;
  font-size: 16px;
  letter-spacing: .02em;
  font-family: "the-seasons", serif;
  transition: opacity .25s ease;
}

/* ===== hover：色反転（塗り→白、白アイコン→カラー） ===== */

.about-btn:hover .about-btn__icon{
  background: #fff;                   /* ★白背景 */
  opacity: 1;                         /* 透過ではなく反転を主役に */
}

.about-btn:hover .icon-white{
  opacity: 0;
}

.about-btn:hover .icon-color{
  opacity: 1;
}

/* 控えめに（任意） */
.about-btn:hover .about-btn__label{
  opacity: 0.85;
}

/* ===== レイアウト ===== */

.concept-body{
  margin-top: 24px;
}

@media (min-width: 1024px){
  .pc-only-flex{
    display: flex;
    align-items: flex-start;
    gap: 64px;
  }

  .pc-only-flex .title-en{
    width: 50%;
  }

  .concept-body{
    width: 50%;
    margin-top: 0;
  }
}

/* ===== SP ===== */

@media (max-width: 480px){
  .about-links{
    gap: 30px;
    margin-top: 36px;
    justify-content: center;
  }

  .about-btn__label{
    font-size: 14px;
  }
}

/* ------------------------------
   Menu section background
------------------------------ */
.menu-section{
  padding: 32px 0 64px;
  background-image: linear-gradient(to right, rgba(235, 216, 212, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(235, 216, 212, 0.4) 1px, transparent 1px);
  background-size: 22px 22px;
  display: block;
}

.menu-section.bg-color{
  background-color: #f9f9f9;
  background-image: none;
}

/* ------------------------------
   Nav
------------------------------ */
.menu-nav{
  margin-bottom: 32px;
}

.menu-nav-item{
  display: inline-block;
  padding: 10px 0 0;
  font-size: 14px;
  text-decoration: none;
  color: #6a5555;
  border-bottom: 1px solid #574241;
  margin-right: 0.8rem;
}

/* PCタブはSPでは非表示 */
.menu-tabs{
  display: none;
}

/* ------------------------------
   Menu item common
------------------------------ */
.menu-badge{
  display: block;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  width: fit-content;
  margin: 0 0 15px auto;
  padding: 10px 10px 10px 14px;
  letter-spacing: 0.12em;
  line-height: 1;
  background-color: #bc617b;
  color: #fff;
  position: relative;
}

.menu-badge::before{
  content: "";
  position: absolute;
  background-color: #bc617b;
  display: block;
  width: 30px;
  height: 100%;
  top: 0;
  right: -20px;
}

.menu-item-heading{
  text-align: left;
}

.item-title-en{
  font-family: "the-seasons", serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 400;
  color: #b74047;
  line-height: 1;
}

.item-title-ja{
  font-size: 14px;
  letter-spacing: 0.02em;
  font-weight: 300;
  color: #b74047;
  margin: 0 0 18px;
}

/* price */
.item-price{
  font-size: 1.4rem;
  color: #5b4b4b;
  margin-bottom: 30px;
}

.price-row{
  display: flex;
  width: fit-content;
  align-items: flex-end;
  margin: 0 auto 10px;
  color: #574241;
  border-bottom: 1px solid #574241;
}

.price-row:last-child{
  margin-bottom: 0;
}

.price-row .time{
  font-family: "the-seasons", serif;
  font-size: 28px;
  line-height: 1;
}

.price-row .price{
  font-family: "the-seasons", serif;
  margin-right: 4px;
  line-height: 1;
}

.price-row .tax{
  font-size: 0.4em;
}

/* image */
.menu-item-image{
  overflow: hidden;
}
.menu-item-image img{
  display: block;
  width: 100%;
  height: auto;
}

/* ------------------------------
   SP：上段/下段
------------------------------ */
.menu-item-top{
  margin-top: 10px;
}
.menu-item-bottom{
  margin-top: 24px;
}

/* おすすめボックス */
.recommend-box{
  border: 2px solid #b74047;
  border-radius: 24px 0;
  padding: 20px 18px;
  background-color: #fff;
}

.description-text{
  line-height: 1.8;
}

.recommend-title{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  margin: 15px 0 8px;
}

/* ライン初期状態 */
.recommend-title::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #574241;

  /* アニメーション準備 */
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

/* スクロールで表示されたら */
.recommend-title.is-animate::after{
  transform: scaleX(1);
}


.recommend-list{
  list-style: none;
  line-height: 2;
}

.recommend-list li::before{
  content: "";
  display: inline-block;
  background-image: url("../img/check.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 16px;
  margin-right: 4px;
}

.notes{
  font-size: 0.8rem;
  position: relative;
  display: inline-block;
  margin-left: 16px;
  margin-top: 10px;
  line-height: 1.6;
}
.notes::before{
  content: "※";
  position: absolute;
  top: 0;
  left: -16px;
}
.notes.second{
  margin-top: 0;
}

/* flow */
.menu-flow{
  border-top: 2px solid #b74047;
  border-bottom: 2px solid #b74047;
  background-color: #fff;
  margin-top: 45px;
  padding: 15px 10px;
}

.flow-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.flow-header h3{
  font-size: 16px;
  margin: 0;
  color: #c34a59;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.flow-plus{
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  flex-shrink: 0;
}
.flow-plus::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #574241;
  transform: translateY(-50%);
}
.flow-plus::after{
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 100%;
  background-color: #574241;
  transform: translateX(-50%);
}
.flow-header[aria-expanded="true"] .flow-plus::after{
  opacity: 0;
}

/* =========================================
   FLOW TIMELINE（文量に追従して崩れない版）
========================================= */

/* 1) 既存の「各STEPの ::after で線を描く」方式は無効化 */
.flow-step-num::after{
  display: none;
}

/* 2) タイムライン用の変数 */
:root{
  --flow-num-w: 50px;
  --flow-line-w: 1px;
  --flow-line-color: #574241;
  --flow-cap: 24px;
  --flow-gap: 24px;
  --flow-col-gap: 8px;
}

/* 3) リスト全体に縦線を引く */
.flow-steps{
  list-style: none;
  margin: 0;
  padding: var(--flow-cap) 0;
  position: relative;
}

/* 縦線（常に文量に追従して伸びる） */
.flow-steps::before{
  content: "";
  position: absolute;
  left: calc(var(--flow-num-w) / 2);
  top: var(--flow-cap);
  bottom: var(--flow-cap);
  width: var(--flow-line-w);
  background: var(--flow-line-color);
}

/* 4) STEPのレイアウトを grid に */
.flow-step{
  display: grid;
  grid-template-columns: var(--flow-num-w) minmax(0, 1fr);
  column-gap: var(--flow-col-gap);
  align-items: start;
  padding: var(--flow-gap) 0;
  position: relative;
}

.flow-step:first-child{
  padding-top: 0;
}
.flow-step:last-child{
  padding-bottom: 0;
}

/* 5) 番号ブロック */
.flow-step-num{
  width: var(--flow-num-w);
  text-align: center;
  line-height: 1.2;
  position: relative;
  z-index: 1;
  background: #fff;
}

.step-label{
  font-family: "amandine", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: #574241;
}

.step-num{
  display: block;
  font-family: "amandine", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px;
  margin-top: 2px;
  color: #574241;
}

/* 6) 本文 */
.flow-step-text{
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.flow-step-body{
  width: 100%;
}

p.flow-step-note{
  font-size: 13px;
  line-height: 1.6;
  margin: 6px 0 0;
}

li.flow-step.step3-bg{
  background: #fff;
  padding-top: 0;
  margin-top: 24px;
}

/* PC調整 */
@media (min-width: 1024px){
  :root{
    --flow-num-w: 56px;
    --flow-gap: 22px;
    --flow-col-gap: 12px;
    --flow-cap: 18px;
  }

  .flow-step-text{
    font-size: 16px;
  }
}

/* reserve button */
.menu-item-reserve{
  text-align: center;
  margin-top: 28px;
}

.btn-reserve{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* ← テキストと矢印の間隔 */

  min-width: 210px;
  padding: 11px 24px;
  border-radius: 999px;

  background-color: #b74047;
  color: #fff;
  border: 1px solid #b74047;

  font-size: 14px;
  letter-spacing: 0.16em;
  text-decoration: none;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ↗︎ アイコン（通常：白） */
.btn-reserve::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../img/arrow-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transition: background-image 0.3s ease;
}

/* hover（PC想定） */
.btn-reserve:hover{
  background-color: #fff;
  color: #b74047;
  border-color: #b74047;
}

/* hover時：赤矢印 */
.btn-reserve:hover::after{
  background-image: url("../img/arrow-r.svg");
}

/* キーボード操作用（アクセシビリティ） */
.btn-reserve:focus-visible{
  outline: none;
  background-color: #fff;
  color: #b74047;
  border-color: #b74047;
}
.btn-reserve:focus-visible::after{
  background-image: url("../img/arrow-r.svg");
}



/* ------------------------------
   Tablet (768px〜)
------------------------------ */
@media (min-width: 768px){
  .menu-section{
    padding: 48px 0 80px;
  }

  .menu-nav{
    display: flex;
    justify-content: flex-start;
    gap: 32px;
    padding-bottom: 0;
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .menu-nav-item{
    border-bottom: none;
    padding: 8px 0;
    white-space: nowrap;
  }

  .recommend-box{
    max-width: 380px;
  }

  .btn-reserve{
    min-width: 240px;
    font-size: 16px;
  }
}

/* ------------------------------
   PC (1024px〜)
------------------------------ */
@media (min-width: 1024px){
  .menu-nav-sp{
    display: none;
  }

  .menu-tabs{
    display: flex;
    gap: 26px;
    align-items: flex-end;
    border-bottom: 2px solid #d9bcbc;
    padding-bottom: 6px;
    margin-bottom: 0;
    flex-wrap: wrap;
  }

  .menu-tab{
    position: relative;
    padding: 10px 0 8px;
    color: #6a5555;
    letter-spacing: .04em;
    white-space: nowrap;
    background: none;
    border: none;
    cursor: pointer;
  }

  .menu-tab::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: transparent;
    transition: background .2s ease;
  }

  .menu-tab.is-active{
    color: #b74047;
  }
  .menu-tab.is-active::after{
    background: #b74047;
  }

  @media (hover:hover){
    .menu-tab:hover{
      color: #b74047;
    }
  }

  #menu .menu-section{
    display: none;
  }
  #menu .menu-section.is-active{
    display: block;
  }

  .menu-section{
    padding: 60px 0 90px;
  }

  .menu-section.bg-color{
    background-image: linear-gradient(to right, rgba(235, 216, 212, 0.4) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(235, 216, 212, 0.4) 1px, transparent 1px);
    background-size: 22px 22px;
    background-color: #fff;
  }

  .menu-badge{
    font-size: 16px;
  }

  h2.item-title-en{
    font-size: 45px;
  }

  p.price-row{
    font-size: 38px;
    gap: 6px;
    margin: 0 auto 15px auto;
  }
  .price-row .time{
    font-size: 38px;
  }
  .item-price{
    padding: 30px 0 0;
  }

  .menu-item-top{
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
    margin-top: 10px;
  }

  .menu-item-top-left .menu-badge{
    margin: 0 0 18px 0;
    padding: 10px 16px;
  }
  .menu-badge::before{
    display: none;
  }
  .menu-item-top-left .price-row{
    margin: 0 auto 20px auto;
  }

  .menu-item-bottom{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
    margin-top: 46px;
  }

  .recommend-box{
    max-width: 520px;
    padding: 45px 30px;
  }

  .recommend-title{
    font-size: 16px;
    margin: 20px 0 10px;
  }

  .menu-flow{
    margin-top: 0;
    padding: 18px 14px;
  }
  .menu-flow .flow-plus{
    display: none;
  }
  .menu-flow .flow-header{
    cursor: default;
    pointer-events: none;
    padding-bottom: 10px;
    justify-content: center;
  }
  .menu-flow .flow-header h3{
    text-align: center;
    width: 100%;
    font-size: 20px;
  }

  .menu-item-reserve{
    margin-top: 44px;
  }

  .flow-steps{
    padding: 0;
  }

  .flow-step-text{
    font-size: 16px;
  }
}


/* ------------------------------
   ペア
------------------------------ */
.pair-bg{
  background-image: url("../img/pair-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.pair-bg .inner{
  padding: 60px 20px;
}
.pair-txt-wrap{
  display: inline;
}
.pair-txt{
  font-family: 'Noto Serif JP';
  font-size: 28px;
  display: block;
  color: #fff;
}
span.pair-txt.txt-2{
  text-align: right;
}
.pair-wrap{
  border: 2px solid #b74047;
  border-radius: 24px;
  background-color: #fff;
  padding: 20px 15px;
  background-image: linear-gradient(to right, rgba(235, 216, 212, 0.4) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(235, 216, 212, 0.4) 1px, transparent 1px);
  background-size: 22px 22px;
  text-align: center;
  margin-top: 20px;
}

.pair-price{
  background-color: #f6ebea;
  border-radius: 15px;
  padding: 20px 0;
}
p.p-large{
  color: #b74047;
  font-family: 'Noto Serif JP';
  font-size: 18px;
}
p.pair-txt-box{
  text-align: left;
  padding: 24px 0;
}
.p-normal{
  font-size: 14px;
}
.pair-wrap .item-title-en,
.pair-wrap .item-title-ja{
  color: #5b4b4b;
}

@media (min-width: 1024px){
  .pair-bg{
    background-image: url("../img/pair-bg-pc.jpg");
  }
  .pair-wrap{
    padding: 30px 60px;
  }
  .pair-wrap .pc-only-flex{
    justify-content: space-between;
  }
  .pair-txt-wrap{
    display: block;
    text-align: center;
  }
  .pair-txt{
    display: inline;
  }
  p.p-large{
    text-align: left;
    font-size: 20px;
  }

  .pair-price{
    padding: 30px 45px;
  }
  .pair-text{
    width: 50%;
  }
  .p-normal{
    font-size: 18px;
    margin-bottom: 8px;
  }
}


/* ------------------------------
  ギフト
------------------------------ */
.gift-bg{
  background-image: url("../img/gift-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

img.gift-img{
  width: 66vw;
  display: block;
  margin: 0 auto;
}
.gift-point{
  border-bottom: 1px solid #b74047;
  border-top: 1px solid #b74047;
  padding: 15px 0;
  margin-top: 30px;
}
.gift-wrap p.p-large{
  color: #574241;
  font-size: 20px;
  line-height: 1.6;
  padding: 10px 10px 20px;
  font-family: "the-seasons", 'Noto Serif JP', serif;
}

@media (min-width: 1024px){
  .gift-bg{
    width: 1200px;
    margin: 0 auto;
    background-image: url("../img/gift-bg-pc.jpg");
    padding: 80px 0;
    border-radius: 15px;
  }
	.gift-wrap{
		padding: 80px 0;
	}

  .gift-wrap .title-ja,
  .gift-wrap .title-en{
    text-align: center;
  }

  img.gift-img{
    width: 410px;
  }
  .gift-wrap p.p-large{
    font-size: 28px;
    text-align: center;
  }
  .gift-bg p{
    text-align: center;
    font-size: 18px;
  }
  .gift-point{
    width: fit-content;
    margin: 30px auto 0;
    padding: 25px 30px;
    font-size: 18px;
  }
}


/* ------------------------------
  プロフィール
------------------------------ */
.prof-wrap{
  padding: 60px 0;
}
.prof-wrap p.p-large{
  font-size: 28px;
  line-height: 1;
  font-family: "the-seasons", 'Noto Serif JP', serif;
  color: #574241;
}
img.prof-img{
  width: 90vw;
  padding-bottom: 25px;
}
span.line{
  display: block;
  width: 100%;
  height: 1px;
  background-color: #574241;
  margin: 20px 0;

  /* アニメーション用 */
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

/* 画面に入ったら */
span.line.is-animate{
  transform: scaleX(1);
}


h3.keireki{
  display: flex;
  font-weight: 400;
  align-items: center;
  gap: 10px;
}

h3.keireki::after{
  content: "";
  flex: 1;
  height: 1px;
  background: #574241;
}

.keireki-wrap{
  padding: 30px 0 0;
}
.keireki-wrap ul li{
  margin-left: 20px;
  position: relative;
  line-height: 1.5;
  padding-bottom: 8px;
}

.keireki-wrap ul li::before{
  content: "・";
  position: absolute;
  left: -15px;
  top: 0;
  color: #574241;
}

/* NOTEボタン共通 */
.prof-wrap a.btn-reserve{
  min-width: 225px;
  background-color: #b74047;
  color: #fff;
  border: 1px solid #b74047;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* NOTEアイコン */
img.note-btn-img{
  width: 118px;
  margin-right: 15px;
  transition: opacity 0.3s ease;
}

/* hover / focus */
.prof-wrap a.btn-reserve:hover,
.prof-wrap a.btn-reserve:focus-visible{
  background-color: #fff;
  color: #b74047;
  border-color: #b74047;
}

/* 画像切り替え（同じタイミング） */
.prof-wrap a.btn-reserve:hover img.note-btn-img,
.prof-wrap a.btn-reserve:focus-visible img.note-btn-img{
  content: url("../img/note-btn-hover.svg");
}



@media (min-width: 1024px){
  .pc-only-flex.prof-txt-wrap{
    max-width: 1120px;
    padding: 0 20px;
    margin: 45px auto 0;
  }
  img.prof-img{
    width: 85%;
    padding-bottom: 0;
  }
  .keireki-wrap ul li{
    line-height: 1.8;
    padding-bottom: 15px;
  }
  h3.keireki{
    padding-bottom: 15px;
  }
  .prof-wrap p.p-large{
    font-size: 38px;
  }
}


/* ------------------------------
  サロンについて
------------------------------ */
.salon-wrap h3.serif{
  font-size: 21px;
}
.info-wrap{
  padding: 10px 0;
}
.info-wrap a{
  border-bottom: 1px solid #574241;
}
.salon-wrap{
  padding: 60px 0;
}

/*無限ループ*/
@keyframes infinity-scroll-left{
  from{
    transform: translateX(0);
  }
  to{
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap{
  display: flex;
  overflow: hidden;
}
.scroll-infinity__list{
  display: flex;
  list-style: none;
  padding: 0;
}
.scroll-infinity__list--left{
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}
.scroll-infinity__item{
  width: calc(100vw / 1.5);
  margin: 0 5px;
}
.scroll-infinity__item>img{
  width: 100%;
}

@media (min-width: 1024px){
  .salon-wrap{
    padding: 60px 0 110px;
  }
  .scroll-infinity__item{
    width: calc(100vw / 3);
    margin: 0 8px;
  }
  p.title-ja.pc-only{
    margin-top: 45px;
  }
  .salon-wrap .pc-only-flex{
    justify-content: space-between;
  }
  .info-wrap{
    width: 33.3%;
    position: relative;
    padding-left: 30px;
  }
  .info-line::before{
    content: "";
    background-color: #574241;
    display: block;
    width: 1px;
    position: absolute;
    height: 100%;
    top: 0;
    left: -16%;
  }
  .info-line::after{
    content: "";
    background-color: #574241;
    display: block;
    width: 1px;
    position: absolute;
    height: 100%;
    top: 0;
    right: 4%;
  }
  .salon-wrap h3.serif{
    font-size: 28px;
  }
  .info-wrap.info-line{
    padding-left: 0;
  }
}


/* ------------------------------
   FAQ
------------------------------ */
.faq-list{
  border-top: 1px solid #cfc2c2;
  font-family: "the-seasons", 'Noto Serif JP', serif;
}

.faq-item{
  border-bottom: 1px solid #cfc2c2;
}

.faq-q{
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 6px;
  cursor: pointer;
}
.faq-q::-webkit-details-marker{
  display: none;
}

.qa-mark{
  font-family: "the-seasons", serif;
  font-size: 21px;
  width: 20px;
  flex: 0 0 20px;
  line-height: 1;
}
.qa-mark.q{
  color: #585858;
}
.qa-mark.a{
  color: #b74047;
}

.faq-q-text{
  font-size: 14px;
  letter-spacing: .02em;
  line-height: 1.5;
}

.faq-icon{
  margin-left: auto;
  width: 26px;
  height: 26px;
  border: 1px solid #6e6e6e;
  border-radius: 50%;
  position: relative;
  flex: 0 0 26px;
}

.faq-icon::before{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background: #574241;
  transform: translate(-50%,-50%);
}

.faq-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 12px;
  background: #574241;
  transform: translate(-50%,-50%);
}

.faq-item[open] .faq-icon::after{
  opacity: 0;
}

.faq-a{
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  padding: 0 6px 18px;
}

.faq-a-text p{
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: .06em;
  color: #574241;
}
.faq-a-text p + p{
  margin-top: 8px;
}

.faq-q:focus{
  outline: none;
}
.faq-q:focus-visible{
  outline: 2px solid #cfc2c2;
  outline-offset: 4px;
}

@media (min-width: 1024px){
  .faq-wrap{
    padding: 0 20px 60px;
  }
  .faq-list{
    margin-top: 45px;
  }
  .faq-q-text{
    font-size: 16px;
  }
  .faq-a-text p{
    font-size: 16px;
    padding: 0 30px 0 0;
  }
  .faq-q{
    padding: 21px 15px;
  }
  .faq-a{
    padding: 21px 15px;
  }
}


/* ------------------------------
   Instagram
------------------------------ */
.insta-wrap{
  padding: 60px 0;
}
div#sbi_images {
    gap: 5px ! important;
}
/* ==========================
   Instagram：Follow Me ボタン
========================== */
.insta-wrap .menu-item-reserve .btn-reserve{
  background-color: #fff;
  border: 1px solid #b74047;
  color: #b74047;
  font-family: "the-seasons", serif;
  font-size: 16px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease;
}

/* ↗︎ 通常時：赤 */
.insta-wrap .menu-item-reserve .btn-reserve::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../img/arrow-r.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;

  transition: background-image 0.3s ease;
}

/* hover / focus：白矢印 */
.insta-wrap .menu-item-reserve .btn-reserve:hover,
.insta-wrap .menu-item-reserve .btn-reserve:focus-visible{
  background-color: #b74047;
  color: #fff;
  border-color: #b74047;
}

.insta-wrap .menu-item-reserve .btn-reserve:hover::after,
.insta-wrap .menu-item-reserve .btn-reserve:focus-visible::after{
  background-image: url("../img/arrow-w.svg");
}

@media (min-width: 1024px){
.insta-wrap{
  padding: 60px 0 110px;
}
}


/* ------------------------------
   ご予約
------------------------------ */
.reserve-wrap h2.title-en,
.reserve-wrap p.title-ja{
  color: #fff;
}
a.reserve-btn{
  display: block;
  padding: 45px 0;
  background-image: linear-gradient(to right, rgb(220 180 180 / 10%) 1px, transparent 1px),
    linear-gradient(to bottom, rgb(220 180 180 / 10%) 1px, transparent 1px);
  background-size: 22px 22px;
  background-color: #b74047;
    text-align: center;
}

.reserve-wrap h2.title-en{
  margin-bottom: 0;
}
/* Reserve セクション */
.reserve-wrap .reserve-btn .title-ja,
.reserve-wrap .reserve-btn .title-en{
  transition: opacity 0.3s ease;
}

/* hover / focus */
.reserve-wrap .reserve-btn:hover .title-ja,
.reserve-wrap .reserve-btn:hover .title-en,
.reserve-wrap .reserve-btn:focus-visible .title-ja,
.reserve-wrap .reserve-btn:focus-visible .title-en{
  opacity: 0.6;
}
/* ==========================
   Reserve CTA：右に ↗︎（白）
========================== */
.reserve-wrap .reserve-btn h2.title-en{
    display: inline-block;
    position: relative;
    margin-right: 15px;
}

/* ↗︎ アイコン（常時：白） */
.reserve-wrap .reserve-btn h2.title-en::after{
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../img/arrow-w.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
	position: absolute;
    bottom: 5px;
    right: -18px;
}




@media (min-width: 1024px){
  a.reserve-btn{
    padding: 110px 0;
  }
.reserve-wrap .reserve-btn h2.title-en{
    margin-right: 18px;
}
.reserve-wrap .reserve-btn h2.title-en::after{
     width: 18px;
     height: 18px;
     bottom: 10px;
     right: -24px;
}
	
}


/* ------------------------------
   Footer
------------------------------ */
footer{
  background-color: #fff6f5 !important;
  padding: 60px 0 5px;
  text-align: center;
  color: #574241;
  font-size: 12px;
  font-family: "the-seasons", serif;
  position: relative;
}
/* TO TOP ボタン */
.to-top{
  position: absolute;
  right: 14px;
  top: -22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #574241;
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .05);
}

.to-top-icon{
  font-size: 18px;
  line-height: 1;
  transform: translateY(1px);
}

.to-top-text{
  font-size: 10px;
  letter-spacing: .14em;
  line-height: 1;
}

@media (hover:hover){
  .to-top:hover{
    transform: translateY(-2px);
    box-shadow: 0 12px 22px rgba(0,0,0,.22);
  }
}

@media (min-width: 1024px){
  footer{
    padding: 110px 0 10px;
    font-size: 13px;
  }
  .to-top{
    right: 45px;
    top: -35px;
    width: 84px;
    height: 84px;
  }
  .to-top-text{
    font-size: 14px;
  }
}
