/* ============================================================
   startin 共通CSS（snekke-kit をダーク基調に組み替えたもの）
   ------------------------------------------------------------
   ★規律：ブランド色の直値をここに書かない。色は必ず var() を参照する
     （トークンは parts/theme.php が site.php の色から生成する）。
   ★アニメは opacity / transform に限定（レイアウトを動かさない＝CLSゼロ）。
     prefers-reduced-motion: reduce で全停止する。
   ★参考サイトから持ち込んだ「顔」＝縦書きのグラデ英字／白帯に黒の巨大英字／
     写真の段違い重ね／ピル型の細枠ボタン／四角ドット／斜めの光の筋／流れる英字
   ============================================================ */

@font-face {
  font-family: 'BrandEn';
  src: url('/assets/fonts/brand-var.woff2') format('woff2');
  font-weight: 100 900;
  font-display: swap;
}

/* ── リセット・ベース ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; background: var(--bg); }
body {
  position: relative;
  font-family: var(--font-jp);
  color: var(--ink);
  background: transparent;
  line-height: 1.9;
  font-size: 16px;
  line-break: strict;
  -webkit-font-smoothing: antialiased;
}
/* ★地の奥に、うっすらとしたグラデーションの滲み（参考サイトの左端の光）。
   ゴールドとインディゴの radial を文書全体に散らす。セクションは透明にしてこれを透かす。
   位置は文書の高さに対する%なので、ページの長さが違っても散り方は同じ */
body::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    /* 上部：左のゴールド（縁に寄せる＝本文に被らない位置で強く出す） */
    radial-gradient(1250px 900px at 1% 6%,     rgba(225,193,0,.48),  transparent 72%),
    /* 上部：右のインディゴ */
    radial-gradient(1250px 1000px at 104% 22%, rgba(74,86,200,.62),  transparent 70%),
    /* ★中央上のうねり（参考サイトの中央のあれ）。暗い色なので本文に被っても読める */
    radial-gradient(820px 1050px at 52% 26%,   rgba(74,86,200,.40),  transparent 66%),
    /* 中段：左のネイビー */
    radial-gradient(1100px 900px at -2% 45%,   rgba(39,44,113,.98),  transparent 68%),
    /* ★中段：中央のゴールド。★ここだけ弱くする＝本文の真上で、ゴールドは明るいので効かせすぎると読めない */
    radial-gradient(820px 660px at 64% 46%,    rgba(225,193,0,.17),  transparent 66%),
    /* ★右の中段にもゴールドを足す（左右どちらにも温かみを出す） */
    radial-gradient(900px 780px at 99% 44%,    rgba(225,193,0,.26),  transparent 68%),
    /* 中段：右のインディゴ */
    radial-gradient(1150px 980px at 102% 63%,  rgba(74,86,200,.55),  transparent 68%),
    /* ★フッター：左下のゴールド（いちばん目立たせる。角に寄せて本文を避ける） */
    radial-gradient(1100px 840px at 4% 92%,    rgba(225,193,0,.42),  transparent 68%),
    /* ★フッター：中央〜下のインディゴ */
    radial-gradient(1350px 820px at 52% 99%,   rgba(74,86,200,.70),  transparent 70%),
    /* ★フッター：右のネイビー */
    radial-gradient(900px 700px at 98% 86%,    rgba(39,44,113,1),    transparent 68%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
.en { font-family: var(--font-en); letter-spacing: .04em; }
.pc-br { display: none; }
@media (min-width: 768px) { .pc-br { display: inline; } }
.br-sp { display: none; }
@media (max-width: 767px) { .br-sp { display: inline; } }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
:root { --pad-sec: clamp(64px, 8vw, 120px); }

/* ── スクロール出現（[data-rev]）──────────────────────────── */
html.js [data-rev] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22,.65,.3,1);
  transition-delay: var(--d, 0s);
}
html.js [data-rev].on,
html.js.rev-safe [data-rev] { opacity: 1; transform: none; }

/* ── ボタン（ピル型が基本。ghost＝白の細枠／gold＝塗り）─────────── */
.pill {
  display: inline-flex; align-items: center; gap: 16px;
  padding: 14px 26px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.55); color: var(--ink);
  font-weight: 700; font-size: 14px; letter-spacing: .06em;
  transition: background .25s ease, border-color .25s ease, color .25s ease;
}
.pill svg { width: 24px; height: 8px; transition: transform .25s ease; }
.pill:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.pill:hover svg { transform: translateX(5px); }
.pill--gold { background: var(--gold); border-color: var(--gold); color: var(--on-brand); }
.pill--gold:hover { background: var(--brand-l); border-color: var(--brand-l); }
.pill--sm { padding: 11px 20px; font-size: 13px; gap: 12px; }
/* kit共通の .btn（フォーム送信・サンクス）もゴールドのピルに寄せる */
.btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--gold); color: var(--on-brand);
  font-weight: 700; font-size: 15px; letter-spacing: .06em;
  padding: 16px 34px; border: 1px solid var(--gold);
  border-radius: 999px; cursor: pointer;
  transition: background .25s ease, color .25s ease;
}
.btn svg { width: 24px; height: 8px; transition: transform .25s ease; }
.btn:hover { background: var(--brand-l); border-color: var(--brand-l); }
.btn:hover svg { transform: translateX(5px); }
.tlink { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; font-size: 13.5px; }
.tlink svg { width: 22px; height: 7px; transition: transform .25s ease; }
.tlink:hover svg { transform: translateX(4px); }

/* ── セクション共通 ───────────────────────────────────────── */
.sec { position: relative; padding-block: var(--pad-sec); background: transparent; }
/* ★縞（--bg-2 の交互）は 2026-09-14 ボス指示でやめた。全セクション同じ地にして光の滲みを透かす */
.sec--tint { background: transparent; }
.sec__more { margin-top: clamp(28px, 3.4vw, 44px); text-align: right; }
.h2 { font-size: clamp(24px, 3.2vw, 38px); font-weight: 800; line-height: 1.5; letter-spacing: .03em; }
.body { margin-top: clamp(16px, 2vw, 24px); }
/* ★本文は参考サイトの実測値に合わせる（2026-09-15 ボス指示）。
   ベネッセ実測＝16px / line-height 40px(2.50) / letter-spacing 0.48px(.03em) / weight400 / 純白。
   ★目立って見える理由はサイズではなく「純白」と「行間2.5」だった（向こうは16pxでこちらより小さい）。
     サイズは 16.5px のまま少し大きく取り、色と行間・字送りを合わせる */
