/*
Theme Name: Global Tone
Theme URI: https://gl-tone.net/
Author: Global Tone
Description: 株式会社グローバル・トーン公式サイト用オリジナルテーマ。Figmaデザインをコードで忠実に再現したクラシックテーマ。
Version: 1.22.0
Requires at least: 6.0
Requires PHP: 7.4
License: GNU General Public License v2 or later
Text Domain: globaltone
*/

/* ==========================================================
   0. Tokens / Reset
   --------------------------------------------------------
   PC: 1rem = 16 design-px（Figma 1920px カンバス基準）
       画面幅に応じて比例縮小（1920で等倍・1440で75%）
   SP: 390px カンバス基準で 1rem = 16px
   ========================================================== */
:root {
  --c-text: #495150;
  --c-nav: #636f6e;
  --c-muted: #a2adac;
  --c-pink: #ff6f98;
  --c-lavender: #bfb6eb;
  --c-border: #d5d5d5;
  --c-footer: #a9b3b1;
  --grad-line: linear-gradient(90deg, #c9c0ee 0%, #f4cbd9 48%, #f8dcc3 100%);
  --font-ja-serif: 'Shippori Mincho', 'Hiragino Mincho ProN', 'Yu Mincho', serif;
  --font-ja-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-en-serif: 'Playfair Display', 'Times New Roman', serif;
  --font-en-sans: 'Montserrat', sans-serif;
  --header-h: 7rem; /* 112 */
}
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth;
  font-size: clamp(8px, 0.83333vw, 16px);
  /* ページ自体は横に動かさない（Macのトラックパッドで左右に振っても
     ページがずれたり「戻る」ジェスチャーが発動しないようにする）。
     overscroll-behavior は上下も含めて none にして、行き止まりで
     引っ張ったときにフッターより下（固定背景）が見えないようにする。 */
  overflow-x: hidden; overscroll-behavior: none; }
body { overflow-x: clip; overscroll-behavior: none; }
@media (max-width: 900px) {
  html { font-size: clamp(13px, 4.1vw, 18px); }
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--c-text);
  font-family: var(--font-ja-sans);
  font-size: 1.5rem;            /* 24 */
  font-weight: 400;
  line-height: 2;
  letter-spacing: .05em;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s ease; }
a:hover { opacity: .65; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, p, figure, dl, dd { margin: 0; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }

.js-reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.js-reveal.is-shown { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ==========================================================
   1. Aurora page background (subpages)
   ========================================================== */
.gt-page-bg { position: fixed; inset: 0; z-index: -2; pointer-events: none; }
.gt-page-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url(assets/img/hero_bg.webp) center / cover no-repeat;
  opacity: .55;
}
.gt-page-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg,
    rgba(255,255,255,.30) 0%, #fff 16%, #fff 84%, rgba(255,255,255,.30) 100%);
}
/* TOPページでも背景のオーロラを出す（Figma では WORKS/NEWS の背後に出ている）。
   ヒーロー自身は不透明な背景画像を持つので、その下だけに見える。 */
@media (max-width: 900px) {
  /* SPのTOPはFigmaだとオーロラがもっと広く出るので、白のかぶせを弱める */
  .has-hero .gt-page-bg::before { opacity: .68; }
  .has-hero .gt-page-bg::after {
    background: linear-gradient(90deg,
      rgba(255,255,255,.20) 0%, rgba(255,255,255,.90) 26%, rgba(255,255,255,.90) 74%, rgba(255,255,255,.20) 100%);
  }
}

/* ==========================================================
   2. Header  (h=112 / logo 189 / nav 20px ls.2em)
   ========================================================== */
.site-header {
  position: relative; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--header-h);
  padding: 0 2.75rem;
  background: #fff;
}
.site-header__logo img { width: 11.8rem; height: auto; }
.gnav__list { display: flex; align-items: center; gap: 3.4rem; }
.gnav__list > li { position: relative; }
.gnav__list a {
  font-family: var(--font-en-serif); font-weight: 800;
  font-size: 1.25rem; letter-spacing: .2em; color: var(--c-nav);
  text-transform: uppercase;
}
.gnav__contact-toggle {
  font-family: var(--font-en-serif); font-weight: 800;
  font-size: 1.25rem; letter-spacing: .2em; color: var(--c-nav);
  text-transform: uppercase; display: inline-flex; align-items: center; cursor: pointer;
}
.gnav__caret { display: inline-block; margin-left: .55rem; width: .5rem; height: .5rem;
  border-right: 1.5px solid var(--c-lavender); border-bottom: 1.5px solid var(--c-lavender);
  transform: rotate(45deg) translateY(-.15rem); transition: transform .35s ease; }
.gnav__item--contact:hover .gnav__caret,
.gnav__item--contact:focus-within .gnav__caret { transform: rotate(225deg) translate(-.1rem,-.1rem); }
.gnav__sub {
  position: absolute; top: calc(100% + 1.6rem); right: -1.2rem; width: max-content; min-width: 17rem;
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px) saturate(1.2); backdrop-filter: blur(14px) saturate(1.2);
  border-radius: .9rem; padding: .55rem;
  box-shadow: 0 1.6rem 3.4rem -0.8rem rgba(73,81,80,.22), 0 0 0 1px rgba(255,255,255,.6) inset;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden; transform: translateY(-.9rem) scale(.97); transform-origin: 85% 0;
  transition: opacity .4s cubic-bezier(.2,.7,.2,1), transform .4s cubic-bezier(.2,.7,.2,1), visibility .4s;
}
.gnav__sub::after { /* 上辺のオーロラのグラデーションライン */
  content: ''; position: absolute; top: 0; left: .9rem; right: .9rem; height: 2px;
  background: var(--grad-line); border-radius: 2px;
}
.gnav__sub::before { /* 吹き出しの三角（すりガラス色に合わせる） */
  content: ''; position: absolute; bottom: calc(100% - 1px); right: 3.4rem;
  border: .5rem solid transparent; border-bottom-color: rgba(255,255,255,.82);
}
.gnav__sub-link {
  display: flex; align-items: center; justify-content: space-between; gap: 1.6rem; white-space: nowrap;
  font-family: var(--font-ja-sans); font-weight: 500; font-size: .875rem;
  letter-spacing: .08em; text-transform: none; color: var(--c-text);
  padding: 1.05rem 1.35rem; border-radius: .6rem; position: relative;
  transition: background .3s ease, color .3s ease, opacity .4s ease, transform .4s ease;
  opacity: 0; transform: translateY(-.5rem);
}
.gnav__sub-link + .gnav__sub-link { margin-top: .15rem; }
.gnav__sub-link::after { /* 右端の矢印 */
  content: '→'; font-family: var(--font-en-serif); font-size: .95rem; color: var(--c-lavender);
  transform: translateX(-.3rem); opacity: 0; transition: transform .3s ease, opacity .3s ease;
}
.gnav__sub-link:hover {
  background: linear-gradient(90deg, rgba(201,192,238,.16), rgba(244,203,217,.16));
  opacity: 1;
}
.gnav__sub-link:hover::after { transform: none; opacity: 1; }
.gnav__item--contact:hover .gnav__sub,
.gnav__item--contact:focus-within .gnav__sub { opacity: 1; visibility: visible; transform: none; }
.gnav__item--contact:hover .gnav__sub-link,
.gnav__item--contact:focus-within .gnav__sub-link { opacity: 1; transform: none; }
.gnav__item--contact:hover .gnav__sub-link:nth-child(1),
.gnav__item--contact:focus-within .gnav__sub-link:nth-child(1) { transition-delay: .06s; }
.gnav__item--contact:hover .gnav__sub-link:nth-child(2),
.gnav__item--contact:focus-within .gnav__sub-link:nth-child(2) { transition-delay: .13s; }

/* PC: ヘッダーは全ページ固定表示 + フッターは画面ボトムに貼り付け（sticky footer） */
@media (min-width: 901px) {
  .site-header { position: fixed; top: 0; left: 0; right: 0;
    box-shadow: 0 1px 0 rgba(73,81,80,.06); }
  body { padding-top: var(--header-h); min-height: 100vh; display: flex; flex-direction: column; }
  .site-footer { margin-top: auto; }
}

.site-header__sp { display: none; }

