/* ============================================================
   SVC svc-vocal.com リニューアル 共有CSS v1
   正: outputs/事業3_SVC養成講座/SVC_HP_リニューアル_20260702/TOPモック_v1/index.html
   デザイントークン：gold #d8b64c / gold-deep #857440 / navy #161cb0(小面積)
   ============================================================ */
:root{
  --gold:#d8b64c;
  --gold-deep:#857440;
  --gold-pale:#faf1d6;
  --champagne:#f3efe3;
  --navy:#161cb0;          /* 小面積アクセント専用 */
  --ink:#211d12;
  --ink-soft:#5c564a;
  --paper:#ffffff;
  --gray:#f6f6f6;
  --font-jp:"Noto Sans JP",sans-serif;
  --font-en:"Montserrat",sans-serif;
  --w-content:1120px;
  --radius:18px;
  --shadow:0 10px 34px rgba(133,116,64,.14);
  --header-h:70px;
}
*{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth; overflow-x:clip;}
[id]{scroll-margin-top:calc(var(--header-h) + 12px);}
body{
  font-family:var(--font-jp); color:var(--ink); background:var(--paper);
  line-height:1.9; font-size:15px; -webkit-font-smoothing:antialiased;
  overflow-x:clip;
}
img{max-width:100%; display:block;}
a{color:inherit; text-decoration:none;}
ul{list-style:none;}
.container{max-width:var(--w-content); margin:0 auto; padding:0 clamp(18px,4.5vw,40px);}

/* ---------- 共通：英語見出し＋日本語サブ ---------- */
.sec-head{margin-bottom:clamp(28px,5vw,48px);}
.sec-head .en{
  font-family:var(--font-en); font-weight:800;
  font-size:clamp(26px,4.6vw,42px); letter-spacing:.04em; line-height:1.2;
}
.sec-head .en .dot{color:var(--gold);}
.sec-head .jp{
  display:inline-flex; align-items:center; gap:10px;
  margin-top:8px; font-size:clamp(12px,1.8vw,14px); font-weight:700; color:var(--gold-deep);
  letter-spacing:.18em;
}
.sec-head .jp::before{content:""; width:34px; height:2px; background:var(--gold);}
.sec-head.center{text-align:center;}
.sec-head.center .jp::after{content:""; width:34px; height:2px; background:var(--gold);}

/* ---------- ボタン ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.6em;
  font-weight:700; letter-spacing:.08em; border-radius:999px;
  padding:.95em 2.4em; font-size:clamp(13px,1.9vw,15px);
  transition:transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change:transform;
}
.btn:hover{transform:translateY(-2px);}
.btn-gold{
  background:linear-gradient(135deg,#e3c766,var(--gold) 55%,#c6a136);
  color:#fff; box-shadow:0 8px 22px rgba(216,182,76,.42);
}
.btn-gold:hover{box-shadow:0 12px 28px rgba(216,182,76,.55);}
.btn-line{background:#06c755; color:#fff; box-shadow:0 8px 22px rgba(6,199,85,.35);}
.btn-ghost{
  background:#fff; color:var(--gold-deep); border:1.5px solid var(--gold);
}
.btn-ghost:hover{background:var(--gold-pale);}
.btn .arw{font-family:var(--font-en); font-weight:700;}

/* ---------- ヘッダー ---------- */
.header{
  position:fixed; inset:0 0 auto 0; z-index:100; height:var(--header-h);
  display:flex; align-items:center;
  background:rgba(255,255,255,.86); backdrop-filter:blur(14px); -webkit-backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(133,116,64,.12);
}
.header-inner{
  width:100%; max-width:1280px; margin:0 auto; padding:0 clamp(16px,3vw,32px);
  display:flex; align-items:center; justify-content:space-between; gap:18px;
}
.brand{display:flex; align-items:center; gap:10px;}
.brand img{height:46px; width:auto;}
.gnav{display:flex; align-items:center; gap:clamp(14px,1.8vw,26px);}
.gnav a{font-size:13.5px; font-weight:500; position:relative; padding:6px 0; white-space:nowrap;}
.gnav a:not(.btn)::after{
  content:""; position:absolute; left:0; bottom:0; width:0; height:2px;
  background:var(--gold); transition:width .25s ease;
}
.gnav a:not(.btn):hover::after{width:100%;}
.gnav .btn{padding:.65em 1.6em; font-size:13px;}
.menu-btn{display:none;}

/* モバイルナビ */
/* 注意: .header の backdrop-filter が fixed 子孫の containing block になるため、
   ここは fixed でなく absolute（.header 基準=画面上端）+ 100svh で全画面化する */
@media (max-width:960px){
  .gnav{
    position:absolute; top:0; left:0; right:0; height:100svh;
    flex-direction:column; justify-content:center; gap:26px;
    background:rgba(255,255,255,.97); backdrop-filter:blur(10px);
    opacity:0; pointer-events:none; transition:opacity .3s ease;
  }
  .gnav a{font-size:17px; font-weight:700;}
  .gnav.is-open{opacity:1; pointer-events:auto;}
  .menu-btn{
    display:flex; flex-direction:column; justify-content:center; gap:6px;
    width:46px; height:46px; padding:10px; background:none; border:0; cursor:pointer;
    z-index:110; position:relative;
  }
  .menu-btn span{height:2px; background:var(--ink); border-radius:2px; transition:transform .3s ease, opacity .3s ease;}
  .menu-btn.is-open span:nth-child(1){transform:translateY(8px) rotate(45deg);}
  .menu-btn.is-open span:nth-child(2){opacity:0;}
  .menu-btn.is-open span:nth-child(3){transform:translateY(-8px) rotate(-45deg);}
}

