/* THANNECT 共通スタイル（TOP + サービス一覧 + 詳細sp-*）— HTML版から自動統合 */
/* ============================================================
   THANNECT — TOP   /  Palette: 白 × 金（warm / natural）
   ============================================================ */
:root{
  --gold:#c3a06c;--gold-light:#dcc9a4;--gold-deep:#96773c;--gold-pale:#efe6d2;
  --cream:#fbf6ee;--cream-2:#f2ece0;--cream-3:#ece2d2;
  --pink:#dbb3c0;--pink-bg:#fbf3f5;--blue:#a9c1d5;--blue-bg:#eff5f9;
  --taupe:#c0af9c;--taupe-bg:#e6ddd0;
  --brand:#c9862f;--crimson:#d23b52;--navyblue:#3b6fb5;
  --ink:#302d28;--ink-soft:#6f685c;--line:#e7ddca;--white:#fff;
  --shadow:0 18px 50px -28px rgba(120,98,52,.45);
  --shadow-soft:0 14px 40px -30px rgba(120,98,52,.55);
  --r:clamp(14px,2vw,22px);--maxw:1340px;--slant:4vw;--ease:cubic-bezier(.22,.61,.36,1);
  --f-num:'Cinzel',serif; /* 数字専用。Cormorantは字幅の揃わないオールドスタイル数字のため使わない */
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:'Noto Sans JP',sans-serif;color:var(--ink);background:var(--cream);
  line-height:1.9;-webkit-font-smoothing:antialiased;letter-spacing:.02em;overflow-x:hidden}
img{display:block;max-width:100%}
a{color:inherit;text-decoration:none}
ul{list-style:none}
.wrap{width:min(92%,var(--maxw));margin-inline:auto}

/* ---- 共通ラベル / 見出し ---- */
.eyebrow{font-family:'Cormorant Garamond',serif;font-size:clamp(.95rem,1.6vw,1.18rem);
  letter-spacing:.4em;text-transform:uppercase;color:var(--gold-deep);font-weight:600;
  display:inline-flex;align-items:center;gap:1em}
.eyebrow::before,.eyebrow::after{content:"";width:42px;height:1px;background:var(--gold-light)}
.eyebrow.solo::before{display:none}
.section-title{font-family:'Shippori Mincho',serif;font-weight:600;
  font-size:clamp(1.8rem,3.8vw,2.6rem);line-height:1.5;letter-spacing:.08em;margin:.45em 0 .25em}
.script{font-family:'Parisienne',cursive;color:var(--gold);line-height:1;font-weight:400}

/* ---- ボタン ---- */
.btn{display:inline-flex;align-items:center;gap:.8em;padding:.95em 2.1em;border-radius:999px;
  font-size:.9rem;letter-spacing:.12em;font-weight:500;transition:.45s var(--ease);white-space:nowrap}