@media (max-width: 900px) {
  :root { --header-h: 4.7rem; } /* 74 */
  .site-header { padding: 0 1.5625rem; background: transparent; } /* 25 */
  /* Figma書き出しの波形白オーバーレイ（下端がヒーローに溶け込む） */
  .site-header::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%;
    height: 27.2vw; /* 106/390 */
    background: url(assets/img/sp_header_wave.png) top center / 100% auto no-repeat;
    z-index: -1; pointer-events: none;
  }
  /* ヘッダーは追従（fixed） */
  .site-header { position: fixed; top: 0; left: 0; right: 0; }
  /* PCと同じくフッターを画面ボトムに貼り付け（一覧が0件などで本文が短いとき用） */
  body { padding-top: var(--header-h); min-height: 100svh; display: flex; flex-direction: column; }
  .site-footer { margin-top: auto; }
  body.has-hero { padding-top: 0; }
  .site-header__logo img { width: min(10.25rem, 42vw); } /* 164 */
  .gnav { display: none; }
  .site-header__sp { display: flex; align-items: center; gap: 1.125rem; } /* 18 */
  .sp-lang { display: inline-flex; align-items: center; gap: .58rem;
    font-family: var(--font-en-serif); font-weight: 800;
    font-size: 1.05rem; letter-spacing: .09em; line-height: 1; }
  .sp-lang a { color: #aebcba; }        /* 切替先＝薄 */
  .sp-lang__sep { width: 1px; height: 1.15rem; background: #9ba8a6; }
  .sp-lang__current { color: var(--c-nav); }  /* 現在言語＝濃 */
  /* 3本線ハンバーガー: 32x16 / 8px間隔 / 1.5px */
  .sp-menu-btn { width: 2rem; height: 1rem; position: relative; }
  .sp-menu-btn span { position: absolute; left: 0; width: 100%; height: 1.5px; background: var(--c-nav); transition: .3s; }
  .sp-menu-btn span:nth-child(1) { top: 0; }
  .sp-menu-btn span:nth-child(2) { top: 50%; margin-top: -.75px; }
  .sp-menu-btn span:nth-child(3) { bottom: 0; }
  body.menu-open .sp-menu-btn span:nth-child(1) { top: 50%; transform: rotate(28deg); }
  body.menu-open .sp-menu-btn span:nth-child(2) { opacity: 0; }
  body.menu-open .sp-menu-btn span:nth-child(3) { bottom: auto; top: 50%; transform: rotate(-28deg); }
}

/* SP fullscreen menu */
.sp-menu {
  position: fixed; inset: 0; z-index: 40;
  background: url(assets/img/hero_bg.webp) center / cover no-repeat;
  display: none; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.sp-menu::before { content: ''; position: absolute; inset: 0; background: rgba(255,255,255,.45); }
.sp-menu > * { position: relative; }
body.menu-open .sp-menu { display: flex; }
body.menu-open { overflow: hidden; }
.sp-menu__list li { margin: 1.6rem 0; }
.sp-menu__list a {
  font-family: var(--font-en-serif); font-weight: 700; font-size: 1.3rem;
  letter-spacing: .38em; color: #8b9695; text-transform: uppercase;
}
.sp-menu__list li:last-child a { color: var(--c-text); }
.sp-menu__contact-label { display: inline-block;
  font-family: var(--font-en-serif); font-weight: 700; font-size: 1.3rem;
  letter-spacing: .38em; color: var(--c-text); text-transform: uppercase; }
.sp-menu__contact-sub { margin-top: .9rem; }
.sp-menu__contact-sub a { display: block; margin: .75rem 0; font-family: var(--font-ja-sans);
  font-size: .8rem; font-weight: 500; letter-spacing: .12em; color: var(--c-text); }
/* 言語トグル: 本番 humberger-lang.png の実測に準拠
   （カプセル 939x266 = 幅45vw / 白ピル 幅43.6%・高さ65.8%・内側インセット4.8%） */
.sp-menu__lang { margin-top: 3.2rem; display: flex; align-items: stretch;
  width: 11rem; height: 3.1rem; padding: .53rem;
  background: linear-gradient(160deg, #8FDEE7 0%, #8AD3E3 50%, #82BAD9 100%);
  border-radius: 999px; }
.sp-menu__lang a, .sp-menu__lang span {
  flex: 1 1 auto; display: flex; align-items: center; justify-content: center;
  border-radius: 999px; font-family: var(--font-en-sans); font-size: .91rem;
  letter-spacing: -.025em; color: #fff; line-height: 1; }
.sp-menu__lang [lang="ja"] { font-family: var(--font-ja-sans); font-size: .85rem; letter-spacing: .09em; }
/* ピルと反対側のラベルは本番同様わずかに外側寄り */
.sp-menu__lang > :last-child:not(.is-active) { padding-left: .58rem; }
.sp-menu__lang > :first-child:not(.is-active) { padding-right: .58rem; }
.sp-menu__lang .is-active { flex: 0 0 4.78rem; background: #fff; color: #838E94; font-weight: 500;
  box-shadow: 0 .1rem .3rem rgba(73,81,80,.10); }

/* ==========================================================
   3. Hero (front)
   ========================================================== */
.hero {
  position: relative;
  height: 100svh; min-height: 38rem;
  background: url(assets/img/hero_bg.webp) center / cover no-repeat;
  overflow: hidden;
}
/* ヒーロー下端を白へフェード（白ヘッダー/本編へ自然に繋ぐ・段差の出ないSカーブ） */
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 17rem;
  background: linear-gradient(180deg,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,.04)  12%,
    rgba(255,255,255,.15)  28%,
    rgba(255,255,255,.38)  45%,
    rgba(255,255,255,.66)  62%,
    rgba(255,255,255,.88)  78%,
    #ffffff                93%);
  pointer-events: none; z-index: 1;
}
.hero__lang {
  position: absolute; top: 5.2rem; right: 15.1rem;
  display: inline-flex; align-items: center;
  height: 5.75rem; border-radius: 999px; padding: .72rem;
  background: linear-gradient(90deg, rgba(124,195,202,.56) 0%, rgba(95,177,193,.48) 100%);
  box-shadow: inset 0 0 2rem rgba(255,255,255,.18);
  backdrop-filter: blur(7px); -webkit-backdrop-filter: blur(7px);
}

.hero__lang a, .hero__lang span {
  display: inline-flex; align-items: center; justify-content: center;
  height: 100%; padding: 0 2.1rem; border-radius: 999px;
  color: #fff; letter-spacing: .04em;
}
.hero__lang .lang-ja { font-family: var(--font-ja-sans); font-size: 1.25rem; }
.hero__lang .lang-en { font-family: var(--font-en-sans); font-size: 1.375rem; }
.hero__lang .is-active { background: #fff; color: #8b9a99; font-weight: 500; }

.hero__copy {
  position: absolute; left: 6.9vw; top: 50%; transform: translateY(-58%); z-index: 2;
  width: 49.7vw; aspect-ratio: 954 / 263;
  background: linear-gradient(100deg, #dc8ba4 0%, #93aed4 42%, #7fc4c0 70%, #a98fd0 100%);
  -webkit-mask: url(assets/img/main_copy.png) 0 0 / contain no-repeat;
          mask: url(assets/img/main_copy.png) 0 0 / contain no-repeat;
  opacity: .95;
}
.hero__copy-sp { display: none; }

/* EN hero copy (text) */
.hero__copy--en {
  position: absolute; left: 15.6vw; top: 31.7%; z-index: 2;
  font-family: var(--font-en-serif); font-weight: 500;
  font-size: 6.25rem; line-height: 1.53; letter-spacing: .04em;
  background: linear-gradient(100deg, #b48fd0 0%, #7ba4d4 35%, #7fc4c0 65%, #d9a58f 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .7;
}

.hero__scroll {
  position: absolute; right: 12.5rem; bottom: 13.5rem; z-index: 2;
  width: 14.25rem; height: 14.25rem; border: 1.5px solid rgba(255,255,255,.9); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-en-serif); font-weight: 700;
  font-size: 1.25rem; letter-spacing: .2em; text-indent: .2em;
  white-space: nowrap;
}
.hero__scroll::after {
  content: ''; position: absolute; top: 100%; left: 50%;
  width: 1px; height: 7rem; background: #fff;
  animation: gt-scrollline 2.4s ease-in-out infinite;
  transform-origin: top;
}
.hero__scroll::before { /* 矢頭 */
  content: ''; position: absolute; top: calc(100% + 6.7rem); left: 50%;
  transform: translateX(-50%);
  border-style: solid; border-width: .7rem .4rem 0 .4rem;
  border-color: #fff transparent transparent transparent;
}
@keyframes gt-scrollline {
  0% { transform: scaleY(0); }
  45% { transform: scaleY(1); }
  100% { transform: scaleY(1); opacity: 0; }
}

@media (max-width: 900px) {
  .hero { min-height: 33rem; }
  .hero__lang { display: none; }
  .hero__copy { display: none; }
  .hero__copy--en { left: 24.6%; right: auto; top: 23%; width: 11.5rem;
    font-size: 2.5rem; line-height: 1.5; letter-spacing: .02em; }
  .hero__copy-sp {
    display: block; position: absolute; right: 38.7%; top: 21%;
    writing-mode: vertical-rl;
    font-family: var(--font-ja-serif); font-weight: 500;
    font-size: 1.875rem; letter-spacing: .2em; line-height: 1.32;
    background: linear-gradient(160deg, #dc8ba4 0%, #93aed4 45%, #7fc4c0 72%, #a98fd0 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    opacity: .8; filter: saturate(.55);
  }
  .hero__scroll { right: 2.6rem; bottom: 11.3rem; transform: none;
    width: 7.9rem; height: 7.9rem; font-size: 1rem;
    white-space: normal; text-align: center; line-height: 1.5;
    letter-spacing: .16em; text-indent: .16em; padding: 0 1rem; }
  .hero__scroll::after { top: 82%; height: 4.7rem; animation: none; }
  .hero__scroll::before { /* 細いV字の矢頭 */
    top: calc(82% + 4.25rem); left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: .55rem; height: .55rem;
    border-style: solid; border-width: 0 1px 1px 0; border-color: #fff;
  }
  /* ヒーロー下端は白へフェードして本編へ */
  .hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    height: 8rem; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 92%);
    pointer-events: none; }
}

/* ==========================================================
   4. Common pieces
   ========================================================== */
.container { max-width: 89rem; margin: 0 auto; padding: 0 2rem; }   /* 1360 + pad */
.container--narrow { max-width: 62rem; }                             /* フォーム/記事 928+pad */

.section-title { margin: 0 0 3.5rem; }
.section-title img { height: 5.9rem; width: auto; }
.section-title--center { text-align: center; }
.section-title--center img { margin: 0 auto; }
@media (max-width: 900px) { .section-title img { height: 3.4rem; } }

.hairline { height: 1px; background: var(--grad-line); border: none; }

/* bordered button with gradient drop（矢印は 直線+塗り三角、枠を貫通して伸びる） */
.btn-line {
  position: relative; display: inline-block;
  font-family: var(--font-en-serif); font-weight: 700; font-style: italic;
  font-size: 1.5rem; letter-spacing: .1em;
  color: var(--c-text); background: #fff;
  border: 1.5px solid var(--c-text);
  padding: .7rem 2.1rem;
  line-height: 1.5;
}
.btn-line--ja { font-family: var(--font-ja-sans); font-style: normal; font-weight: 500;
  font-size: 1.5rem; letter-spacing: .06em; white-space: nowrap; }
.btn-line::before {
  content: ''; position: absolute; left: .3125rem; top: .3125rem; right: -.3125rem; bottom: -.3125rem;
  background: var(--grad-line); z-index: -1;
}
.btn-line::after { /* 直線（ボックス内側から外へ） */
  content: ''; position: absolute; top: 50%; left: calc(100% - 1.8rem);
  width: 7.4rem; height: 2px; margin-top: -1px; background: var(--c-text);
}
.btn-line .btn-line__tip { /* 塗り三角の矢頭 */
  position: absolute; top: 50%; left: calc(100% + 5.35rem);
  width: 0; height: 0; background: none;
  border-style: solid; border-width: .5rem 0 .5rem .95rem;
  border-color: transparent transparent transparent var(--c-text);
  transform: translateY(-50%);
}
.btn-line:hover { opacity: 1; background: #f7f5fb; }
.btn-wrap { position: relative; z-index: 0; }
.btn-wrap--right { text-align: right; padding-right: 8rem; }
.btn-wrap--center { text-align: center; }
.btn-wrap--center .btn-line::after, .btn-wrap--center .btn-line .btn-line__tip { display: none; }

.link-arrow {
  font-family: var(--font-en-serif); font-weight: 700; font-style: italic;
  font-size: 1.5rem; letter-spacing: .1em; color: var(--c-text);
  display: inline-flex; align-items: center; gap: 1rem;
}
.link-arrow::after {
  content: ''; display: inline-block; width: 6rem; height: 1rem;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 16'%3E%3Cpath fill='%23495150' d='M0 7h82v2H0z'/%3E%3Cpath fill='%23495150' d='M80 0l16 8-16 8z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.tri {
  display: inline-block; width: 0; height: 0;
  border-style: solid; border-width: .45rem 0 .45rem .75rem;
  border-color: transparent transparent transparent var(--c-lavender);
}
.tri--left { border-width: .45rem .75rem .45rem 0; border-color: transparent var(--c-lavender) transparent transparent; }

/* ==========================================================
   5. Front sections
   ========================================================== */
.front-about {
  position: relative; padding: 23.2rem 0 0; overflow: hidden;
}
.front-about__wave {
  position: absolute; left: 8%; top: -4%; width: 104%; max-width: none;
  opacity: .55; z-index: -1;
}
.front-about__catch {
  font-family: var(--font-ja-serif); font-weight: 500;
  font-size: 2.625rem; letter-spacing: .3em; line-height: 1.9;
  margin-bottom: 2.4rem;
}
.front-about__body { max-width: 68rem; }
br.pc { display: inline; }
@media (max-width: 900px) { br.pc { display: none; } }
br.sp { display: none; }
@media (max-width: 900px) { br.sp { display: inline; } }
.front-about__body p {
  font-family: var(--font-ja-serif); font-size: 1.5rem; letter-spacing: .3em; line-height: 2.65;
}
.front-about .btn-wrap { margin-top: 4.5rem; }
.front-about .btn-wrap--right { padding-right: 4rem; }
.front-works .btn-wrap { margin-top: 1.7rem; }

.front-news { position: relative; padding: 14.8rem 0 0; overflow: hidden; }
.front-news::before { /* NEWSタイトル背後のぼかし円 365px */
  content: ''; position: absolute; left: 12.4rem; top: 21.4rem;
  width: 22.8rem; height: 22.8rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(191,182,235,.35) 0%, rgba(244,180,205,.25) 45%, rgba(244,180,205,0) 70%);
}
.front-news::after { /* 左端のぼかし円 269px */
  content: ''; position: absolute; left: -2rem; top: 2.4rem;
  width: 16.8rem; height: 16.8rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(244,180,205,.35) 0%, rgba(244,180,205,0) 70%);
}
.front-news__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 19rem 1fr; gap: 3rem; align-items: start; }
.front-news .section-title { margin: 14rem 0 0; }

.front-works { position: relative; padding: 12.9rem 0 0; overflow: hidden; }
.works-carousel-wrap { position: relative; }
/* 端のカードは「白を上に敷く」のではなくマスクで透過させる。
   白で塗るとページ背景のオーロラまで消えてしまうため（Figmaでは背景が見えている）。 */
.works-carousel {
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 19%, #000 81%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 19%, #000 81%, transparent 100%);
}
.front-works::before { /* 右端のぼかし円 317px */
  /* カルーセル左右の白フェード(z-index:3)より上に置く。
     下に置くと右端＝不透明な白でぼかし円が四角く切り取られてしまう（Figmaでは切れていない）。 */
  content: ''; position: absolute; right: -4.1rem; top: 4.3rem; z-index: 4; pointer-events: none;
  width: 22.3rem; height: 22.3rem; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,170,215,.18) 0%, rgba(200,170,215,.155) 40%, rgba(200,170,215,0) 74%);
}
.front-contact {
  position: relative; padding: 17.2rem 0 17.5rem; text-align: center;
  background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(240,214,229,.55) 45%, rgba(167,214,226,.85) 100%);
}
.front-contact__buttons { display: flex; justify-content: center; gap: 10.375rem; margin-top: 7.5rem; flex-wrap: wrap; }
.front-contact__buttons .btn-line {
  width: 26.3rem; height: 5.125rem;
  display: inline-flex; align-items: center; justify-content: center;
}