.body p { color: #fff; font-size: 16.5px; line-height: 2.5; letter-spacing: .03em; }
.body p + p { margin-top: 20px; }
.body + .pill { margin-top: clamp(22px, 2.6vw, 32px); }

/* ★孤立行（最終行に1〜2文字だけ落ちる）を潰す。対応していないブラウザでは無効になるだけ。
   ★雛形0号のクラス名（.sec__h/.intro__h 等）のままSP限定で入っていたが、startinには存在せず
     1つも当たっていなかった（2026-09-14 実測で発覚）。startinのクラスへ当て直し、全幅で効かせる */
.h2, .sec__h, .msg__lead, .sdet__name, .feat__title, .blog__title, .svc6__name, .svc6__desc,
.phil__st, .phil__desc, .cta__h, .cta__note, .cf__h, .cf__note, .body p, .article__body p,
.fv__lead, .flow__desc, .feat__desc, .thx__lead p, .pp__in p, .rel__desc, .profile__row dd {
  text-wrap: pretty;
}

/* ── 装飾：縦書きのグラデ英字ラベル ──────────────────────────
   セクションの端に立てる。1320px未満は余白が無いので出さない（本文に被る） */
.vlabel {
  position: absolute; top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; pointer-events: none; z-index: 1;
  /* ★太さはページ見出しの大きな英字（.ph .lbl＝300）と揃える（2026-09-14 ボス指示） */
  font-weight: 300; font-size: clamp(38px, 5.4vw, 78px); letter-spacing: .06em; line-height: 1;
  background: var(--grad-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: .95; white-space: nowrap;
}
.vlabel--l { left: clamp(8px, 1.8vw, 30px); }
.vlabel--r { right: clamp(8px, 1.8vw, 30px); }
/* ── 装飾：四角ドット ── */
.dots { position: absolute; width: 44px; height: 44px; pointer-events: none; }
/* ── 装飾：斜めの光の筋（親に position:relative; overflow:hidden）── */
.streaks { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.streaks i {
  position: absolute; left: -25%; width: 150%; display: block;
  background: linear-gradient(90deg, transparent 0%, var(--streak-a) 35%, var(--streak-b) 65%, transparent 100%);
  transform: rotate(-22deg); transform-origin: center;
}
.streaks i:nth-child(1) { top: 28%; height: 120px; filter: blur(64px); opacity: .32; }
.streaks i:nth-child(2) { top: 58%; height: 2px;  filter: blur(1px);  opacity: .75; }
.streaks i:nth-child(3) { top: 66%; height: 1px;  filter: blur(.5px); opacity: .45; }
.fv__streaks { z-index: 1; }
.fv__streaks { -webkit-mask-image: var(--fv-fade); mask-image: var(--fv-fade); }
.fv__streaks i:nth-child(1) { top: 22%; height: 180px; opacity: .55; }
.fv__streaks i:nth-child(2) { top: 50%; opacity: .95; }
.fv__streaks i:nth-child(3) { top: 57%; height: 2px; opacity: .6; }

/* ── 写真2枚の段違い重ね（.duo）── */
.duo { position: relative; padding-bottom: clamp(34px, 5vw, 64px); }
.duo--br { padding-right: clamp(34px, 5vw, 64px); }
.duo--bl { padding-left: clamp(34px, 5vw, 64px); }
.duo__a { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-card); }
.duo__a--tall { aspect-ratio: 4 / 5; }
.duo__b {
  position: absolute; bottom: 0; width: 44%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-card); border: 1px solid var(--line);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.duo--br .duo__b { right: 0; }
.duo--bl .duo__b { left: 0; }

/* ============================================================
   ヘッダー（地色の半透明。白ロゴ＋ゴールドのCTA）
   ============================================================ */
.hd {
  position: sticky; top: 0; z-index: 100;
  /* ★地は薄く敷く（2026-09-14 ボス指示：78% → 0% → 30%）。
     ★ぼかしは外したまま＝30%だと、ぼかしがあると帯のゆがみが目立つ。
       ★スクロール中にヘッダーが戻ってきたとき本文・写真に重なる件は 30% では完全には消えない。
         気になったら .hd.stuck 側で地を濃くする（1行）。 */
  background: color-mix(in srgb, var(--bg) 30%, transparent);
  border-bottom: 1px solid transparent;
  transition: transform .3s ease, border-color .3s ease;
}
.hd.stuck { border-color: var(--line); }
.hd--hide { transform: translateY(-100%); }
/* ★ヘッダーは全幅（2026-09-14 ボス指示）。ロゴを左端・ナビを右端へ寄せる */
.hd__in {
  max-width: none; margin-inline: 0; padding-inline: clamp(20px, 2.6vw, 48px);
  display: flex; align-items: center; justify-content: space-between; height: clamp(76px, 7.2vw, 104px);
}
/* ★ロゴは参考サイトと同じくらいの存在感に（2026-09-14 ボス指示）。
   画像は ink の bbox に切り出し済み（上下の透明余白14.5%を除去）＝同じ高さでも文字が大きく出る */
.logo--img { height: clamp(48px, 4.8vw, 72px); width: auto; }
.hd__r { display: flex; align-items: center; gap: 30px; }
.hd__nav { display: flex; gap: 30px; }
.hd__nav a { position: relative; font-size: clamp(13px, 1.02vw, 14.8px); font-weight: 700; letter-spacing: .12em; padding-block: 6px; }
.hd__nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: center; transition: transform .25s ease;
}
.hd__nav a:hover::after, .hd__nav a[aria-current="page"]::after { transform: scaleX(1); }
/* ★現在地はグラデーションの文字にする（2026-09-14 ボス指示・参考サイト準拠）。
   ★--grad-text（濃いインディゴ終わり）は 13px では読めないので --grad-nav を使う */
.hd__nav a[aria-current="page"] {
  background: var(--grad-nav);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hd__cta {
  background: var(--gold); color: var(--on-brand);
  font-size: 13px; font-weight: 700; letter-spacing: .08em;
  padding: 11px 22px; border-radius: 999px; transition: background .25s ease;
}
.hd__cta:hover { background: var(--brand-l); }
/* Instagram（ヘッダー・丸ボタン／2026-09-15 ボス指示） */
.hd__ig {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; border-radius: 50%;
  /* ★「無料相談」と同じ金の塗り。線色＝地の色で、アイコンが抜ける
     （2026-09-15 に金→青のグラデを試したが、ボス判断で金の単色に戻した） */
  background: var(--gold); color: var(--on-brand);
  transition: background .25s ease;
}
.hd__ig .ico { width: 22px; height: 22px; stroke-width: 1.9; }
.hd__ig:hover { background: var(--brand-l); }
.burger { display: none; }
@media (max-width: 1024px) {
  .hd__nav, .hd__cta, .hd__ig { display: none; }
  .burger { display: flex; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; padding: 10px; background: none; border: 0; cursor: pointer; }
  .burger i { display: block; height: 2px; background: var(--ink); transition: transform .3s ease, opacity .3s ease; }
  body.nav-open .burger i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .burger i:nth-child(2) { opacity: 0; }
  body.nav-open .burger i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
.drawer {
  position: fixed; inset: 0; z-index: 90; background: var(--bg);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s;
  overflow-y: auto; padding-top: 100px;
}
.drawer.on { opacity: 1; visibility: visible; transform: none; }
.drawer__in { padding: 0 32px 48px; }
.drawer__nav { display: flex; flex-direction: column; }
.drawer__nav a { display: flex; align-items: baseline; gap: 14px; padding: 18px 4px; font-size: 19px; font-weight: 800; letter-spacing: .1em; border-bottom: 1px solid var(--line); }
.drawer__ja { font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--muted); }
.drawer__cta { margin-top: 32px; }

/* ============================================================
   FV（左=写真を斜めに切る／右=白帯の英字＋和文キャッチ）
   ============================================================ */
.fv { position: relative; overflow: hidden; min-height: min(86vh, 860px); display: grid; align-items: center; }
/* ★FV右側（キャッチの奥）の光の滲み＝参考サイトの右上の光（2026-09-14 ボス指示）。
   写真の斜めの縁にも少し掛けて、写真と地をつなぐ */
.fv::before {
  content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(1000px 760px at 94% 8%,   rgba(225,193,0,.34),  transparent 60%),
    radial-gradient(1100px 900px at 102% 74%, rgba(74,86,200,.58),  transparent 62%),
    radial-gradient(900px 700px at 66% 104%,  rgba(39,44,113,.95),  transparent 62%),
    radial-gradient(600px 500px at 58% 30%,   rgba(74,86,200,.30),  transparent 62%);
}
/* ★FVの下端を溶かす（ボス指示 2026-09-14）。
   ★単色（--bg）で塞ぐと、FVの中だけ body::before の滲みが消え、FVの下で急に復活して
     かえって境界線になる（実測：x=200 で #0B0E24 → #1D1D21・差36／右端は差0）。
     だから塞がずに、FV自身の層（光・写真）をマスクで下へ向けて抜き、地の滲みを連続させる。 */
.fv::before { -webkit-mask-image: var(--fv-fade); mask-image: var(--fv-fade); }
.fv { --fv-fade: linear-gradient(180deg, #000 0%, #000 52%, rgba(0,0,0,.35) 84%, transparent 100%); }
.fv__media {
  /* ★2026-09-15 本写真（4人＋光の筋）は横2:1の一枚絵。左60%の斜めパネル（縦横比1.1）に
     object-fit:cover で入れると横を44%も捨て、両端の2人が枠外へ出る（実測）。
     全幅に敷いて写真を最後まで見せ、右側はベールでキャッチの地を作る。 */
  position: absolute; top: 0; bottom: 0; left: 0; width: 86%; z-index: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0,0,0,.45) 88%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 66%, rgba(0,0,0,.45) 88%, transparent 100%);
}
.fv__img { width: 100%; height: 100%; object-fit: cover; }
.fv__media::after {
  content: ''; position: absolute; inset: 0;
  /* ★キャッチは写真の上に直接のせる（参考サイトと同じ）。ただし写真の右側は
     ゴールドと青の光が強く、白文字が乗ると 4.5:1 を割る。文字の載る範囲だけ地を沈める。 */
  background: linear-gradient(90deg, transparent 30%, var(--veil-3) 46%, var(--veil-2) 60%, var(--veil-1) 84%, var(--veil-1) 100%),
              linear-gradient(0deg, var(--veil-2) 0%, transparent 35%);
}
.fv__in { position: relative; z-index: 2; width: 100%; padding-block: clamp(56px, 9vh, 120px); }
.fv__copy { margin-left: auto; width: min(560px, 100%); }
.fv__en { display: flex; flex-direction: column; align-items: flex-start; gap: 2px; }
.fv__en span {
  display: inline-block; background: #fff; color: var(--bg);
  /* ★1行に固定する（en_lines は ['NEVER STOP','STARTING'] の2行が正）。
     nowrap が無いと 560px の .fv__copy に収まらず「NEVER / STOP」で割れ、
     箱の右側に大きな白い空白ができて不自然になる（2026-09-15 ボス指摘）。
     最大 88px だと 582px 必要で 22px はみ出すため 84px に下げて余裕を持たせる。 */
  font-weight: 800; font-size: clamp(38px, 6vw, 84px); letter-spacing: .01em;
  /* ★参考サイト（ベネッセ DIGITAL INNOVATION PARTNERS）は白箱が字高にほぼ等しい。
     実測＝箱高÷字高が ベネッセ1.04 に対し、line-height:1＋緩い余白だと1.61で間延びする。
     line-height を下げて箱を字高へ寄せる（適用後1.10）。左右も詰めて文字を縁に接させる */
  line-height: .73;
  padding: .03em .06em .02em;
  white-space: nowrap;
}
.fv__catch { margin-top: 26px; font-size: clamp(24px, 2.8vw, 38px); font-weight: 800; line-height: 1.5; letter-spacing: .04em; }
.fv__line { display: block; overflow: hidden; }
.fv__line > span { display: inline-block; }
.fv__lead { margin-top: 16px; color: var(--muted); font-size: 15.5px; line-height: 2; }
.fv__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.fv__vlabel {
  position: absolute; right: clamp(10px, 2vw, 30px); top: 50%; transform: translateY(-50%);
  writing-mode: vertical-rl; display: flex; gap: 22px; align-items: center;
  /* ★参考サイトと同じくらい読める大きさに（2026-09-14 ボス指示）。
     字送りは広げすぎると細って見えるので、大きくするぶん少し詰める */
  font-size: clamp(11.5px, .95vw, 14px); font-weight: 600; letter-spacing: .2em;
  color: rgba(255,255,255,.9); z-index: 2;
}
.fv__vlabel span:last-child { color: rgba(255,255,255,.72); }
.fv__vlabel span:last-child::before { content: ''; display: inline-block; width: 1px; height: 34px; background: rgba(255,255,255,.5); margin-bottom: 16px; }
/* 登場（ページロード時） */
html.js .fv__img { transform: scale(1.06); animation: fv-zoom 7s cubic-bezier(.2,.6,.3,1) forwards; }
html.js .fv__line > span { transform: translateY(110%); animation: fv-line .9s cubic-bezier(.22,.65,.3,1) forwards; animation-delay: calc(.35s + var(--i, 0) * .12s); }
html.js .fv__en span { opacity: 0; transform: translateX(-12px); animation: fv-rise .7s cubic-bezier(.22,.65,.3,1) forwards; }
html.js .fv__en span:nth-child(2) { animation-delay: .12s; }
html.js .fv__lead, html.js .fv__btns { opacity: 0; animation: fv-fade .8s ease forwards .8s; }
@keyframes fv-zoom { to { transform: scale(1); } }
@keyframes fv-line { to { transform: translateY(0); } }
@keyframes fv-fade { to { opacity: 1; } }
@keyframes fv-rise { to { opacity: 1; transform: none; } }

/* ============================================================
   TOP
   ============================================================ */
.who__in { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }

/* 6カード（3列・高さを揃えてフラットに並べる／2026-09-15 ボス指示で段差をやめた） */
.svc6__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(30px, 3.6vw, 48px);
  /* ★grid-auto-rows:1fr で「行ごとの最大」ではなく全行を同じ高さにする。
     これが無いと1行目だけ2行の説明文に引っ張られて、2行目と高さが変わる */
  grid-auto-rows: 1fr;
}
.svc6__card {
  display: block; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card);
  padding: 26px 24px 28px; transition: border-color .25s ease, box-shadow .25s ease;
}
.svc6__card:hover { border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,.35); }
.svc6__no { display: block; color: var(--gold); font-weight: 800; font-size: 22px; line-height: 1; }
.svc6__name { display: block; margin-top: 12px; font-size: 17px; font-weight: 700; line-height: 1.5; }
.svc6__desc { display: block; margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.95; }