.btn--gold{
  background:linear-gradient(120deg,#b48b50,#7d5b2d);
  color:#fff !important;
  -webkit-text-fill-color:#fff;
  text-shadow:0 1px 1px rgba(66,45,20,.24);
  box-shadow:var(--shadow-soft)
}
.btn--gold:hover{transform:translateY(-3px);box-shadow:0 22px 44px -22px rgba(164,133,63,.7)}
.btn--line{border:1px solid var(--gold);color:var(--gold-deep);background:transparent}
.btn--line:hover{background:var(--gold);color:#fff}
.btn--taupe{background:#fff;color:var(--gold-deep);border:1px solid var(--gold-light);box-shadow:var(--shadow-soft)}
.btn--taupe:hover{background:var(--gold);color:#fff;border-color:var(--gold)}
.btn .arrow{width:1.7em;height:1.7em;border-radius:50%;display:grid;place-items:center;background:rgba(255,255,255,.22);font-size:.8em}
.btn .arrow svg{width:46%;height:46%;display:block}
.btn--gold .arrow{background:#f4e8d2;color:#75552b}
.btn--line .arrow{background:rgba(191,160,95,.14)}
.circle-arrow{width:38px;height:38px;border-radius:50%;background:linear-gradient(120deg,var(--gold),var(--gold-deep));
  color:#fff;display:grid;place-items:center;flex:0 0 auto;transition:.4s var(--ease)}
.circle-arrow svg{width:14px;height:14px}
.circle-arrow.ghost{background:transparent;border:1px solid var(--gold);color:var(--gold-deep)}

/* ---- 画像プレースホルダ（images/に置けば自動表示）---- */
.ph{position:relative;overflow:hidden;border-radius:inherit;isolation:isolate;
  background:linear-gradient(135deg,var(--cream-2),var(--cream-3) 55%,#e9dcc4)}
/* 画像上に重なる共通プレースホルダー表示は使わない */
.ph::after{display:none}
.ph img{position:relative;z-index:1;width:100%;height:100%;object-fit:cover}

/* ============================================================ HEADER */
.site-header{position:fixed;inset:0 0 auto 0;z-index:60;background:transparent;
  border-bottom:1px solid transparent;transition:.4s var(--ease)}
.site-header.scrolled{background:transparent}
.header-inner{display:flex;align-items:center;justify-content:space-between;gap:1.5rem;height:66px}
.header-sub-logo{
  position:fixed;top:clamp(1rem,2.2vw,1.5rem);left:clamp(1rem,2.4vw,2rem);
  z-index:65;width:clamp(148px,18vw,260px);transition:.3s var(--ease)
}
.header-sub-logo img{width:100%;height:auto;display:block}
.header-sub-logo:hover{opacity:.82}
.logo{display:flex;align-items:center;gap:.55em}
.logo .mark{width:36px;height:36px;flex:0 0 auto;color:var(--brand)}
.logo .name{font-family:'Noto Sans JP',sans-serif;font-weight:700;font-size:1.42rem;letter-spacing:.14em;color:var(--brand)}
.nav-scrim{position:fixed;inset:0;z-index:54;background:rgba(40,36,30,.34);backdrop-filter:blur(3px);
  opacity:0;pointer-events:none;transition:opacity .5s var(--ease)}
.nav-scrim.show{opacity:1;pointer-events:auto}
.nav{position:fixed;top:0;right:0;bottom:0;z-index:55;width:min(560px,94vw);
  background:linear-gradient(160deg,#fffdf9 0%,var(--cream) 60%,var(--cream-2) 100%);
  border-left:1px solid var(--gold-light);
  display:flex;flex-direction:column;padding:clamp(1.8rem,4vw,2.6rem) clamp(1.7rem,3.4vw,2.6rem) clamp(1.6rem,3vw,2.2rem);
  transform:translateX(100%);transition:transform .55s var(--ease);overflow-y:auto;
  box-shadow:-30px 0 70px -34px rgba(120,98,52,.5)}
.nav.open{transform:translateX(0)}
/* 上部：ロゴ帯 */
.nav-head{display:flex;align-items:center;gap:16px;padding-bottom:16px;margin-bottom:0;
  border-bottom:1px solid var(--line)}
/* ロゴ（マーク＋文字）をまとめてトップへのリンクにする */
.nav-head .nav-home{display:flex;align-items:center;gap:.85rem;transition:.3s var(--ease)}
.nav-head .nav-home:hover{opacity:.72}
.nav-head .nav-mark,.nav-head .nav-brand{display:none}
.nav-head .nav-home{display:block}
.nav-head .nav-logo-image{display:block;width:min(100%,250px);height:auto}
.nav-head .nav-mark{width:42px;height:42px;color:var(--brand);flex:0 0 auto}
.nav-head .nav-mark svg{width:100%;height:100%;display:block}
.nav-head .nav-brand{display:flex;flex-direction:column;line-height:1.15}
.nav-head .nav-brand b{font-family:'Cormorant Garamond',serif;font-size:1.35rem;letter-spacing:.14em;color:var(--ink)}
.nav-head .nav-brand small{font-family:'Shippori Mincho',serif;font-size:.68rem;letter-spacing:.28em;color:var(--gold-deep)}
.nav-head .nav-script{margin-left:auto;font-family:'Parisienne',cursive;font-size:1.5rem;color:var(--gold);line-height:1}
/* 中央：メニュー行 */
.nav-list{list-style:none;display:flex;flex-direction:column;flex:1 0 auto;justify-content:flex-start;
  padding:8px 0 0;margin:0}
.nav-list>li{opacity:0;transform:translateX(22px);transition:opacity .5s var(--ease),transform .5s var(--ease)}
.nav.open .nav-list>li{opacity:1;transform:none}
.nav.open .nav-list>li:nth-child(1){transition-delay:.14s}
.nav.open .nav-list>li:nth-child(2){transition-delay:.20s}
.nav.open .nav-list>li:nth-child(3){transition-delay:.26s}
.nav.open .nav-list>li:nth-child(4){transition-delay:.32s}
.nav.open .nav-list>li:nth-child(5){transition-delay:.38s}
.nav.open .nav-list>li:nth-child(6){transition-delay:.44s}
.nav.open .nav-list>li:nth-child(7){transition-delay:.50s}
/* 7項目でも縦に収まるよう、余白は8pxルールで詰める（タップ領域は48px以上を確保） */
.nav-list>li>a,.nav-list>li>.nav-label{display:flex;align-items:center;gap:16px;padding:8px;position:relative}
.nav-list>li+li>a{border-top:1px solid var(--line)}
.nav-list>li>a .nn,.nav-list>li>.nav-label .nn{font-family:'Cormorant Garamond',serif;font-size:.92rem;font-weight:600;letter-spacing:.1em;
  color:var(--gold-light);min-width:1.6em;transition:.35s var(--ease)}
.nav-list>li>a .nt,.nav-list>li>.nav-label .nt{display:flex;flex-direction:column;line-height:1.5}
.nav-list>li>a .nt .en,.nav-list>li>.nav-label .nt .en{font-family:'Cormorant Garamond',serif;font-size:12px;letter-spacing:.22em;
  text-transform:uppercase;color:var(--gold-deep)}
.nav-list>li>a .nt .jp,.nav-list>li>.nav-label .nt .jp{font-family:'Shippori Mincho',serif;font-size:16px;letter-spacing:.05em;color:var(--ink)}
.nav-list>li>a .na{margin-left:auto;width:26px;height:26px;border-radius:50%;border:1px solid var(--gold-light);
  display:grid;place-items:center;color:var(--gold-deep);transition:.35s var(--ease)}
.nav-list>li>a .na svg{width:11px;height:11px}
.nav-list>li>a:hover .nn{color:var(--gold)}
.nav-list>li>a:hover .jp{color:var(--gold-deep)}
.nav-list>li>a:hover .na{background:var(--gold);border-color:var(--gold);color:#fff;transform:translateX(3px)}
/* サービス一覧の下：各ページへのサブリンク */
.nav-sub{list-style:none;margin:0 0 8px;padding:0 8px 0 40px;
  display:grid;grid-template-columns:1fr 1fr;gap:8px 16px}
.nav-sub a{display:flex;align-items:center;gap:.55em;padding:.02em 0;line-height:1.5;
  font-family:'Shippori Mincho',serif;font-size:.9rem;letter-spacing:.03em;color:var(--ink-soft);transition:.3s var(--ease)}
.nav-sub a::before{content:"";width:5px;height:5px;flex:0 0 auto;border-radius:50%;
  border:1px solid var(--gold);transition:.3s var(--ease)}
.nav-sub a:hover{color:var(--gold-deep);transform:translateX(2px)}
.nav-sub a:hover::before{background:var(--gold)}
/* 768px以下は列幅が足りず「パーソナルトレー/ニング」のように全項目が
   2行に割れてしまうため1列にする（行間を詰めて縦の増加を抑える） */
@media (max-width:768px){
  .nav-sub{grid-template-columns:1fr;gap:0;padding-left:32px}
  .nav-sub a{padding:4px 0;line-height:24px}
}
/* 下部：CTA + 情報 */
.nav-foot{border-top:1px solid var(--line);padding-top:16px;display:flex;flex-direction:column;gap:8px}
.nav-cta{display:flex;align-items:center;justify-content:center;gap:8px;padding:12px 16px;border-radius:999px;
  font-family:'Shippori Mincho',serif;font-size:15px;letter-spacing:.08em;transition:.35s var(--ease)}
.nav-cta svg{width:16px;height:16px;flex:0 0 auto}
/* ご予約（ゴールド塗り） */
.nav-cta--gold{background:linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);color:#fff;
  box-shadow:0 14px 30px -16px rgba(120,98,52,.7)}
.nav-cta--gold:hover{transform:translateY(-2px);box-shadow:0 18px 36px -16px rgba(120,98,52,.85)}
/* ホットペッパービューティー（アウトライン） */
.nav-cta--hpb{background:#fff;color:var(--gold-deep);border:1px solid var(--gold-light)}
.nav-cta--hpb svg{color:var(--gold)}
.nav-cta--hpb:hover{background:var(--gold-pale);border-color:var(--gold);transform:translateY(-2px)}
.nav-meta{display:flex;align-items:center;justify-content:space-between;gap:1rem}
.nav-meta .loc{font-family:'Shippori Mincho',serif;font-size:.74rem;letter-spacing:.06em;color:var(--ink-soft)}
.nav-sns{display:flex;gap:.6rem}
.nav-sns a{width:34px;height:34px;border-radius:50%;border:1px solid var(--gold-light);display:grid;place-items:center;
  color:var(--gold-deep);transition:.35s var(--ease)}
.nav-sns a svg{width:16px;height:16px}
.nav-sns a:hover{background:var(--gold);border-color:var(--gold);color:#fff}
.header-cta{display:flex;align-items:center;gap:1rem;margin-left:auto}
.header-cta .btn{padding:.7em 1.4em;font-size:.84rem;border:1px solid var(--gold);color:var(--gold-deep);background:rgba(255,255,255,.9)}
.header-cta .btn:hover{background:var(--gold);color:#fff}
.header-cta .btn .ic{width:15px;height:15px}
.menu-toggle{position:fixed;top:clamp(1.4rem,3.4vw,2.15rem);right:clamp(1.4rem,3.2vw,2.4rem);z-index:70;
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:5px;
  width:46px;height:46px;border-radius:50%;background:#fff;border:1px solid var(--gold-light);
  box-shadow:0 8px 22px -12px rgba(120,98,52,.45);cursor:pointer;padding:0;transition:.3s var(--ease)}
.menu-toggle:hover{border-color:var(--gold);background:#fffdf8}
.menu-toggle span{width:20px;height:2px;background:var(--ink);transition:.3s var(--ease)}
.menu-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.menu-toggle.open span:nth-child(2){opacity:0}
.menu-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ============================================================ HERO */
.hero{position:relative;height:min(50vw,96vh,870px);padding-top:66px;overflow:hidden;background:var(--cream)}
.hero-bg{position:absolute;inset:0;z-index:0;display:grid;grid-template-columns:1fr 1fr}
.hero-bg::after{content:"";position:absolute;inset:0;z-index:2;pointer-events:none;
  background:linear-gradient(90deg,rgba(255,253,249,0) 38%,rgba(255,253,249,.8) 42%,rgba(255,253,249,1) 44%,rgba(255,253,249,1) 56%,rgba(255,253,249,.8) 58%,rgba(255,253,249,0) 62%)}
.hero-bg-half{position:relative;height:100%}
.hero-bg-half.l{background:linear-gradient(135deg,#f4eae0,#ecdfce 70%,#e7d8c2)}
.hero-bg-half.r{background:linear-gradient(135deg,#eae8e2,#ddd7cc 70%,#d6cfc1)}
.hero-bg-half img{position:absolute;inset:0;width:100%;height:100%;object-fit:cover}
.hero-bg-half::after{content:"";position:absolute;inset:0;pointer-events:none;z-index:1}
.hero-bg-half.l::after{background:linear-gradient(155deg,rgba(30,22,13,.66) 0%,rgba(30,22,13,.34) 40%,transparent 68%)}
.hero-bg-half.r::after{background:linear-gradient(205deg,rgba(30,22,13,.66) 0%,rgba(30,22,13,.34) 40%,transparent 68%)}
/* 下端：写真の縁(白)＋金線(中央V字)の二重カーブ */
.hero-wave{position:absolute;left:0;bottom:-1px;width:100%;height:clamp(88px,9.5vw,168px);z-index:4;pointer-events:none;display:block}
.hero-wave .fill{fill:var(--cream)}
.hero-wave .line{fill:none;stroke:var(--gold);stroke-width:1.6;vector-effect:non-scaling-stroke}
/* 悩み別〜コンセプトにまたがる縦組みブランド文字 */
.band-tc{position:relative;overflow:hidden}
.vert-brand{position:absolute;left:-.18em;top:0;z-index:4;pointer-events:none;line-height:1;
  writing-mode:vertical-rl;font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:calc(clamp(9rem,14vw,15rem) - 40px);letter-spacing:0;color:#9a9a96;opacity:.3}
.hero-content{position:relative;z-index:3;height:100%;display:grid;place-items:start center;padding-top:0}
.hero-label{position:absolute;top:clamp(56px,7.2vw,120px);max-width:320px;z-index:2;text-shadow:0 1px 4px rgba(25,18,10,.65),0 4px 26px rgba(25,18,10,.55)}
.hero-label .script{font-size:clamp(2.3rem,3.6vw,3.85rem);display:block;margin-bottom:.2em;color:#f2ddae}
.hero-label p{font-family:'Shippori Mincho',serif;font-size:clamp(.95rem,1.5vw,1.3rem);color:#fff;font-weight:600;letter-spacing:.06em;line-height:2}
.hero-label--l{left:max(20px,calc(50% - 680px));text-align:left}
.hero-label--r{right:max(20px,calc(50% - 680px));text-align:right}

.hero-core{position:relative;z-index:3;width:min(42vw,710px);height:min(42vw,710px);border-radius:50%;margin-top:clamp(-28px,-1.6vw,-10px);
  background:#fff;border:1px solid rgba(195,160,108,.55);
  box-shadow:0 30px 80px -42px rgba(120,98,52,.5);
  display:flex;flex-direction:column;align-items:center;justify-content:flex-start;text-align:center;
  padding:clamp(2.2rem,3.4vw,3.8rem) clamp(1.3rem,2.3vw,2.2rem) 0}
/* ロゴをトップへのリンクに。flex アイテムとしての寸法・余白は <a> 側で持つ */
.hero-core .hex-home{display:block;width:clamp(180px,15vw,255px);flex:0 0 auto;
  margin-bottom:clamp(.7rem,1.6vw,1.7rem);transition:.35s var(--ease)}
.hero-core .hex-home:hover{opacity:.85}
.hero-core .hex{width:100%;height:auto;display:block}
.hero-core .copy-sm{font-family:'Shippori Mincho',serif;letter-spacing:.12em;color:#2e2820;font-weight:700;font-size:clamp(1.06rem,1.38vw,1.3rem);margin-bottom:clamp(.25rem,.8vw,.8rem)}
.hero-core .hero-h1{display:contents;font-weight:inherit}
.hero-core .place{font-family:'Shippori Mincho',serif;font-weight:500;font-size:clamp(.75rem,.9vw,.94rem);
  letter-spacing:.03em;color:#8a7f6d;margin-top:clamp(.5em,1vw,1em);white-space:nowrap}
.hero-core .copy-sm,.hero-core .tagline,.hero-core .sub,.hero-core .h1main,.hero-core .divider{display:block}
.hero-core .h1main{font-family:'Shippori Mincho',serif;font-weight:700;font-size:clamp(2.2rem,3.85vw,3.8rem);
  line-height:1.35;letter-spacing:.05em;margin-bottom:clamp(.3rem,1.1vw,1.15rem);white-space:nowrap}
.hero-core .tagline{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.3rem,2.1vw,1.95rem);letter-spacing:.05em;color:var(--brand);white-space:nowrap}
.hero-core .divider{width:clamp(170px,22.5vw,340px);height:1px;background:var(--gold);flex:0 0 auto;
  margin:clamp(.3rem,.7vw,.75rem) auto clamp(.35rem,.85vw,.9rem)}
.hero-core .sub{font-family:'Shippori Mincho',serif;font-size:clamp(1.24rem,1.8vw,1.66rem);color:var(--ink);font-weight:500;letter-spacing:.06em}
.hero-circles{display:flex;align-items:center;justify-content:center;gap:clamp(.7rem,1.7vw,1.7rem);
  margin-top:clamp(1.4rem,2.8vw,3rem);position:relative;z-index:5;flex:0 0 auto}
.hero-circle{width:clamp(142px,14.2vw,236px);aspect-ratio:1;border-radius:50%;background:#fff;
  box-shadow:0 16px 38px -20px rgba(120,98,52,.45);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.1em;
  transition:.45s var(--ease)}
.hero-circle .ic{width:clamp(30px,3.4vw,56px);height:clamp(30px,3.4vw,56px);margin-bottom:clamp(.35rem,.55vw,.55rem)}
.hero-circle small{font-family:'Cormorant Garamond',serif;letter-spacing:.05em;font-weight:700;font-size:clamp(.6rem,.95vw,.88rem);text-transform:uppercase;line-height:1.15}
.hero-circle b{font-family:'Shippori Mincho',serif;font-size:clamp(.92rem,1.45vw,1.34rem);font-weight:600;letter-spacing:0;color:var(--ink);line-height:1.25;margin-top:.08em}
.hero-circle.beauty{border:2px solid #efc3cd}
.hero-circle.beauty .ic,.hero-circle.beauty small,.hero-circle.beauty .dn{color:var(--crimson)}
.hero-circle.gym{border:2px solid #b9d3e8}
.hero-circle.gym .ic,.hero-circle.gym small,.hero-circle.gym .dn{color:var(--navyblue)}

.hero-cross{color:#3a3631;font-size:clamp(1.2rem,2.1vw,1.7rem);font-weight:300}

.hero-core::before{content:"";position:absolute;inset:9px;border:1px solid var(--gold);border-radius:50%;pointer-events:none;opacity:.75}
/* ============================================================ CONCERN */
.concern{padding:clamp(1.6rem,3vw,2.6rem) 0;overflow:hidden}
.concern>.wrap{width:auto;max-width:none;margin:0;padding-left:max(4vw,calc((100vw - var(--maxw))/2));position:relative}
/* 参考サイト準拠：フルブリードの大型カードスライダー（右端で見切れる） */
.concern-head{display:flex;justify-content:flex-end;margin-bottom:.6rem;padding-right:2.8vw}
.concern-next{width:52px;height:52px;border-radius:50%;display:grid;place-items:center;
  border:1px solid var(--gold-light);background:#fff;color:var(--gold-deep);cursor:pointer;
  font-size:1.7rem;line-height:1;padding:0 0 .12em;box-shadow:0 10px 24px -14px rgba(120,98,52,.5);transition:.25s var(--ease)}
.concern-next:hover{color:#fff;background:var(--gold);border-color:var(--gold)}
.concern-grid{--cgap:3.1vw;display:grid;grid-auto-flow:column;
  grid-auto-columns:25vw;gap:var(--cgap);
  overflow-x:auto;overflow-y:hidden;scroll-snap-type:x mandatory;scrollbar-width:none;padding-bottom:.4rem;padding-right:2.8vw}
.concern-grid::-webkit-scrollbar{display:none}
.concern-card{position:relative;scroll-snap-align:start;transition:.4s var(--ease);display:block;color:inherit;text-decoration:none}
.concern-card:hover .photo img{transform:scale(1.04)}
.concern-card .photo img{transition:transform .7s var(--ease)}
.concern-card .svc{display:block;font-family:'Shippori Mincho',serif;font-size:clamp(.7rem,.82vw,.86rem);
  color:var(--gold-deep);letter-spacing:.06em;margin:.3em 0 .45em;white-space:nowrap}
/* 大きな角丸写真（16:10） */
.concern-card .photo{aspect-ratio:1.62/1;border-radius:clamp(16px,1.9vw,28px);overflow:hidden;box-shadow:var(--shadow-soft);background:#fff}
.concern-card .photo::after{display:none}
.concern-card .photo img{width:100%;height:100%;object-fit:cover}
/* 左端揃えの大きな丸バッジ（写真下辺に少し重なる）＋右にタイトル/MORE */
.concern-card .foot{display:flex;align-items:flex-start;gap:clamp(.9rem,1.3vw,1.3rem)}
.concern-card .foot .ic-c{margin-top:calc(clamp(76px,6.3vw,130px)*-0.17)}
.concern-card .ic-c{width:clamp(76px,6.3vw,130px);aspect-ratio:1;border-radius:50%;flex:0 0 auto;position:relative;z-index:2;
  background:#fff;border:1.4px solid var(--gold);color:var(--gold);display:grid;place-items:center;
  box-shadow:0 8px 20px -12px rgba(150,120,60,.45)}
.concern-card .ic-c svg{width:46%;height:46%}
.concern-card .tx{padding-top:clamp(.9rem,1.4vw,1.5rem)}
.concern-card h3{font-family:'Shippori Mincho',serif;font-size:clamp(.95rem,1.1vw,1.25rem);font-weight:600;letter-spacing:.04em;line-height:1.6;white-space:nowrap}
.concern-card .more{display:inline-flex;align-items:center;gap:.55em;margin-top:.8em;
  font-family:'Cormorant Garamond',serif;font-weight:600;letter-spacing:.22em;font-size:clamp(.76rem,.95vw,.86rem);color:var(--gold-deep)}
.concern-card .more svg{width:42px;height:10px;transition:.25s var(--ease)}
.concern-card:hover .more svg{translate:5px 0}

/* ============================================================ CONCEPT（中央円＋6衛星サークルの相関図） */
.concept{padding:clamp(3.5rem,7vw,6rem) 0 clamp(6rem,11vw,10rem);background:transparent}
.concept-grid{display:grid;grid-template-columns:1.02fr .98fr;gap:clamp(2.2rem,4.5vw,5rem);align-items:center}
.concept-copy h2{font-family:'Shippori Mincho',serif;font-weight:600;color:#4a4038;font-size:clamp(1.6rem,2.5vw,2.55rem);line-height:1.75;letter-spacing:.05em;margin:.9em 0 1em}
.concept-copy p{font-family:'Shippori Mincho',serif;font-size:clamp(.85rem,1.02vw,1.05rem);line-height:2.3;color:#5c5348;letter-spacing:.04em;margin-bottom:1.6em}
.concept-cta2{margin-top:2.2rem}
.concept-photos{position:relative;padding-bottom:clamp(3rem,5vw,4.5rem)}
.concept-photos .cp{border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow)}
.concept-photos .cp img{width:100%;height:100%;object-fit:cover;display:block}
.concept-photos .cp1{width:78%;aspect-ratio:.92;margin-left:auto}
.concept-photos .cp2{position:absolute;left:0;bottom:0;width:52%;aspect-ratio:1.3;border:6px solid var(--cream)}
.concept>.wrap{width:min(92%,var(--maxw))}
.concept-lead{text-align:center;margin-bottom:clamp(1.6rem,3vw,2.4rem)}
.orbit2{position:relative;aspect-ratio:2000/1040;container-type:inline-size}
.orbit2 .links{position:absolute;inset:0;width:100%;height:100%;z-index:1}
.orbit2 .links line{stroke:#cfa96b;stroke-width:1.3}
.orbit2 .links circle{fill:#cfa96b}
/* 中央円（二重の金リング） */
.orbit2-center{position:absolute;left:51%;top:50%;translate:-50% -50%;width:35.3%;height:35.3cqw;border-radius:50%;z-index:2;
  background:radial-gradient(circle at 50% 34%,#fff,#fdf8f0 78%,#f8eeda);
  border:1.5px solid #d9bc85;box-shadow:0 30px 80px -50px rgba(150,120,60,.5);
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:3%}
.orbit2-center::before{content:"";position:absolute;inset:-1.6%;border:1px solid #e6d3ab;border-radius:50%}
.orbit2-center .en{font-family:'Cormorant Garamond',serif;color:var(--brand);letter-spacing:.3em;text-indent:.3em;font-size:clamp(1rem,1.9cqw,1.95rem);font-weight:600;margin-bottom:.45em}
.orbit2-center h2{font-family:'Shippori Mincho',serif;font-weight:600;color:#4a4038;font-size:clamp(1.3rem,3cqw,3rem);line-height:1.55;letter-spacing:.05em;white-space:nowrap}
.orbit2 .orn{display:flex;align-items:center;gap:.8em;margin:1.05em 0;color:var(--gold)}
.orbit2 .orn::before,.orbit2 .orn::after{content:"";width:clamp(26px,2.6cqw,46px);height:1px;background:var(--gold)}
.orbit2 .orn svg{width:clamp(9px,.85cqw,14px);height:auto}
.orbit2-center p{font-family:'Shippori Mincho',serif;font-size:clamp(.7rem,1.06cqw,1.12rem);line-height:2.05;color:#5c5348;letter-spacing:.04em;white-space:nowrap}
/* 衛星サークル */
.sat{position:absolute;width:10%;aspect-ratio:1;border-radius:50%;z-index:3;translate:-50% -50%;
  background:#fff;border:1.4px solid #d9bc85;box-shadow:0 12px 32px -20px rgba(150,120,60,.4);
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;gap:.2em;
  padding-bottom:clamp(20px,2.4cqw,36px);cursor:pointer;transition:transform .2s var(--ease),border-color .2s,box-shadow .25s,background .2s}
.sat:hover{transform:scale(1.06);border-color:var(--gold);box-shadow:0 18px 44px -20px rgba(150,120,60,.55);background:#fffdf8}
.sat:hover>svg{color:var(--brand)}
.sat::before{content:"";position:absolute;inset:-4.5%;border:1px solid #e6d3ab;border-radius:50%}
.sat>svg{width:38%;height:38%;color:#b98d43}
/* ボタンであることを示す金の丸矢印 */
.sat .go{position:absolute;bottom:5%;left:50%;translate:-50% 0;width:clamp(17px,1.6cqw,26px);aspect-ratio:1;border-radius:50%;
  background:linear-gradient(120deg,var(--gold),var(--gold-deep));color:#fff;display:grid;place-items:center;
  box-shadow:0 4px 10px -4px rgba(150,120,60,.5);transition:.2s var(--ease)}
.sat .go svg{width:52%;height:52%}
.sat:hover .go{scale:1.18;background:linear-gradient(120deg,var(--brand),var(--gold-deep))}
.sat b{font-family:'Cormorant Garamond',serif;font-weight:600;font-size:clamp(.62rem,1.08cqw,1.2rem);letter-spacing:.05em;color:#4a4038;line-height:1.2}
.sat i{font-style:normal;font-family:'Shippori Mincho',serif;font-size:clamp(.5rem,.74cqw,.9rem);color:#4a4038;white-space:nowrap;letter-spacing:0}
.sat-1{left:29.5%;top:12%}.sat-2{left:24.5%;top:37.3%}.sat-3{left:24.5%;top:62.6%}.sat-4{left:29.5%;top:88%}
.sat-5{left:70.5%;top:12%}.sat-6{left:75.5%;top:37.3%}.sat-7{left:75.5%;top:62.6%}.sat-8{left:70.5%;top:88%}
/* 説明文 */
.orbit2 .note{position:absolute;z-index:2;font-family:'Shippori Mincho',serif;font-size:clamp(.68rem,.92cqw,1rem);line-height:2.1;color:#3f382f;letter-spacing:.03em;margin:0;white-space:nowrap}
.note-1{left:6.8%;top:6%}.note-2{left:2.3%;top:31.5%}.note-3{left:2.3%;top:56.8%}.note-4{left:6.8%;top:82%}
.note-5{left:78.8%;top:6%}.note-6{left:83.8%;top:31.5%}.note-7{left:83.8%;top:56.8%}.note-8{left:78.8%;top:82%}
.concept-cta{position:absolute;right:0;bottom:-9%;z-index:4;margin:0}

/* ============================================================ SERVICE */
.service{padding:clamp(3.5rem,7vw,6rem) 0;background:var(--cream)}
.service>.wrap{width:min(90%,1460px)}
.service-head{text-align:center;margin-bottom:clamp(2rem,4vw,3rem)}
.service-head p{color:var(--ink);font-size:clamp(.85rem,1.1vw,.98rem);margin-top:.9em;font-family:'Shippori Mincho',serif;letter-spacing:.04em}
.service-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1rem,1.6vw,1.5rem)}
.service-card{position:relative;background:#fff;border:1px solid var(--gold-light);border-radius:14px;box-shadow:var(--shadow-soft);transition:.5s var(--ease);
  padding:clamp(.8rem,1.2vw,1.1rem);padding-bottom:clamp(2.8rem,4.2vw,3.6rem)}
.service-card:hover{transform:translateY(-6px)}
.service-card .ph{aspect-ratio:1.86/1;border-radius:10px}
.service-card .body{padding:clamp(1rem,1.7vw,1.5rem) .3rem 0;display:flex;align-items:flex-start;gap:clamp(.9rem,1.5vw,1.3rem)}
.service-card .ic-c{width:clamp(64px,6vw,86px);height:clamp(64px,6vw,86px);flex:0 0 auto;border-radius:50%;border:1.3px solid var(--gold);display:grid;place-items:center;color:#b98d43}
.service-card .ic-c svg{width:44%;height:44%}
.service-card .tag{display:flex;align-items:baseline;gap:.8em;white-space:nowrap}
.service-card .tag .en{font-family:'Cormorant Garamond',serif;font-size:clamp(1.1rem,1.6vw,1.45rem);letter-spacing:.08em;color:var(--brand);font-weight:600;text-transform:uppercase}
.service-card .tag .jp{font-family:'Shippori Mincho',serif;font-size:clamp(.82rem,1.1vw,1rem);color:var(--ink);letter-spacing:.05em;padding-left:.8em;border-left:1px solid var(--gold-light)}
.service-card p{font-family:'Shippori Mincho',serif;font-size:clamp(.82rem,1.1vw,.95rem);color:var(--ink);margin-top:.55em}
.service-card .more{position:absolute;right:clamp(1.1rem,1.8vw,1.5rem);bottom:clamp(.9rem,1.5vw,1.3rem);
  display:inline-flex;align-items:center;gap:.6em;color:var(--ink);font-size:clamp(.82rem,1.1vw,.95rem);letter-spacing:.08em;font-family:'Shippori Mincho',serif}
.service-card .more .circle-arrow{width:26px;height:26px}
.service-card .more .circle-arrow svg{width:12px;height:12px}

/* ============================================================ VOICE */
/* 斜めセクション切替 */
.slant-gold{position:absolute;top:0;left:0;width:100%;height:var(--slant);pointer-events:none;z-index:4}
.slant-gold svg{display:block;width:100%;height:100%;overflow:visible}
.slant-gold line{stroke:var(--gold);stroke-width:1.3;opacity:.55}
.voice{padding:calc(clamp(3.2rem,5.5vw,5rem) + var(--slant)) 0 calc(clamp(3.5rem,7vw,6rem) + var(--slant));text-align:center;position:relative;overflow:hidden;background:#f3ead9;margin-top:calc(var(--slant)*-1);clip-path:polygon(0 var(--slant),100% 0,100% 100%,0 100%)}
.vert-voice{position:absolute;right:-.11em;top:0;z-index:0;pointer-events:none;line-height:1;
  writing-mode:vertical-rl;font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:calc(clamp(9rem,14vw,15rem) - 40px);letter-spacing:0;color:#9a9a96;opacity:.3}
.voice>.wrap{position:relative;z-index:1}
.voice-head p{color:var(--ink-soft);font-size:.9rem;margin-top:.7em}
.voice-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2vw,1.5rem);text-align:left}
.voice-card{background:#fff;border:1px solid var(--gold-light);border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-soft);display:flex;flex-direction:column;transition:.5s var(--ease)}
.voice-card:hover{transform:translateY(-5px)}
.vc-head{display:flex;align-items:center;gap:.8em;padding:1.1rem 1.2rem}
.vc-head .ic{width:42px;height:42px;border-radius:50%;border:1px solid var(--gold-light);display:grid;place-items:center;color:var(--gold);flex:0 0 auto}
.vc-head .ic svg{width:22px;height:22px}
.vc-head .who b{font-family:'Shippori Mincho',serif;font-size:.98rem;letter-spacing:.03em}
.vc-head .who span{display:block;font-size:.72rem;color:var(--ink-soft)}
.ba{display:grid;grid-template-columns:1fr 1fr;gap:0;position:relative;padding:0 1.2rem}
.ba .shot{position:relative}
.ba .ph{aspect-ratio:1;border-radius:10px}
.ba .shot.b .ph{border-radius:10px 0 0 10px}
.ba .shot.a .ph{border-radius:0 10px 10px 0}
.ba .badge{position:absolute;top:8px;font-family:'Cormorant Garamond',serif;font-size:.62rem;letter-spacing:.14em;padding:.2em .7em;border-radius:999px;color:#fff;z-index:2}
.ba .badge.b{left:8px;background:rgba(64,60,52,.78)}
.ba .badge.a{left:8px;background:var(--gold)}
.ba .mid{position:absolute;left:50%;top:50%;translate:-50% -50%;z-index:3;width:30px;height:30px;border-radius:50%;background:#fff;border:1px solid var(--gold-light);display:grid;place-items:center;color:var(--gold-deep);box-shadow:var(--shadow-soft)}
.ba .mid svg{width:13px;height:13px}
.vc-body{padding:1.1rem 1.2rem 1.4rem;display:flex;flex-direction:column;gap:.7em;flex:1}
.vc-title{font-family:'Shippori Mincho',serif;font-size:1rem;color:var(--gold-deep);letter-spacing:.03em;display:flex;align-items:center;gap:.4em}
.metrics{display:flex;gap:.4em}
.metric{flex:1;min-width:0;background:var(--cream);border-radius:10px;padding:.6em .25em;text-align:center}
.metric span{display:block;font-size:.6rem;color:var(--ink-soft)}
.metric b{font-family:var(--f-num);font-size:.96rem;color:var(--gold-deep);letter-spacing:.01em}
.comment{font-size:.77rem;color:var(--ink-soft);line-height:1.85;flex:1;position:relative;padding-left:1.4em}
.comment::before{content:"“";position:absolute;left:0;top:-.1em;font-family:'Cormorant Garamond',serif;font-size:1.6em;color:var(--gold-light);line-height:1}
.voice-note{font-size:.68rem;color:var(--ink-soft);opacity:.7;margin-top:1.4rem}
/* 2026-08-05 社長指示: お客様の声→詳細ページ(/voice)への導線。.column-more と同じ配置 */
.voice-more{margin-top:clamp(1.4rem,3vw,2rem);text-align:right}

/* ============================================================ CONSULT */
.consult{padding:calc(clamp(1.6rem,3vw,2.6rem) + var(--slant)) 0 calc(clamp(3.5rem,7vw,6rem) + var(--slant));background:var(--cream);position:relative;overflow:hidden;margin-top:calc(var(--slant)*-1);clip-path:polygon(0 0,100% var(--slant),100% 100%,0 100%)}
.vert-health{position:absolute;left:-.18em;top:0;z-index:0;pointer-events:none;line-height:1;
  writing-mode:vertical-rl;font-family:'Cormorant Garamond',serif;font-weight:600;
  font-size:calc(clamp(9rem,14vw,15rem) - 40px);letter-spacing:0;color:#9a9a96;opacity:.3}
.consult>.wrap{position:relative;z-index:1}
.consult-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:clamp(1.6rem,3vw,3rem);align-items:center}
.consult-copy h2{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.55rem,3vw,2.15rem);line-height:1.45;letter-spacing:.04em;margin:.3em 0 .3em}
.consult-copy .h2sub{font-family:'Shippori Mincho',serif;font-size:clamp(1rem,1.8vw,1.18rem);color:var(--ink);font-weight:500;letter-spacing:.05em;margin-bottom:.9em}
.consult-copy>p{font-size:.86rem;color:var(--ink-soft);max-width:52ch}
.consult-sub{font-family:'Shippori Mincho',serif;font-size:.95rem;color:var(--gold-deep);letter-spacing:.1em;margin:1.6rem 0 .9rem;display:flex;align-items:center;gap:.7em;justify-content:center}
.consult-sub::before,.consult-sub::after{content:"";width:30px;height:1px;background:var(--gold-light)}
.consult-icons{display:grid;grid-template-columns:repeat(4,1fr);gap:.6rem}
.consult-icons .ci{text-align:center;display:flex;flex-direction:column;gap:.6em;align-items:center;padding:.4rem}
.consult-icons .ci .ic{width:48px;height:48px;border-radius:50%;border:1px solid var(--gold-light);display:grid;place-items:center;color:var(--gold);background:rgba(255,255,255,.6)}
.consult-icons .ci .ic svg{width:26px;height:26px}
.consult-icons .ci span{font-size:.7rem;color:var(--ink-soft);line-height:1.55}
.consult-tags{display:flex;flex-wrap:wrap;gap:.5em;margin:1rem 0 1.4rem}
.consult-tags span{font-size:.74rem;background:#fff;border:1px solid var(--line);border-radius:999px;padding:.4em 1.1em;color:var(--ink-soft)}
.consult-card-cta{background:var(--taupe-bg);border-radius:var(--r);padding:1.1rem 1.4rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap}
.consult-card-cta .lft{display:flex;align-items:center;gap:.9rem}
.consult-card-cta .ic{width:44px;height:44px;flex:0 0 auto;border-radius:12px;background:#fff;display:grid;place-items:center;color:var(--taupe)}
.consult-card-cta p{font-family:'Shippori Mincho',serif;font-size:.98rem;letter-spacing:.03em}
.consult-card-cta small{display:block;font-size:.72rem;color:var(--ink-soft);font-family:'Noto Sans JP'}
.consult-visual{position:relative;display:flex;flex-direction:column;gap:1rem}
.consult-visual .ph{border-radius:var(--r);box-shadow:var(--shadow)}
.consult-visual .ph1{aspect-ratio:4/3}
.consult-visual .ph2{aspect-ratio:16/7.5;width:82%}
.consult-float{position:absolute;right:-10px;top:52%;translate:0 -50%;width:clamp(130px,16vw,168px);aspect-ratio:1;border-radius:50%;z-index:2;
  background:linear-gradient(140deg,rgba(195,160,108,.97),rgba(150,119,60,.97));color:#fff;
  display:flex;flex-direction:column;align-items:center;justify-content:center;text-align:center;padding:1rem;box-shadow:var(--shadow);backdrop-filter:blur(2px)}
.consult-float b{font-family:'Shippori Mincho',serif;font-size:.86rem;line-height:1.6;letter-spacing:.04em}
.consult .wrap+.wrap{margin-top:clamp(1.6rem,3vw,2.4rem)}

/* ============================================================ COLUMN */
.column{padding:calc(clamp(3.5rem,7vw,6rem) + var(--slant)) 0 clamp(3.5rem,7vw,6rem);text-align:center;background:#f3ead9;position:relative;margin-top:calc(var(--slant)*-1);clip-path:polygon(0 var(--slant),100% 0,100% 100%,0 100%)}
.column-head p{color:var(--ink-soft);font-size:.9rem;margin-top:.5em}
.column-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1rem,2.2vw,1.7rem);margin-top:clamp(2rem,4vw,3rem);text-align:left}
.column-card{position:relative;border-radius:var(--r);overflow:hidden;box-shadow:var(--shadow-soft);background:#fff;border:1px solid var(--gold-light);transition:.5s var(--ease)}
.column-card:hover{transform:translateY(-6px)}
.column-card .ph{position:relative;aspect-ratio:16/9;overflow:hidden;margin:1px 1px 0;border-radius:calc(var(--r) - 1px) calc(var(--r) - 1px) 0 0;background:linear-gradient(135deg,#efe7d6,#e2d5bb)}
.column-card .ph img{width:100%;height:100%;object-fit:cover;transition:transform .8s var(--ease)}
.column-card:hover .ph img{transform:scale(1.06)}
.column-card .cat{align-self:flex-start;font-family:'Cormorant Garamond',serif;letter-spacing:.14em;font-size:.66rem;
  color:var(--gold-deep);border:1px solid var(--gold);background:none;padding:.3em 1em;border-radius:999px;text-transform:uppercase}
.column-card .body{padding:1.15rem 1.3rem 1.2rem;display:flex;flex-direction:column;gap:.5em;text-align:left}
.column-card h3{font-family:'Shippori Mincho',serif;font-size:1.04rem;font-weight:600;line-height:1.6;color:var(--ink)}
.column-card .ex{font-size:.76rem;color:var(--ink-soft);line-height:1.75}
.column-card .meta{display:flex;align-items:center;justify-content:space-between;margin-top:.35em}
.column-card time{font-family:var(--f-num);color:var(--gold-deep);font-size:.78rem;letter-spacing:.05em}
.column-more{margin-top:clamp(2rem,4vw,2.6rem);text-align:right}

/* ============================================================ FOOTER
   余白・間隔はすべて8pxの倍数。ブレークポイントは 1200 / 1024 / 768 の3段階。
   最下部の帯（法務リンク＋コピーライト）は .footer-bottom にまとめている。
   ------------------------------------------------------------ */
.site-footer{background:#fff;padding:72px 0 0;border-top:1px solid var(--line)}

/* ブランド ＋ 4つのリンク列。Service は8件を2列で出すため広くとる */
.footer-grid{
  display:grid;
  /* Service は「パーソナルトレーニング」が2列でも折り返さない幅を確保する */
  grid-template-columns:minmax(0,1.25fr) minmax(0,1fr) minmax(0,2fr) minmax(0,1fr) minmax(0,1.15fr);
  gap:40px 32px;padding-bottom:64px;
}
.footer-brand .logo{display:block;margin-bottom:8px}
.footer-brand .logo .mark,.footer-brand .logo .name{display:none}
.footer-brand .logo .full-logo{display:block;width:min(100%,260px);height:auto}
.footer-brand .logo .name{font-size:26px}
.footer-brand .tagline{
  font-family:'Cormorant Garamond',serif;letter-spacing:.18em;color:var(--gold-deep);
  font-size:13px;line-height:24px;margin:0 0 16px;white-space:nowrap;
}
/* text-wrap:pretty …最終行に1〜2文字だけ残る折り返しを避ける */
.footer-brand p{font-size:13px;line-height:24px;color:var(--ink-soft);max-width:32ch;text-wrap:pretty}
.footer-sns{display:flex;gap:8px;margin-top:24px}
.footer-sns a{
  width:40px;height:40px;border-radius:50%;border:1px solid var(--line);
  display:grid;place-items:center;color:var(--gold-deep);transition:.4s var(--ease);
}
.footer-sns a:hover{background:var(--gold);color:#fff;border-color:var(--gold)}

/* 列見出し：英語＋日本語を縦に重ね、金色の下線で列の始まりを明確にする */
.footer-col h4{
  display:block;margin-bottom:24px;padding-bottom:8px;
  border-bottom:1px solid var(--line);font-weight:600;
}
.footer-col h4 .en{
  display:block;font-family:'Cormorant Garamond',serif;letter-spacing:.2em;
  color:var(--gold-deep);font-size:16px;line-height:24px;
}
.footer-col h4 .jp{
  display:block;font-size:11px;line-height:16px;letter-spacing:.08em;
  color:var(--taupe);font-weight:400;
}
.footer-col ul{display:flex;flex-direction:column;gap:8px}
/* Service だけ2列（縦に読ませるため column 方向に流す） */
.footer-col--service ul{
  display:grid;grid-auto-flow:column;grid-template-rows:repeat(4,auto);
  grid-template-columns:repeat(2,minmax(0,1fr));column-gap:24px;row-gap:8px;
}
.footer-col a{
  display:inline-block;font-size:13px;line-height:24px;
  color:var(--ink-soft);transition:.3s var(--ease);
}
.footer-col a:hover{color:var(--gold-deep);padding-left:8px}

/* ---- 最下部の帯 ---- */
.footer-bottom{
  border-top:1px solid var(--line);background:var(--cream);padding:16px 0;
}
.footer-bottom-inner{
  display:flex;align-items:center;justify-content:space-between;gap:8px 32px;
}
.footer-legal{display:flex;flex-wrap:wrap;gap:8px 24px;align-items:center}
.footer-legal a{
  font-size:12px;line-height:24px;letter-spacing:.04em;
  color:var(--ink-soft);transition:.3s var(--ease);
}
.footer-legal a:hover{color:var(--gold-deep)}
.footer-copy{
  font-family:'Cormorant Garamond',serif;letter-spacing:.16em;
  color:var(--taupe);font-size:12px;line-height:24px;white-space:nowrap;
}

/* ============================================================ REVEAL / RESPONSIVE */
.reveal{opacity:0;transform:translateY(26px);transition:.9s var(--ease)}
.reveal.in{opacity:1;transform:none}
@media(prefers-reduced-motion:reduce){.reveal{opacity:1;transform:none;transition:none}html{scroll-behavior:auto}}

@media(max-width:1024px){
  .hero-label{max-width:170px}
  .hero-label .script{font-size:1.7rem}
  .hero-label p{font-size:.82rem}
  .concern-grid{grid-auto-columns:56vw}
  
  .consult-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
  .header-cta .btn span{display:none}
  .hero{height:auto;min-height:540px;padding-bottom:110px}
  .hero-label{display:none}
  .hero-bg{grid-template-columns:1fr 1fr}
  .hero-core{width:min(86vw,440px);height:min(86vw,440px);justify-content:center;padding:1.6rem}
  .hero-circles{margin-top:.9rem}
  .hero-wave{height:70px}
  .orbit2{aspect-ratio:auto;display:flex;flex-direction:column;align-items:center;gap:1.1rem}
  .orbit2 .links{display:none}
  .orbit2-center{position:static;translate:none;width:min(88vw,430px);aspect-ratio:1;padding:2rem}
  .sat{position:static;translate:none;width:150px}
  .sat b{font-size:.8rem}.sat i{font-size:.72rem}
  .orbit2 .note{position:static;text-align:center;font-size:.8rem;margin-bottom:.6rem}
  .concept-cta{position:static;text-align:center;margin-top:1rem}
  .service-grid{grid-template-columns:1fr}
  .voice-grid{grid-template-columns:1fr;max-width:600px;margin-inline:auto}
  .column-grid{grid-template-columns:1fr;max-width:600px;margin-inline:auto}
  .consult-icons{grid-template-columns:repeat(2,1fr)}
}
/* ============================================================ FLOATING CTA */
.fab{position:fixed;right:clamp(1rem,2.4vw,2rem);bottom:clamp(1rem,2.4vw,2rem);z-index:50;
  display:flex;flex-direction:column;align-items:stretch;gap:.7rem;
  opacity:0;transform:translateY(18px);pointer-events:none;transition:opacity .5s var(--ease),transform .5s var(--ease)}
.fab.show{opacity:1;transform:none;pointer-events:auto}
.fab.hide{opacity:0;transform:translateY(18px);pointer-events:none}
.fab-line{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;
  background:#fff;border:1px solid var(--gold-light);color:#06c755;
  box-shadow:0 14px 30px -14px rgba(120,98,52,.55);transition:.35s var(--ease)}
.fab-line svg{width:28px;height:28px}
.fab-line:hover{transform:translateY(-3px);border-color:#06c755}
.fab-main{position:relative;display:flex;align-items:center;gap:.7em;padding:.95em 1.45em .95em 1.15em;border-radius:999px;min-width:300px;border:1px solid transparent;
  background:linear-gradient(135deg,var(--gold) 0%,var(--gold-deep) 100%);color:#fff;
  font-family:'Shippori Mincho',serif;font-size:.96rem;letter-spacing:.06em;white-space:nowrap;
  box-shadow:0 18px 38px -16px rgba(120,98,52,.75);transition:.4s var(--ease)}
.fab-main .fab-ic{width:34px;height:34px;flex:0 0 auto;border-radius:50%;background:rgba(255,255,255,.22);
  display:grid;place-items:center}
.fab-main .fab-ic svg{width:18px;height:18px}
.fab-main .fab-tx{display:flex;flex-direction:column;line-height:1.15;align-items:flex-start}
.fab-main .fab-tx b{font-weight:600}
.fab-main .fab-tx small{font-family:'Cormorant Garamond',serif;font-size:.68rem;letter-spacing:.24em;
  text-transform:uppercase;opacity:.82}
.fab-main::after{content:"";position:absolute;inset:-1px;border-radius:inherit;
  border:1px solid rgba(255,255,255,.35);pointer-events:none}
.fab-main:hover{transform:translateY(-3px);box-shadow:0 22px 44px -16px rgba(120,98,52,.85)}
.fab-main--white{background:#fff;color:var(--gold-deep);border:1px solid var(--gold-light);box-shadow:0 14px 30px -14px rgba(120,98,52,.5)}
.fab-main--white .fab-ic{background:rgba(195,160,108,.14)}
.fab-main--white::after{border-color:rgba(195,160,108,.3)}
@media(max-width:600px){
  .fab{left:0!important;right:0!important;bottom:0!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0!important}
  .fab-main .fab-tx small{display:none}
  .fab-main{min-width:0;width:100%;justify-content:center;gap:.35em;padding:.65em .35em;font-size:.7rem;line-height:1.2;letter-spacing:.02em;white-space:normal;border-radius:0}
  .fab-main .fab-ic{width:25px;height:25px}
  .fab-main .fab-ic svg{width:14px;height:14px}
  .fab-main .fab-tx{align-items:center;text-align:center}
  .fab-line{width:50px;height:50px}.fab-line svg{width:25px;height:25px}
}
@media(min-width:601px) and (max-width:768px){
  .fab{left:0!important;right:0!important;bottom:0!important;display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:0!important}
  .fab-main{min-width:0;width:100%;justify-content:center;padding:.8em .65em;font-size:.8rem;letter-spacing:.02em;gap:.45em;border-radius:0}
  .fab-main .fab-ic{width:30px;height:30px}
  .fab-main .fab-ic svg{width:16px;height:16px}
  .fab-main .fab-tx{align-items:center}
  .fab-main .fab-tx small{display:none}
}
@media(max-width:460px){
  .concern-grid{grid-auto-columns:76vw}
  .hero-core{width:min(88vw,360px);height:min(88vw,360px);padding:1.4rem}
  .hero-core .h1main{font-size:1.6rem}
  .consult-card-cta{flex-direction:column;align-items:flex-start}
}
@media(max-width:768px){
  .consult-card-cta > a{margin-left:auto}
}

/* ============================================================ SERVICE LIST PAGE */
/* ============================================================ SERVICE PAGE */
.page-hero{padding:clamp(7rem,11vw,9.5rem) 0 clamp(2rem,3.6vw,3rem);text-align:center;background:linear-gradient(180deg,#fffdf9,var(--cream));position:relative}
.page-hero .script{font-size:clamp(2.4rem,5vw,3.6rem);display:block;margin-bottom:.06em}
.page-hero .ph-title{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.7rem,3.4vw,2.5rem);letter-spacing:.14em;color:var(--ink)}
.page-hero .ph-lead{font-family:'Shippori Mincho',serif;font-size:clamp(.86rem,1.15vw,1rem);color:var(--ink-soft);line-height:2.1;margin-top:1em;letter-spacing:.04em}
.crumb{display:flex;align-items:center;justify-content:center;gap:.7em;margin-top:1.5em;font-family:'Cormorant Garamond',serif;letter-spacing:.14em;font-size:.78rem;color:var(--gold-deep);text-transform:uppercase}
.crumb a{color:var(--gold-deep)}.crumb a:hover{color:var(--gold)}
.crumb span{color:var(--gold-light)}
.service-intro{text-align:center;max-width:60ch;margin:0 auto clamp(2rem,4vw,3rem);font-family:'Shippori Mincho',serif;color:var(--ink-soft);font-size:clamp(.85rem,1.1vw,1rem);line-height:2.2;letter-spacing:.04em}
.service-card{color:inherit;display:block}
.service-card .body>div{min-width:0}
.service-card .more .circle-arrow{background:linear-gradient(120deg,var(--gold),var(--gold-deep));color:#fff}
.svc-cta{text-align:center;padding:clamp(3rem,6vw,5rem) 0 clamp(3.5rem,7vw,6rem);background:var(--cream)}
.svc-cta .script{font-size:clamp(1.8rem,3.6vw,2.6rem);display:block;margin-bottom:.05em}
.svc-cta h2{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.4rem,2.6vw,2rem);letter-spacing:.06em;margin:.15em 0 .4em}
.svc-cta .lead{font-family:'Shippori Mincho',serif;color:var(--ink-soft);font-size:clamp(.85rem,1.1vw,1rem);letter-spacing:.04em}
.svc-cta-btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap;margin-top:2rem}
@media(max-width:680px){.service-grid{grid-template-columns:1fr}}

/* ============================================================ SERVICE DETAIL (sp-*) */
/* ============ SERVICE PAGE (stretch / comp準拠) ============ */
body{background:#fbf6ee}
.sp-gold{background:linear-gradient(180deg,#cfa964,#96773c);-webkit-background-clip:text;background-clip:text;color:transparent}

/* --- FV --- */
.sp-fv{position:relative;height:min(38vw,560px);min-height:640px;overflow:hidden;
  background:#fbf6ee}
.sp-fv .bgph{position:absolute;top:0;right:0;bottom:0;width:70%}
.sp-fv .bgph::after{content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(75deg,#fbf6ee 16%,rgba(251,246,238,.55) 32%,transparent 55%)}
.sp-fv .bgph img{width:100%;height:100%;object-fit:cover;object-position:50% 0;
  -webkit-mask-image:linear-gradient(75deg,transparent 18%,#000 34%);mask-image:linear-gradient(75deg,transparent 18%,#000 34%)}
.sp-fv .fvtx{position:absolute;left:0;right:0;top:50%;translate:0 -50%;z-index:20;opacity:1!important;isolation:isolate}
.sp-fv .script{font-family:'Parisienne',cursive;font-size:clamp(2.3rem,4.1vw,3.9rem);display:block;margin-bottom:.4em;
  background:linear-gradient(120deg,#d3ab61,#a5824a);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-fv .lead-sm{font-family:'Shippori Mincho',serif;font-weight:700;color:#302d28;letter-spacing:.2em;font-size:clamp(1rem,1.7vw,1.7rem);-webkit-text-stroke:.25px currentColor}
.sp-fv .fvrule{display:block;width:clamp(240px,26vw,420px);height:1px;background:var(--gold);margin:.9em 0;position:relative}
.sp-fv .fvrule .dia{position:absolute;left:50%;top:50%;translate:-50% -50%;width:15px;height:15px;background:#fbf6ee}
.sp-fv h1{font-family:'Shippori Mincho',serif;font-weight:700;font-size:clamp(2rem,5.7vw,5.4rem);letter-spacing:.16em;color:#302d28;line-height:1.2;-webkit-text-stroke:.3px currentColor}
.sp-service-crumb{justify-content:flex-start;flex-wrap:wrap;gap:.55em;margin-top:1.15em;
  font-size:clamp(.68rem,.9vw,.8rem);letter-spacing:.08em;text-transform:uppercase}
.sp-service-crumb a{color:var(--gold-deep)}
.sp-service-crumb span{color:var(--gold-deep)}
.sp-fv .leaf-l{display:none}
.sp-fv .leaf-r{position:absolute;right:1%;bottom:9%;width:clamp(76px,8.6vw,126px);opacity:.9;z-index:4;transform:scaleX(-1) rotate(-12deg)}

/* --- 見出し共通 --- */
.sp-head{text-align:center;margin-bottom:clamp(3.2rem,5.5vw,5rem);position:relative}
.sp-head h2{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.9rem,3.4vw,3.2rem);letter-spacing:.24em;text-indent:.24em;color:#4a4038;margin-top:.25em}
.sp-head h2 em{font-style:normal;background:linear-gradient(180deg,#d0aa64,#96773c);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-head .rule{display:block;width:min(440px,64%);height:1px;background:linear-gradient(90deg,transparent,#c9a25e 18%,#c9a25e 82%,transparent);margin:1.1em auto .2em;position:relative}
.sp-head .rule .dia{position:absolute;left:50%;top:50%;translate:-50% -50%;width:14px;height:14px;background:#fbf6ee;padding:0 4px;box-sizing:content-box}
.sp-head .lead{margin-top:1.2em;font-family:'Shippori Mincho',serif;font-size:clamp(.85rem,1.05vw,1.02rem);color:#4a4038;line-height:2.15;letter-spacing:.06em}
.sp-head .b1,.sp-head .b2{display:none}
.sp-head .b1{left:clamp(0px,9vw,190px)}
.sp-head .b2{right:clamp(0px,9vw,190px)}


/* --- ドライヘッドスパ 料金（plans 型・2カード） --- */
.hp-price{padding:clamp(3.5rem,7vw,6rem) 0;background:#f7f1e6;position:relative;overflow:hidden}
.hp-price .bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;object-position:left bottom;z-index:0}
.hp-price .wrap{position:relative;z-index:1}
.hp-price-head{text-align:center;margin-bottom:clamp(2.2rem,4vw,3.2rem)}
.hp-price-head .en{display:block;font-family:'Cormorant Garamond',serif;font-weight:600;letter-spacing:.4em;
  color:#8a7a60;font-size:clamp(.9rem,1.1vw,1.05rem);text-transform:uppercase}
.hp-price-head .en::after{content:"";display:block;width:44px;height:1px;background:#c9a25e;margin:.7em auto 0}
.hp-price-head h2{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(2rem,3.6vw,3.2rem);
  letter-spacing:.2em;text-indent:.2em;color:#4a4038;margin-top:.4em}
.hp-price-head .lead{margin-top:1em;font-family:'Shippori Mincho',serif;font-size:clamp(.88rem,1.05vw,1.02rem);
  color:#4a4038;line-height:2.1;letter-spacing:.05em}
.hp-price-grid{display:grid;grid-template-columns:1fr 1.05fr 1.05fr;gap:clamp(1.4rem,2.6vw,2.4rem);align-items:stretch}
.hp-price-side{align-self:start;padding-top:clamp(1rem,2vw,2rem);padding-right:clamp(0rem,1.5vw,1.5rem)}
.hp-price-side h3{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.25rem,1.8vw,1.7rem);
  color:#4a4038;letter-spacing:.08em;line-height:1.9}
.hp-price-side h3 .nw{display:inline-block}
.hp-price-side .srule{display:block;width:44px;height:1px;background:#c9a25e;margin:1.2em 0}
.hp-price-side p{font-family:'Shippori Mincho',serif;color:#5c5348;font-size:clamp(.88rem,1.02vw,.98rem);
  line-height:2.15;letter-spacing:.04em}
.hp-price-side p + p{margin-top:1em}
.hp-plan{background:#fffdf9;border:1px solid #ddc492;border-radius:clamp(16px,1.8vw,24px);box-shadow:var(--shadow-soft);
  text-align:center;padding:clamp(2rem,3vw,2.8rem) clamp(1.3rem,2.2vw,2rem) clamp(1.6rem,2.4vw,2.2rem);
  display:flex;flex-direction:column;align-items:center}
.hp-plan .ic{width:clamp(84px,8.5vw,110px);aspect-ratio:1;border-radius:50%;background:#efe6d6;
  display:grid;place-items:center;margin-bottom:1.2rem}
.hp-plan .ic svg{width:62%;height:62%}
.hp-plan:not(.long) .ic svg .spk{display:none}
.hp-plan .ttl{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.15rem,1.5vw,1.45rem);
  color:#4a4038;letter-spacing:.08em}
.hp-plan .prule{display:block;width:78%;height:1px;background:linear-gradient(90deg,transparent,#cbb384 20%,#cbb384 80%,transparent);margin:.9em 0}
.hp-plan .prule.b{margin-top:auto}
.hp-plan .desc{font-family:'Shippori Mincho',serif;color:#5c5348;font-size:clamp(.85rem,.98vw,.94rem);
  line-height:2;letter-spacing:.03em}
.hp-plan .badge{display:inline-block;margin-top:1.2em;background:#efe6d6;color:#5c5348;border-radius:6px;
  font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(.78rem,.9vw,.86rem);
  letter-spacing:.12em;padding:.45em 1.2em}
.hp-plan .min{display:block;margin-top:.7em;font-family:var(--f-num);color:#4a4038;
  font-size:clamp(1.5rem,2vw,1.9rem);letter-spacing:.04em}
.hp-plan .min small{font-size:.55em;margin-left:.1em}
.hp-plan .yen{display:block;font-family:var(--f-num);color:#4a4038;font-size:clamp(2.2rem,3.2vw,3rem);
  line-height:1.25;letter-spacing:.02em}
.hp-plan .yen small{font-size:.42em}
.hp-plan .yen small em{font-style:normal;font-size:.82em}
.hp-plan .note{font-family:'Shippori Mincho',serif;color:#6f685c;font-size:clamp(.76rem,.88vw,.84rem);
  letter-spacing:.03em;margin-top:1em}
.hp-price-note{margin-top:clamp(2rem,3.4vw,2.8rem);background:rgba(230,221,208,.55);border-radius:14px;
  display:flex;align-items:center;justify-content:center;gap:.9em;
  padding:clamp(1.1rem,1.8vw,1.5rem) 1.5rem}
.hp-price-note .lf{width:26px;flex:0 0 auto}
.hp-price-note p{font-family:'Shippori Mincho',serif;font-weight:600;color:#4a4038;
  font-size:clamp(.92rem,1.15vw,1.1rem);letter-spacing:.06em}
@media(max-width:1024px){
  .hp-price-grid{grid-template-columns:1fr 1fr}
  .hp-price-side{grid-column:1 / -1;text-align:center;padding:0}
  .hp-price-side .srule{margin-inline:auto}
}
@media(max-width:768px){
  .sp-care > .wrap,
  .sp-fit > .wrap,
  .sp-voice > .wrap,
  .sp-price > .wrap,
  .sp-flow > .wrap,
  .sp-faq > .wrap,
  .hp-price > .wrap{max-width:600px}
  .hp-price-grid{grid-template-columns:1fr;max-width:600px;margin-inline:auto}
  .hp-price-head,
  .hp-price-note{max-width:600px;margin-inline:auto}
  .hp-price .bg{opacity:.28}
}
@media(max-width:640px){
  .hp-price-grid{grid-template-columns:1fr}
}

/* --- Care --- */
.sp-care{padding:clamp(3rem,6vw,5.5rem) 0 clamp(3.5rem,7vw,6rem);background:#fbf6ee;position:relative;overflow:hidden}
.sp-care-grid{display:grid;grid-template-columns:.92fr 1.08fr;gap:clamp(2rem,4.5vw,4.5rem);align-items:center}
.sp-care .ph-circle{aspect-ratio:1.10;border-radius:0 999px 999px 0;overflow:hidden;box-shadow:var(--shadow);position:relative}
.sp-care .ph-circle img{width:100%;height:100%;object-fit:cover}
.sp-care .ph-circle::after{content:"";position:absolute;left:0;right:0;bottom:0;height:30%;
  background:linear-gradient(180deg,transparent 0%,rgba(251,246,238,.45) 42%,#fbf6ee 100%);pointer-events:none}
.sp-care .ph-wrap{position:relative;margin-left:clamp(-12rem,-9vw,-4rem)}
.sp-care .ph-wrap::after{display:none}
.sp-care .tx{text-align:center;background:transparent}
.sp-care .script{font-family:'Parisienne',cursive;font-size:clamp(1.5rem,2.2vw,2.2rem);display:inline-flex;align-items:center;gap:.8em;
  background:linear-gradient(120deg,#d3ab61,#a5824a);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-care .script::before,.sp-care .script::after{content:"";width:clamp(50px,6vw,110px);height:1px;background:#c9a25e}
.sp-care .under{display:block;margin:.4em auto .2em;width:16px}
.sp-care h2{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.5rem,2.5vw,2.4rem);line-height:1.85;letter-spacing:.1em;color:#4a4038;margin:.4em 0 .7em}
.sp-care p{font-family:'Shippori Mincho',serif;font-size:clamp(.85rem,1vw,1rem);line-height:2.25;color:#4a4038;letter-spacing:.04em}
.sp-care-icons{display:flex;gap:clamp(.45rem,.9vw,.85rem);margin-top:1.8rem;justify-content:center;align-items:flex-start;flex-wrap:nowrap}
.sp-care-icons .ci{width:clamp(92px,8.6vw,128px);flex:0 0 clamp(92px,8.6vw,128px);min-height:0;aspect-ratio:1;border-radius:50%;
  background:#fffdf9;border:1px solid #d9bc85;box-shadow:var(--shadow-soft);
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5em;padding:.8em .5em .6em}
.sp-care-icons .ci svg{width:42%;height:auto;color:#b98d43}
.sp-care-icons small{font-family:'Shippori Mincho',serif;font-size:clamp(.68rem,.8vw,.84rem);line-height:1.65;color:#4a4038}
.sp-care .note{margin-top:2rem;font-size:clamp(.78rem,.92vw,.9rem)}

@media(min-width:1100px){
  .sp-care-icons .ci{width:clamp(120px,8.6vw,128px);flex-basis:clamp(120px,8.6vw,128px)}
}

@media(min-width:980px) and (max-width:1099px){
  .sp-care-icons{gap:.45rem}
  .sp-care-icons .ci{width:110px;flex-basis:110px}
  .sp-care-icons small{white-space:nowrap}
}

/* --- 整うこと --- */
.sp-fit{padding:clamp(3.5rem,7vw,6rem) 0;background:#fbf6ee;overflow:hidden}
.sp-feature{position:relative;display:grid;grid-template-columns:1.04fr .96fr;gap:clamp(2rem,4vw,4rem);align-items:center;margin-top:clamp(2.6rem,5vw,4.5rem)}
.sp-feature .phw{position:relative;z-index:1;max-width:76%;margin-inline:auto;width:100%}
.sp-feature .ph{aspect-ratio:1.28;border-radius:clamp(24px,3vw,44px);overflow:hidden;box-shadow:var(--shadow)}
.sp-feature .ph img{width:100%;height:100%;object-fit:cover}
.sp-feature .phw::after{content:"";position:absolute;inset:0;border:1px solid rgba(201,162,94,.55);border-radius:clamp(24px,3vw,44px);translate:14px 14px;z-index:-1}
.sp-feature .numc{position:absolute;width:clamp(104px,10.4vw,148px);aspect-ratio:1;border-radius:50%;background:#fff;z-index:3;
  border:1px solid #d9bc85;box-shadow:var(--shadow-soft);display:grid;place-items:center}
.sp-feature .numc::before{content:"";position:absolute;inset:-9px;border:1px dashed rgba(201,162,94,.6);border-radius:50%}
.sp-feature .numc b{font-family:var(--f-num);font-weight:600;font-size:clamp(1.7rem,2.5vw,2.5rem);letter-spacing:.02em;
  background:linear-gradient(180deg,#cfa964,#96773c);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-feature .numc .lf{position:absolute;right:-14px;bottom:-8px;width:40%}
.sp-feature.f1 .numc{left:-5%;top:-13%}
.sp-feature.f2 .numc{right:-5%;top:-13%}
.sp-feature .tx{position:relative;z-index:0;isolation:isolate;padding:clamp(1.6rem,3vw,3rem);margin-top:clamp(2.5rem,5vw,5rem)}
.sp-feature .tx::before{content:"";position:absolute;inset:-13% -46% -13% -62%;background:#f3e5cb;opacity:.8;border-radius:240px 60px 60px 240px;z-index:-1}
.sp-feature.f2 .tx::before{inset:-13% -62% -13% -46%;border-radius:60px 240px 240px 60px}
.sp-feature h3{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.5rem,2.4vw,2.3rem);line-height:1.85;letter-spacing:.12em;color:#4a4038}
.sp-feature .trule{display:flex;align-items:center;gap:.7em;margin:.8em 0 1em}
.sp-feature .trule::after{content:"";flex:1;max-width:300px;height:1px;background:linear-gradient(90deg,#c9a25e,transparent)}
.sp-feature .trule .dia{width:13px;height:13px}
.sp-feature p{font-family:'Shippori Mincho',serif;font-size:clamp(.85rem,1vw,1rem);line-height:2.25;color:#4a4038;letter-spacing:.04em}
.sp-feature.f2 .tx{order:1}.sp-feature.f2 .phw{order:2}

/* --- Voice --- */
.sp-voice{padding:clamp(3.5rem,7vw,6rem) 0;background:#fbf6ee}
.sp-voice-grid{display:grid;grid-template-columns:1fr;gap:clamp(1.2rem,2.2vw,2rem);margin:0 auto}
.sp-voice-card{max-width:78%}
.sp-voice-card:nth-child(odd){margin-right:auto}
.sp-voice-card:nth-child(even){margin-left:auto}
.sp-voice-card{background:linear-gradient(180deg,#fffdf9,#fdf7ee);border:1px solid #ddc492;border-radius:clamp(22px,2.4vw,36px);overflow:hidden;display:grid;grid-template-columns:clamp(210px,24%,285px) 1fr;align-items:center}
.sp-voice-card .inner{padding:1.6rem 2.4rem 1.5rem;text-align:left;display:flex;flex-direction:column;justify-content:center}
.sp-voice-card .face{width:100%;height:auto;aspect-ratio:3/4;margin:clamp(.9rem,1.4vw,1.4rem) 0 clamp(.9rem,1.4vw,1.4rem) clamp(.9rem,1.4vw,1.4rem);border-radius:clamp(14px,1.4vw,20px);overflow:hidden}
.sp-voice-card .face img{width:100%;height:100%;object-fit:cover}
.sp-voice-card .meta{order:9;align-self:flex-end;display:flex;align-items:center;gap:.55em;margin:.9rem 0 0;
  font-family:'Shippori Mincho',serif;font-size:clamp(.74rem,.86vw,.86rem);color:#8a7a60;letter-spacing:.08em}
.sp-voice-card h3{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.05rem,1.3vw,1.3rem);letter-spacing:.05em;color:#96773c;margin-bottom:.6em}
.sp-voice-card p{font-family:'Shippori Mincho',serif;font-size:clamp(.84rem,.98vw,.98rem);line-height:1.95;color:#4a4038}

/* --- Price --- */
.sp-price{padding:clamp(3.5rem,7vw,6rem) 0;background:#fbf6ee}
.sp-price-grid{margin:0 auto}
.sp-price-card{background:linear-gradient(180deg,#fffdf9,#fdf6ec);border:1px solid #d9bc85;border-radius:clamp(22px,2.6vw,38px);
  box-shadow:var(--shadow-soft);overflow:hidden;display:grid;grid-template-columns:.4fr .6fr;align-items:stretch;text-align:center}
.sp-price-card .ph{width:calc(100% - 40px);height:auto;aspect-ratio:4/3;min-height:0;margin:20px;border-radius:clamp(14px,1.6vw,22px);overflow:hidden;align-self:center}
.sp-price-card .ph img{width:100%;height:100%;object-fit:cover}
.sp-price-card .pc-body{padding:clamp(1.8rem,3vw,3rem) clamp(1.4rem,2.6vw,2.8rem);display:flex;flex-direction:column;justify-content:center}
.sp-price-card .ttl{font-family:'Shippori Mincho',serif;font-weight:600;letter-spacing:.3em;font-size:clamp(1.15rem,1.7vw,1.65rem);
  color:#4a4038;display:flex;align-items:center;gap:.9em;justify-content:center;
  background:linear-gradient(180deg,#cfa964,#96773c);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-price-card .ttl::before,.sp-price-card .ttl::after{content:"";flex:1;max-width:120px;height:1px;background:#c9a25e}
.sp-price-card .ttl .dia{width:12px;height:12px;flex:0 0 auto}
.sp-price-row{display:flex;align-items:center;justify-content:center;gap:clamp(1rem,2vw,2rem);margin:1.4rem 0 .8rem}
.sp-price-row .min{color:#4a4038;font-size:clamp(1.25rem,1.8vw,1.8rem);font-family:var(--f-num);letter-spacing:.02em}
.sp-price-row .min small{font-size:.52em;font-family:'Shippori Mincho',serif;letter-spacing:0}
.sp-price-row .yen{font-family:var(--f-num);font-weight:600;font-size:clamp(3.4rem,5.9vw,5.9rem);letter-spacing:.02em;line-height:1;white-space:nowrap;
  background:linear-gradient(180deg,#d4ad66,#8f7139);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-price-row .yen small{font-size:.4em;font-family:'Shippori Mincho',serif;letter-spacing:0}
.sp-price-row .tax{align-self:flex-end;font-size:clamp(.78rem,.95vw,.95rem);color:#4a4038;font-family:'Shippori Mincho',serif;padding-bottom:.4em}
.sp-price-card .for{font-family:'Shippori Mincho',serif;font-size:clamp(1rem,1.3vw,1.3rem);letter-spacing:.12em;color:#4a4038;margin-bottom:.9rem}
.sp-price-card .pdia{width:15px;margin:0 auto 1rem;display:block}
.sp-price-inc{display:flex;gap:1.2em;align-items:stretch;text-align:left;max-width:560px;margin:0 auto}
.sp-price-inc .lbl{font-family:'Shippori Mincho',serif;font-size:clamp(.86rem,1vw,1rem);color:#4a4038;letter-spacing:.14em;
  display:flex;align-items:center;padding-right:1.2em;border-right:1px solid #c9a25e;flex:0 0 auto}
.sp-price-inc ul{list-style:none;display:grid;grid-template-columns:1fr 1fr;gap:.55em 1.4em;align-content:center}
.sp-price-inc li{display:flex;align-items:center;gap:.5em;font-family:'Shippori Mincho',serif;font-size:clamp(.8rem,.95vw,.95rem);color:#4a4038;white-space:nowrap}
.sp-price-inc li svg{width:15px;flex:0 0 auto}

/* --- Flow --- */
.sp-flow{padding:clamp(3.5rem,7vw,6rem) 0;background:#fbf6ee}
.sp-flow-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(1.5rem,2.4vw,2.2rem);margin:0 auto}
.sp-flow-step{position:relative;background:linear-gradient(180deg,#fffdf9,#fdf7ee);border:1px solid #ddc492;border-radius:clamp(20px,2.2vw,34px);
  box-shadow:var(--shadow-soft);padding:.8rem .8rem 1.3rem}
.sp-flow-step .ph{aspect-ratio:1.18;border-radius:clamp(14px,1.6vw,24px) clamp(14px,1.6vw,24px) 60px 60px;overflow:hidden}
.sp-flow-step .ph img{width:100%;height:100%;object-fit:cover}
.sp-flow-step .numc{position:relative;width:clamp(58px,5.6vw,76px);aspect-ratio:1;border-radius:50%;background:#fff;border:1px solid #d9bc85;
  display:grid;place-items:center;margin:calc(clamp(58px,5.6vw,76px)/-2) auto .6rem}
.sp-flow-step .numc::before{content:"";position:absolute;inset:-6px;border:1px dashed rgba(201,162,94,.55);border-radius:50%}
.sp-flow-step .numc b{font-family:var(--f-num);font-weight:600;font-size:clamp(1.12rem,1.45vw,1.45rem);letter-spacing:.02em;
  background:linear-gradient(180deg,#cfa964,#96773c);-webkit-background-clip:text;background-clip:text;color:transparent}
.sp-flow-step .numc .lf{position:absolute;right:-13px;bottom:-6px;width:44%}
.sp-flow-step h3{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(.95rem,1.2vw,1.2rem);letter-spacing:.06em;color:#4a4038;text-align:center}
.sp-flow-step .pdia{width:12px;margin:.5em auto;display:block}
.sp-flow-step p{font-family:'Shippori Mincho',serif;font-size:clamp(.76rem,.88vw,.88rem);line-height:2;color:#4a4038;padding:0 .5rem}
.sp-flow-step:not(:last-child)::after{content:"";position:absolute;top:34%;right:calc(-1*clamp(1.5rem,2.4vw,2.2rem)/2 - 8px);
  border-left:15px solid #c9a25e;border-top:11px solid transparent;border-bottom:11px solid transparent;z-index:2}

/* --- FAQ --- */
.sp-faq{padding:clamp(3.5rem,7vw,6rem) 0 clamp(4.5rem,8vw,7rem);background:#fbf6ee}
.sp-faq-grid{display:grid;grid-template-columns:1fr 1fr;gap:clamp(1.4rem,2.4vw,2.2rem);margin:0 auto}
.sp-faq-card{background:linear-gradient(180deg,#fffdf9,#fdf7ee);border:1px solid #ddc492;border-radius:clamp(20px,2.2vw,34px);
  box-shadow:var(--shadow-soft);padding:clamp(1.6rem,2.6vw,2.4rem) clamp(1.5rem,2.6vw,2.6rem)}
.sp-faq-card .q{display:flex;align-items:center;gap:1.1em}
.sp-faq-card .qm{position:relative;width:clamp(56px,5.4vw,72px);aspect-ratio:1;flex:0 0 auto;border-radius:50%;
  background:linear-gradient(135deg,#cfa964,#96773c);color:#fff;display:grid;place-items:center;
  font-family:var(--f-num);font-weight:500;font-size:clamp(1.35rem,1.7vw,1.7rem);letter-spacing:.02em;text-indent:.02em}
.sp-faq-card .qm::before{content:"";position:absolute;inset:-6px;border:1px solid rgba(201,162,94,.55);border-radius:50%}
.sp-faq-card .qm .lf{position:absolute;right:-14px;bottom:-8px;width:46%}
.sp-faq-card h3{font-family:'Shippori Mincho',serif;font-weight:600;font-size:clamp(1.1rem,1.5vw,1.5rem);letter-spacing:.06em;color:#4a4038;line-height:1.75}
.sp-faq-card .qrule{display:block;height:1px;background:linear-gradient(90deg,#c9a25e,transparent);margin:1em 0 1em;position:relative}
.sp-faq-card .qrule .dia{position:absolute;left:0;top:50%;translate:0 -50%;width:12px;height:12px;background:#fffdf9}
.sp-faq-card .a{font-family:'Shippori Mincho',serif;font-size:clamp(.85rem,1vw,1rem);line-height:2.2;color:#4a4038;letter-spacing:.03em}

@media(max-width:900px){
  .sp-fv{height:auto;min-height:0;padding:120px 0 60px}
  .sp-fv .bgph{width:100%;opacity:.35}
  .sp-fv .fvtx{position:static;translate:none}
  .sp-care-grid{display:block}
  .sp-care-grid,.sp-feature,.sp-price-grid{grid-template-columns:1fr}
  .sp-care .ph-wrap{width:min(88%,640px);margin-inline:auto}
  .sp-care .tx{margin-top:clamp(2rem,4vw,3rem)}
  .sp-feature.f2 .tx{order:2}.sp-feature.f2 .phw{order:1}
  .sp-voice-grid{grid-template-columns:1fr;max-width:460px;margin-inline:auto}
  .sp-voice-card{grid-template-columns:1fr}
  .sp-voice-card .face{aspect-ratio:16/9;margin:.9rem .9rem 0}
  .sp-price-card{grid-template-columns:1fr}
  .sp-price-card .ph{min-height:0;aspect-ratio:16/9}
  .sp-flow-grid{grid-template-columns:1fr 1fr}
  .sp-flow-step:not(:last-child)::after{display:none}
  .sp-faq-grid{grid-template-columns:1fr}
  .sp-head .b1,.sp-head .b2{display:none}
  .sp-price-inc{flex-direction:column}
  .sp-price-inc .lbl{border-right:0;border-bottom:1px solid #c9a25e;padding:0 0 .6em;justify-content:center}
  .sp-price-inc ul{grid-template-columns:1fr}
}

@media(min-width:641px) and (max-width:900px){
  .sp-care .ph-wrap{width:min(80%,560px);margin-left:calc((100% - 100vw)/2);margin-right:auto}
  .sp-care-icons small{font-size:clamp(.58rem,.72vw,.78rem);line-height:1.5;letter-spacing:-.02em;white-space:nowrap}
}

/* お客様の声は769〜900pxでも1024px時と同じカードレイアウトを維持 */
@media(min-width:769px) and (max-width:900px){
  .sp-voice-grid{grid-template-columns:1fr;max-width:none;margin:0 auto}
  .sp-voice-card{grid-template-columns:clamp(210px,24%,285px) 1fr}
  .sp-voice-card .face{aspect-ratio:3/4;margin:clamp(.9rem,1.4vw,1.4rem) 0 clamp(.9rem,1.4vw,1.4rem) clamp(.9rem,1.4vw,1.4rem)}
}

@media(max-width:768px){
  .sp-price-grid,.sp-flow-grid,.sp-voice-grid,.sp-faq-grid,.sp-price-inc{max-width:600px}
  .sp-care{background:transparent}
  .sp-fv .bgph{opacity:.5}
  .sp-fv .bgph::after{background:linear-gradient(0deg,#fbf6ee 0%,rgba(251,246,238,.9) 18%,rgba(251,246,238,.1) 48%,transparent 78%)}
  .sp-fv .bgph img{-webkit-mask-image:linear-gradient(180deg,#000 0%,#000 52%,transparent 100%);mask-image:linear-gradient(180deg,#000 0%,#000 52%,transparent 100%)}
  .sp-feature .tx::before{display:none}
  .sp-feature .phw{width:100%;max-width:none;margin-inline:0}
  .sp-voice-card{width:100%;max-width:100%}
  .sp-flow-grid{grid-template-columns:1fr}
}

@media(max-width:600px){
  .sp-care .ph-wrap{width:100%;margin-left:calc((100% - 100vw)/2);margin-right:0}
}

@media(max-width:480px){
  .sp-care .tx > p br{display:none}
  .sp-care-icons{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(1rem,4vw,1.5rem);width:100%}
  .sp-care-icons .ci{width:100%;flex:none}
}

@media(max-width:768px){
  .sp-care .tx > p br{display:none}
  .sp-care-icons{display:grid;grid-template-columns:repeat(2,minmax(0,160px));justify-content:center;gap:clamp(1rem,3vw,1.5rem);width:100%}
  .sp-care-icons .ci{width:100%;flex:none}
}

@media(max-width:900px){
  .sp-care .tx{position:relative;z-index:2;margin-top:-clamp(5rem,15vw,9rem);margin-bottom:-200px;padding:clamp(2rem,5vw,3rem) clamp(1rem,4vw,2rem) 0;transform:translateY(-200px)}
  .sp-care .ph-circle::after{display:none}
  .sp-care .ph-wrap::after{content:"";display:block;position:absolute;left:0;right:0;top:55%;height:75%;z-index:1;pointer-events:none;background:linear-gradient(180deg,transparent 0%,rgba(251,246,238,.85) 38%,#fbf6ee 65%)}
}

@media(max-width:768px){
  .sp-care .tx{background:transparent}
}

/* ストレッチページは900pxでは切り替えず、768px以下でのみレスポンシブ化 */
@media(min-width:769px) and (max-width:900px){
  .page-stretch .sp-fv{height:min(38vw,560px);min-height:640px;padding:0}
  .page-stretch .sp-fv .bgph{top:0;right:0;bottom:0;width:70%;opacity:1}
  .page-stretch .sp-fv .fvtx{position:absolute;left:0;right:0;top:50%;translate:0 -50%}

  .page-stretch .sp-care-grid{display:grid;grid-template-columns:.92fr 1.08fr}
  .page-stretch .sp-care .ph-wrap{width:auto;margin-left:clamp(-12rem,-9vw,-4rem);margin-right:0}
  .page-stretch .sp-care .tx{position:static;z-index:auto;margin-top:0;margin-bottom:0;padding:0;transform:none}
  .page-stretch .sp-care .ph-circle::after{display:block}
  .page-stretch .sp-care .ph-wrap::after{display:none}
  .page-stretch .sp-care-icons small{font-size:clamp(.68rem,.8vw,.84rem);line-height:1.65;letter-spacing:normal;white-space:normal}

  .page-stretch .sp-feature{grid-template-columns:1.04fr .96fr}
  .page-stretch .sp-feature.f2 .tx{order:1}
  .page-stretch .sp-feature.f2 .phw{order:2}

  .page-stretch .sp-price-card{grid-template-columns:minmax(240px,.42fr) minmax(0,.58fr)}
  .page-stretch .sp-price-card .ph{width:calc(100% - 40px);min-width:200px;min-height:0;aspect-ratio:4/3}
  .page-stretch .sp-price-card .pc-body{min-width:0}
  .page-stretch .sp-flow-grid{grid-template-columns:repeat(3,1fr)}
  .page-stretch .sp-flow-step:not(:last-child)::after{display:block}
  .page-stretch .sp-faq-grid{grid-template-columns:1fr 1fr}
  .page-stretch .sp-price-inc{flex-direction:row}
  .page-stretch .sp-price-inc .lbl{border-right:1px solid #c9a25e;border-bottom:0;padding:.0 1.2em 0 0;justify-content:flex-start}
  .page-stretch .sp-price-inc{width:100%;min-width:0;gap:.8em}
  .page-stretch .sp-price-inc ul{grid-template-columns:repeat(2,minmax(0,1fr));min-width:0;gap:.55em .8em}
  .page-stretch .sp-price-inc li{min-width:0;white-space:normal}
}

/* ============================================================
   FOOTER レスポンシブ（8pxルール / 1200・1024・768 の3段階）
   ------------------------------------------------------------
   1200px : Service を1列に戻し、5列 → 4列 + ブランド全幅
   1024px : リンク列を2列に
    768px : 1列。各列に区切り線を入れて、どこまでが1つのまとまりか分かるようにする
   ============================================================ */
@media (max-width:1200px){
  .footer-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:40px 24px;
  }
  .footer-brand{grid-column:1/-1}
  /* 列が狭まるとサービス名が折り返すため1列に戻す */
  .footer-col--service ul{grid-auto-flow:row;grid-template-columns:1fr;grid-template-rows:none}
}
@media (max-width:1024px){
  .site-footer{padding-top:56px}
  .footer-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:32px 24px;padding-bottom:48px}
}
@media (max-width:768px){
  .site-footer{padding-top:40px}
  .footer-grid{grid-template-columns:1fr;gap:0;padding-bottom:32px}
  .footer-brand{padding-bottom:24px}
  .footer-brand .logo .name{font-size:24px}
  /* 「PERSONAL GYM × BEAUTY」を1行に収める */
  .footer-brand .tagline{font-size:12px;letter-spacing:.1em}
  /* 見出しをタップ領域のある行として見せ、列の境目をはっきりさせる */
  .footer-col{border-top:1px solid var(--line);padding-top:24px;margin-top:24px}
  .footer-col h4{
    display:flex;align-items:baseline;gap:8px;
    margin-bottom:16px;padding-bottom:8px;
  }
  .footer-col h4 .en{font-size:15px}
  .footer-col h4 .jp{font-size:11px}
  .footer-col ul{gap:0}
  .footer-col li{border-bottom:1px dotted var(--line)}
  .footer-col li:last-child{border-bottom:0}
  .footer-col a{display:block;padding:8px 0;font-size:14px}
  .footer-col a:hover{padding-left:0}
  .footer-col--service ul{display:flex;flex-direction:column}

  /* 最下部の帯：法務リンクとコピーライトを縦積みにして中央に揃える */
  .footer-bottom{padding:24px 0}
  .footer-bottom-inner{flex-direction:column;justify-content:center;gap:16px}
  .footer-legal{justify-content:center;gap:8px 16px}
  .footer-legal a{font-size:12px}
  .footer-copy{white-space:normal;text-align:center}
}

/* ============================================================ FV レスポンシブ修正 2026-08-03
   狭い画面で FV の高さ(50vw)が中身より小さくなり、円内の文字と
   Beauty/Gym の丸がはみ出す・切れる問題への対応。
   1281px 以上（従来の見た目）と 760px 以下（モバイル）は変更しない。 */
@media(min-width:761px){
  /* 幅に比例して縮み続ける高さに下限を設ける */
  .hero{height:clamp(660px,50vw,min(96vh,870px))}
}
@media(min-width:761px) and (max-width:1280px){
  /* 円を大きく・文字を一段小さくして、すべて円の内側に収める */
  .hero-core{width:min(58vw,600px);height:min(58vw,600px);justify-content:center;
    padding:clamp(1.8rem,3vw,3rem) clamp(1.4rem,2.4vw,2.4rem) 0}
  .hero-core .hex-home{width:clamp(150px,17vw,220px)}
  .hero-core .h1main{font-size:clamp(1.95rem,4.2vw,3.1rem)}
  .hero-core .tagline{font-size:clamp(1.05rem,2.2vw,1.6rem)}
  .hero-core .sub{font-size:clamp(1rem,1.9vw,1.35rem);white-space:nowrap}
  .hero-core .place{font-size:clamp(.7rem,1vw,.86rem)}
  .hero-circle{width:clamp(124px,14vw,190px)}
}
@media(min-width:1281px) and (max-width:1440px){
  /* この帯だけ丸の下端が数px切れるため、1440px の見た目(720px)を超えない範囲で加算 */
  .hero{height:clamp(660px,calc(50vw + 12px),min(96vh,720px))}
}

/* ------------------------------------------------------------ FV 円の配置を1440pxの設計比率に統一 2026-08-03
   1440px設計 = 小円直径は大円の約34% / 小円は大円の下端から約12%ぶら下がる / 文字は大円の上寄せ。
   狭い画面では小円が大円の内側に潜り込み円弧を斜めに突き破っていたため、同じ比率に揃える。 */
@media(max-width:1280px){
  .hero-circles{position:absolute;left:50%;transform:translateX(-50%);margin-top:0;width:max-content}
  .hero-core{justify-content:flex-start}
}
/* --- タブレット〜小型ノート --- */
@media(min-width:761px) and (max-width:1280px){
  .hero-core{width:min(58vw,520px);height:min(58vw,520px);padding-top:calc(min(58vw,520px) * .085)}
  .hero-circles{bottom:calc(min(58vw,520px) * -.12)}
  .hero-circle{width:calc(min(58vw,520px) * .34)}
}
/* --- スマホ〜小型タブレット --- */
@media(max-width:760px){
  .hero-core{padding-top:calc(min(86vw,440px) * .085)}
  .hero-circles{bottom:calc(min(86vw,440px) * -.12)}
  .hero-circle{width:calc(min(86vw,440px) * .34)}
}
/* --- スマホ：文字を一段落として円の内側に収める --- */
@media(max-width:620px){
  .hero-core .hex-home{width:clamp(132px,36vw,180px)}
  .hero-core .copy-sm{font-size:clamp(.86rem,3.3vw,1.06rem)}
  .hero-core .tagline{font-size:clamp(.95rem,4.2vw,1.3rem)}
  .hero-core .sub{font-size:clamp(.95rem,4.1vw,1.24rem);white-space:nowrap}
  .hero-core .divider{width:clamp(120px,40vw,170px)}
  .hero-core .place{font-size:clamp(.58rem,2.3vw,.75rem)}
}
@media(max-width:460px){
  .hero-core{width:min(92vw,380px);height:min(92vw,380px);padding:1.2rem;
    padding-top:calc(min(92vw,380px) * .085)}
  .hero-core .h1main{font-size:clamp(1.35rem,6.4vw,1.6rem)}
  .hero-circles{bottom:calc(min(92vw,380px) * -.12)}
  .hero-circle{width:calc(min(92vw,380px) * .34)}
}
@media(max-width:360px){
  /* 極小画面では所在地の一文が円弧を突き抜けるため非表示（同じ情報はフッターとページタイトルに存在） */
  .hero-core .place{display:none}
}
/* ロゴも大円に対する比率を1440px設計(約42%)に統一 → 余白の空き方まで同じ見え方になる */
@media(min-width:761px) and (max-width:1280px){
  .hero-core{padding-top:calc(min(58vw,520px) * .081)}
  .hero-core .hex-home{width:calc(min(58vw,520px) * .42)}
}
@media(max-width:760px){
  .hero-core{padding-top:calc(min(86vw,440px) * .081)}
  .hero-core .hex-home{width:calc(min(86vw,440px) * .42)}
  .hero-core .place{font-size:clamp(.56rem,2.2vw,.72rem)}
}
@media(max-width:460px){
  .hero-core{padding-top:calc(min(92vw,380px) * .081)}
  .hero-core .hex-home{width:calc(min(92vw,380px) * .42)}
}

/* ------------------------------------------------------------ FV 761〜1280px の詰め 2026-08-03(社長指示)
   ①文字ブロックを下へ（上寄せ→小円の直上に揃える＝余白は上に集まる）
   ②ビューティー/ジムを上へ（ぶら下がり 12%→8%）
   ③小円を最前面へ（.hero-wave が z-index:4 で .hero-content の z-index:3 より上＝波が小円を覆っていた） */
@media(min-width:761px) and (max-width:1280px){
  .hero-content{z-index:6}
  .hero-core{justify-content:flex-end;padding-bottom:calc(min(58vw,520px) * .30)}
  .hero-circles{bottom:calc(min(58vw,520px) * -.08);z-index:7}
}
@media(min-width:761px) and (max-width:1280px){
  /* 全体をもう少し下へ（既定の負マージンを打ち消して下方向へ） */
  .hero-core{margin-top:calc(min(58vw,520px) * .012)}
}
@media(min-width:761px) and (max-width:1280px){
  /* FVの高さを中身(大円+ぶら下がり)から逆算 → 上72px/下27pxが全幅で一定になり、
     769〜900pxで下に余っていた死に余白が消える */
  .hero{height:max(50vw, calc(min(58vw,520px) * 1.078 + 99px))}
}
@media(min-width:761px) and (max-width:1280px){
  /* さらに下へ。下の余白27pxは確保したままなので、その分FVの高さも増やす */
  .hero-core{margin-top:calc(min(58vw,520px) * .07)}
  .hero{height:max(50vw, calc(min(58vw,520px) * 1.078 + 130px))}
}
@media(min-width:761px) and (max-width:1280px){
  /* 小円の下端をFV下端に揃える(1440pxと同じ関係)＝小円が金の波線をまたぐ */
  .hero-core{margin-top:calc(min(58vw,520px) * .123)}
  .hero{height:max(50vw, calc(min(58vw,520px) * 1.201 + 70px))}
}
@media(min-width:761px) and (max-width:1280px){
  /* さらに被せる。またぎ量 = 波の高さ×0.323 − FV下端の余裕 なので、
     ①余裕を4→2pxに詰め ②この帯だけ潰れていた波の高さをFV高さの約19%(=1440pxと同比率)に戻す */
  .hero{height:max(50vw, calc(min(58vw,520px) * 1.201 + 68px))}
  .hero-wave{height:calc(min(58vw,520px) * .228 + 13px)}
}
@media(min-width:761px) and (max-width:1280px){
  /* さらに深く被せる（波の高さを上げると金の線が上がり、円がより多く下側に入る） */
  .hero-wave{height:calc(min(58vw,520px) * .30 + 13px)}
}
@media(min-width:761px) and (max-width:1280px){
  /* 上マージンをさらに拡大 .123 → .18（FV高さの係数も同じだけ上げる: 1+.078+.18=1.258） */
  .hero-core{margin-top:calc(min(58vw,520px) * .18)}
  .hero{height:max(50vw, calc(min(58vw,520px) * 1.258 + 68px))}
}
@media(min-width:1281px){
  .hero-content{z-index:6}
  .hero-circles{z-index:7}
}
@media(min-width:1420px) and (max-width:1460px){
  .hero{height:calc(min(50vw,96vh,870px) + 4px)}
}

/* ------------------------------------------------------------ 2026-08-05 社長指示
   大円の下に落ちるドロップシャドウを削除。
   波の上（クリーム地）に茶色い影が滲んで、小円の間が汚れて見えるため。
   写真の上ではほぼ見えない影なので、消しても大円の立体感は変わらない。 */
.hero-core{box-shadow:none}
/* 小円の下に落ちる影も削除（クリーム地に茶色く滲むため） */
.hero-circle{box-shadow:none}

/* ------------------------------------------------------------ 2026-08-05 社長指示
   縦組みの装飾ブランド文字を最背面へ。
   .vert-voice / .vert-health は元から z-index:0 ＋ 中身の .wrap を z-index:1 という作り。
   .vert-brand だけ z-index:4 で前面に出ていたので、同じ作法に揃える。 */
.vert-brand{z-index:0}
.concern>.wrap{position:relative;z-index:1}
.concept>.wrap{position:relative;z-index:1}

/* ------------------------------------------------------------ 2026-08-05 社長指示
   健康コンサルティング: 769〜1024px は 1カラムに落とさず2カラムを維持。
   1カラムだと本文の max-width:52ch が効いて右半分が空き、写真が幅いっぱい(4:3=707px)
   まで拡大してセクションが2021px(1440pxの約2倍)に伸びていたため。
   アイコンは4列だと長いラベルが泣き別れるので 2x2 + アイコン左/文字右に変更。 */
@media(min-width:769px) and (max-width:1024px){
  .consult-grid{grid-template-columns:1.06fr .94fr;gap:clamp(1.1rem,2.2vw,1.6rem);align-items:center}
  .consult-copy>p{max-width:none}
  .consult-icons{grid-template-columns:repeat(2,1fr);gap:.3rem .8rem}
  .consult-icons .ci{flex-direction:row;text-align:left;gap:.7em;align-items:center;padding:.3rem 0}
  .consult-icons .ci .ic{width:38px;height:38px;flex:0 0 auto}
  .consult-icons .ci .ic svg{width:21px;height:21px}
  .consult-icons .ci span{font-size:.71rem}
  .consult-visual .ph2{width:94%}
  .consult-float{width:132px;right:-6px}
  .consult-float b{font-size:.72rem;line-height:1.5;letter-spacing:.02em}
}
@media(max-width:768px){
  /* 761〜768pxの隙間対策: 1カラムなのにアイコンが4列のままでラベルが泣き別れる
     （既存の2列指定が max-width:760px だったため8pxぶん穴が空いていた） */
  .consult-icons{grid-template-columns:repeat(2,1fr)}
}

/* ------------------------------------------------------------ 2026-08-05 社長指示
   760px以下も 761〜1280px と同じ「大円の直径Dに比例」方式へ統一。
   従来は 760/761px の境で上の余白が 146→54px に落ち、幅が狭いほど小円が波線から
   離れていた（430px:-44px / 375px:-77px / 320px:-134px）。 */
@media(max-width:760px){
  .hero{height:calc(min(86vw,440px) * 1.258 + 68px);min-height:0;padding-bottom:0}
  .hero-core{margin-top:calc(min(86vw,440px) * .18)}
  .hero-circles{bottom:calc(min(86vw,440px) * -.08);z-index:7}
  .hero-circle{width:calc(min(86vw,440px) * .34)}
  .hero-wave{height:calc(min(86vw,440px) * .30 + 13px)}
  .hero-content{z-index:6}
}
@media(max-width:460px){
  .hero{height:calc(min(92vw,380px) * 1.258 + 68px)}
  .hero-core{margin-top:calc(min(92vw,380px) * .18)}
  .hero-circles{bottom:calc(min(92vw,380px) * -.08)}
  .hero-circle{width:calc(min(92vw,380px) * .34)}
  .hero-wave{height:calc(min(92vw,380px) * .30 + 13px)}
}

/* ------------------------------------------------------------ 2026-08-05 社長指示
   コンセプト: 768px以下は縦積みに。
   左の文章が<br>で改行位置を固定していて min-content 幅(280px)より縮まないため、
   右の写真列が押し潰されていた（430px:62x67 / 375px:23x25 まで縮小）。 */
@media(max-width:768px){
  .concept-grid{grid-template-columns:1fr;gap:clamp(1.8rem,4.5vw,2.6rem)}
  .concept-copy{text-align:left}
  .concept-photos{max-width:min(88vw,460px);margin-inline:auto;padding-bottom:clamp(2.4rem,9vw,3.6rem)}
  .concept-photos .cp1{width:76%}
  .concept-photos .cp2{width:54%}
}
@media(max-width:768px){
  /* コンセプトのh2を一段小さく（社長指示 2026-08-05）。375pxでは3行→2行に収まる */
  .concept-copy h2{font-size:clamp(1.35rem,2.85vw,1.5rem)}
}
@media(max-width:768px){
  /* 縦組みの装飾ブランド文字を薄く（社長指示 2026-08-05）。
     文字サイズは104pxのままなので、狭い画面では相対的に主張が強くなるため。
     3つとも同じ装飾なので一括で指定。 */
  .vert-brand,.vert-voice,.vert-health{opacity:.09}
}

/* ------------------------------------------------------------ 2026-08-05 社長指示 */
/* 下層ページのFVを左揃えに。
   サービス詳細(.sp-fv)と記事(.page-hero--post)は元から左揃えなので変更なし。
   .ct-hero は contact.css が style.css より後に読まれるため詳細度を上げている。 */
.page-hero{text-align:left}
.ct-hero.ct-hero{text-align:left}
.page-hero .crumb,.ct-hero .crumb{justify-content:flex-start}
.ct-hero .ct-rule{margin-left:0;margin-right:auto;
  background:linear-gradient(90deg,#c9a25e,#c9a25e 72%,transparent)}
@media(max-width:768px){
  /* 768px以下のセクション見出しを TOPページのコンセプト見出し(.concept-copy h2)と同じ大きさに揃える。
     元は clamp(1.8rem,3.8vw,2.6rem)=768pxで29.2px と大きく、TOPの21.9pxと差があった。
     社長指示 2026-08-05 */
  .section-title{font-size:clamp(1.35rem,2.85vw,1.5rem)}
}

/* 768px以下はFV・ページ見出しを除く各セクションの本文幅を600pxに統一 */
@media(max-width:768px){
  section:not(.concern):not(.sp-fv):not(.page-hero):not(.ct-hero) > .wrap{max-width:600px}
}
