@charset "UTF-8";
/* CSS Document */
:root{
  /* Color Kit */
  --bg1:#F6F5F2; /* 背景色1 */
  --bg2:#E7ECE3; /* 背景色2 */
  --bg3:#F9F9F9; /* 背景色3 */
  --line:#BFBFBF; /* 線 */
  --text1:#222222; /* 文字色1 */
  --text2:#F6F5F2; /* 文字色2 */

  /* Layout */
  --container-max:1200px; /* PC */
  --space-1:8px;
  --space-2:16px;
  --space-3:24px;
  --space-4:32px;
  --space-6:48px;
  --space-8:64px;
  --radius:16px;
}

html{background: var(--bg1, #F6F5F2);}
/* =============================
  Typography
  ============================= */

/* 基本文字 */
body{
  font-size: 16px;   /* PC用 */
  line-height: 1.75;
  font-family: "Noto Sans JP", system-ui, sans-serif;
  color: var(--text1, #222);
}

/* 大見出し（日本語セクションタイトルなど） */
.heading-lg{
  font-size: clamp(20px, 6vw, 30px);
  font-family: "Noto Serif JP", serif;
  font-weight: 500;    
  line-height: 1.5;
}

/* 小見出し */
.heading-md{
  font-size: clamp(20px, 6vw, 24px);
  font-weight: 500;
  font-family: "Noto Serif JP", serif; 
  line-height: 1.75;    
}

/* 英語見出し */
.heading-en{
  font-size: clamp(20px, 6vw, 30px);
  font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  line-height: 1;
}

/* ----------------------------
   スマホ用 (max-width:767px)
   ---------------------------- */
@media (max-width: 767px){
  body{
    font-size: 14px; /* SP本文 */
  }
}


html{ scroll-behavior:smooth; }
.container{ width: min(var(--container-max), 100% - 32px); margin-inline:auto; }
.section{ padding: var(--space-8) 0; background:var(--bg1); }
.section-alt{ background:var(--bg3); }
.lead{ font-weight:500; font-size:1.125rem; }

/* Skip */
.skip-link{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }
.skip-link:focus{ position:static; width:auto; height:auto; padding:8px 12px; background:var(--bg2); color:var(--text2); }

/* ハンバーガーメニュー（二本線 → ×） */
.nav-toggle{
  display:none;
  width:32px;
  height:32px;
  position:relative;
  background:none;
  border:none;
  cursor:pointer;
  z-index:100;
}
.nav-toggle .bar{
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:var(--text1);
  transition:.3s;
}
.nav-toggle .bar:nth-child(1){ top:10px; }
.nav-toggle .bar:nth-child(2){ top:20px; }

.nav-toggle.active .bar:nth-child(1){
  transform: rotate(45deg);
  top:15px;
}
.nav-toggle.active .bar:nth-child(2){
  transform: rotate(-45deg);
  top:15px;
}

/* Header */
.site-header{ width: 100%; top:0; z-index:50; background: var(--bg1, #F6F5F2); }
.header-inner{ display:flex; align-items:center; justify-content:space-between; gap:16px; padding:4px 0; }
.gnav ul{ display:flex; gap: clamp(12px, 2.2vw, 28px); list-style:none; }
.gnav a{ color:var(--text1); text-decoration:none; font-weight:500; padding:6px 4px; border-bottom:2px solid transparent; }
.gnav a:hover{ border-color: #73A397; }

.logo a{
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo img{
  display: block;
  height: clamp(16px, 2.2vw, 18px); /* SP小さめ〜PC大きめ */
  width: auto;
}

/* スマホ時のナビ */
@media (max-width: 767px){
  .logo{margin:  0 auto;}
  .nav-toggle{ display:block; }
  .header-inner{ padding:4px 0; }    

  /* ヘッダーは最前面 */
  .site-header{ position: fixed;z-index: 100; }

/* ===== Mobile Nav: フェード表示（ヘッダー直下／コンテンツに重ねる） ===== */
  .nav-toggle{ display:block; }
  .site-header{ z-index:100; }

  /* 初期は非表示：opacity & visibilityでふわっと */
  .gnav{
    position: fixed;
    left: 0; right: 0;
    top:0;
    bottom: 0;
    background: var(--bg1, #F6F5F2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .28s ease, visibility 0s linear .28s;
    z-index: 90;
    display: grid;
    place-items: start center;
    padding: 80px 20px 32px;
  }
  .gnav.open{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity .28s ease;
  }

  .gnav ul{
    display: grid;
    gap: 28px;
    width: min(520px, 100%);
    margin-top: 8px;
    text-align: center;
  }
    .gnav a{
      font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
      font-weight: 600;
      letter-spacing: .05em;
      color: #73A397;
      text-decoration: none;
      font-size: 16px; /* PC時 */
      padding: 6px 4px;
      border-bottom: 2px solid transparent;
    }
  .gnav a:hover{ border-color: var(--bg2, #417A7A); }
  .gnav a{font-size: 20px;}    

  /* 二本線 → × アニメーション（そのまま） */
  .nav-toggle{
    width:32px; height:32px; position:fixed;right: 20px; background:none; border:0; cursor:pointer;
  }
  .nav-toggle .bar{
    position:absolute; left:0; width:100%; height:2px; background:var(--text1, #222); transition:.3s;
  }
  .nav-toggle .bar:nth-child(1){ top:8px; }
  .nav-toggle .bar:nth-child(2){ top:20px; }
  .nav-toggle.active .bar:nth-child(1){ transform: rotate(45deg); top:14px; }
  .nav-toggle.active .bar:nth-child(2){ transform: rotate(-45deg); top:14px; }

  /* メニュー表示中は背面スクロールを止める */
  body.no-scroll{ overflow: hidden; }
}

@media (min-width: 767px){
    .site-header{position: fixed;}
}


/* ===== KV ===== */
.kv{
  position: fixed;
  top:0;
  height: 550px;
  width: 100%;
  color: var(--text2, #fff);
  overflow: hidden;
  margin-top: 64px;
  background: var(--kv1) center / cover no-repeat; /* 1枚目 */    
}
@media (max-width: 767px){
    .kv{margin-top: 57px;height: 510px;}
}

/* ===== KV：3枚フェード（CSS-only） ===== */

/* 画像URLはここで設定（PC用）。必要に応じて差し替え */
:root{
  --kv1: url("../img/kv1.jpg");
  --kv2: url("../img/kv2.jpg");
  --kv3: url("../img/kv3.jpg");

  /* 全体の1周時間（3枚 × 2秒 = 6秒） */
  --kv-cycle: 18s;
}

/* コンテンツを前面に固定 */
.kv__content{ position: relative; z-index: 1; }

/* 2枚目・3枚目のレイヤー */
.kv::before,
.kv::after{
  content:"";
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  pointer-events: none;
  will-change: opacity;
}

/* 2枚目（:before）→ 2〜4秒のゾーンでフェードIN/OUT */
.kv::before{
  background-image: var(--kv2);
  animation: kvFade2 var(--kv-cycle) linear infinite;
  z-index: 0; /* コンテンツより背面、土台より前面 */
}

/* 3枚目（:after）→ 4〜6秒のゾーンでフェードIN/OUT */
.kv::after{
  background-image: var(--kv3);
  animation: kvFade3 var(--kv-cycle) linear infinite;
  z-index: 0;
}

/* 2枚目の可視ウィンドウ（33%付近へ向けてIN、66%でOUT） */
@keyframes kvFade2{
  0%   { opacity: 0; }
  27%  { opacity: 0; }   /* 〜約1.6s は非表示 */
  37%  { opacity: 1; }   /* 0.6sで自然にIN */
  61%  { opacity: 1; }   /* 2〜4s 相当で表示維持 */
  71%  { opacity: 0; }   /* 0.6sでOUT */
  100% { opacity: 0; }
}

/* 3枚目の可視ウィンドウ（66%付近でIN、終端でOUT） */
@keyframes kvFade3{
  0%   { opacity: 0; }
  61%  { opacity: 0; }   /* 〜約3.6s は非表示 */
  71%  { opacity: 1; }   /* 0.6sでIN（2枚目とクロス） */
  94%  { opacity: 1; }   /* 4〜5.6s 相当で表示維持 */
  100% { opacity: 0; }   /* 0.24sほどでOUT→1枚目に戻る */
}

/* SPで別画像を使うなら、変数だけ差し替え */
@media (max-width: 767px){
  :root{
    /* 同じでもOK。SP専用を用意しているなら差し替え */
    --kv1: url("../img/kv_sp1.jpg");
    --kv2: url("../img/kv_sp2.jpg");
    --kv3: url("../img/kv_sp3.jpg");
  }
}

/* 動きを抑えたいユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .kv::before, .kv::after{ animation: none; }
}


/* コンテンツ中央寄せ */
.kv__content{
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; 
  text-align: center;
  gap: 24px;
  padding: 0 16px;
}

/* タイトルSVGのサイズ（PC: 大きめ） */
.kv__title{
  font-family: "Noto Serif JP", serif;
  font-size: clamp(28px, 5vw, 45px); /* SP〜PCまで可変 */
  font-weight: 500;
  line-height: 1.3;
  color: var(--text2);
  max-width: 20em;
  margin-inline: auto;
  letter-spacing: 0.15em;
}

/* 情報テキスト */
.kv__info{
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.8;
  
}

/* CTAボタン（KVだけ色をキットのbg2に合わせる） */
.kv .btn.btn-primary{
  background: #73A397;
  color: var(--text2, #fff);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 500;
}
.kv .btn.btn-primary:hover{ filter: brightness(1.06); }

/* SP：背景画像差し替え＆文字サイズ調整 */
@media (max-width: 767px){
  .kv__info{
    font-size: 10px;
    line-height: 1.8;
  }
}


/* Buttons */
.btn{ display:inline-block; text-decoration:none; padding:12px 20px; border-radius: 999px; border:1px solid transparent; font-weight:600; }
.btn-primary{ background:#134F4F; color:var(--text2); }
.btn-primary:hover{ filter:brightness(1.05); }



/* ===== ABOUT ===== */
.section-about{
  background: var(--bg2);           /* 背景色2：#417A7A */
  color: var(--text1);        /* 白文字 */
  padding: 40px 0;                  /* 少し広めの余白 */
}

.about__grid{
  display: grid;
  grid-template-columns: 1fr;       /* SP: 縦積み */
  gap: 16px;
  align-items: center;
}

.about__title{
  color: #73A397;
  margin-bottom: 16px;
  letter-spacing: .08em;
}

.about__headline{ font-weight: 500;
}

.about__body{
  font-size: 14px;
  max-width: 55ch;
}

.about__media img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: cover;
}

/* === PC(>=768px)で2カラムに & タイポ調整 === */
@media (min-width: 768px){
  .section-about{ padding: 100px 0; }
  .about__grid{
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
  }
  .about__headline{
    margin-bottom: 24px;
  }
  .about__body{
    font-size: 16px;
  }
}
/* ===== SPレイアウト ===== */
@media (max-width: 767px){
  .about__texts{ display: contents; }
  .about__title{ order: 1; margin-bottom: 0;} 
  .about__headline{ order: 2; }
  .about__body{ order: 4; }
  .about__media{ 
      order: 3;
      width: 85%;
      margin: 0 auto;
    }
}


/* ========== RECOMMEND ========== */
.section-reco{
  background: var(--bg1, #F6F5F2);  padding: 60px 0;
}

/* 見出し */
.reco-title{
  margin-bottom: 20px;
}

/* 上段カード：SPは横スクロール、PCは3列グリッド */
.reco-cards{
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 4px 4px;
  scroll-snap-type: x mandatory;
}
.reco-cards::-webkit-scrollbar{ height: 8px; }
.reco-cards::-webkit-scrollbar-thumb{ background: #cfcfcf; border-radius: 999px; }

.reco-card{
  background: #fff;
  border-radius: 16px;
  padding:32px 18px;
  width: 260px;                 /* SPで1枚ずつ見せる幅 */
  scroll-snap-align: start;
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  flex: 0 0 auto;
  text-align: center;
}
.reco-case{
  font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
  color: #73A397; font-weight: 500;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-size: 20px;
}
.reco-thumb{
  background: var(--bg3, #F9F9F9);
  overflow: hidden;
  margin-bottom: 12px;
}
.reco-thumb img{ display:block; width:100%; height:auto; }
.reco-caption{
  font-size: 14px;
  line-height: 1.8;
}
.reco-caption .accent{ color:#73A397; font-weight: 500; }

/* 下段：説明＋写真 */
.reco-feature{
  display: grid;
  grid-template-columns: 1fr;   /* SPは縦積み */
  gap: 16px;
  align-items: start;
}
.reco-texts .reco-lead{
  font-family: "Noto Serif JP", serif; font-weight: 500;
  font-size: 20px;                /* SP小見出し */
  color: var(--text1, #222);
  margin-bottom: 6px;
}
.reco-head{
  font-family: "Noto Serif JP", serif; /* 英語見出しもSerif運用 */ font-weight: 500;
  color: var(--text1, #222);
  margin-bottom: 14px;
}
.reco-body{
  font-size: 14px;                /* SP本文 */
  color: var(--text1, #222);
  max-width: 48ch;
}
.reco-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* ピル型ボタン */
.reco-cta{ display:flex; gap:12px; margin-top:16px; flex-wrap: wrap; }
.pill{
  display:inline-block;
  padding: 10px 24px;
  border-radius: 999px;
  background: #73A397;
  color: #fff; font-weight: 500;
  text-decoration: none;
  font-size: 14px;
}
.pill:hover{ filter: brightness(1.06); }

/* ====== PC（>=768px） ====== */
@media (min-width: 768px){
  .section-reco{ padding: 100px 0; }

  .reco-cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    overflow: visible;
    padding: 0;
  }
  .reco-card{
    width: auto;
    padding: 22px;
  }
  .reco-caption{ font-size: 15px; }

  .reco-feature{
    grid-template-columns: 1.1fr 1fr; /* 左テキスト、右画像 */
    gap: 40px;
    align-items: center;
    margin-top: 100px;
  }
  .reco-texts{ order: 1; }
  .reco-photo{ order: 2; }
  .reco-head{ font-size: 30px; }
  .reco-body{ font-size: 16px; }
}
/* ===== SPレイアウト ===== */
@media (max-width: 767px){
  .reco-texts{ display: contents; }
  .reco-lead{ order: 1; } 
  .reco-photo{ 
      order: 2;
      width: 85%;
      margin: 0 auto;        
    }
  .reco-body{ order: 3; }
  .reco-cta{ order: 4; }
    .reco-cards{margin-bottom: 80px}
}


/* ===== MENU（全体） ===== */
.menu-title{color: #73A397}
.section-menu{
  background: var(--bg2, #E7ECE3);  padding: 60px 0;
}
.section-menu .section-title{ color: var(--text1); }
.menu-sub{margin: 8px 0 32px;}

/* 料金カード */
.menu-card{
  background: #fff;
  padding: 24px;
  margin-bottom: 24px;
}
.menu-lead{
  color: #222222;
  margin-bottom: 10px;
}
.menu-desc{
  font-size: 14px;
  margin-bottom: 18px;
}
.menu-note{
    font-size: 12px;
    margin-top: 24px;
}
.menu-note2{
    font-size: 12px;
    margin-bottom: 12px;
}

/* 価格表 */
.price-grid{
  display: grid;
  grid-template-columns: 1fr;     /* SP: 縦積み */
  gap: 24px;
}
.price-head{ font-weight: 500;
  color: var(--text1);
  font-weight: 700;
  margin: 10px 0 12px;
}

/* 行 */
.price-item{
  display: grid;
  grid-template-columns: auto 1fr auto; /* 名前 / ドット / 金額 */
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0,0,0,.08);
}
.price-item:first-of-type{ border-top: 2px solid rgba(0,0,0,.14); }
.price-item .name{ color:#2b2b2b; }
.price-item .yen{
  color: #73A397; font-weight: 500;
  white-space: nowrap;
}
/* ドットリーダー */
.price-item .dots{
  height: 1px;
  background-image: radial-gradient(currentColor 0.75px, transparent 1px);
  background-size: 6px 1px;
  background-repeat: repeat-x;
  opacity: .35;
}

#menu_headspa .menu-note{margin-top: 0;}

/* ===== 画像スライド（CSSのみ） ===== */
.menu-carousel{
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}
.carousel-track{
  display: flex;
  align-items: center;
  gap: 60px;
  animation: slideLoop 40s linear infinite;
  will-change: transform;
}
.menu-carousel img{
  width: auto;        /* 横幅は揃える（PC時の例） */
  height: 100%;        /* 高さは比率に応じてバラバラ */
  border-radius: 12px;
  flex: 0 0 auto;      /* スライド用に横幅を固定 */
}

/* ループアニメーション */
@keyframes slideLoop{
  from{ transform: translateX(0); }
  to{   transform: translateX(-50%); } /* 複製分まで流したら0に戻る */
}

/* ===== PC ===== */
@media (min-width: 768px){
  .section-menu{ padding: 96px 0; }

  .menu-card{ padding: 28px; }

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

  .price-grid{
    grid-template-columns: 1fr 1fr;  /* 通常/マット 2カラム */
    gap: 32px;
  }

  .menu-carousel{
    margin-top: 48px;
  }
  .menu-carousel img{
    width: 320px;                    /* PCで少し大きく */
  }
}

/* ===== SP ===== */
@media (max-width: 767px){
  .menu-card{ padding: 18px; }
  .menu-lead{ font-size: 20px; }
  .menu-desc{ font-size: 14px; }
  .menu-carousel img{ width: 50vw; }   /* SPは画面幅に合わせて大きめ */
    .carousel-track{
      animation: slideLoop 25s linear infinite;
      gap: 30px;
    }
}


/* ===== STAFF ===== */
.section-staff{
  background: var(--bg1, #F6F5F2); 
  color: var(--text1, #F6F5F2);
  padding: 60px 0;                /* ゆったりめ */
}

.staff__grid{
  display: grid;
  grid-template-columns: 1fr;     /* SPは縦積み */
  gap: 16px;
  align-items: center;
}


.staff__headline{
  margin: 0 0 18px;
}
.staff-title{color: #73A397;}

.staff__body{
  font-size: 14px;         /* SP本文 */
  max-width: 55ch;
}

.staff__media img{
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;     /* 角丸（PCで少し大きめに） */
}

/* ===== PC (>=768px) ===== */
@media (min-width: 768px){
  .section-staff{ padding: 100px 0; }
  .staff__grid{
    grid-template-columns: 1fr 1.1fr;
    gap: 48px;
  }

  .staff__headline{
    margin-bottom: 20px;
  }
  .staff__body{ font-size: 16px; }

  .staff__media img{
    border-radius: 20px;
  }
}

/* ===== 並び順（SPは タイトル→大見出し→画像→本文） ===== */
@media (max-width: 767px){
  .staff__texts{ display: contents; }
  .staff__title{ order: 1; }
  .staff__headline{ order: 2; }
  .staff__media{ 
      order: 3;
      width: 85%;
      margin: 0 auto;
    }
  .staff__body{ order: 4; }
    .staff__headline{margin-bottom: 0;}
}


/* ===== NEWS ===== */
.section-news{
  background: var(--bg2, #E7ECE3);
  padding: 72px 0;
}

.news__texts .section-title{ color: #73A397; }
.news__headline{
  margin: 8px 0 14px;
}
.news__desc p{
  font-size: 14px;
  color: var(--text1, #222);
  
}
.news__cta{ margin-top: 18px; }
.news__cta .pill{
  background: #73A397;
  color:#fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  display: inline-block;
}
.news__cta .pill:hover{ filter: brightness(1.06); }


/* PC レイアウト */
@media (min-width: 768px){
  .section-news{ padding: 96px 0; }
  .news__grid{
    grid-template-columns: 1.1fr 1fr; /* 左：テキスト広め／右：埋め込み */
    gap: 48px;
    align-items: start;
  }
  .news__desc p{ font-size: 16px; }
}


/* ===== ACCESS ===== */
.section-access{
  background: var(--bg3);
  padding: 60px 0;
}

.access__grid{
  display: grid;
  grid-template-columns: 1fr;   /* SP: 縦積み */
  gap: 24px;
  align-items: start;
}

.access__title{
    color: #73A397;
    margin-bottom: 24px;
}

/* 情報リスト（行ごとに罫線） */
.access__list{
  background: transparent;
  margin-top: 6px;
}
.access__list .row{
  display: grid;
  grid-template-columns: 110px 1fr;  /* 左: 見出し／右: 内容 */
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(0,0,0,.2);
}
.access__list .row:last-child{
  border-bottom: 1px solid rgba(0,0,0,.2);
}

.access__list dt{
  font-weight: 600;
  color: #73A397;
  letter-spacing: .18em;
}
.access__list dd{
  color: var(--text1, #222);
}
.access__list a{ color: inherit; text-decoration: none; }

/* 地図カード */
.access__map .map-frame{
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;    /* 比率固定 */
  overflow: hidden;
  background: #ddd;
}
.access__map iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ===== PC (>=768px) ===== */
@media (min-width: 768px){
  .section-access{ padding: 96px 0; }

  .access__grid{
    grid-template-columns: 1.1fr 1fr; /* 左テキスト広め、右地図 */
    gap: 48px;
    align-items: center;
  }

  .access__list .row{
    grid-template-columns: 120px 1fr;
    padding: 18px 0;
  }
}

/* ===== 並び順（SP：タイトル→地図→リスト） ===== */
@media (max-width: 767px){
  /* .access__texts の“箱”を透過して順番制御 */
  .access__texts{ display: contents; }
  .access__title{
      order: 1;
      margin-bottom: 0;
  }
  .access__map{ order: 2; }
  .access__list{ order: 3; }
}


/* ===== Footer（CONTACT付き） ===== */
.site-footer{
  background: var(--bg2, #417A7A);
  color: var(--text1, #222222);
  padding: 0;
}

/* CONTACTブロック */
.footer-contact{
  padding: 72px 0 32px;
}
.footer-contact .section-title{
  color: #73A397;
  margin-bottom: 10px;
}

.footer-lead{
  font-size: 16px;
  margin-bottom: 24px;
}

/* カード群 */
.contact-cards{
  display: grid;
  grid-template-columns: 1fr; /* SP縦積み */
  gap: 40px;
}
.contact-card{
  background: #F7F7F7;
  border-radius: 12px;
  padding: 40px 16px;
}
.contact-card__inner{
  display: grid;
  place-items: center;
  gap: 16px;
  text-align: center;
}
.contact-card__line{
  margin: 0 auto;
}

/* アイコン */
.line-icon{ width: 72px; height: 72px; display: block; }

/* 電話側の見出し */
.tel .tel-number{
  font-family: "Avenir", "Helvetica Neue", Arial, sans-serif;
  color: var(--text1);
  font-size: clamp(20px, 3.4vw, 28px);
  letter-spacing: .18em;
    text-decoration: none;
}

/* ピルボタン（アウトライン） */
.pill-outline{
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid var(--text1);
  color: var(--text1);
  background: transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .06s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.pill-outline:hover{
  background: var(--text1);
  color: var(--text2, #F6F5F2);
  transform: translateY(-1px);
}


/* コピーライト帯 */
.footer-copy{
  border-top: 1px solid rgba(0,0,0,.18);
  padding: 16px 0 24px;
  text-align: center;
}
.footer-copy small{ opacity: .9; }

@media (max-width: 767px){
 .footer-lead{font-size: 14px;}
}

/* ===== PC（>=768px） ===== */
@media (min-width: 768px){
  .footer-contact{ padding: 96px 0 40px; }
  .footer-lead{ font-size: 18px; margin-bottom: 28px; }
  .contact-card{ padding: 24px; border-radius: 14px; }
  .contact-card__inner{ gap: 18px; }
  .line-icon{ width: 64px; height: 64px; }
    .footer__grid{
        display: grid;
        grid-template-columns: 1fr 1.2fr;
        gap: 48px;
        align-items: center;
    }
    .footer__texts{
        align-self: start;
    }    
}


/* Utilities */
.sp-only{ display: inline; }

/* ---------- Responsive ---------- */
/* Tablet (>=768px) */
@media (min-width: 768px){
  .kv-inner{ grid-template-columns: 1.2fr 1fr; }
  .kv-visual{ height:360px; }
  .about-grid{ grid-template-columns: .9fr 1.1fr; align-items:start; }
  .menu-grid{ grid-template-columns: 1fr 1fr; }
  .staff-grid{ grid-template-columns: 1fr 1fr; }
  .access-grid{ grid-template-columns: 1fr 1fr; align-items:stretch; }
  .map-wrap{ height:auto; min-height: 320px; }
  .section {scroll-margin-top: 60px;}    
}

/* Desktop (>=1200px) */
@media (min-width: 1200px){
  .kv-visual{ height:420px; }
  .menu-grid{ grid-template-columns: repeat(4, 1fr); }
  .staff-grid{ grid-template-columns: repeat(2, 1fr); }
}


/* ===== MENU：ボタンリスト ===== */
.menu-list{
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* SP：2列 */
  gap: 12px;
  margin: 16px 0 28px;
}
@media (min-width: 768px){
  .menu-list{
    grid-template-columns: repeat(3, 1fr); /* PC：3列 */
    gap: 16px;
  }
  .menu-btn:nth-child(3){border-bottom: 1px solid #222222;}    
}
.menu-btn{
  display: block;
  width: 100%;
  padding: 48px 14px;
  border-top: 1px solid var(--text1);
  letter-spacing: .08em;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .06s ease;
}
.menu-list{gap: 0 12px;}
.menu-btn{border-bottom: none;}
.menu-btn:nth-child(4),.menu-btn:nth-child(5){
    border-bottom: 1px solid #222222;
}

.menu-btn:hover{ background: #73A397; color: #fff; transform: translateY(-1px); }

@media (max-width: 768px){
    .menu-btn{
      padding: 32px 14px;
    }
}

/* ページ上の .menu-card はテンプレとして隠す（モーダルでだけ表示） */
.section-menu .menu-card{ display: none !important; }

/* ===== モーダル ===== */
.modal{ position: fixed; inset: 0; display: none; z-index: 1000; }
.modal.open{ display: block; }
.modal__backdrop{ position: absolute; inset: 0; background: rgba(0,0,0,.45); }
.modal__dialog{
  position: relative; z-index: 1;
  margin: min(6vh, 48px) auto;
  width: min(960px, calc(100% - 32px));
  max-height: calc(100vh - 12vh);
  overflow: auto;
  background: #fff;
  padding: 20px;
  animation: modalIn .18s ease-out;
}
@keyframes modalIn{
  from{ opacity: .6; transform: translateY(8px) scale(.98); }
  to  { opacity: 1;  transform: translateY(0)   scale(1); }
}
.modal__close{
  position: sticky; top: 0; float: right;
  transform: translate(8px, -8px);
  border: 0; background: #fff; font-size: 28px; line-height: 1;
  width: 36px; height: 36px; border-radius: 50%;
  cursor: pointer;
}
.modal__close:hover{ filter: brightness(0.95); }

/* モーダル内だけ .menu-card を表示 */
.modal .menu-card{ display: block !important; background: transparent; box-shadow: none; padding: 0; margin: 0; }
.modal .menu-card .menu-lead{ margin-top: 0; }

/* 背面スクロール止め（既存の .no-scroll を使い回し） */
body.no-scroll{ overflow: hidden; }


/* ===== Loading overlay ===== */
.loading{
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg1, #F6F5F2);
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 1.2s ease, visibility 0s linear 1.2s;
}
.loading__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.loading__logo{
  width: clamp(120px, 18vw, 180px);
  height: auto;
}

/* フェードアウト時 */
.loading.is-hidden{
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ローダー表示中はスクロール固定 */
html.is-loading,
body.is-loading{
  height: 100%;
  overflow: hidden;
}

/* 動きを抑えたい人に配慮（任意） */
@media (prefers-reduced-motion: reduce){
  .loading__logo{ animation: none; }
}


/* =========================================
   紙芝居：sticky1/2/3 を常時重ねる（SPもOK）
   - SP: top=0（ヘッダー非固定）
   - PC: top=実測ヘッダー高（JSで --header-h 更新済）
   ========================================= */

/* デフォ（SP想定） */
:root{ --stack-top: 40px; }

/* タブレット以上：ヘッダー固定分を避ける */
@media (min-width: 768px){
  :root{ --stack-top: var(--header-h, 64px); }
}

.sticky1{
    margin-top: 610px;
}
/* ラッパー（各“紙芝居”のスクロール尺） */
.sticky1, .sticky2, .sticky3{
  position: relative;
  overflow: visible;      /* 子の sticky を邪魔しない */
  isolation: isolate;     /* 独立したスタッキングコンテキストに */
}
.sticky1{ min-height: calc((100vh - var(--stack-top)) * 2); } /* ABOUT + RECOMMEND */
.sticky2{ min-height: calc((100vh - var(--stack-top)) * 2); } /* MOVIE + MENU */

/* 3枚重ねの sticky3 は少し長く */
.sticky3{ min-height: 300vh; } /* もっと長く見せたいなら 320〜360vh */

/* ラッパー直下の section を“張り付け” */
.sticky1 > section,
.sticky2 > section,
.sticky3 > section{
  position: sticky;
  top: var(--stack-top);
/*  min-height: calc(100vh - var(--stack-top));*/
  margin: 0;
  will-change: transform;
  transform: translateZ(0);
}
/* 100dvh が使える環境ではこちらに寄せる */
/*@supports (height: 100dvh){
  .sticky1 > section,
  .sticky2 > section,
  .sticky3 > section{
    min-height: calc(100dvh - var(--stack-top));
  }
}*/

/* iOS/Safari の 100vh 揺れ対策 */
/*@supports (height: 100dvh){
  .sticky1 > section,
  .sticky2 > section,
  .sticky3 > section{
    min-height: calc(100dvh - var(--stack-top));
  }
}*/

/* 同じラッパー内で後のセクションほど前面に */
.sticky1 > section:nth-child(1){ z-index: 1; }
.sticky1 > section:nth-child(2){ z-index: 2; }

.sticky2 > section:nth-child(1){ z-index: 1; }
.sticky2 > section:nth-child(2){ z-index: 2; }

.sticky3 > section:nth-child(1){ z-index: 1; }
.sticky3 > section:nth-child(2){ z-index: 2; }
#access{z-index: 3;}

/* ラッパー同士の前後関係（後の“幕”ほど手前へ） */
.sticky1{ z-index: 10; }
.sticky2{ z-index: 20; }
.sticky3{ z-index: 30; }
footer.site-footer{ position: relative; z-index: 5; }

/* アンカーリンク時に見出しが隠れないよう調整 */
/*#about, #recommend, #movie, #menu, #staff, #news, #access{
  scroll-margin-top: calc(var(--stack-top) + 8px);
}*/

@media (max-width: 768px){
    .sticky1{margin-top: 565px;}
}

/* ===== Scroll reveal: containers fade-in ===== */
.reveal{
  --reveal-y: 10px; /* 微妙に上スライドさせたい時は数値、完全フェードなら 0 に */
  --reveal-dur: 1000ms;

  opacity: 0;
  transform: translate3d(0, var(--reveal-y), 0);
  transition:
    opacity var(--reveal-dur) ease,
    transform var(--reveal-dur) cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.is-in{
  opacity: 1;
  transform: translate3d(0,0,0);
}

/* SPは移動量を少し控えめに */
@media (max-width: 767px){
  .reveal{ --reveal-y: 6px; }
}

/* 動きを抑えたい人向け */
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
}