/* Founder */
.fdr__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }

/* 相談の流れ */
.flow__head { text-align: center; }
.flow__steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: clamp(30px, 4vw, 52px); }
.flow__no { display: flex; align-items: center; gap: 14px; color: var(--gold); font-weight: 800; font-size: clamp(28px, 3vw, 40px); line-height: 1; }
.flow__step:not(:last-child) .flow__no::after { content: ''; flex: 1; height: 1px; background: var(--line-strong); }
.flow__name { margin-top: 14px; font-size: 16px; font-weight: 700; }
.flow__desc { margin-top: 6px; color: var(--muted); font-size: 14.5px; line-height: 1.95; }

/* コラム（TOP）・お知らせ（TOP） */
.blog--flat .blog { margin-top: clamp(30px, 3.6vw, 48px); }
.newssec__in { display: grid; grid-template-columns: 260px 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.newssec__head .pill { margin-top: 20px; }
.news__list li { border-bottom: 1px solid var(--line); }
.news__list li:first-child { border-top: 1px solid var(--line); }
.news__list a { display: flex; align-items: baseline; gap: 28px; padding: 18px 8px; transition: background .25s ease; }
.news__list a:hover { background: rgba(255,255,255,.04); }
.news__list time { font-family: var(--font-en); font-weight: 700; font-size: 13.5px; color: var(--gold); flex-shrink: 0; font-variant-numeric: tabular-nums; }
.news__list span { font-size: 15px; font-weight: 500; flex: 1; }
.news__list a::after { content: '→'; color: var(--muted); font-size: 14px; }

/* 流れる英字 */
/* ★上下の罫線は無し（2026-09-14 ボス指示）。地はセクションで区切らない */
.mq { overflow: hidden; padding-block: clamp(26px, 3.6vw, 48px); border: 0; background: transparent; }
.mq__track { display: flex; width: max-content; white-space: nowrap; animation: mq 34s linear infinite; }
/* ★太さは他の大きな英字（.ph .lbl／.vlabel＝300）と揃える（ボス指示） */
.mq__t { display: inline-flex; align-items: center; gap: .28em; font-weight: 300; font-size: clamp(44px, 8vw, 118px); line-height: 1; letter-spacing: .04em; padding-right: .28em; }
/* ★塗りのある★文字をやめ、白の輪郭だけの星に（ボス指示）。線の太さは字の細さに合わせる */
.mq__star { width: .5em; height: .5em; flex-shrink: 0; color: #fff; opacity: .9; stroke-width: 1.1; }
@keyframes mq { to { transform: translateX(-50%); } }

/* ============================================================
   下層共通：ページの入り口（大きな英字＋ゴールドの罫＋和文）
   ============================================================ */
.ph { position: relative; overflow: hidden; background: transparent; padding-block: clamp(44px, 6.5vw, 90px) clamp(26px, 3.6vw, 50px); }
.ph__in { position: relative; z-index: 1; }
/* ★.lbl はページ見出しの大きな英字専用になった（2026-09-15 ボス指示で小さい金色のラベルを全廃） */
.ph .lbl { display: block; font-family: var(--font-en); color: var(--ink); font-weight: 300; font-size: clamp(46px, 8vw, 104px); letter-spacing: .06em; line-height: 1; margin-bottom: 14px; }
.ph__h { position: relative; display: inline-block; padding-top: 16px; font-size: clamp(18px, 2vw, 22px); font-weight: 700; letter-spacing: .06em; }
.ph__h::before { content: ''; position: absolute; top: 0; left: 0; width: 36px; height: 2px; background: var(--gold); }
.ph__bc { position: absolute; right: 0; bottom: 4px; font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.ph__bc a { color: var(--muted); }
.ph__bc a:hover { color: var(--ink); }
.ph__in--lead { display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: end; padding-bottom: 28px; }
.ph__in--lead .ph__bc { bottom: 0; }

/* ============================================================
   サービス
   ============================================================ */
.sintro__in { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.band-h { display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.band-h span {
  display: inline-block; background: #fff; color: var(--bg);
  font-weight: 800; font-size: clamp(20px, 2.6vw, 32px); line-height: 1.35; letter-spacing: .03em;
  padding: .1em .45em .14em;
}
/* ★写真の下の英字ラベルは削除（2026-09-15 ボス指示）。
   ラベルのぶん空けていた下の 26px も一緒に戻す（残すと写真の下だけ余白が広い） */
.sintro__media { padding-bottom: clamp(34px, 5vw, 64px); }
.sdet { position: relative; padding-block: clamp(44px, 5.5vw, 80px); border-top: 1px solid var(--line); background: transparent; }
.sdet__in { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.sdet--rev .sdet__media { order: 2; }
.sdet__no { color: var(--gold); font-weight: 800; font-size: clamp(30px, 3.4vw, 46px); line-height: 1; }
.sdet__name { margin-top: 8px; font-size: clamp(20px, 2.2vw, 26px); font-weight: 800; line-height: 1.5; }
.sdet__lead p { font-size: 16px; }   /* .body p を継承（純白・行間2.5） */
.sdet__body .pill { margin-top: clamp(20px, 2.4vw, 28px); }

/* ============================================================
   会社概要
   ============================================================ */
.msg__in { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 6vw, 90px); align-items: center; }
.msg__lead { font-size: clamp(26px, 3.4vw, 42px); font-weight: 800; line-height: 1.5; letter-spacing: .04em; }
/* ★代表のプロフィール＝写真の直下（2026-09-19 ボス指示）。左寄せ。
   写真の右下に小さい写真がはみ出す（.duo の padding-bottom の中）ので、その下から始める。
   資格名の途中では割らず、区切りの「／」を行末側に付ける（折り返した行頭に「／」が来ない） */
.msg__prof { margin-top: 22px; }
.msg__prof-role { font-size: 13px; letter-spacing: .06em; color: var(--muted); }
.msg__prof-name { margin-top: 2px; font-size: clamp(20px, 1.9vw, 24px); font-weight: 700; letter-spacing: .14em; }
.msg__quals { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.msg__quals-h { font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--gold); }
.msg__quals-list { display: flex; flex-wrap: wrap; margin-top: 4px; font-size: 13px; line-height: 1.9; letter-spacing: .03em; color: var(--muted); }
.msg__quals-list li { white-space: nowrap; }
.msg__quals-list li:not(:last-child)::after { content: '／'; margin-inline: .25em; color: rgba(255,255,255,.4); }
/* ★本文の右に余白が大きく空いていたので、縦ロゴを置いた（2026-09-15 ボス指示）。
   本文の幅（820px）はそのまま、ロゴは余った右側に収める */
/* ★本文を細く・ロゴを大きく（2026-09-15 ボス指示）。
   wrap 1180px − 左右padding48 = 1132px。本文650 + gap72 + ロゴ枠410 でちょうど収まる */
.about__cols { display: grid; grid-template-columns: minmax(0, 650px) 1fr; gap: clamp(30px, 5vw, 72px); align-items: center; }
.about__body { max-width: 650px; }
.about__logo { margin: 0; justify-self: center; }
.about__logo img { display: block; width: clamp(210px, 27vw, 400px); height: auto; }
.phil__st { text-align: center; font-size: clamp(23px, 3.2vw, 36px); font-weight: 800; letter-spacing: .04em; }
.phil__items { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(34px, 4vw, 54px); text-align: center; }
.phil__item { padding: 10px 24px; }
.phil__item + .phil__item { border-left: 1px solid var(--line); }
.phil__item .ico { width: 42px; height: 42px; color: var(--gold); margin: 0 auto 16px; }
.phil__name { font-size: 18px; font-weight: 700; }
.phil__desc { margin-top: 8px; color: var(--muted); font-size: 14.5px; line-height: 1.95; }
.profile__tbl { margin-top: clamp(24px, 3vw, 40px); }
.profile__row { display: grid; grid-template-columns: 180px 1fr; gap: 20px; padding: 20px 8px; border-bottom: 1px solid var(--line); }
.profile__row:first-child { border-top: 1px solid var(--line); }
.profile__row dt { color: var(--muted); font-size: 14.5px; }
.profile__row dd { font-size: 15.5px; line-height: 2.2; letter-spacing: .02em; }
.profile__biz { list-style: decimal; padding-left: 1.7em; display: grid; gap: 6px; }
.profile__biz li { padding-left: .3em; font-size: 15px; line-height: 2.2; letter-spacing: .02em; }
.rel__card {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: clamp(20px, 2.6vw, 30px); padding: 26px 30px;
  border: 1px solid var(--line-strong); border-radius: var(--r-card);
  transition: border-color .25s ease, background .25s ease;
}
a.rel__card:hover { border-color: var(--gold); background: rgba(255,255,255,.04); }
.rel__name { display: block; font-size: clamp(17px, 1.8vw, 20px); font-weight: 800; }
.rel__desc { display: block; margin-top: 6px; color: var(--muted); font-size: 15px; }
.rel__ext { font-size: 26px; line-height: 1; flex-shrink: 0; }

/* ============================================================
   コラム（ブログ式カード＝kit の .blog をダークに寄せる）
   ============================================================ */
.blog {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 3.2vw, 42px) clamp(20px, 2.2vw, 28px);
  /* ★見出しが1行の記事と2行の記事が混ざるので、揃えないと行ごとに高さが変わる（2026-09-15 ボス指示） */
  grid-auto-rows: 1fr;
}
/* カードを行の高さいっぱいに伸ばし、中身は上から詰める（伸びた分は下に余白として残す） */
.blog__card { height: 100%; }
.blog__link { display: grid; grid-template-rows: auto auto; align-content: start; gap: 14px; color: inherit; height: 100%; }
.blog__thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-card); background: var(--bg-2); }
.blog__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.blog__link:hover .blog__thumb img { transform: scale(1.05); }
.blog__thumb--none { display: grid; place-items: center; }
.blog__thumb-ph { font-weight: 800; font-size: clamp(15px, 1.6vw, 19px); letter-spacing: .24em; color: var(--ink); opacity: .2; }
.blog__body { display: grid; gap: 9px; }
.blog__meta { display: flex; align-items: center; gap: 12px; }
.blog__cat {
  display: inline-flex; align-items: center; gap: 7px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 4px 12px 4px 10px;
  font-size: 11.5px; font-weight: 700; letter-spacing: .04em; color: var(--ink); white-space: nowrap;
}
.blog__cat::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
a.blog__cat:hover { border-color: var(--gold); }
.blog__date { font-family: var(--font-en); font-size: 13px; font-weight: 700; color: var(--muted); font-variant-numeric: tabular-nums; }
.blog__title { font-size: 16px; font-weight: 700; line-height: 1.75; }
.blog__link:hover .blog__title { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }
.blog__tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: clamp(26px, 3vw, 38px); }
.blog__tab {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--line-strong); border-radius: 999px; padding: 9px 20px 9px 16px;
  font-size: 13px; font-weight: 700; color: var(--ink);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.blog__tab::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.blog__tab:hover { border-color: var(--gold); }
.blog__tab.is-current { background: var(--gold); border-color: var(--gold); color: var(--on-brand); }
.blog__tab.is-current::before { background: var(--on-brand); }
/* 注目記事（一覧の先頭） */
.feat { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: center; margin-bottom: clamp(40px, 5vw, 72px); }
.feat__thumb { display: block; aspect-ratio: 16 / 10; overflow: hidden; border-radius: var(--r-card); background: var(--bg-2); }
.feat__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.7,.2,1); }
.feat__thumb:hover img { transform: scale(1.04); }
.feat__title { margin-top: 14px; font-size: clamp(22px, 2.6vw, 32px); font-weight: 800; line-height: 1.5; }
.feat__title a:hover { text-decoration: underline; text-underline-offset: 5px; }
.feat__desc { margin-top: 12px; color: var(--muted); font-size: 15.5px; line-height: 2; }
.feat__body .pill { margin-top: 22px; }