/* ---------- ヒーロー（X4：オーロラ×リビングウェーブ） ---------- */
.hero{
  position:relative; margin-top:var(--header-h);
  min-height:min(calc(100svh - var(--header-h)), 880px);
  display:flex; align-items:center; justify-content:center; text-align:center;
  overflow:hidden; background:#0e0a03;
}
.hero-bgimg{
  position:absolute; inset:0;
  background:url("/assets/generated/svc-hero-bg-spectrum-desktop-20260626.webp") center/cover no-repeat;
  animation:heroZoom 26s ease-in-out infinite alternate;
}
@media (max-width:640px){
  .hero-bgimg{background-image:url("/assets/generated/svc-hero-bg-spectrum-mobile-20260626.webp");}
}
@keyframes heroZoom{from{transform:scale(1)}to{transform:scale(1.07)}}
.hero::before{content:""; position:absolute; inset:0; z-index:1;
  background:radial-gradient(ellipse 100% 70% at 50% 42%, rgba(10,7,1,.55), rgba(10,7,1,.2) 68%),
             linear-gradient(180deg, rgba(10,7,1,.28), rgba(10,7,1,.5));}
.hero-wave{position:absolute; inset:0; width:100%; height:100%; z-index:2; display:block;}
.hero-inner{position:relative; z-index:3; padding:clamp(56px,8vw,80px) 20px; width:100%;}
.hero .svc{
  font-family:var(--font-en); font-weight:800; letter-spacing:.26em;
  font-size:clamp(52px,10.5vw,104px); line-height:1; color:#fff;
  text-shadow:0 2px 8px rgba(0,0,0,.55), 0 0 60px rgba(216,182,76,.5);
}
.hero h1{
  font-size:clamp(20px,5.4vw,38px); font-weight:900; letter-spacing:.18em; margin-top:18px; color:#fff;
  text-shadow:0 2px 6px rgba(0,0,0,.6), 0 8px 34px rgba(0,0,0,.5);
}
.hero .since{
  font-family:var(--font-en); font-weight:500; letter-spacing:.44em;
  font-size:clamp(11px,1.6vw,14px); margin-top:16px; color:#f0dc9a;
  text-shadow:0 1px 4px rgba(0,0,0,.6);
}
.hero .lead{
  margin-top:20px; font-size:clamp(13px,1.9vw,16px); color:rgba(255,255,255,.92);
  line-height:2.1; letter-spacing:.06em; text-shadow:0 1px 5px rgba(0,0,0,.65);
}
.hero-ctas{margin-top:clamp(30px,5vw,44px); display:flex; flex-direction:column; align-items:center; gap:14px;}
.hero-ctas .btn{min-width:min(340px,86vw); padding:1.05em 3em;}
.scroll-cue{
  position:absolute; left:50%; bottom:24px; transform:translateX(-50%);
  width:1.5px; height:44px; z-index:3; overflow:hidden;
}
.scroll-cue::after{content:""; position:absolute; inset:0;
  background:linear-gradient(180deg,transparent,var(--gold));
  animation:cue 1.8s ease-in-out infinite;}
@keyframes cue{0%{transform:translateY(-100%)}60%{transform:translateY(0)}100%{transform:translateY(100%)}}
@media (prefers-reduced-motion:reduce){
  .hero-bgimg,.scroll-cue::after{animation:none;}
}

/* ---------- SVCとは ---------- */
.about{padding:clamp(64px,10vw,120px) 0;}
.about-grid{display:grid; grid-template-columns:1fr; gap:clamp(28px,5vw,56px); align-items:center;}
@media (min-width:900px){.about-grid{grid-template-columns:5fr 6fr;}}
.about-illust{position:relative;}
.about-illust img{width:100%; aspect-ratio:1294/896; object-fit:contain;}
.about-copy .catch{
  font-size:clamp(17px,3vw,24px); font-weight:900; line-height:1.7;
  margin-bottom:18px;
}
.about-copy .catch em{font-style:normal; color:var(--gold-deep); background:linear-gradient(transparent 68%,var(--gold-pale) 68%);}
.about-copy p{color:var(--ink-soft); margin-bottom:1em; font-size:clamp(13.5px,1.9vw,15px);}

/* ---------- 3つの特徴 ---------- */
.ficon{width:64px; height:64px; border-radius:50%; background:var(--navy); display:flex; align-items:center; justify-content:center; margin-top:-52px; position:relative; z-index:2; box-shadow:0 6px 16px rgba(22,28,176,.3);}
.ficon img{width:30px; height:34px; object-fit:contain; filter:brightness(0) invert(1);}
.features{padding-bottom:clamp(64px,10vw,110px);}
.feature-list{display:grid; grid-template-columns:1fr; gap:clamp(22px,3.5vw,30px);}
@media (min-width:840px){.feature-list{grid-template-columns:repeat(3,1fr);}}
.feature{
  background:#fff; border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow); display:flex; flex-direction:column;
  border:1px solid rgba(133,116,64,.08);
}
.feature .ph{aspect-ratio:3/2; overflow:hidden;}
.feature .ph img{width:100%; height:100%; object-fit:cover; transition:transform .6s ease;}
.feature:hover .ph img{transform:scale(1.05);}
.feature .body{padding:clamp(20px,2.6vw,28px); flex:1; display:flex; flex-direction:column; gap:10px;}
.feature .tag{
  font-family:var(--font-en); font-weight:700; font-size:12px; letter-spacing:.16em;
  color:var(--navy); display:flex; align-items:center; gap:8px;
}
.feature .tag::before{content:""; width:9px; height:9px; border-radius:50%; background:var(--navy);}
.feature h3{font-size:clamp(15px,2vw,17px); font-weight:900; line-height:1.8;}
.feature h3 em{font-style:normal; color:var(--gold-deep);}
.features .cta{text-align:center; margin-top:clamp(34px,5vw,48px);}