/* 自叙伝バナー: 外枠はサイト共通の意匠（白地＋1.5px枠＋grad-line のオフセット）に統一 */
/* 影用のスタッキング文脈は .btn-wrap と同じく親側で作る */
.front-contact__banner { position: relative; z-index: 0; display: flex; justify-content: center; margin-top: 5.5rem; }
/* 矢印は枠の外に出るぶんの余白を確保（SPは矢印なしなので付けない） */
@media (min-width: 901px) { .front-contact__banner { padding-right: 7rem; } }
.banner-line {
  position: relative;
  display: block; text-align: center;
  width: 100%; max-width: 54.4rem;
  padding: 2.1rem 3.4rem 2.2rem;
  background: #fff; border: 1.5px solid var(--c-text);
}
.banner-line::before {
  content: ''; position: absolute; left: .3125rem; top: .3125rem; right: -.3125rem; bottom: -.3125rem;
  background: var(--grad-line); z-index: -1;
}
.banner-line:hover { background: #f7f5fb; }
.banner-line__body { display: block; }
.banner-line__title {
  display: block; font-family: var(--font-ja-serif); font-weight: 500;
  font-size: 1.85rem; letter-spacing: .13em; line-height: 1.5; color: var(--c-text);
}
.banner-line__title em {
  font-style: normal; color: transparent;
  background: linear-gradient(90deg, #9e8dd8, #6fa9c2 55%, #94b8a9);
  -webkit-background-clip: text; background-clip: text;
}
.banner-line__lead {
  display: block; margin-top: .9rem;
  font-size: .95rem; letter-spacing: .09em; line-height: 1.85; color: var(--c-nav);
}
.banner-line__arrow {
  /* CONTACTボタンと同じく、矢印は枠の外へ突き抜けさせる */
  position: absolute; left: calc(100% - 1.8rem); top: 50%; transform: translateY(-50%);
  width: 7.4rem; height: 1rem;
  background: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 96 16'%3E%3Cpath fill='%23495150' d='M0 7h82v2H0z'/%3E%3Cpath fill='%23495150' d='M80 0l16 8-16 8z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.is-en .banner-line__title { font-family: var(--font-en-serif); font-size: 2rem; letter-spacing: .02em; }
.is-en .banner-line__title em { font-style: italic; }
.is-en .banner-line__lead { font-family: var(--font-en-serif); letter-spacing: .02em; font-size: 1rem; }

@media (max-width: 900px) {
  .front-about { padding: 5.5rem 0 5rem; }
  .front-about .btn-wrap { margin-top: 1.5rem; }
  .is-en .front-about .btn-wrap { margin-top: 1.5rem; }
  .front-news { padding: 3.5rem 0 0; }
  .front-news::before { width: 9rem; height: 9rem; left: auto; right: -2rem; top: 2rem; }
  .front-news::after { width: 8rem; height: 8rem; left: -3rem; top: 55%; }
  .front-works::before { width: 9rem; height: 9rem; right: -3rem; top: 4rem; }
  .front-news .section-title { margin: 0 0 .5rem; }
  .front-works { padding: 4rem 0 0; }
  .front-contact { padding: 6rem 0 8rem; }
  /* SP CONTACTボタン: Figma実測 228.7x48.1 / 矢印なし */
  .front-contact__buttons { flex-direction: column; align-items: center; gap: 2.3rem; margin-top: 2.75rem; }
  .front-contact__banner { margin-top: 2.75rem; }
  /* SPはサイト共通仕様にならい矢印なし */
  .banner-line { max-width: none; padding: 1.2rem 1.1rem 1.3rem; }
  .banner-line__arrow { display: none; }
  .banner-line__title { font-size: .9rem; letter-spacing: .05em; line-height: 1.7; white-space: nowrap; }
  .banner-line__lead { margin-top: .6rem; font-size: .7rem; letter-spacing: .04em; line-height: 1.8; }
  .is-en .banner-line__title { font-size: .95rem; white-space: normal; }
  .is-en .banner-line__lead { font-size: .72rem; }
  .front-contact__buttons .btn-line {
    width: 14.3rem; height: 3rem; font-size: .875rem; letter-spacing: .1em;
    display: inline-flex; align-items: center; justify-content: center; padding: 0;
  }
  .front-contact__buttons .btn-line::after,
  .front-contact__buttons .btn-line .btn-line__tip { display: none; }
  .front-about__wave { left: -10%; width: 130%; top: auto; bottom: 8%; }
  .front-about__catch { font-size: 1.45rem; letter-spacing: .22em; }
  .front-about__body p { font-size: .85rem; letter-spacing: .18em; }
  .front-news__inner { grid-template-columns: 1fr; gap: 1rem; }
  .front-news .section-title { margin: 0 0 .5rem; }
  .btn-wrap--right { padding-right: 5.5rem; }
  .btn-line, .btn-line--ja { font-size: .85rem; padding: .7rem 1.6rem; }
  .btn-line::after { width: 4rem; left: calc(100% - 1rem); }
  .btn-line .btn-line__tip { left: calc(100% + 2.85rem); width: .55rem; }
  .link-arrow { font-size: .85rem; }
}

/* news rows (pitch208 thumb308x128) */
.news-row { position: relative; }
.news-row::before, .news-list > .news-row:last-child::after {
  content: ''; display: block; height: 1px; background: var(--grad-line);
}
.news-row__link {
  display: grid; grid-template-columns: 1fr 19.25rem 1.75rem; gap: 1.75rem;
  align-items: center; padding: 2.5rem .25rem;
}
/* タイトル・日付はブロックにする。インラインのままだと親（本文 line-height: 2）の
   行ボックスぶんの余白が上下に付いて、画像やタイトルとの間隔が広がってしまう。 */
.news-row__title { display: block; font-weight: 500; font-size: 1.5rem; letter-spacing: .1em; line-height: 1.7; }
.news-row__date { display: block; font-family: var(--font-en-sans); font-weight: 500;
  font-size: 1.25rem; letter-spacing: .06em; color: var(--c-nav); margin-top: .4rem; }
.news-row__thumb { width: 19.25rem; height: 8rem; object-fit: cover; background: #e9ebeb; }
/* release行: アーティスト2名の丸画像を × でつなぐ（Figma準拠） */
.news-row__artists {
  width: 19.25rem; height: 8rem;
  display: flex; align-items: center; justify-content: center; gap: .9rem;
}
.news-row__artists img {
  width: 6.25rem; height: 6.25rem; border-radius: 50%; object-fit: cover; background: #e9ebeb; flex: none;
}
.news-row__x { font-size: 1.4rem; font-weight: 500; color: var(--c-text); }
.news-row__more { justify-self: end; }
@media (max-width: 900px) {
  .news-row__artists { width: 100%; height: auto; margin-bottom: 1.25rem; gap: .7rem; }
  .news-row__artists img { width: 5.5rem; height: 5.5rem; }
  .news-row__x { font-size: 1rem; }
  .front-news .news-row__artists { display: none; }
  /* 一覧（アーカイブ）: サムネ→タイトル→日付の縦積み（Figma準拠）。
     マークアップはPCのグリッド順のままなので、SPでは order で画像を先頭に出す。
     align-items は PC のグリッド用に center が入っているが、SPの縦積みでは
     テキストが中央寄せになってしまうので stretch に戻す。 */
  .news-row__link { display: flex; flex-direction: column; align-items: stretch;
    text-align: left; gap: 0; padding: 1.5rem .3rem 1.6rem; }
  .news-row__thumb, .news-row__artists { order: -1; }
  .news-row__thumb { width: 100%; height: auto; aspect-ratio: 308 / 173; margin-bottom: 1.25rem; }
  .news-row__more { display: none; }
  .news-row__title { font-size: .9375rem; line-height: 1.5; }
  .news-row__date { font-size: .875rem; font-family: var(--font-ja-sans); line-height: 1.4; margin-top: .3rem; }
  /* トップのNEWS: タイトル+日付のみの行 */
  .front-news .news-row__link { display: grid; grid-template-columns: 1fr 1.5rem; align-items: center; padding: 1.1rem .25rem; }
  .front-news .news-row__thumb { display: none; }
  .front-news .news-row__more { display: inline-block; }
  .front-news .news-row__title { font-size: .9rem; line-height: 1.5; }
  .front-news .news-row__date { font-size: .75rem; line-height: 1.4; margin-top: .35rem; }
}

/* works cards */
.work-card__thumb { aspect-ratio: 1 / 1; object-fit: cover; width: 100%; background: #e9ebeb; }
.work-card__song { text-align: center; font-size: 1.25rem; font-weight: 500; letter-spacing: .14em; margin-top: 1.4rem; }
.work-card__names { text-align: center; font-size: 2rem; font-weight: 500; letter-spacing: .18em; margin-top: .25rem; }
.works-carousel .work-card__song, .works-carousel .work-card__names {
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 100%;
}

.works-carousel {
  display: flex; gap: 2.5rem; align-items: center;
  overflow-x: auto; overflow-y: hidden;
  /* 横スクロールがカルーセル内で完結するようにする。
     これが無いと Mac のトラックパッドで左右に振ったとき、行き止まりで
     ブラウザの「戻る/進む」スワイプやページ自体の横スクロールに繋がってしまう。 */
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  touch-action: pan-x pan-y;
  /* 拡大した中央カードが上下で見切れないようクリップ余白を確保し、
     ネガティブマージンで見た目の位置は変えない */
  padding: 6rem 6vw 6.5rem; margin: -5rem 0 -3.5rem;
  scrollbar-width: none;
}
.works-carousel::-webkit-scrollbar { display: none; }
.works-carousel .work-card {
  /* 非中央カードは基本サイズのまま（拡大しない）。中央のみ拡大 */
  flex: 0 0 20rem; width: 20rem; min-width: 0; box-sizing: border-box;
  scroll-snap-align: center;
}
.works-carousel .work-card {
  transition: transform .45s ease, opacity .45s ease;
  transform-origin: center center;
  opacity: .55;
}
.works-carousel .work-card__inner { display: block; }
.works-carousel .work-card.is-center { opacity: 1; transform: scale(1.28); z-index: 2; }
.work-card__song, .work-card__names { display: block; }
@media (max-width: 900px) {
  .works-carousel { gap: 1.25rem; padding: 4.5rem 4rem 5rem; margin: -2.5rem 0 -2.5rem; }
  /* SPのカード幅はJA/EN共通（ENフレーム実測の160px = 10rem に統一） */
  .works-carousel .work-card { flex-basis: 10rem; width: 10rem; }
  .works-carousel .work-card.is-center { transform: scale(1.22); }
  .work-card__song { font-size: .8rem; }
  .work-card__names { font-size: 1rem; }
}

/* ==========================================================
   5.5 EN overrides（Figma ENフレーム実測）
   ========================================================== */
.is-en .front-about { padding-top: 14.5rem; } /* hero→catch 232 */
.is-en .front-about__catch {
  font-family: 'Noto Serif', serif; font-weight: 500;
  font-size: 3rem; letter-spacing: .02em; line-height: 1.5; margin-bottom: 5rem;
}
.is-en .front-about__body { max-width: 82.5rem; }
.is-en .front-about__body p {
  font-family: 'Noto Serif', serif; font-size: 2rem;
  letter-spacing: .01em; line-height: 1.75; margin-bottom: 1.4em;
}
/* ボタンの幅・高さは JA と共通（ENだけ auto 幅にすると横幅が揃わない） */
.is-en .front-contact__buttons .btn-line { font-size: 2rem; white-space: nowrap; }
.is-en .front-about .btn-wrap { margin-top: 10.5rem; }
.is-en .about-section__label {
  font-family: var(--font-en-serif); font-weight: 600; font-style: italic;
  font-size: 2rem; letter-spacing: .04em;
}
.is-en .profile__name {
  font-family: var(--font-en-serif); font-weight: 600; font-style: italic;
  font-size: 4rem; letter-spacing: .04em;
}
.is-en .profile__heading { font-size: 2rem; letter-spacing: .02em; }
.is-en .profile__sub { letter-spacing: .02em; }
.is-en .contact-form-title { font-size: 2rem; font-weight: 500; letter-spacing: .02em; }
.is-en .entry-head__title { font-size: 2.25rem; letter-spacing: .04em; }
@media (max-width: 900px) {
  .is-en .front-about__catch { font-family: var(--font-en-serif); font-size: 1.25rem; }
  .is-en .front-about__body p { font-family: var(--font-en-serif); font-size: 1rem; line-height: 1.7; }
  .is-en .profile__name { font-size: 1.9rem; }
  .is-en .about-section__label { font-size: 1.1rem; }
  .is-en .front-contact__buttons .btn-line { font-size: 1rem; }

  .is-en .contact-form-title { font-size: 1rem; }
}

/* ==========================================================
   6. Sub page common
   ========================================================== */
.page-main { padding: 6rem 0 10rem; }
@media (max-width: 900px) { .page-main { padding: 3.5rem 0 5.5rem; } }

/* ==========================================================
   7. About
   ========================================================== */
.about-section { display: grid; grid-template-columns: 27rem 1fr; gap: 2rem; margin-bottom: 11rem; }
.about-section:last-child { margin-bottom: 0; }
.about-section__label { font-size: 2.25rem; font-weight: 500; letter-spacing: .32em; white-space: nowrap; }
.about-table { width: 100%; max-width: 57rem; margin-left: -2.25rem; }
.about-table__row { display: grid; grid-template-columns: 13rem 1fr; gap: 1rem; padding: 1.8rem .5rem 1.8rem 2.5rem; position: relative; }
.about-table__row::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.about-table__row:last-child::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.about-table__th { font-weight: 500; font-size: 1.5rem; letter-spacing: .2em; }
.about-table__td { font-weight: 500; font-size: 1.5rem; letter-spacing: .12em; }

.profile__name {
  font-family: var(--font-ja-serif); font-weight: 400;
  font-size: 5rem; letter-spacing: .3em; line-height: 1.4;
  display: flex; align-items: baseline; gap: 1.5rem; flex-wrap: wrap;
}
.profile__romaji {
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 1.75rem; letter-spacing: .08em; color: var(--c-nav);
}
.profile__x {
  align-self: center; width: 4rem; height: 4rem; border-radius: 50%;
  background: var(--c-text); display: inline-flex; align-items: center; justify-content: center;
}
.profile__x svg { width: 1.8rem; height: 1.8rem; fill: #fff; }
.profile__block { margin-top: 5rem; }
.profile__heading { font-size: 2rem; font-weight: 500; letter-spacing: .3em; margin-bottom: 1.2rem; }
.profile__sub { font-size: 1.5rem; font-weight: 500; letter-spacing: .18em; margin: 2.4rem 0 .5rem; }
.profile__text { font-size: 1.5rem; line-height: 2.1; letter-spacing: .08em; }
.profile__sub + .profile__text { font-size: 1.25rem; line-height: 2.2; }
@media (max-width: 900px) {
  .about-section { grid-template-columns: 1fr; gap: 1.5rem; margin-bottom: 5rem; }
  .about-section__label { font-size: .95rem; letter-spacing: .3em; }
  .profile__name { font-size: 1.6rem; gap: .8rem; flex-wrap: nowrap; white-space: nowrap; }
  .profile__romaji { font-size: .8rem; }
  .profile__x { width: 2.2rem; height: 2.2rem; }
  .profile__x svg { width: 1rem; height: 1rem; }
  .profile__heading { font-size: .95rem; }
  .profile__sub { font-size: .9rem; }
  .about-table { margin-left: 0; max-width: none; }
  .about-table__row { grid-template-columns: 1fr; gap: .1rem; padding: 1rem .25rem; }
  .about-table__th { font-size: .8rem; letter-spacing: .18em; }
  .about-table__td { font-size: .85rem; }
  .profile__text { font-size: .85rem; }
  .profile__sub + .profile__text { font-size: .8rem; }
}

/* ==========================================================
   8. News archive / single
   ========================================================== */
.news-layout { display: grid; grid-template-columns: 21rem 1fr; gap: 3rem; align-items: start; }
.news-side .section-title { margin-bottom: 3.5rem; }
.news-cats li { margin: 1.75rem 0; }
.news-cats a {
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 1.75rem; letter-spacing: .1em; color: var(--c-nav);
}
.news-cats .is-active a { color: var(--c-text); border-bottom: 1px solid var(--c-text); padding-bottom: .2rem; }
/* [news_filter] 用（本文中に置かれるので横並び） */
.news-cats--inline { display: flex; gap: 3rem; justify-content: center; margin-bottom: 4rem; }
.news-cats--inline li { margin: 0; }
@media (max-width: 900px) {
  .news-layout { grid-template-columns: 1fr; }
  .news-cats { display: flex; gap: 1.5rem; justify-content: center; }
  .news-cats li { margin: 0 0 .75rem; }
  .news-cats a { font-size: 1rem; }
  .news-cats .is-active a { font-weight: 800; }
}

.gt-pagination { display: flex; justify-content: center; align-items: center; gap: 1.75rem; margin-top: 5rem; }
.gt-pagination .page-numbers {
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 1.5rem; color: var(--c-nav);
}
.gt-pagination .page-numbers.current { color: var(--c-text); border-bottom: 1px solid var(--c-text); }
.gt-pagination .prev, .gt-pagination .next { font-style: normal; }

.entry-head { position: relative; text-align: center; padding: 3rem 1.5rem; margin-bottom: 4rem; }
.entry-head::before, .entry-head::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px; background: var(--grad-line);
}
.entry-head::before { top: 0; } .entry-head::after { bottom: 0; }
.entry-head__title { font-size: 2rem; font-weight: 500; letter-spacing: .16em; line-height: 1.8; }
.entry-head__date { display: block; margin-top: .9rem; font-family: var(--font-en-sans);
  font-weight: 500; font-size: 1.25rem; letter-spacing: .1em; color: var(--c-nav); }

.entry-body { max-width: 72.25rem; margin: 0 auto; }
.entry-body img { margin: 0 auto 3rem; max-width: 62.5rem; width: 100%; }
.entry-body h2, .entry-body h3 { font-size: 1.5rem; font-weight: 700; letter-spacing: .12em; margin: 3rem 0 .75rem; }
.entry-body p { margin-bottom: 1.6em; font-size: 1.5rem; letter-spacing: .06em; }
.entry-body a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 900px) {
  .entry-head__title { font-size: 1.1rem; }
  .entry-head__date { font-size: .75rem; }
  .entry-body p { font-size: .85rem; }
  .entry-body h2, .entry-body h3 { font-size: .95rem; }
}

/* share */
.share { text-align: center; margin: 6rem 0 2.5rem; }
.share__label { font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 2.5rem; letter-spacing: .12em; margin-bottom: 1.5rem; }
.share__list { display: flex; justify-content: center; gap: 1.5rem; }
.share__list a, .share__list button {
  position: relative;
  width: 3.5rem; height: 3.5rem; border-radius: 50%; background: var(--c-text);
  display: flex; align-items: center; justify-content: center;
  border: 0; padding: 0; cursor: pointer;
}
.share__list svg { width: 1.4rem; height: 1.4rem; fill: #fff; }
.share__list a:hover, .share__list button:hover { opacity: .7; }
/* コピー完了の表示（押しても無反応に見えないように） */
.share__copied {
  position: absolute; bottom: calc(100% + .6rem); left: 50%; transform: translateX(-50%);
  white-space: nowrap; padding: .35em .8em; border-radius: 999px;
  background: var(--c-text); color: #fff; font-size: .85rem; letter-spacing: .08em;
  opacity: 0; visibility: hidden; transition: opacity .2s ease;
}
.share__btn.is-copied .share__copied { opacity: 1; visibility: visible; }
@media (max-width: 900px) {
  .share__label { font-size: 1.3rem; }
  .share__list a, .share__list button { width: 2.4rem; height: 2.4rem; }
  .share__list svg { width: 1rem; height: 1rem; }
  .share__copied { font-size: .7rem; }
}

/* prev / back / next */
/* 一覧が0件のときの案内文（本文既定の1.5remだと大きすぎるのでサイトの本文スケールに合わせる） */
.no-posts { font-size: 1.25rem; letter-spacing: .1em; color: var(--c-nav); text-align: center; padding: 4rem 0; }
@media (max-width: 900px) { .no-posts { font-size: .85rem; padding: 2.5rem 0; } }

.post-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 6rem; }
.post-nav a { font-size: 1.25rem; font-weight: 500; letter-spacing: .14em; display: inline-flex; align-items: center; gap: .7rem; }
.post-nav__back { letter-spacing: .2em; }
.post-nav .is-disabled { visibility: hidden; }
@media (max-width: 900px) {
  /* SP: 1行目=前/次を左右振り分け、2行目=一覧へ戻るを中央（Figmaスマホ版の構成）。
     前後が無い記事でも枠が崩れないよう grid で位置を固定する */
  .post-nav { display: grid; grid-template-columns: 1fr 1fr; row-gap: 1.5rem; column-gap: .8rem; margin-top: 3.5rem; }
  .post-nav a { font-size: .8rem; white-space: nowrap; gap: .5rem; }
  .post-nav > a:nth-child(1) { grid-column: 1; grid-row: 1; justify-content: flex-start; }
  .post-nav > a:nth-child(3) { grid-column: 2; grid-row: 1; justify-content: flex-end; }
  .post-nav__back { grid-column: 1 / -1; grid-row: 2; justify-content: center; }
}

/* ==========================================================
   9. Works archive / single
   ========================================================== */
/* minmax(0,1fr) にしないと、折り返せない長いタイトルがある列だけ広くなる
   （本番で 166.8px / 157.2px と左右の幅がずれていた） */
.works-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 4rem 2.5rem; }
.works-grid .work-card { min-width: 0; }
.works-grid .work-card__names, .works-grid .work-card__song { overflow-wrap: anywhere; }
.works-grid .work-card__names { font-size: 1.5rem; }
.works-grid .work-card__song { font-size: 1.125rem; }
@media (max-width: 900px) {
  /* SP: 162pxカード2列・曲名が上 */
  .works-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.2rem 1rem; margin: 0 -.4375rem; }
  .works-grid .work-card { display: flex; flex-direction: column; }
  .works-grid .work-card__thumb { order: 0; }
  .works-grid .work-card__song { order: 1; font-size: .875rem; margin-top: 1.4rem; }
  .works-grid .work-card__names { order: 2; font-size: .875rem; margin-top: .9rem; }
}

.work-hero { max-width: 60rem; margin: 0 auto; }
.work-hero__video { position: relative; aspect-ratio: 16 / 9; background: #dcdedd; }
.work-hero__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.work-hero { display: flex; flex-direction: column; }
.work-hero__meta { display: flex; align-items: baseline; gap: 1.5rem; margin-top: 1.8rem; flex-wrap: wrap; }
.work-hero__names { font-size: 2rem; font-weight: 500; letter-spacing: .2em; }
.work-hero__song { font-size: 1.25rem; font-weight: 500; letter-spacing: .18em; }
.work-hero__date { font-family: var(--font-en-sans); font-weight: 500; margin-top: .5rem;
  font-size: 1.25rem; letter-spacing: .1em; color: var(--c-nav); }
.work-lead { max-width: 74rem; margin: 5.5rem auto 0; }
.work-lead__title { font-size: 1.5rem; font-weight: 700; letter-spacing: .12em; margin-bottom: .9rem; }
.work-lead p { font-size: 1.25rem; letter-spacing: .06em; }

.artist-sec { margin-top: 7.5rem; }
.artist-sec__title { text-align: center; font-family: var(--font-en-serif); font-style: italic;
  font-weight: 500; font-size: 3rem; letter-spacing: .3em; text-indent: .3em; margin-bottom: 4.5rem; }
.artist { display: grid; grid-template-columns: 15.6rem 1fr; gap: 4rem; align-items: center; max-width: 66rem; margin: 0 auto; }
.artist__photo { width: 15.6rem; height: 15.6rem; border-radius: 50%; object-fit: cover; background: #dcdedd; }
.artist__name { font-size: 1.5rem; font-weight: 500; letter-spacing: .14em; margin-bottom: .9rem; }
.artist__bio { font-size: 1.25rem; line-height: 2.1; letter-spacing: .06em; }
.artist__sns { display: flex; flex-wrap: wrap; gap: 1.1rem; margin-top: 1.5rem; }
.artist__sns a { width: 2.9rem; height: 2.9rem; border-radius: 50%; background: var(--c-text);
  display: flex; align-items: center; justify-content: center; }
.artist__sns svg { width: 1.2rem; height: 1.2rem; fill: #fff; }
.artist-x { text-align: center; font-family: var(--font-ja-sans); font-size: 2.5rem; font-weight: 500; margin: 3rem 0; }

/* 記事メディア（youtube_movie / movie / image を共通で扱う） */
.work-hero__video .post-media { position: absolute; inset: 0; }
.work-hero__video .post-media img,
.work-hero__video .post-media video { width: 100%; height: 100%; object-fit: cover; display: block; }
.entry-body .post-media { margin-bottom: 3rem; }
.entry-body .post-media img { margin: 0 auto; }
.entry-body .post-media--video { position: relative; aspect-ratio: 16 / 9; max-width: 62.5rem; margin: 0 auto 3rem; }
.entry-body .post-media--video iframe,
.entry-body .post-media--video video { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* NEWS: サブタイトル / 外部リンク */
.entry-head__sub { margin-top: .9rem; font-size: 1.25rem; letter-spacing: .12em; color: var(--c-nav); }
.entry-external { margin-top: 3.5rem; text-align: center; }
.entry-external .btn-line::after, .entry-external .btn-line .btn-line__tip { display: none; }

/* CREDIT / LISTEN */
.entry-credit, .entry-links { max-width: 74rem; margin: 5rem auto 0; }
.entry-credit__title, .entry-links__title {
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 1.5rem; letter-spacing: .18em; margin-bottom: 1.2rem; position: relative; padding-top: 2rem;
}
.entry-credit__title::before, .entry-links__title::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line);
}
.entry-credit p { font-size: 1.25rem; line-height: 2.1; letter-spacing: .06em; }
.entry-links ul { display: flex; flex-wrap: wrap; gap: 1rem 1.4rem; }
.entry-links li a {
  display: inline-block; border: 1.5px solid var(--c-text); padding: .55rem 1.8rem;
  font-size: 1.15rem; letter-spacing: .1em; background: #fff;
}
.entry-links li a:hover { background: #f7f5fb; }

@media (max-width: 900px) {
  .entry-head__sub { font-size: .8rem; margin-top: .6rem; }
  .entry-external { margin-top: 2rem; }
  .entry-credit, .entry-links { margin-top: 2.75rem; }
  .entry-credit__title, .entry-links__title { font-size: 1rem; padding-top: 1.4rem; margin-bottom: .8rem; }
  .entry-credit p { font-size: .8rem; }
  .entry-links ul { gap: .7rem; }
  .entry-links li a { font-size: .78rem; padding: .45rem 1.1rem; }
  .entry-body .post-media { margin-bottom: 1.6rem; }
  .entry-body .post-media--video { margin-bottom: 1.6rem; }
}

@media (max-width: 900px) {
  .work-hero__names { font-size: 1.15rem; }
  .work-hero__song, .work-hero__date { font-size: .8rem; }
  .work-hero__date { order: -1; margin: 0 0 .6rem; }
  .work-hero__meta { flex-direction: column; align-items: flex-start; gap: .4rem; }
  .work-lead__title { font-size: 1rem; }
  .work-lead p { font-size: .85rem; }
  .artist { grid-template-columns: 1fr; gap: 1.75rem; text-align: center; }
  .artist__photo { margin: 0 auto; width: 12.5rem; height: 12.5rem; }
  .artist__name { font-size: 1rem; }
  .artist__bio { font-size: .8rem; }
  /* SPは4つごとに改行（1行に最大4つ） */
  .artist__sns { display: grid; grid-template-columns: repeat(4, max-content); justify-content: center; gap: .9rem; }
  .artist__sns a { width: 2.6rem; height: 2.6rem; }
  .artist__sns svg { width: 1.05rem; height: 1.05rem; }
  .artist-sec__title { font-size: 1.6rem; }
}

/* ==========================================================
   10. Contact  (フィールド928x102 / ピッチ209)
   ========================================================== */
.contact-form-title { text-align: center; font-size: 1.25rem; font-weight: 700; letter-spacing: .26em; margin: 1rem 0 4.5rem; }
.gt-form { max-width: 58rem; margin: 0 auto; }
.gt-form .form-field { margin-bottom: 4rem; }
.gt-form label.field-label { display: flex; align-items: center; gap: .9rem;
  font-size: 1.25rem; font-weight: 500; letter-spacing: .16em; margin-bottom: .9rem; }
.badge { display: inline-block; font-size: .8rem; font-weight: 500; color: #fff;
  border-radius: 999px; padding: .1rem .9rem; letter-spacing: .1em; line-height: 1.7; }
.badge--req { background: var(--c-pink); }
.badge--opt { background: var(--c-lavender); }

.gt-form input[type="text"], .gt-form input[type="email"], .gt-form input[type="tel"],
.gt-form input[type="url"], .gt-form input[type="date"], .gt-form textarea {
  width: 100%; border: 1px solid var(--c-border); border-radius: .2rem;
  background: #fff; padding: 1.9rem 1.4rem; font: inherit; font-size: 1.25rem;
  letter-spacing: .06em; color: var(--c-text); line-height: 1.6;
}
.gt-form ::placeholder { color: #b9c2c1; }
.gt-form textarea { min-height: 26rem; resize: vertical; }
.gt-form input:focus, .gt-form textarea:focus { outline: 2px solid var(--c-lavender); outline-offset: -1px; }

.gt-form input[type="file"] { font-size: 1.1rem; }
.gt-form input[type="file"]::file-selector-button {
  border: none; background: var(--c-lavender); color: #fff;
  padding: .7rem 1.5rem; border-radius: .2rem; margin-right: 1.2rem;
  font: inherit; font-size: 1rem; letter-spacing: .1em; cursor: pointer;
}

.gt-form .form-agree { text-align: center; margin: 4rem 0 3rem; font-size: 1.25rem; letter-spacing: .1em; }
.gt-form .form-agree a { text-decoration: underline; text-underline-offset: 3px; }
.gt-form .form-submit { text-align: center; position: relative; z-index: 0; }
.gt-form input[type="submit"], .gt-form button[type="submit"] {
  position: relative; font-family: var(--font-en-serif); font-style: italic; font-weight: 700;
  font-size: 1.5rem; letter-spacing: .1em; color: var(--c-text);
  background: #fff; border: 1px solid var(--c-text); padding: .9rem 2.4rem; cursor: pointer;
  line-height: 1.5;
}
.gt-form .wpcf7-spinner { position: absolute; }
.gt-form .wpcf7-not-valid-tip { font-size: 1rem; color: var(--c-pink); margin-top: .4rem; }
.gt-form .wpcf7-response-output { border: 1px solid var(--c-lavender) !important; border-radius: .2rem;
  font-size: 1.1rem; padding: 1rem 1.3rem !important; margin: 2.75rem 0 0 !important; }
.gt-form .wpcf7-list-item { margin: 0; }

.submit-wrap { display: inline-block; position: relative; z-index: 0; }
.submit-wrap::before { content: ''; position: absolute; left: .35rem; top: .35rem; right: -.35rem; bottom: -.35rem;
  background: var(--grad-line); z-index: -1; }
.gt-native-form .form-agree { display: flex; align-items: center; justify-content: center; gap: .65rem; }
.gt-native-form .form-agree input { width: 1.2rem; height: 1.2rem; accent-color: var(--c-lavender); flex: none; }
.gt-honeypot { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-file-note { margin-top: .65rem; color: var(--c-muted); font-size: .9rem; line-height: 1.7; }

/* 添付: ドラッグ＆ドロップ領域（本番フォームと同じく複数ファイル可） */
.form-drop { position: relative; border: 1px dashed var(--c-border); background: rgba(255,255,255,.55);
  padding: 2.4rem 1.5rem; text-align: center; transition: border-color .2s, background .2s; }
.form-drop.is-dragover { border-color: var(--c-lavender); background: rgba(191,182,235,.12); }
.form-drop__text { font-size: 1.1rem; letter-spacing: .08em; color: var(--c-muted); }
.form-drop__btn { display: inline-block; margin-top: 1.2rem; padding: .7rem 2.2rem; cursor: pointer;
  border: 1px solid var(--c-text); background: #fff; font-size: 1.1rem; letter-spacing: .1em; }
.form-drop__btn:hover { background: #f7f5fb; }
.form-drop input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; overflow: hidden; }
.form-drop__list { margin-top: 1.2rem; font-size: 1rem; line-height: 1.9; color: var(--c-text); }
.form-drop__list:empty { margin-top: 0; }
.form-drop__list li { list-style: none; word-break: break-all; }
.is-en .form-drop__text, .is-en .form-drop__btn { letter-spacing: .03em; }
.gt-form__notice { margin: 0 0 3rem; padding: 1rem 1.3rem; border: 1px solid var(--c-lavender);
  background: rgba(255,255,255,.7); font-size: 1rem; text-align: center; }
.gt-form__notice--sent { border-color: #9fc8bf; }
.gt-form__notice--invalid, .gt-form__notice--file_error, .gt-form__notice--failed { border-color: var(--c-pink); }

@media (max-width: 900px) {
  .contact-form-title { font-size: .9rem; margin-bottom: 2.75rem; }
  .gt-form .form-field { margin-bottom: 2.2rem; }
  .gt-form label.field-label { font-size: .85rem; margin-bottom: .55rem; }
  .badge { font-size: .6rem; padding: .05rem .6rem; }
  .gt-form input[type="text"], .gt-form input[type="email"], .gt-form input[type="tel"],
  .gt-form input[type="url"], .gt-form input[type="date"], .gt-form textarea {
    padding: .95rem .9rem; font-size: .85rem;
  }
  .gt-form textarea { min-height: 14rem; }
  .gt-form input[type="file"] {
    display: block; width: 100%; border: 1px solid var(--c-border); border-radius: .2rem;
    padding: .9rem; text-align: center; font-size: .75rem; color: #b9c2c1;
  }
  .gt-form input[type="file"]::file-selector-button {
    display: block; width: 100%; margin: 0 0 .5rem; padding: .7rem;
    font-size: .8rem;
  }
  .form-drop { padding: 1.4rem .9rem; }
  .form-drop__text { font-size: .78rem; }
  .form-drop__btn { margin-top: .8rem; padding: .55rem 1.5rem; font-size: .78rem; }
  .form-drop__list { margin-top: .8rem; font-size: .72rem; }
  .gt-form .form-agree { font-size: .8rem; margin: 2.5rem 0 2rem; }
  .gt-form input[type="submit"], .gt-form button[type="submit"] { font-size: 1rem; padding: .8rem 2.6rem; letter-spacing: .12em; }
  .form-file-note { font-size: .7rem; }
  .gt-form__notice { font-size: .78rem; margin-bottom: 2rem; }
}

/* contact done */
.contact-done { min-height: calc(100svh - var(--header-h) - 7rem);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 5rem;
  background: url(assets/img/hero_bg.webp) center / cover no-repeat; }
.contact-done__msg { font-size: 2rem; font-weight: 500; letter-spacing: .3em; }
@media (max-width: 900px) { .contact-done__msg { font-size: 1.05rem; } }

/* ==========================================================
   11. Privacy / generic page（他ページと同じタイプスケール・罫線に統一）
   ========================================================== */
/* 見出し＋日付ブロックは記事詳細（Figma: NEWS/WORKS 個別ページ）と同じ .entry-head。
   上下の罫線はサイト共通のグラデーション罫線（.entry-head::before / ::after）。 */
.privacy-head { margin-bottom: 7rem; }

/* 本文（Elementor）に入っている区切り線ウィジェットは黒い実線で描画されるため隠す。
   罫線はテーマ側のグラデーション罫線に統一する。 */
.privacy-body .elementor-widget-divider,
.privacy-body .elementor-divider { display: none !important; }
.privacy-body .elementor-divider-separator { border: 0 !important; }

.privacy-body { max-width: 72.25rem; margin: 0 auto; }   /* .entry-body と同幅 */
/* 本番では本文が Elementor 製で、ページ固有CSS（post-N.css）が文字サイズ等を
   上書きしてくる。テーマ側の体裁を確実に当てるため !important で固定する。 */
.privacy-body p { font-size: 1.5rem !important; line-height: 2 !important; letter-spacing: .06em !important;
  color: var(--c-text) !important; text-align: left !important; }
.privacy-body p + p { margin-top: 1.6em; }
.privacy-body > p:first-child { margin-bottom: 1rem; }

/* 条見出しは about テーブルと同じ grad-line の罫線で区切る。
   文字サイズは本文と同じで太さで差をつける（記事詳細の小見出しと同じ扱い）。 */

.privacy-body ol { list-style: decimal; padding-left: 1.7em; margin-top: 1.2rem; }
.privacy-body ol + ol { margin-top: 0; }
.privacy-body li { font-size: 1.5rem !important; line-height: 2 !important; letter-spacing: .06em !important;
  color: var(--c-text) !important; margin-bottom: .9rem; }
.privacy-body ol ol { list-style: lower-alpha; padding-left: 1.9em; margin: .9rem 0 .3rem; color: var(--c-nav); }
.privacy-body ol ol ol { list-style: lower-roman; }
/* 本文に残っている Elementor 由来の固定pxインデントを打ち消し、rem基準に揃える */
.privacy-body [style]:not(h1):not(h2):not(h3):not(h4) { padding-left: 0 !important; padding-top: 0 !important; margin-left: 0 !important; }
.privacy-body li[style*="none"] { margin-bottom: 0; }

/* 本文がページビルダー（Elementor等）で作られていても崩れないようにする。
   ビルダーのコンテナは素の block に戻し、見出し・リストはテーマ側の体裁を当てる。 */
.privacy-body .elementor-element,
.privacy-body .elementor-widget,
.privacy-body .elementor-widget-container,
.privacy-body .e-con,
.privacy-body .e-con-inner,
.privacy-body .e-child,
.privacy-body [data-element_type] {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  background: none !important;
  border: 0 !important;
  gap: 0 !important;
}
/* 条見出し（本文の見出しは h2 とは限らず、現行の本文は h3 を使っている） */
.privacy-body h1, .privacy-body h2, .privacy-body h3, .privacy-body h4 {
  position: relative;
  margin: 5rem 0 2.2rem !important; padding: 3.5rem 0 0 !important;
  font-size: 1.5rem !important; font-weight: 700 !important; letter-spacing: .12em !important;
  line-height: 1.7 !important; color: var(--c-text) !important; text-align: left !important;
}
.privacy-body h1::before, .privacy-body h2::before,
.privacy-body h3::before, .privacy-body h4::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line);
}
/* 本文の一番先頭に見出しが来たときだけ上マージンを消す。
   ビルダーの本文は見出しが1つずつ div で包まれていて、どの見出しも
   :first-child になってしまうため、直下の子に限定する。 */
.privacy-body > h1:first-child, .privacy-body > h2:first-child,
.privacy-body > h3:first-child, .privacy-body > h4:first-child { margin-top: 0 !important; }
/* ビルダーが list-style を落としている場合の復帰 */
.privacy-body ol { list-style: decimal outside; }
.privacy-body ul { list-style: disc outside; padding-left: 1.7em; }

/* --- Elementor のレスポンシブ表示クラス -------------------------------------
   現行サイトの本文は「PC用コンテナ」と「SP用コンテナ」を “両方” 出力していて、
   Elementor 側の CSS で片方だけを隠している（elementor-hidden-mobile /
   elementor-hidden-desktop / elementor-hidden-tablet）。
   テーマ単体ではこの CSS が無いため、本文がまるごと二重に表示されてしまう。
   同じ挙動になるようテーマ側にも同等のルールを持たせる。
   ブレークポイントは現行サイトの Elementor 設定（mobile 767 / tablet 1024）と同じ。
   上のビルダー打ち消しが `.privacy-body [data-element_type] { display:block !important }`
   なので、クラスを重ねて詳細度で確実に勝たせる。 */
@media (max-width: 767px) {
  .elementor-hidden-mobile.elementor-hidden-mobile.elementor-hidden-mobile { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .elementor-hidden-tablet.elementor-hidden-tablet.elementor-hidden-tablet { display: none !important; }
}
@media (min-width: 1025px) {
  .elementor-hidden-desktop.elementor-hidden-desktop.elementor-hidden-desktop { display: none !important; }
}

/* 英語ページも日本語ページと同じ体裁にする（英語用の明朝・字間の上書きはしない）。
   見出しブロックのサイズも .is-en の記事詳細用ではなく日本語と同じ値に戻す。 */
.is-en .privacy-head .entry-head__title { font-size: 2rem; letter-spacing: .16em; }

@media (max-width: 900px) {
  .privacy-head { margin-bottom: 3.5rem; }
  /* 英語ページも日本語と同じサイズにする（.is-en の記事詳細用が効いてしまうため） */
  .is-en .privacy-head .entry-head__title { font-size: 1.1rem; letter-spacing: .16em; }
  .privacy-body p, .privacy-body li { font-size: .85rem !important; line-height: 2 !important; letter-spacing: .06em !important; }
  .privacy-body p + p { margin-top: 1.2rem; }
  /* 本文の見出しは h2 とは限らない（現行の本文は h3 を使っている） */
  .privacy-body h1, .privacy-body h2, .privacy-body h3, .privacy-body h4 {
    margin: 3rem 0 1.4rem !important; padding: 2rem 0 0 !important; font-size: .95rem !important; letter-spacing: .12em !important;
  }
  .privacy-body ol { padding-left: 1.5em; margin-top: .9rem; }
  .privacy-body ol ol { padding-left: 1.4em; margin: .6rem 0 .2rem; }
  .privacy-body li { margin-bottom: .65rem; }
}

/* ==========================================================
   11.5 Autobiography（about ページと同じ意匠・タイプスケールに統一）
   ========================================================== */
/* 見出しSVGを持たないページ用のテキスト版ページタイトル（Cabrito代替=Playfair） */
.section-title--text {
  font-family: var(--font-en-serif); font-weight: 400;
  font-size: 4.4rem; letter-spacing: .18em; line-height: 1.2; color: var(--c-text);
}

.autobio-catch {
  font-family: var(--font-ja-serif); font-weight: 500;
  font-size: 2.625rem; letter-spacing: .3em; line-height: 1.9; margin-bottom: 2.4rem;
}
.autobio-catch em {
  font-style: normal; color: transparent;
  background: linear-gradient(90deg, #9e8dd8, #6fa9c2 55%, #94b8a9);
  -webkit-background-clip: text; background-clip: text;
}
.is-en .autobio-catch { font-family: var(--font-en-serif); font-size: 3rem; letter-spacing: .02em; line-height: 1.5; }
.is-en .autobio-catch em { font-style: italic; }

.autobio-lead p { font-family: var(--font-ja-serif); font-size: 1.5rem; letter-spacing: .12em; line-height: 2.4; }
.autobio-lead p + p { margin-top: 1.6rem; }
.is-en .autobio-lead p { font-family: var(--font-en-serif); letter-spacing: .02em; line-height: 1.9; }

/* 連番は NEWS カテゴリ等と同じ Playfair イタリック＋サイトのラベンダー */
.autobio-num {
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600;
  font-size: 1.75rem; letter-spacing: .08em; color: var(--c-lavender);
}

.autobio-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 4rem; }
.autobio-feature { position: relative; padding: 2.4rem 0 2.2rem; }
.autobio-feature::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.autobio-feature h3 { margin: .5rem 0 .9rem; font-size: 1.5rem; font-weight: 500; letter-spacing: .2em; }
.autobio-feature p { font-size: 1.25rem; line-height: 2.2; letter-spacing: .08em; }
.is-en .autobio-feature h3, .is-en .autobio-feature p { letter-spacing: .02em; }

.autobio-flow li { position: relative; display: grid; grid-template-columns: 6rem 1fr; gap: 2rem; padding: 2.2rem .5rem 2.2rem 2.5rem; }
.autobio-flow li::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.autobio-flow li:last-child::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.autobio-flow h3 { font-size: 1.5rem; font-weight: 500; letter-spacing: .2em; }
.autobio-flow p { margin-top: .6rem; font-size: 1.25rem; line-height: 2.2; letter-spacing: .08em; }
.is-en .autobio-flow h3, .is-en .autobio-flow p { letter-spacing: .02em; }

.autobio-faq details { position: relative; }
.autobio-faq details::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.autobio-faq details:last-child::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: var(--grad-line); }
.autobio-faq summary {
  list-style: none; position: relative; cursor: pointer;
  padding: 2rem 3.5rem 2rem 3.2rem; font-size: 1.5rem; font-weight: 500; letter-spacing: .16em;
}
.autobio-faq summary::-webkit-details-marker { display: none; }
.autobio-faq summary::before {
  content: 'Q'; position: absolute; left: .4rem; top: 1.75rem;
  font-family: var(--font-en-serif); font-style: italic; font-weight: 600; font-size: 1.75rem; color: var(--c-lavender);
}
.autobio-faq summary::after {
  content: ''; position: absolute; right: .9rem; top: 50%; margin-top: -.45rem;
  width: .7rem; height: .7rem; border-right: 1px solid var(--c-text); border-bottom: 1px solid var(--c-text);
  transform: rotate(45deg); transition: transform .3s;
}
.autobio-faq details[open] summary::after { transform: rotate(-135deg); margin-top: -.15rem; }
.autobio-faq details p { padding: 0 3.5rem 2.2rem 3.2rem; font-size: 1.25rem; line-height: 2.2; letter-spacing: .08em; }
.is-en .autobio-faq summary, .is-en .autobio-faq details p { letter-spacing: .02em; }

.autobio-cta { margin-top: 9rem; text-align: center; }
.autobio-cta__catch { font-family: var(--font-ja-serif); font-weight: 500; font-size: 2.625rem; letter-spacing: .3em; line-height: 1.9; }
.is-en .autobio-cta__catch { font-family: var(--font-en-serif); letter-spacing: .02em; }
.autobio-cta__lead { margin: 1.4rem 0 3.5rem; font-size: 1.25rem; letter-spacing: .12em; line-height: 2.2; }
.is-en .autobio-cta__lead { letter-spacing: .02em; }
.autobio-cta .btn-wrap { display: flex; justify-content: center; }
.autobio-cta .btn-line { min-width: 26.3rem; height: 5.125rem; display: inline-flex; align-items: center; justify-content: center; }

@media (max-width: 900px) {
  .section-title--text { font-size: 1.5rem; letter-spacing: .14em; }
  .autobio-catch { font-size: 1.45rem; letter-spacing: .22em; line-height: 1.8; margin-bottom: 1.4rem; }
  .is-en .autobio-catch { font-size: 1.4rem; }
  .autobio-lead p { font-size: .85rem; line-height: 2.1; letter-spacing: .1em; }
  .is-en .autobio-lead p { line-height: 1.8; }
  .autobio-lead p + p { margin-top: 1rem; }
  .autobio-num { font-size: 1.1rem; }
  .autobio-features { grid-template-columns: 1fr; gap: 0; }
  .autobio-feature { padding: 1.3rem 0 1.4rem; }
  .autobio-feature h3 { margin: .25rem 0 .5rem; font-size: .95rem; letter-spacing: .16em; }
  .autobio-feature p { font-size: .8rem; line-height: 2; }
  .autobio-flow li { grid-template-columns: 2.8rem 1fr; gap: .8rem; padding: 1.3rem .25rem 1.4rem; }
  .autobio-flow h3 { font-size: .95rem; letter-spacing: .16em; }
  .autobio-flow p { margin-top: .35rem; font-size: .8rem; line-height: 2; }
  .autobio-faq summary { padding: 1.35rem 2rem 1.35rem 1.9rem; font-size: .9rem; letter-spacing: .12em; }
  .autobio-faq summary::before { left: .1rem; top: 1.2rem; font-size: 1.1rem; }
  .autobio-faq summary::after { right: .3rem; width: .5rem; height: .5rem; margin-top: -.32rem; }
  .autobio-faq details p { padding: 0 2rem 1.4rem 1.9rem; font-size: .8rem; line-height: 2; }
  .autobio-cta { margin-top: 4rem; }
  .autobio-cta__catch { font-size: 1.3rem; letter-spacing: .2em; }
  .autobio-cta__lead { margin: .9rem 0 2rem; font-size: .8rem; }
  .autobio-cta .btn-line { min-width: 14.3rem; height: 3rem; font-size: .875rem; letter-spacing: .1em; padding: 0; }
  .autobio-cta .btn-line::after, .autobio-cta .btn-line .btn-line__tip { display: none; }
}


/* --- 本番レイアウト: 中央3行 + 罫線ボックス --- */
.autobio-opening { padding: 7rem 0 2rem; }
.autobio-lines {
  text-align: center; font-family: var(--font-ja-serif); font-weight: 400;
  font-size: 1.6rem; letter-spacing: .16em; line-height: 2.9;
}
.autobio-ruled {
  max-width: 62rem; margin: 6rem auto 0;
  background: linear-gradient(180deg, rgba(250,246,239,.85), rgba(250,247,242,.55));
  padding: 1.2rem 0;
}
.autobio-ruled li {
  list-style: none; position: relative;
  padding: .85rem 2.6rem; font-size: 1.1rem; letter-spacing: .08em; line-height: 1.9;
}
.autobio-ruled li + li::before {
  content: ''; position: absolute; top: 0; left: 1.4rem; right: 1.4rem; height: 1px;
  background: rgba(180,168,148,.35);
}

/* --- 本番レイアウト: 中央の小見出し + 行組み --- */
.autobio-sec { margin-top: 9rem; }
.autobio-sec__title {
  text-align: center; font-family: var(--font-ja-serif); font-weight: 500;
  font-size: 1.25rem; letter-spacing: .3em; padding-bottom: 1.8rem; position: relative;
}
.autobio-sec__title::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--grad-line);
}
.autobio-rows { }
.autobio-row {
  display: grid; grid-template-columns: 8rem 22rem 1fr; gap: 2rem; align-items: center;
  padding: 2.4rem .5rem; position: relative;
}
.autobio-row + .autobio-row::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: var(--grad-line);
}
.autobio-row h3 { font-size: 1.35rem; font-weight: 600; letter-spacing: .14em; }
.autobio-row p { font-size: 1rem; line-height: 2; letter-spacing: .06em; color: var(--c-nav); }

@media (max-width: 900px) {
  .autobio-opening { padding: 3rem 0 1rem; }
  .autobio-lines { font-size: .95rem; letter-spacing: .1em; line-height: 2.4; }
  .autobio-ruled { margin-top: 2.5rem; padding: .6rem 0; }
  .autobio-ruled li { padding: .6rem 1.1rem; font-size: .78rem; line-height: 1.9; }
  .autobio-ruled li + li::before { left: .6rem; right: .6rem; }
  .autobio-sec { margin-top: 4rem; }
  .autobio-sec__title { font-size: .95rem; letter-spacing: .22em; padding-bottom: 1.1rem; }
  .autobio-row { grid-template-columns: 2.8rem 1fr; gap: .3rem .8rem; padding: 1.3rem .25rem; }
  .autobio-row h3 { grid-column: 2; font-size: .95rem; letter-spacing: .12em; }
  .autobio-row p { grid-column: 2; font-size: .8rem; }
  .autobio-row .autobio-num { grid-row: 1 / span 2; align-self: start; }
}

/* --- ヒーロー（本番の現行画像をそのまま使用。PC=横組み / SP=縦組みの2種） --- */
.autobio-hero { line-height: 0; }
.autobio-hero img { display: block; width: 100%; height: auto; }

/* --- 制作の流れ: 本番アイコン画像（見出し・サブラベルは画像に含まれる） --- */
.autobio-flow--img li { grid-template-columns: 6rem 16rem 1fr; align-items: center; }
.autobio-flow__img { width: 100%; height: auto; }

/* --- 完成イメージ: 写真＋仕様表 --- */
.autobio-book { display: grid; grid-template-columns: 20rem 1fr; gap: 2.5rem; align-items: center; }
.autobio-book__photo { width: 100%; height: auto; }
.autobio-book .about-table { margin-left: 0; max-width: none; }
.autobio-book .about-table__row { grid-template-columns: 9rem 1fr; padding: 1.5rem .5rem 1.5rem 1.5rem; }
.autobio-book .about-table__th, .autobio-book .about-table__td { font-size: 1.25rem; }

/* --- CTA: 本番の現行ボタン画像 --- */
.autobio-cta__buttons { display: flex; flex-direction: column; align-items: center; gap: 2.6rem; }
.autobio-cta__btn { display: block; width: 100%; max-width: 30rem;
  padding: 0; border: 0; background: none; cursor: pointer; }
.autobio-cta__btn img { display: block; width: 100%; height: auto; }
.autobio-cta__btn:hover { opacity: .78; }

@media (max-width: 900px) {
  .autobio-flow--img li { grid-template-columns: 2.6rem 5.6rem 1fr; gap: .8rem; }
  .autobio-book { grid-template-columns: 1fr; gap: 1.4rem; }
  .autobio-book__photo { max-width: 19.5rem; margin: 0 auto; }
  /* SPは他ページ同様、表を縦積みに戻す */
  .autobio-book .about-table__row { grid-template-columns: 1fr; padding: 1rem .25rem; }
  .autobio-book .about-table__th { font-size: .8rem; }
  .autobio-book .about-table__td { font-size: .85rem; }
  .autobio-cta__buttons { gap: 1.2rem; }
  .autobio-cta__btn { max-width: 14.7rem; }
}


/* ==========================================================
   11.6 自叙伝 料金表モーダル（本番 gl-tone.net の現行デザインを移植）
   ========================================================== */
html.quote-modal-open, body.quote-modal-open { overflow: hidden; }
/* モーダルは本番の素の行送りが前提。テーマのグローバル line-height(2) を継がせない */
.quote-modal { line-height: 1.65; }
.quote-modal__title { line-height: 1.3; }
.quote-modal__footer-btn { line-height: 1; }

blockquote{color:var(--ast-global-color-3);}

.wp-block-pullquote {border: none;}

.wp-block-pullquote blockquote::before {content: "\201D";font-family: "Helvetica",sans-serif;display: flex;transform: rotate( 180deg );font-size: 6rem;font-style: normal;line-height: 1;font-weight: bold;align-items: center;justify-content: center;}

.has-text-align-right > blockquote::before {justify-content: flex-start;}

.has-text-align-left > blockquote::before {justify-content: flex-end;}

figure.wp-block-pullquote.is-style-solid-color blockquote {max-width: 100%;text-align: inherit;}

blockquote {margin: 1.5em;border-color: rgba(0,0,0,0.05);}

.wp-block-quote:not(.has-text-align-right):not(.has-text-align-center) {border-left: 5px solid rgba(0,0,0,0.05);}

.has-text-align-right > blockquote,blockquote.has-text-align-right {border-right: 5px solid rgba(0,0,0,0.05);}

.has-text-align-left > blockquote,blockquote.has-text-align-left {border-left: 5px solid rgba(0,0,0,0.05);}

:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}

/* 自叙伝金額モーダル */

.quote-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}

.quote-modal.is-open { display: flex; }

.quote-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  animation: quoteFadeIn 0.25s ease;
}

@keyframes quoteFadeIn { from { opacity: 0; } to { opacity: 1; } }

@keyframes quoteSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote-modal__container {
  position: relative;
  background: #fff;
  border-radius: 24px;
  width: 100%;
  max-width: 880px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px 28px;
  box-sizing: border-box;
  animation: quoteSlideUp 0.3s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.quote-modal__container::-webkit-scrollbar { display: none; width: 0; height: 0; }

.quote-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  width: 36px;
  height: 36px;
  cursor: pointer;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s ease, color 0.15s ease;
  padding: 0;
  z-index: 2;
}

.quote-modal__close:hover { background: #f3f4f6; color: #4b5563; }

.quote-modal__inner {
  display: flex;
  flex-direction: column;
}

/* ===== ヘッダー ===== */
.quote-modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.quote-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}

.quote-modal__subtitle {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
  line-height: 1.7;
}

/* ===== 全プラン共通の制作内容 ===== */
.quote-included {
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  padding: 22px 0 24px;
  margin-bottom: 28px;
}

.quote-included__title {
  font-size: 12px;
  color: #6b7280;
  text-align: center;
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.quote-included__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 12px;
}

.quote-included__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.quote-included__icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.quote-included__name {
  font-size: 13px;
  font-weight: 600;
  color: #1f2937;
  line-height: 1.4;
}

.quote-included__detail {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

/* ===== 値段カード ===== */
.quote-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

.quote-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.quote-card__header {
  background: #eff6ff;
  color: #1e40af;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  padding: 12px;
  letter-spacing: 0.05em;
}

.quote-card__price {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.quote-card__price-tax {
  font-size: 13px;
  color: #6b7280;
  margin-right: 6px;
  vertical-align: middle;
}

.quote-card__price-amount {
  font-size: 44px;
  font-weight: 700;
  color: #1e40af;
  letter-spacing: -1px;
  vertical-align: middle;
}

.quote-card__price-yen {
  font-size: 18px;
  color: #1f2937;
  margin-left: 4px;
  vertical-align: middle;
}

.quote-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.quote-card__row:not(:last-child) {
  border-bottom: 1px solid #f3f4f6;
}

.quote-card__row:nth-child(even) {
  background: #fafafa;
}

.quote-card__label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  font-size: 13px;
  color: #4b5563;
  font-weight: 500;
}

.quote-card__label svg {
  flex-shrink: 0;
  color: #2563eb;
}

.quote-card__value {
  padding: 12px 18px;
  font-size: 13px;
  color: #1f2937;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* ===== 注意書き ===== */
.quote-modal__note {
  background: #f9fafb;
  border-left: 3px solid #2563eb;
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.quote-modal__note-icon {
  flex-shrink: 0;
  color: #2563eb;
  margin-top: 2px;
}

.quote-modal__note p {
  font-size: 12px;
  color: #4b5563;
  margin: 0;
  line-height: 1.7;
}

/* ===== フッターボタン ===== */
.quote-modal__footer-btn {
  width: 100%;
  background: #1e40af;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s ease;
  letter-spacing: 0.05em;
}

.quote-modal__footer-btn:hover { background: #1e3a8a; }

/* モーダル表示中の裏側スクロールロック */
html.quote-modal-open,
body.quote-modal-open {
  overflow: hidden !important;
}

@media (min-width: 768px) {
  .quote-modal { padding: 0; }
 
  .quote-modal__container {
    width: 100vw;
    height: 100vh;
    max-width: none;
    max-height: none;
    border-radius: 0;
    box-shadow: none;
    padding: 40px 40px 32px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
 
  .quote-modal__close {
    top: 28px;
    right: 32px;
    width: 42px;
    height: 42px;
  }
 
  .quote-modal__inner {
    width: 100%;
    max-width: 1100px;
    gap: 0;
  }
 
  .quote-modal__header {
    margin-bottom: 24px;
  }
  .quote-modal__title {
    font-size: 28px;
  }
  .quote-modal__subtitle {
    font-size: 14px;
  }
 
  /* 共通サービス:4列 */
  .quote-included {
    padding: 20px 0;
    margin-bottom: 24px;
  }
  .quote-included__title {
    margin-bottom: 18px;
    font-size: 13px;
  }
  .quote-included__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
  }
  .quote-included__icon-wrap {
    width: 48px;
    height: 48px;
  }
  .quote-included__name {
    font-size: 14px;
  }
  .quote-included__detail {
    font-size: 12px;
  }
 
  /* 値段カード:2列横並び */
  .quote-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
  }
  .quote-card__header {
    padding: 14px;
    font-size: 16px;
  }
  .quote-card__price {
    padding: 22px 16px;
  }
  .quote-card__price-amount {
    font-size: 42px;
  }
  .quote-card__label,
  .quote-card__value {
    padding: 11px 20px;
    font-size: 14px;
  }
 
  /* 注意書きとボタン */
  .quote-modal__note {
    margin-bottom: 16px;
    padding: 12px 16px;
  }
  .quote-modal__note p {
    font-size: 12px;
  }
  .quote-modal__footer-btn {
    max-width: 320px;
    margin: 0 auto;
    padding: 14px 16px;
  }
}

@media (min-width: 768px) and (max-height: 800px) {
  .quote-modal__container { padding: 24px 40px; }
  .quote-modal__header { margin-bottom: 16px; }
  .quote-modal__title { font-size: 24px; margin-bottom: 6px; }
  .quote-included { padding: 14px 0; margin-bottom: 16px; }
  .quote-included__title { margin-bottom: 12px; }
  .quote-included__icon-wrap { width: 40px; height: 40px; }
  .quote-cards { gap: 20px; margin-bottom: 16px; }
  .quote-card__price { padding: 16px; }
  .quote-card__price-amount { font-size: 36px; }
  .quote-card__label, .quote-card__value { padding: 9px 18px; font-size: 13px; }
  .quote-modal__note { margin-bottom: 12px; padding: 10px 14px; }
}

/* ==========================================================
   12. Footer (h=113, Montserrat 24)
   ========================================================== */
.site-footer {
  background: var(--c-footer); color: #fff; text-align: center;
  min-height: 7rem; display: flex; flex-direction: column; justify-content: center;
  padding: 1.2rem;
}
.site-footer__company { font-size: 1.1rem; font-weight: 500; letter-spacing: .2em; margin-bottom: .2rem; display: none; }
.site-footer__copy { font-family: var(--font-en-sans); font-weight: 500; font-size: 1.5rem; letter-spacing: .22em; }
@media (max-width: 900px) {
  .site-footer { position: relative; min-height: 0; color: #8b9a99; overflow: hidden;
    margin-top: auto; text-align: center; }   /* auto = 本文が短いときは画面ボトムへ */
  .site-footer > * { position: relative; }
  .site-footer__company { display: block; font-family: var(--font-en-sans); font-size: 1rem; letter-spacing: .14em; margin-bottom: .4rem; }
  .site-footer__copy { font-size: .875rem; letter-spacing: .14em; color: #8b9a99; }

  /* TOP/ENトップ（CONTACT節のオーロラを継いで白へフェード） */
  .has-hero .site-footer { padding: 20vw 1.2rem 3rem;
    background: linear-gradient(180deg, #b6dce6 0%, #cfe8ec 18%, #ffffff 52%); }
  .has-hero .site-footer::before { content: ''; position: absolute; left: -20%; top: 6vw; width: 140%; height: 40vw;
    background: radial-gradient(120% 80% at 30% 100%, #fff 42%, rgba(255,255,255,0) 72%);
    pointer-events: none; }

  /* サブページ（ページ背景のオーロラに馴染む・帯なし） */
  body:not(.has-hero) .site-footer { padding: 10vw 1.2rem 3rem; background: transparent; }
  body:not(.has-hero) .site-footer::before { content: ''; position: absolute; left: 0; right: 0; bottom: 0;
    top: -6vw; background: linear-gradient(180deg, rgba(255,255,255,0) 0%, #fff 60%); pointer-events: none; }
}

/* ==========================================================
   13. 404 / utility
   ========================================================== */
/* 404 / エラーページ: PC・SPとも1画面ぴったりに収め、スクロールさせない */
.is-fullscreen-page,
.is-fullscreen-page body { overflow: hidden; }
body.is-fullscreen-page {
  height: 100svh; min-height: 100svh; overflow: hidden;
  display: flex; flex-direction: column;
}
body.is-fullscreen-page > main { flex: 1 1 auto; min-height: 0; display: flex; }
body.is-fullscreen-page .site-footer { flex: none; }
.error-404 { flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 4rem; padding: 6rem 1.5rem;
  background: url(assets/img/hero_bg.webp) center / cover no-repeat; }
.error-404__code { font-family: var(--font-en-serif); font-weight: 700; font-size: 7.5rem;
  line-height: 1; letter-spacing: .12em; text-indent: .12em; color: var(--c-text); }
.error-404__text { display: grid; gap: 1.4rem; }
.error-404__msg { font-size: 2rem; font-weight: 500; letter-spacing: .3em; }
.error-404__sub { font-size: 1.25rem; letter-spacing: .1em; color: var(--c-nav); }
.is-en .error-404__msg { font-family: var(--font-en-serif); letter-spacing: .1em; }
.is-en .error-404__sub { letter-spacing: .04em; }
/* 検索結果ゼロなどの空状態 */
.empty-state { text-align: center; padding: 6rem 1.5rem 2rem; }
.empty-state__msg { font-size: 1.5rem; font-weight: 500; letter-spacing: .2em; }
.empty-state__sub { margin-top: 1.2rem; font-size: 1.1rem; letter-spacing: .08em; color: var(--c-nav); }
.empty-state .btn-wrap { margin-top: 4rem; }
@media (max-width: 900px) {
  .empty-state { padding: 3rem 1rem 1rem; }
  .empty-state__msg { font-size: .95rem; letter-spacing: .16em; }
  .empty-state__sub { margin-top: .8rem; font-size: .78rem; }
  .empty-state .btn-wrap { margin-top: 2.5rem; }
  .error-404 { gap: 2.5rem; padding: 4rem 1.5rem; }
  .error-404__code { font-size: 3.6rem; }
  .error-404__text { gap: .9rem; }
  .error-404__msg { font-size: 1.05rem; letter-spacing: .24em; }
  .error-404__sub { font-size: .8rem; letter-spacing: .06em; line-height: 1.9; }
}
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ==========================================================
   14. カスケード最終補正（基本ルールより後に置くこと）
   ========================================================== */
@media (min-width: 901px) {
  .hero { height: calc(100svh - var(--header-h)); min-height: 34rem; }
  /* hero付きページ: ヒーロー全画面 + ヘッダーはヒーロー直後 → スクロールで追従 */
  body.has-hero { padding-top: 0; }
  .has-hero .hero { height: 100svh; min-height: 38rem; }
  .has-hero .site-header { position: absolute; top: 100svh; left: 0; right: 0; box-shadow: none; }
  .has-hero .site-header.is-fixed { position: fixed; top: 0; box-shadow: 0 1px 0 rgba(73,81,80,.06); }
  /* 自叙伝: ヒーロー直後にヘッダー → スクロールで追従（高さは画像比率なのでJSが実測値を渡す） */
  body.has-hero--autobio { padding-top: 0; }
  .has-hero--autobio .site-header {
    position: absolute; top: var(--gt-hero-h, 40rem); left: 0; right: 0; box-shadow: none;
  }
  .has-hero--autobio .site-header.is-fixed {
    position: fixed; top: 0; box-shadow: 0 1px 0 rgba(73,81,80,.06);
  }
}