/* ============================================================
   記事
   ============================================================ */
/* ★760pxは窮屈という指摘（2026-09-15 ボス）。16.5px／行間2.5 で1行あたり約53字に広げる */
.article__in { max-width: 900px; }
.article__meta { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.article__date { font-family: var(--font-en); font-weight: 700; font-size: 14px; color: var(--gold); }
.article__h { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; line-height: 1.6; margin: 10px 0 34px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.article__body p { font-size: 16.5px; line-height: 2.5; letter-spacing: .03em; color: #fff; }
.article__body p + p, .article__body ul + p, .article__body p + ul { margin-top: 22px; }
/* ★見出しは h2→h5 で「太さ・大きさ・飾り」が段階的に弱くなるように組む。
   h2＝金の縦棒／h3＝金の短い下線／h4＝金の小さな点／h5＝金の小文字ラベル風 */
.article__body h2 { font-size: 20px; font-weight: 800; margin: 44px 0 14px; padding-left: 14px; border-left: 3px solid var(--gold); line-height: 1.6; }
.article__body h3 { font-size: 18px; font-weight: 800; margin: 36px 0 12px; padding-bottom: 8px; line-height: 1.6; border-bottom: 1px solid var(--line); }
.article__body h3::after { content: ''; display: block; width: 46px; height: 2px; background: var(--gold); margin-bottom: -9px; position: relative; top: 9px; }
.article__body h4 { font-size: 16.5px; font-weight: 800; margin: 30px 0 10px; line-height: 1.7; display: flex; align-items: baseline; gap: 9px; }
.article__body h4::before { content: ''; flex: none; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.article__body h5 { font-size: 15px; font-weight: 700; margin: 26px 0 8px; line-height: 1.7; color: rgba(255,255,255,.92); letter-spacing: .04em; }
.article__body h2 + p, .article__body h3 + p, .article__body h4 + p, .article__body h5 + p { margin-top: 0; }
.article__body ul, .article__body ol { padding-left: 1.5em; margin-top: 18px; }
.article__body ul li, .article__body ol li { font-size: 16.5px; line-height: 2.4; letter-spacing: .03em; color: #fff; }
.article__body ul li { list-style: disc; }
.article__body ol li { list-style: decimal; }
.article__body ol li::marker { color: var(--gold); font-weight: 700; }
.article__body ol + p { margin-top: 22px; }
.article__body blockquote {
  margin: 30px 0; padding: 20px 22px; border-left: 3px solid var(--indigo);
  background: var(--card); border-radius: var(--r-card);
}
.article__body blockquote p { margin: 0; font-size: 15.5px; color: rgba(255,255,255,.9); }
.article__body a { color: var(--gold); text-decoration: underline; }
/* アイキャッチ */
.article__eye { margin: 0 0 34px; border-radius: var(--r-card); overflow: hidden; background: var(--bg-2); }
.article__eye img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.article__back { margin-top: 44px; }

/* ============================================================
   お問い合わせ
   ============================================================ */
/* ★フォームの幅は .wrap（1180px）に任せる＝下の「お問い合わせの流れ」と同じ幅（2026-09-17 ボス指示）。
   ★ここで max-width を上書きしない。2026-09-15 に 820px の絞りを外すつもりで none にしたら、
     .wrap の上限まで消えて 1180px 超の画面で全幅になった */
.cf__side { text-align: center; margin-bottom: clamp(26px, 3vw, 38px); }
.cf__h { font-size: clamp(22px, 2.8vw, 30px); font-weight: 800; line-height: 1.6; }
/* ★フォーム周りは滲みが強い帯に乗る。--muted だと 3.55:1 で割れる（実測）ので白へ寄せる */
.cf__note { font-size: 14px; color: rgba(255,255,255,.78); }
.cf__req, .cf__opt { display: inline-block; margin-left: 10px; padding: 1px 8px; font-size: 11px; font-weight: 700; border-radius: 3px; vertical-align: 2px; }
.cf__req { background: var(--gold); color: var(--on-brand); }
.cf__opt { background: var(--bg-2); color: var(--muted); border: 1px solid var(--line); }
.cf__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 40px 36px; }
.f-hp { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.f-row { margin-bottom: 22px; }
.f-row label { display: block; font-size: 14px; font-weight: 700; margin-bottom: 8px; }
.f-row input, .f-row select, .f-row textarea {
  width: 100%; font: inherit; font-size: 15px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--line-strong); border-radius: 6px; padding: 12px 14px;
  transition: border-color .2s ease;
}
.f-row input::placeholder, .f-row textarea::placeholder { color: rgba(174,180,210,.55); }
.f-row input:focus, .f-row select:focus, .f-row textarea:focus { outline: none; border-color: var(--gold); }
.f-row .is-err, .f-agree .is-err { border-color: #ff7a94; }
.f-err { display: none; font-size: 12.5px; color: #ff9db1; margin-top: 6px; }
.f-err.on { display: block; }
.f-alert { display: none; font-size: 14px; font-weight: 700; color: #ffb3c3; background: rgba(255,90,120,.14); border: 1px solid rgba(255,90,120,.35); border-radius: 6px; padding: 12px 16px; margin-bottom: 20px; }
.f-alert.on { display: block; }
.f-agree { display: flex; align-items: center; gap: 10px; font-size: 14px; margin-top: 28px; }
.f-agree a { color: var(--gold); text-decoration: underline; }
.f-agree input { width: 18px; height: 18px; accent-color: var(--gold); }
.act { margin-top: 28px; }
.cf__form .act { text-align: center; }
.is-sending { opacity: .6; pointer-events: none; }
.f-sample { margin: 0 0 20px; padding: 14px 16px; border: 1px solid var(--line); border-radius: var(--r-card); background: rgba(255,255,255,.04); font-size: 13.5px; line-height: 1.85; }
.flow__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(26px, 3vw, 38px); }
.flow__item { position: relative; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-card); padding: 26px 26px 28px; }
.flow__item .flow__no { font-size: 26px; }
.flow__item .flow__name { margin-top: 12px; }
.flow__mail { margin-top: clamp(20px, 2.4vw, 30px); font-size: 13px; color: var(--muted); }
.flow__mail a { color: var(--gold); text-decoration: underline; }

/* ============================================================
   サンクス・404
   ============================================================ */
.thx { padding-block: calc(var(--pad-sec) * 1.25); }
.thx__in { text-align: center; max-width: 640px; }
.thx__ic { display: inline-block; width: 64px; height: 64px; color: var(--gold); margin-bottom: 18px; }
.thx__h { font-size: clamp(24px, 3vw, 30px); font-weight: 800; margin: 6px 0 22px; }
.thx__lead p { font-size: 16px; line-height: 2.4; letter-spacing: .03em; color: #fff; }
.thx__lead p + p { margin-top: 14px; }
.thx__lead a { color: var(--gold); text-decoration: underline; }
.thx .act { text-align: center; margin-top: 36px; }
.nf__code { font-size: clamp(64px, 10vw, 110px); font-weight: 800; color: var(--bg-2); line-height: 1; }

/* ============================================================
   プライバシーポリシー
   ============================================================ */
.pp__in h2 { font-size: 18px; font-weight: 700; margin: 36px 0 12px; padding-left: 14px; border-left: 3px solid var(--gold); }
.pp__in p { font-size: 16px; line-height: 2.4; letter-spacing: .03em; color: #fff; }
.pp__in ul { padding-left: 1.4em; }
.pp__in ul li { list-style: disc; font-size: 16px; line-height: 2.3; letter-spacing: .03em; color: #fff; }
.pp__in a { color: var(--gold); text-decoration: underline; }
/* 顧客支給の全文（copy.privacy）用。行頭の「(1)」「・」は原文に含まれるので記号は付けず、
   2行目以降を記号の後ろに揃える（ぶら下げ） */
.pp__in ul.pp__plain { padding-left: 1em; }
.pp__in ul.pp__plain--2 { padding-left: 2.6em; }
.pp__in ul.pp__plain li { list-style: none; padding-left: 1.4em; text-indent: -1.4em; }
.pp__in ul.pp__plain--2 li { padding-left: 1em; text-indent: -1em; }
.pp__in .pp__contact-intro { margin-top: 44px; }
.pp__in .pp__enacted { margin-top: 28px; text-align: right; }

/* ============================================================
   CTA帯・フッター
   ============================================================ */
/* ★地は他のセクションと同じ（＝敷かずに body::before の滲みを透かす）。2026-09-14 ボス指示。
   単色／グラデで塗ると、ここだけ浮いて上下に段差ができる（FV下端で踏んだのと同じ話） */
.cta { position: relative; background: transparent; color: #fff; padding-block: clamp(64px, 8vw, 110px); text-align: center; }
.cta__in { position: relative; z-index: 1; }
/* ★2026-09-15 見出しが「CONTACT」＝英字になった。サイト内の他の英字と書体を揃える */
.cta__h { font-family: var(--font-en); font-size: clamp(30px, 4.2vw, 52px); font-weight: 800; letter-spacing: .08em; line-height: 1.3; }
.cta__note { margin-top: 14px; font-size: 16px; color: rgba(255,255,255,.88); }
.cta__btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: clamp(24px, 3vw, 36px); }
.cta .pill--gold { color: var(--on-brand); }

/* ★フッター上の罫線も無し（ボス指示）。区切りは余白で作る */
.ft { background: transparent; border-top: 0; padding-top: clamp(48px, 6vw, 80px); }
.ft__in { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(28px, 4vw, 56px); padding-bottom: clamp(30px, 4vw, 48px); }
.ft__logo .logo--img { height: auto; width: clamp(170px, 15vw, 215px); }
.ft__org { margin-top: 22px; font-size: 14px; font-weight: 700; }
/* ★フッターは滲みがいちばん強い＝地が明るい。--muted のままだと 4.17:1 で基準割れするので白へ寄せる（実測） */
.ft__addr { margin-top: 4px; font-size: 13px; color: rgba(255,255,255,.78); }
.ft__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; align-content: start; padding-top: 6px; }
.ft__nav a { font-size: 12.5px; font-weight: 700; letter-spacing: .1em; opacity: .9; transition: opacity .2s ease; }
.ft__nav a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 4px; }
.ft__rel-h { font-size: 11.5px; letter-spacing: .12em; color: rgba(255,255,255,.72); }
.ft__rel {
  display: inline-flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-top: 8px; padding: 12px 16px; min-width: 250px;
  border: 1px solid var(--line-strong); border-radius: var(--r-card);
  font-size: 13.5px; font-weight: 700; transition: border-color .25s ease;
}
a.ft__rel:hover { border-color: var(--gold); }
.ft__rel--nolink { opacity: .8; }
.ft__ext { font-size: 18px; line-height: 1; }
/* Instagram（フッター）★枠は外して、アイコンと文字を大きく（2026-09-15 ボス指示） */
.ft__sns {
  display: inline-flex; align-items: center; gap: 12px; margin-top: 20px;
  font-family: var(--font-en); font-size: clamp(19px, 1.7vw, 24px); font-weight: 700; letter-spacing: .04em;
  transition: color .25s ease;
}
.ft__sns .ico { width: 1.18em; height: 1.18em; flex: none; stroke-width: 1.9; }
.ft__sns:hover { color: var(--gold); }
.drawer__ig {
  display: inline-flex; align-items: center; gap: 11px; margin-top: 26px;
  font-family: var(--font-en); font-size: 19px; font-weight: 700; letter-spacing: .04em; color: #fff;
}
.drawer__ig .ico { width: 1.15em; height: 1.15em; flex: none; stroke-width: 1.9; }
.ft__sample { border-top: 1px solid var(--line); padding-block: 14px; }
.ft__sample p { font-size: 12.5px; line-height: 1.9; opacity: .66; max-width: 76ch; }
.ft__btm { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding-block: 18px 26px; border-top: 1px solid var(--line); }
.ft__copy { font-size: 12.5px; color: rgba(255,255,255,.8); font-family: var(--font-en); }
.ft__top { font-size: 12px; letter-spacing: .1em; color: rgba(255,255,255,.7); }
.ft__top:hover { color: var(--ink); }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 1320px) { .vlabel { display: none; } }
@media (max-width: 1024px) {
  .who__in, .fdr__in, .sintro__in, .sdet__in, .msg__in { grid-template-columns: 1fr; gap: 34px; }
  /* ★1カラムのとき、写真を見出しの直下へ（TOP Founder／サービスの入り口・2026-09-17 ボス指示）。
     文字側の箱を display:contents にして見出し・本文・ボタンを直接グリッドに並べ、order で入れ替える。
     PC（2カラム）は触らない。★1カラムの間は文字側の箱の出現アニメが効かない（箱が無いため）＝文字は最初から表示 */
  .fdr__in, .sintro__in { gap: 0; }
  .fdr__body, .sintro__body { display: contents; }
  .fdr__body > .h2, .sintro__body > .band-h { order: 1; }
  .fdr .duo, .sintro__media { order: 2; margin-top: 34px; }
  .fdr__body > .body, .sintro__body > .body { order: 3; margin-top: 34px; }
  .fdr__body > .pill { order: 4; justify-self: start; }
  .about__cols { grid-template-columns: 1fr; gap: 30px; }
  /* ★1カラムのとき、縦ロゴを「STARTINについて」の見出しの直下へ（2026-09-17 ボス指示） */
  .about__logo { order: -1; margin-top: 30px; }
  .about__cols > .about__body { margin-top: 0; }
  .sdet--rev .sdet__media { order: 0; }
  .newssec__in { grid-template-columns: 1fr; gap: 20px; }
  .svc6__grid { grid-template-columns: repeat(2, 1fr); }
  .flow__steps { grid-template-columns: repeat(2, 1fr); row-gap: 30px; }
  .flow__step:nth-child(2) .flow__no::after { display: none; }
  .blog { grid-template-columns: repeat(2, 1fr); }
  .phil__items { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .phil__item { display: grid; grid-template-columns: 42px 1fr; gap: 0 18px; padding: 0; }
  .phil__item + .phil__item { border-left: 0; border-top: 1px solid var(--line); padding-top: 26px; }
  .phil__item .ico { margin: 0; grid-row: span 2; }
  .feat { grid-template-columns: 1fr; gap: 20px; }
  .ft__in { grid-template-columns: 1fr 1fr; }
  .ft__r { grid-column: span 2; }
  }
/* ★--wrap(1180px) を下回ると .fv__copy の右端が画面端まで来て、右の縦ラベルに重なる
   （実測 1024px でリード文と Since 2026 が衝突）。縦ラベルは 900px 以下で消えるので、
   901〜1180px の間だけ本文側に逃げ道を作る。 */
@media (max-width: 1180px) and (min-width: 901px) {
  .fv__in { padding-right: 78px; }
}
@media (max-width: 900px) {
  .fv { min-height: 0; display: block; }
  .fv__media { position: relative; width: 100%; height: 52vh; min-height: 300px; clip-path: polygon(0 0, 100% 0, 100% 86%, 0 100%); }
  .fv__media::after { background: linear-gradient(0deg, var(--veil-1) 0%, transparent 45%); }
  .fv__in { padding-block: 10px 56px; }
  .fv__copy { width: 100%; margin-left: 0; }
  .fv__vlabel { display: none; }
  .logo--img { height: 44px; }
}
@media (max-width: 767px) {
  .fv__en span { font-size: clamp(34px, 11vw, 48px); }
  .fv__catch { font-size: clamp(22px, 6.4vw, 28px); }
  /* ★1カラムでは「行の高さを揃える」は意味がなく、短いカードの下に余白が付くだけ */
  .svc6__grid { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .flow__steps { grid-template-columns: 1fr; gap: 22px; }
  .flow__no::after { display: none; }
  .blog { grid-template-columns: 1fr; gap: 26px; grid-auto-rows: auto; }
  .blog__tabs { gap: 8px; }
  .blog__tab { padding: 8px 14px 8px 12px; font-size: 12.5px; }
  .news__list a { flex-direction: column; gap: 4px; }
  .news__list a::after { display: none; }
  .profile__row { grid-template-columns: 1fr; gap: 6px; padding: 14px 4px; }
  .rel__card { padding: 20px 18px; }
  .flow__list { grid-template-columns: 1fr; }
  .cf__form { padding: 28px 20px; }
  .ft__in { grid-template-columns: 1fr; gap: 26px; }
  .ft__r { grid-column: auto; }
  .ft__btm { flex-direction: column; align-items: flex-start; gap: 10px; }
  .ph__in--lead { grid-template-columns: 1fr; align-items: start; }
  .ph__bc { position: static; margin-top: 12px; }
  .mq__t { font-size: clamp(40px, 12vw, 56px); }
}

/* ============================================================
   reduced-motion：全アニメ停止
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js [data-rev] { opacity: 1; transform: none; transition: none; }
  html.js .fv__img, html.js .fv__line > span, html.js .fv__en span, html.js .fv__lead, html.js .fv__btns { animation: none; transform: none; opacity: 1; }
  .mq__track { animation: none; }
  .pill:hover svg, .btn:hover svg, .tlink:hover svg, .blog__link:hover .blog__thumb img, .feat__thumb:hover img { transform: none; }
  .hd, .hd--hide { transition: none; transform: none; }
  .drawer { transition: none; }
}