/* ---------- プロフィール ---------- */
.profile{
  background:linear-gradient(135deg,#f7f2e2,var(--champagne) 45%,#efe6cc);
  padding:clamp(64px,10vw,120px) 0; position:relative; overflow:hidden;
}
.profile::before{
  content:"PROFILE"; position:absolute; right:-.06em; top:2px;
  font-family:var(--font-en); font-weight:800; letter-spacing:.05em;
  font-size:clamp(60px,12vw,150px); color:rgba(216,182,76,.14); line-height:1;
  pointer-events:none;
}
.profile-grid{display:grid; grid-template-columns:1fr; gap:clamp(26px,5vw,60px); align-items:center;}
@media (min-width:860px){.profile-grid{grid-template-columns:4fr 6fr;}}
.profile-photo{position:relative; max-width:460px; margin:0 auto; width:100%;}
.profile-photo img{width:100%; aspect-ratio:1032/1227; object-fit:cover; border-radius:var(--radius);}

.profile-name{display:flex; align-items:baseline; flex-wrap:wrap; gap:12px; margin-bottom:16px;}
.profile-name .jp{font-size:clamp(22px,3.4vw,30px); font-weight:900;}
.profile-name .en{font-family:var(--font-en); font-weight:500; letter-spacing:.14em; color:var(--gold-deep); font-size:13px;}
.profile-body p{color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px); margin-bottom:.9em;}
.profile-body .lic{font-size:clamp(12.5px,1.8vw,13.5px); color:var(--ink); font-weight:500;}
.profile .cta{margin-top:26px;}

/* ---------- 受講生の声 ---------- */
.voice{padding:clamp(64px,10vw,120px) 0; background:
  radial-gradient(rgba(216,182,76,.16) 1.4px, transparent 1.4px);
  background-size:22px 22px; background-color:#fffdf6;
}
.voice-rail-wrap{position:relative;}
.voice-rail{
  display:grid; grid-auto-flow:column; grid-auto-columns:min(320px,82vw);
  gap:clamp(16px,2.4vw,24px); overflow-x:auto; padding:6px 6px 26px;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  scrollbar-color:var(--gold) transparent; scrollbar-width:thin;
}
.voice-card{
  scroll-snap-align:start; background:#fff; border-radius:var(--radius);
  box-shadow:var(--shadow); overflow:hidden; display:flex; flex-direction:column;
  border:1px solid rgba(133,116,64,.08); transition:transform .3s ease;
}
.voice-card:hover{transform:translateY(-4px);}
.voice-card .ph{aspect-ratio:16/10; overflow:hidden; background:linear-gradient(135deg,var(--gold-pale),#efe3bd); position:relative;}
.voice-card .ph img{width:100%; height:100%; object-fit:cover;}
.voice-card .ph .mono{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-family:var(--font-en); font-weight:800; font-size:44px; color:rgba(133,116,64,.4); letter-spacing:.1em;
}
.voice-card .num{
  position:absolute; left:12px; top:12px; background:var(--gold); color:#fff;
  font-family:var(--font-en); font-weight:700; font-size:11px; letter-spacing:.12em;
  border-radius:999px; padding:4px 12px;
}
.voice-card .body{padding:20px 22px 22px; display:flex; flex-direction:column; gap:8px; flex:1;}
.voice-card .name{font-weight:900; font-size:16px;}
.voice-card .career{font-size:12px; color:var(--gold-deep); font-weight:700; letter-spacing:.06em;}
.voice-card .excerpt{
  font-size:13px; color:var(--ink-soft); line-height:1.85;
  display:-webkit-box; -webkit-line-clamp:4; -webkit-box-orient:vertical; overflow:hidden;
}
.voice-card .more{margin-top:auto; font-size:12.5px; font-weight:700; color:var(--gold-deep);}
.voice-card .more .arw{color:var(--gold);}
.voice .cta{text-align:center; margin-top:clamp(30px,4vw,40px);}
.voice-hint{text-align:center; font-size:11.5px; color:var(--ink-soft); letter-spacing:.14em; margin-bottom:12px;}

/* ---------- トップ 認定コーチ一覧 ---------- */
.coaches{
  padding:clamp(64px,10vw,120px) 0;
  background:linear-gradient(180deg, var(--gold-pale) 0%, #fdf9ec 45%, var(--champagne) 100%);
  border-top:1px solid rgba(133,116,64,.12);
  position:relative; overflow:hidden;
}
/* 生きた金波形（ヒーローと同系のcanvas演出・タイトル帯を流れる） */
.coach-wave{
  position:absolute; left:0; right:0; top:0; width:100%;
  height:clamp(230px,30vw,360px); pointer-events:none; display:block;
}
/* カード写真のホバー光帯（高級カード風の一閃・戻りは瞬時リセット） */
.coaches .coach-card .ph{position:relative;}
.coaches .coach-card .ph::after{
  content:""; position:absolute; top:-10%; bottom:-10%; left:-80%; width:45%;
  background:linear-gradient(105deg, rgba(255,255,255,0) 0%, rgba(255,253,244,.4) 50%, rgba(255,255,255,0) 100%);
  transform:skewX(-18deg); pointer-events:none; transition:none;
}
.coaches .coach-card:hover .ph::after{left:135%; transition:left .65s ease;}
/* カードの時間差登場（左上から順に浮かび上がる） */
@media (prefers-reduced-motion: no-preference){
  .coaches .coach-card.rv.is-in{animation:coachRise .7s ease backwards;}
  .coaches .coach-card.rv.is-in:nth-child(2){animation-delay:.12s;}
  .coaches .coach-card.rv.is-in:nth-child(3){animation-delay:.24s;}
  .coaches .coach-card.rv.is-in:nth-child(4){animation-delay:.36s;}
  .coaches .coach-card.rv.is-in:nth-child(5){animation-delay:.48s;}
  .coaches .coach-card.rv.is-in:nth-child(6){animation-delay:.6s;}
}
@keyframes coachRise{
  from{opacity:0; transform:translateY(26px);}
  to  {opacity:1; transform:none;}
}
.coaches .container{position:relative; z-index:1;}
.coach-top-list{display:grid; grid-template-columns:1fr; gap:clamp(18px,3vw,28px);}
@media (min-width:640px){.coach-top-list{grid-template-columns:1fr 1fr;}}
@media (min-width:1000px){.coach-top-list{grid-template-columns:repeat(3,1fr);}}
.coaches .coach-card{
  border:1px solid rgba(133,116,64,.16);
  transition:transform .3s ease, box-shadow .3s ease;
}
.coaches .coach-card:hover{
  transform:translateY(-7px);
  box-shadow:0 20px 48px rgba(133,116,64,.26);
}
.coaches .cta{text-align:center; margin-top:clamp(30px,4vw,40px);}

/* ---------- コミュニティ写真カルーセル（3秒自動送り・拡大なし） ---------- */
.community{background:#14100a; color:#fff; padding:clamp(48px,7vw,80px) 0;}
.comm-carousel{max-width:1040px; margin:0 auto; position:relative; padding-bottom:30px;}
.comm-track{display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory; scroll-behavior:smooth; -webkit-overflow-scrolling:touch; scrollbar-width:none; padding-inline:7%; touch-action:pan-x;}
.comm-track::-webkit-scrollbar{display:none;}
.comm-track img{flex:0 0 86%; scroll-snap-align:center; display:block; aspect-ratio:2/1; object-fit:cover; border-radius:var(--radius); box-shadow:0 14px 40px rgba(0,0,0,.45);}
.comm-dots{position:absolute; left:0; right:0; bottom:4px; display:flex; justify-content:center; gap:7px;}
.comm-dots span{width:7px; height:7px; border-radius:50%; background:rgba(255,255,255,.45); cursor:pointer;}
.comm-dots span.on{background:var(--gold);}

/* ---------- ニュース ---------- */
.news{padding:clamp(64px,10vw,120px) 0; background:var(--gray);}
.news-list{display:grid; grid-template-columns:1fr; gap:clamp(18px,3vw,28px);}
@media (min-width:840px){.news-list{grid-template-columns:repeat(3,1fr);}}
.news-card{
  background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  display:flex; flex-direction:column; border:1px solid rgba(133,116,64,.08);
  transition:transform .3s ease;
}
.news-card:hover{transform:translateY(-4px);}
.news-card .ph{aspect-ratio:16/9; overflow:hidden;}
.news-card .ph img{width:100%; height:100%; object-fit:cover;}
.news-card .body{padding:20px 22px 24px; display:flex; flex-direction:column; gap:8px; flex:1;}
.news-card time{font-family:var(--font-en); font-size:12px; color:var(--gold-deep); font-weight:700; letter-spacing:.08em;}
.news-card h3{font-size:15px; font-weight:900; line-height:1.75;}
.news-card .excerpt{
  font-size:12.5px; color:var(--ink-soft);
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden;
}
.news-card .more{margin-top:auto; font-size:12.5px; font-weight:700; color:var(--gold-deep);}
.news .cta{text-align:center; margin-top:clamp(30px,4vw,42px);}

/* ---------- LINE CTA帯 ---------- */
.line-cta{
  position:relative; padding:clamp(64px,9vw,100px) 0; text-align:center; color:#fff;
  background:#0d0a04 url("/assets/storage.googleapis.com/studio-design-asset-files/projects/NxqgkjRgq1/s-2400x700_v-frms_webp_5b64a72b-4029-43d0-90cb-db374b9546cd_regular.webp") center/cover no-repeat;
}
.line-cta::after{content:""; position:absolute; inset:0; background:rgba(15,10,2,.62);}
.line-cta .container{position:relative; z-index:1;}
.line-cta h2{font-size:clamp(17px,3vw,24px); font-weight:900; letter-spacing:.08em; line-height:2;}
.line-cta h2 .hl{color:#8CE99A;}
.line-cta .btn{margin-top:26px;}

/* ---------- フッター ---------- */
.footer{background:#fff; padding:clamp(48px,7vw,72px) 0 90px; border-top:1px solid rgba(133,116,64,.14);}
.footer-grid{display:grid; grid-template-columns:1fr; gap:34px;}
@media (min-width:840px){.footer-grid{grid-template-columns:1.3fr 1fr 1fr 1fr;}}
.footer .brand img{height:84px;}
.footer h4{
  font-size:13px; font-weight:900; letter-spacing:.1em; margin-bottom:14px;
  display:flex; align-items:center; gap:8px;
}
.footer h4::before{content:""; width:14px; height:2px; background:var(--gold);}
.footer ul{display:flex; flex-direction:column; gap:9px;}
.footer li a{font-size:13px; color:var(--ink-soft); transition:color .2s;}
.footer li a:hover{color:var(--gold-deep);}
.copyright{margin-top:44px; text-align:center; font-family:var(--font-en); font-size:11px; letter-spacing:.12em; color:var(--ink-soft);}

/* ---------- モバイル固定LINE CTA ---------- */
.sticky-line{
  position:fixed; left:12px; right:12px; bottom:12px; z-index:90;
  display:none; align-items:center; justify-content:center; gap:8px;
  background:#06c755; color:#fff; font-weight:900; font-size:14px; letter-spacing:.06em;
  padding:14px; border-radius:14px; box-shadow:0 10px 30px rgba(0,0,0,.28);
}
@media (max-width:840px){.sticky-line{display:flex;}}
.sticky-line{transition:transform .3s ease, opacity .3s ease;}
.sticky-line.is-hidden{transform:translateY(140%); opacity:0; pointer-events:none;}

/* ---------- スクロールリビール ---------- */
.rv{opacity:0; transform:translateY(26px); transition:opacity .7s ease, transform .7s ease;}
.rv.is-in{opacity:1; transform:none;}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  .rv{opacity:1; transform:none; transition:none;}
  .feature .ph img,.btn,.voice-card,.news-card{transition:none;}
}

/* ============================================================
   下層ページ共通（サブページFV・aboutページ・404）
   ============================================================ */

/* ---------- サブページFV帯 ---------- */
.page-hero{
  position:relative; margin-top:var(--header-h);
  padding:clamp(56px,8vw,96px) 0 clamp(40px,6vw,64px);
  background:linear-gradient(160deg,#fffdf6 40%,var(--champagne) 78%,#eee3c6);
  overflow:hidden;
}
.page-hero::before{content:""; position:absolute; right:-8%; bottom:-14%; width:56%; height:70%;
  background:url("/assets/storage.googleapis.com/studio-design-asset-files/projects/NxqgkjRgq1/s-2400x482_v-frms_webp_b826abca-1ad3-46e9-9e3d-379c0d0da8b8.webp") right bottom/contain no-repeat; opacity:.5;}
.page-hero .container{position:relative; z-index:1;}
.page-hero .sec-head{margin-bottom:0;}

/* ---------- about：科学的ボーカルコーチとは ---------- */
.aboutsvc{padding:clamp(64px,10vw,120px) 0;}
.aboutsvc .visual{margin:clamp(24px,4vw,40px) 0;}
.aboutsvc .visual img{width:100%; aspect-ratio:2400/912; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow);}
.aboutsvc .catch{
  text-align:center; font-size:clamp(17px,3vw,24px); font-weight:900; line-height:1.8; margin-bottom:16px;
}
.aboutsvc .catch em{font-style:normal; color:var(--gold-deep); background:linear-gradient(transparent 68%,var(--gold-pale) 68%);}
.aboutsvc .desc{max-width:820px; margin:0 auto; color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px);}

/* ---------- about：4つの魅力 ---------- */
.goodpoint{padding:clamp(64px,10vw,120px) 0; background:var(--gray);}
.gp-list{display:flex; flex-direction:column; gap:clamp(36px,6vw,64px);}
.gp-item{
  display:grid; grid-template-columns:1fr; gap:clamp(20px,3.5vw,48px); align-items:center;
}
@media (min-width:860px){
  .gp-item{grid-template-columns:1fr 1fr;}
  .gp-item:nth-child(even) .gp-ph{order:2;}
}
.gp-ph{position:relative;}
.gp-ph img{width:100%; border-radius:var(--radius); box-shadow:var(--shadow); aspect-ratio:800/564; object-fit:cover;}
.gp-ph .gp-num{
  position:absolute; left:-6px; top:-22px;
  font-family:var(--font-en); font-weight:800; font-size:clamp(40px,6vw,64px);
  color:var(--gold); opacity:.85; line-height:1; letter-spacing:.04em;
  text-shadow:0 2px 10px rgba(255,255,255,.8);
}
.gp-body .gp-head{display:flex; align-items:center; gap:14px; margin-bottom:12px;}
.gp-body .gp-icon{
  width:56px; height:56px; flex-shrink:0; border-radius:50%; background:var(--gold-pale);
  display:flex; align-items:center; justify-content:center; box-shadow:inset 0 0 0 1.5px rgba(216,182,76,.5);
}
.gp-body .gp-icon img{width:28px; height:32px; object-fit:contain;}
.gp-body h3{font-size:clamp(17px,2.6vw,22px); font-weight:900; line-height:1.7;}
.gp-body p{color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px); margin-bottom:.6em;}
.gp-body .gp-link{
  display:inline-flex; align-items:center; gap:.5em; margin-top:8px;
  font-size:13px; font-weight:700; color:var(--gold-deep);
  border-bottom:1.5px solid var(--gold); padding-bottom:2px;
}
.gp-body .gp-link .arw{font-family:var(--font-en); color:var(--gold);}

/* ---------- about：こんな方のための講座です ---------- */
.recommend{padding:clamp(64px,10vw,120px) 0;}
.recommend .visual{max-width:420px; margin:0 auto clamp(28px,5vw,44px);}
.recommend .visual img{width:100%; aspect-ratio:750/208; object-fit:contain;}
.rec-list{display:grid; grid-template-columns:1fr; gap:clamp(18px,3vw,28px);}
@media (min-width:760px){.rec-list{grid-template-columns:1fr 1fr;}}
.rec-card{
  background:#fff; border-radius:var(--radius); box-shadow:var(--shadow);
  border:1px solid rgba(133,116,64,.08); padding:clamp(22px,3vw,32px);
}
.rec-card h3{
  font-size:clamp(15px,2.2vw,18px); font-weight:900; line-height:1.7; margin-bottom:10px;
  display:flex; align-items:center; gap:10px;
}
.rec-card h3::before{content:""; width:10px; height:10px; border-radius:50%; background:var(--gold); flex-shrink:0;}
.rec-card p{color:var(--ink-soft); font-size:clamp(13px,1.8vw,14.5px);}

/* ---------- about：プロフィール詳細 ---------- */
.profile-page .profile-facts{
  display:grid; grid-template-columns:1fr; gap:4px 40px; margin-bottom:20px;
  font-size:clamp(12.5px,1.8vw,13.5px); color:var(--ink); font-weight:500; line-height:2;
}
@media (min-width:760px){.profile-page .profile-facts{grid-template-columns:1fr 1fr;}}
.profile-page .profile-facts ul{display:block;}
.profile-bio{max-width:920px; margin:clamp(36px,6vw,56px) auto 0;}
.profile-bio p{color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px); margin-bottom:1em;}
.profile-wide{margin-top:clamp(36px,6vw,56px);}
.profile-wide img{width:100%; aspect-ratio:2200/852; object-fit:cover; border-radius:var(--radius); box-shadow:var(--shadow);}

/* ---------- about：Message ---------- */
.message{
  padding:clamp(64px,10vw,120px) 0; color:#fff;
  background:linear-gradient(135deg,#8a7538,#a8862e 45%,#857440);
  position:relative; overflow:hidden;
}
.message::before{
  content:"MESSAGE"; position:absolute; left:-.04em; bottom:-6px;
  font-family:var(--font-en); font-weight:800; letter-spacing:.05em;
  font-size:clamp(56px,11vw,140px); color:rgba(255,255,255,.08); line-height:1;
  pointer-events:none;
}
.message .sec-head .en{color:#fff;}
.message .sec-head .jp{color:var(--gold-pale);}
.message .sec-head .jp::before{background:var(--gold-pale);}
.message-grid{display:grid; grid-template-columns:1fr; gap:clamp(26px,5vw,56px); align-items:center;}
@media (min-width:860px){.message-grid{grid-template-columns:6fr 4fr;}}
.message-body p{font-size:clamp(13.5px,1.9vw,15px); margin-bottom:1em; color:#fdfaf0;}
.message-photo{max-width:400px; margin:0 auto; width:100%;}
.message-photo img{width:100%; aspect-ratio:760/1020; object-fit:cover; border-radius:var(--radius); box-shadow:0 14px 40px rgba(0,0,0,.3);}

/* ---------- about：受講生の声グリッド ---------- */
.voice-grid{display:grid; grid-template-columns:1fr; gap:clamp(18px,3vw,28px);}
@media (min-width:640px){.voice-grid{grid-template-columns:1fr 1fr;}}
@media (min-width:1000px){.voice-grid{grid-template-columns:repeat(4,1fr);}}
.voice-grid .voice-card{scroll-snap-align:unset;}

/* ============================================================
   Stage 2：一覧4ページ＋contact＋規約3ページ
   ============================================================ */

/* ---------- 一覧ページ共通 ---------- */
.voice-index,.coach-index{padding:clamp(56px,8vw,100px) 0;}
.news-index,.blog-index{padding:clamp(56px,8vw,100px) 0;}
.news-index .sec-head .jp,.blog-index .sec-head .jp{font-size:clamp(14px,2vw,17px);}

/* ---------- blogカテゴリチップ（現行の静的ラベルを踏襲） ---------- */
.tag-row{display:flex; flex-wrap:wrap; gap:10px 12px; justify-content:center; margin-bottom:clamp(28px,5vw,44px);}
.tag-chip{
  font-size:12.5px; font-weight:700; letter-spacing:.06em; color:var(--gold-deep);
  background:#fff; border:1.5px solid rgba(216,182,76,.55); border-radius:999px; padding:6px 16px;
}

/* ---------- blog：LINE登録バナー ---------- */
.line-banner{display:block; max-width:607px; margin:clamp(30px,5vw,44px) auto 0; transition:transform .25s ease;}
.line-banner:hover{transform:translateY(-2px);}
.line-banner img{width:100%; border-radius:12px; box-shadow:0 8px 22px rgba(6,199,85,.25);}

/* ---------- 認定コーチカード ---------- */
.coach-list{display:grid; grid-template-columns:1fr; gap:clamp(18px,3vw,28px);}
@media (min-width:760px){.coach-list{grid-template-columns:1fr 1fr;}}
.coach-card{
  background:#fff; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  border:1px solid rgba(133,116,64,.08); display:flex; flex-direction:column;
  transition:transform .3s ease;
}
.coach-card:hover{transform:translateY(-4px);}
.coach-card .ph{aspect-ratio:4/3; overflow:hidden;}
.coach-card .ph img{width:100%; height:100%; object-fit:cover;}
.coach-card .body{padding:20px 22px 24px; display:flex; flex-direction:column; gap:7px; flex:1;}
.coach-card .name{font-weight:900; font-size:clamp(17px,2.4vw,20px);}
.coach-card .fact{font-size:13px; color:var(--ink-soft); line-height:1.9; overflow-wrap:anywhere;}
.coach-card .fact .lbl{display:block; font-weight:700; color:var(--gold-deep);}
.coach-card .more{margin-top:auto; padding-top:8px; font-size:12.5px; font-weight:700; color:var(--gold-deep);}
.coach-card .more .arw{color:var(--gold);}

/* ---------- contact ---------- */
.contact-page{padding:clamp(56px,8vw,100px) 0;}
.notice-card{
  max-width:640px; margin:0 auto clamp(32px,5vw,48px);
  background:var(--gold-pale); border:1.5px solid rgba(216,182,76,.5); border-radius:var(--radius);
  padding:clamp(20px,3.4vw,28px) clamp(20px,4vw,36px);
}
.notice-card h2{font-size:clamp(15px,2.2vw,17px); font-weight:900; margin-bottom:8px;}
.notice-card p{font-size:clamp(13px,1.9vw,14.5px); color:var(--ink-soft);}
.contact-form{max-width:640px; margin:0 auto;}
.contact-form label{display:block; margin-bottom:22px;}
.contact-form label.is-hidden{display:none;}
.contact-form .fld-head{display:flex; align-items:baseline; gap:10px; margin-bottom:8px;}
.contact-form .fld-head p{font-weight:700; font-size:14px;}
.contact-form .req{color:var(--gold-deep); font-size:12px; font-weight:700;}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea{
  width:100%; font:inherit; font-size:15px; color:var(--ink);
  padding:.85em 1em; background:#fff;
  border:1.5px solid rgba(133,116,64,.3); border-radius:10px;
}
.contact-form input:focus,.contact-form select:focus,.contact-form textarea:focus{
  outline:none; border-color:var(--gold); box-shadow:0 0 0 3px rgba(216,182,76,.22);
}
.contact-form textarea{min-height:180px; resize:vertical;}
.select-wrap{position:relative;}
.select-wrap select{appearance:none; -webkit-appearance:none; padding-right:2.6em; cursor:pointer;}
.select-wrap::after{
  content:""; position:absolute; right:16px; top:50%; margin-top:-3px;
  border-left:5px solid transparent; border-right:5px solid transparent;
  border-top:6px solid var(--gold-deep); pointer-events:none;
}
.contact-form .agree{display:flex; align-items:center; gap:10px; font-size:14px;}
.contact-form .agree input{width:18px; height:18px; accent-color:var(--gold);}
.contact-form .agree a{color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px;}
.contact-form .btn-block{width:100%; margin-top:6px;}
/* 送信結果表示（現行の svc-contact-status と同一クラス・同一配色） */
.svc-contact-status{margin:18px 0; padding:14px 16px; border-radius:6px; font-weight:700; line-height:1.7;}
.svc-contact-status.is-ok{background:#eef8f0; color:#145d28;}
.svc-contact-status.is-error{background:#fff1f0; color:#8a1f11;}
.svc-contact-status[hidden]{display:none;}

/* ---------- 文章ページ（規約3本） ---------- */
.doc{padding:clamp(56px,8vw,100px) 0;}
.doc .inner{max-width:820px; margin:0 auto;}
.doc p{color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px); margin-bottom:1.1em; overflow-wrap:anywhere;}
.doc h2{
  font-size:clamp(16px,2.4vw,20px); font-weight:900; line-height:1.7;
  margin:2.2em 0 .8em; padding-left:14px; border-left:4px solid var(--gold);
}
.doc .inner > h2:first-child{margin-top:0;}
.doc h3{font-size:clamp(14.5px,2vw,16px); font-weight:700; margin:1.6em 0 .5em;}
.doc .cta{text-align:center; margin-top:clamp(36px,6vw,56px);}
.spec-table{border-top:1px solid rgba(133,116,64,.2);}
.spec-table .row{
  display:grid; grid-template-columns:1fr; gap:2px 28px;
  padding:16px 0; border-bottom:1px solid rgba(133,116,64,.2);
}
@media (min-width:640px){.spec-table .row{grid-template-columns:220px 1fr;}}
.spec-table dt{font-weight:700; font-size:clamp(13.5px,1.9vw,14.5px);}
.spec-table dd{color:var(--ink-soft); font-size:clamp(13.5px,1.9vw,15px); overflow-wrap:anywhere;}
.spec-table dd a{color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px;}

/* ============================================================
   Stage 3：認定コーチ詳細（coach/35ページ）
   ============================================================ */
.coach-detail{padding:clamp(48px,7vw,88px) 0;}
.coach-detail .container{max-width:860px;}
.coach-name{
  font-size:clamp(23px,4vw,32px); font-weight:900; letter-spacing:.06em; line-height:1.6;
  padding-bottom:14px; margin-bottom:clamp(22px,4vw,34px);
  border-bottom:2px solid var(--gold-pale); position:relative;
}
.coach-name::after{content:""; position:absolute; left:0; bottom:-2px; width:72px; height:2px; background:var(--gold);}
.coach-prose,.art-prose{font-size:clamp(13.5px,1.9vw,15px);}
.coach-prose p,.art-prose p{color:var(--ink-soft); margin-bottom:.55em; overflow-wrap:anywhere;}
.coach-prose a,.art-prose a{color:var(--gold-deep); text-decoration:underline; text-underline-offset:3px; word-break:break-all;}
.coach-prose h3,.art-prose h3{
  font-size:clamp(15px,2.2vw,17px); font-weight:900; line-height:1.7;
  margin:1.9em 0 .7em; padding-left:14px; border-left:4px solid var(--gold);
}
.coach-prose h3:first-child,.art-prose h3:first-child{margin-top:0;}
.coach-prose h3:empty,.art-prose h3:empty{border:0; padding:0; margin:.6em 0;}
.coach-prose h4,.art-prose h4{font-size:clamp(14px,2vw,15.5px); font-weight:700; margin:1.5em 0 .5em;}
.coach-prose figure,.art-prose figure{margin:clamp(16px,3vw,26px) auto;}
.coach-prose figure img,.art-prose figure img{display:inline-block; max-width:100%; height:auto; border-radius:12px; box-shadow:var(--shadow);}
.coach-prose ol,.art-prose ol,.art-prose ul{padding-left:1.5em; color:var(--ink-soft); margin-bottom:.55em;}
.coach-back,.art-back{text-align:center; margin-top:clamp(36px,6vw,52px);}

/* ============================================================
   Stage 4：記事詳細（news19・voice15・blog5）
   ============================================================ */
.article-detail{padding:clamp(48px,7vw,88px) 0;}
.article-detail .container{max-width:860px;}
.art-head{margin-bottom:clamp(20px,3.6vw,30px);}
.art-date{
  display:block; font-family:var(--font-en); font-weight:700; font-size:13px;
  letter-spacing:.08em; color:var(--gold-deep); margin-bottom:6px;
}
.art-title{
  font-size:clamp(21px,3.6vw,30px); font-weight:900; letter-spacing:.04em; line-height:1.7;
  padding-bottom:14px; border-bottom:2px solid var(--gold-pale); position:relative;
}
.art-title::after{content:""; position:absolute; left:0; bottom:-2px; width:72px; height:2px; background:var(--gold);}
.art-cover{margin:0 0 clamp(24px,4.4vw,38px);}
.art-cover img{width:100%; height:auto; border-radius:var(--radius); box-shadow:var(--shadow);}
/* 記事末の定型・コミュニティ案内ボックス（全記事共通のテンプレ枠） */
.art-outro{margin:clamp(28px,4.6vw,42px) 0 0; padding:clamp(18px,3.2vw,24px) clamp(20px,3.6vw,28px); background:var(--gold-pale); border-left:4px solid var(--gold); border-radius:var(--radius); box-shadow:var(--shadow);}
.art-outro-label{display:block; font-size:11px; letter-spacing:.16em; font-weight:700; font-style:italic; color:var(--gold-deep); margin-bottom:9px;}
.art-outro p{margin:0; color:var(--ink); font-size:clamp(13px,1.85vw,14.5px); line-height:1.9;}
.art-outro strong{color:var(--gold-deep); font-weight:700;}
.voice-photo{max-width:560px; margin-left:auto; margin-right:auto;}
.art-prose h1,.art-prose h2{
  font-size:clamp(16.5px,2.6vw,20px); font-weight:900; line-height:1.7;
  margin:2.1em 0 .8em; padding-bottom:8px; border-bottom:2px solid var(--gold-pale);
}
.art-prose ul{list-style:disc;}
.art-prose hr{
  border:0; height:2px; max-width:220px; margin:2.2em auto;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
/* 旧CMS由来の空プレースホルダ画像（data:svg）には影・角丸を付けない（旧表示＝無地の余白を維持） */
.art-prose figure img[src^="data:image/svg"]{box-shadow:none; border-radius:0;}
.embed-video{position:relative; max-width:560px; margin:1.6em auto; aspect-ratio:16/9;}
.embed-video iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
  border-radius:12px; box-shadow:var(--shadow);
}
.embed-link{text-align:center; margin:1.6em 0;}

/* 受講生の声＝インタビューQ&A表示（文言は原文のまま・装飾のみ） */
.voice-detail .art-title{border-bottom:0; padding-bottom:0;}
.voice-detail .art-title::after{content:none;}
.voice-detail .art-head{margin-bottom:clamp(14px,2.6vw,20px); text-align:center;}
.voice-qa h3{
  border-left:0; padding:0 0 0 42px; position:relative; min-height:30px;
  margin:2.3em 0 .7em; display:flex; align-items:center;
}
.voice-qa h3::before{
  content:"Q"; position:absolute; left:0; top:2px; width:30px; height:30px;
  border-radius:50%; background:linear-gradient(135deg,#e3c766,var(--gold) 55%,#c6a136);
  color:#fff; font-family:var(--font-en); font-weight:800; font-size:14px;
  display:flex; align-items:center; justify-content:center;
}
.voice-qa h3:first-child{margin-top:0;}
.voice-qa p{
  background:#fffdf6; border:1px solid rgba(133,116,64,.1); border-radius:12px;
  padding:14px 18px;
}
.voice-qa p:empty{display:none;}

/* ---------- 404 ---------- */
.notfound{
  min-height:calc(100svh - var(--header-h)); margin-top:var(--header-h);
  display:flex; align-items:center; justify-content:center;
  background:linear-gradient(160deg,#fffdf6 40%,var(--champagne) 78%,#eee3c6);
  padding:clamp(40px,7vw,80px) 0;
}
.notfound-card{
  text-align:center; max-width:640px; margin:0 auto;
  background:rgba(255,255,255,.92); border:1px solid rgba(133,116,64,.14);
  border-radius:var(--radius); box-shadow:var(--shadow);
  padding:clamp(32px,6vw,56px) clamp(22px,4vw,48px);
}
.notfound-card .logo{width:110px; margin:0 auto 24px;}
.notfound-card .code{
  font-family:var(--font-en); font-weight:800; letter-spacing:.14em;
  font-size:13px; color:var(--gold-deep); margin-bottom:10px;
}
.notfound-card h1{font-size:clamp(22px,4.6vw,32px); font-weight:900; letter-spacing:.06em; line-height:1.6;}
.notfound-card p{margin:16px auto 0; max-width:460px; color:var(--ink-soft); font-size:clamp(13px,1.9vw,14.5px);}
.notfound-card .btn{margin-top:28px;}

/* 受講生の声：本文の下線ハイライト（読んでほしい箇所・2026-07-09） */
.voice-qa u{text-decoration:underline; text-decoration-color:var(--gold); text-decoration-thickness:2px; text-underline-offset:4px; text-decoration-skip-ink:none; font-weight:700;}

/* 受講生イラスト（notionists）は枠に収める */
.voice-card .ph img[src*="_avatar"]{object-fit:contain;}
