/* ============================================================
   FrastoLink リニューアル たたき台 P4（オリジナル化・控えめ版）
   原型 = hado.co.jp コピー版の白ベース・レイアユトを維持。
   変更点（パクリ回避の最小差分）:
   - 青アクセント → 完全モノトーン（黒・白・グレーのみ）
   - 青ぼかしリング → ニュートラルグレーの光ヘイズ
   - 英字フォント Archivo → Space Grotesk
   - CONTACT帯 青 → チャコール
   ============================================================ */
:root {
  --ink: #101013;
  --ink-soft: #3a3b40;
  --acc: #16161a;         /* アクセント（黒） */
  --mute: #8a8a92;
  --paper: #ffffff;
  --gray: #f4f4f6;
  --line: #e7e7ea;
  --dark: #17181c;
  --charcoal: #141416;    /* CONTACT帯 */
  --en: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  --jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --w: min(1160px, 92vw);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--jp);
  color: var(--ink);
  background: var(--paper);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---- 背景グラフィック（モノトーン・シャープな同心円。旧: 青ぼかしリング） ---- */
.orbs { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.orb { position: absolute; border-radius: 50%; opacity: .9; }
.orb.ring {
  background: repeating-radial-gradient(circle at center,
    transparent 0 64px,
    rgba(16,16,19,.10) 64px 65px);
  border: 1px solid rgba(16,16,19,.14);
}
.orb.fill {
  background: radial-gradient(circle at 35% 35%, rgba(160,162,172,.22), rgba(160,162,172,0) 65%);
  filter: blur(30px); opacity: .6;
}

/* ============================ ヘッダー ============================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 28px; height: 76px;
  padding-top: env(safe-area-inset-top);       /* 項目10: ステータスバー裏まで */
  background: transparent;                       /* 項目1/10: FV上は透過し動画を上端まで */
  transition: background .3s, backdrop-filter .3s, transform .35s cubic-bezier(.22,.8,.3,1);
}
.header.hide { transform: translateY(-100%); }
.header.solid {                                  /* スクロールで白背景 */
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
}
.logo {
  font-family: var(--en); font-weight: 500; font-size: 16px;   /* 項目2: 細く小さく */
  letter-spacing: .06em; display: inline-flex; align-items: center; gap: 10px;
  color: #9d949b;                                              /* 項目2: ロゴの色に揃える */
  margin-right: auto;
}
.logo img { height: 30px; width: auto; }
.gnav { display: flex; align-items: center; gap: 34px; }
.gnav a {
  font-family: var(--en); font-weight: 600; font-size: 12.5px;
  letter-spacing: .1em; text-transform: uppercase; position: relative;
}
.gnav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--ink); transition: width .3s;
}
.gnav a:hover::after { width: 100%; }
.gnav a[aria-current="page"] { color: var(--ink); }
.gnav a[aria-current="page"]::after { width: 100%; }
.sp-menu a[aria-current="page"] { opacity: .45; }  /* R2: タップ可(押すとメニューが閉じる/同ページ再読込)。無反応は誤操作に見えるため */
.header-cta {
  font-family: var(--en); font-weight: 700; font-size: 12px; letter-spacing: .08em;
  background: transparent; color: var(--ink); border: 1px solid var(--ink); border-radius: 999px;
  padding: 12px 21px; display: inline-flex; align-items: center; gap: 8px;
  margin-left: 34px;
  transition: opacity .25s;
}
.header-cta:hover { opacity: .6; }
.gnav a.nav-contact {
  background: var(--ink); color: #fff; border-radius: 999px; padding: 12px 24px;
  transition: opacity .25s;
}
.gnav a.nav-contact:hover { opacity: .75; }
.gnav a.nav-contact::after { display: none; }
.header-cta .jp { font-family: var(--jp); font-weight: 700; font-size: 11px; }
.header-cta .sep { opacity: .5; }
/* ハンバーガー（SP） */
.menu-btn {
  display: none; width: 44px; height: 44px; border: 0; background: transparent;
  cursor: pointer; position: relative; z-index: 210;
}
.menu-btn span {
  position: absolute; left: 11px; right: 11px; height: 1.5px; background: #9d949b;  /* 項目3: ロゴ色・細く */
  transition: transform .3s, opacity .3s, top .3s;
}
.menu-btn span:nth-child(1) { top: 16px; }
.menu-btn span:nth-child(2) { top: 22px; }
.menu-btn span:nth-child(3) { top: 28px; }
body.menu-open .menu-btn span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
body.menu-open .menu-btn span:nth-child(3) { top: 22px; transform: rotate(-45deg); }
body.menu-open .menu-btn { opacity: 0; pointer-events: none; }  /* 開時は右上×に一本化 */
.sp-menu {
  position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,.98);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 26px;
  visibility: hidden;
  clip-path: circle(0% at calc(100% - 34px) 40px);
  transition: clip-path .62s cubic-bezier(.76,0,.24,1), visibility .62s;
}
body.menu-open .sp-menu {
  visibility: visible;
  clip-path: circle(150% at calc(100% - 34px) 40px);
}
.sp-menu a { font-family: var(--en); font-weight: 700; font-size: 26px; letter-spacing: .1em; }
/* 項目11: メニュー閉じる×ボタン */
.menu-close {
  display: none; position: absolute; top: 22px; right: 22px; width: 44px; height: 44px;
  border: 0; background: transparent; cursor: pointer; z-index: 220;
}
body.menu-open .menu-close { display: block; }
.menu-close::before, .menu-close::after {
  content: ""; position: absolute; left: 11px; right: 11px; top: 21px; height: 1.5px; background: #9d949b;
}
.menu-close::before { transform: rotate(45deg); }
.menu-close::after { transform: rotate(-45deg); }
/* 項目12: メニュー開閉アニメ(項目を順にせり上げ) */
body.menu-open .sp-menu a { animation: menuItemIn .6s cubic-bezier(.22,.9,.3,1) both; }
body.menu-open .sp-menu a:nth-child(2) { animation-delay: .26s; }
body.menu-open .sp-menu a:nth-child(3) { animation-delay: .34s; }
body.menu-open .sp-menu a:nth-child(4) { animation-delay: .42s; }
body.menu-open .sp-menu a:nth-child(5) { animation-delay: .50s; }
body.menu-open .sp-menu a:nth-child(6) { animation-delay: .58s; }
@keyframes menuItemIn { from { opacity: 0; transform: translateY(42px) scale(.94); filter: blur(4px); } to { opacity: 1; transform: none; filter: blur(0); } }
@media (prefers-reduced-motion: reduce) { body.menu-open .sp-menu a { animation: none; } }

.sp-menu a small { display: block; text-align: center; font-family: var(--jp); font-size: 11px; font-weight: 500; color: var(--ink-soft); letter-spacing: .2em; }

/* ============================ 共通部品 ============================ */
.wrap { width: var(--w); margin: 0 auto; position: relative; z-index: 1; }
.sec-head {
  font-family: var(--en); font-weight: 700; text-transform: uppercase;
  font-size: clamp(44px, 7vw, 96px); line-height: .95; letter-spacing: -.02em;
}
.sec-sub { font-size: 12px; font-weight: 700; letter-spacing: .18em; color: var(--ink-soft); margin-top: 14px; display: flex; align-items: center; gap: 10px; }
.sec-sub::before { content: ""; width: 22px; height: 1px; background: var(--ink); }
.viewmore {
  font-family: var(--en); font-weight: 700; font-size: 13px; letter-spacing: .14em;
  display: inline-flex; align-items: center; gap: 10px; padding-bottom: 8px;
  border-bottom: 2px solid var(--ink);
}
.viewmore::after { content: "→"; transition: transform .3s; }
.viewmore:hover::after { transform: translateX(6px); }

/* スクロール出現（js-onゲート: JS死亡時は常に表示状態で成立） */
.rv { transition: opacity .8s ease, transform .8s ease; }
.js-on .rv { opacity: 0; transform: translateY(28px); }
.js-on .rv.in { opacity: 1; transform: none; }
.sec-sub.rv { transition-delay: .25s; }

/* 文字バラし見出し（.split-chars: main.jsが1文字ずつspan.ch化） */
.split-chars .ch { display: inline-block; }
.js-on .split-chars .ch {
  opacity: 0; transform: translateY(.45em);
  transition: opacity .55s ease, transform .7s cubic-bezier(.22,.8,.3,1);
}
.js-on .split-chars.chars-in .ch { opacity: 1; transform: none; }

/* ---- 画像挿入プレースホルダ ---- */
.ph {
  position: relative; overflow: hidden;
  background:
    repeating-linear-gradient(45deg, #eceef2 0 14px, #f6f7f9 14px 28px);
  border: 2px dashed #b9bfca;
  display: flex; align-items: center; justify-content: center;
  color: #7a828f; text-align: center;
}
.ph::before { content: "📷"; position: absolute; top: 14px; left: 16px; font-size: 20px; opacity: .8; }
.ph .ph-label { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; line-height: 1.7; padding: 1em; }
.ph .ph-label small { display: block; font-weight: 400; font-size: 11px; opacity: .8; }
/* カスタマイザーから画像がアップロードされた場合：プレースホルダー装飾を消し、画像をボックスいっぱいに表示 */
.ph.has-img { border: 0; background: none; }
.ph.has-img::before { content: none; }
.ph-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============================ ヒーロー（TOP） ============================ */
.hero { position: relative; min-height: 100svh; min-height: 100vh; display: flex; align-items: flex-start; padding-top: 76px; padding-bottom: 8vh; overflow: visible; }
/* 背景動画（PC/SPで差し替え・モノトーン保険に grayscale・上に白ベールで可読性確保） */
.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-video { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1); }
.hero-veil {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.9) 0%, rgba(255,255,255,.55) 48%, rgba(255,255,255,.12) 100%);
}
.hero .wrap { width: min(1240px, 92vw); position: relative; z-index: 1; text-align: left; margin-top: 22vh; }
.hero-jp {
  font-size: clamp(34px, 5.4vw, 64px); font-weight: 600; line-height: 1.35; letter-spacing: .04em;
}
.hero-en {
  font-family: var(--en); font-weight: 600; text-transform: uppercase;
  font-size: clamp(12px, 1.5vw, 16px); line-height: 1.3; letter-spacing: .12em; margin-top: 14px;
  color: var(--ink); -webkit-text-stroke: 0;                 /* 項目5: 黒・小さく・袋文字やめ */
}
.hero-lead { margin-top: 28px; font-weight: 500; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 16px; margin-top: 40px; flex-wrap: wrap; }
.btn-fill {
  background: var(--ink); color: #fff; border-radius: 999px; padding: 16px 36px;
  font-weight: 700; font-size: 14px; transition: opacity .25s;
}
.btn-fill:hover { opacity: .75; }
.btn-line {
  border: 1px solid var(--ink); border-radius: 999px; padding: 16px 36px;
  font-weight: 700; font-size: 14px; transition: background .25s, color .25s;
}
.btn-line:hover { background: var(--ink); color: #fff; }
.scroll-hint {
  position: absolute; right: 24px; top: 50%; bottom: auto; left: auto; transform: translateY(-50%); z-index: 3;
  writing-mode: vertical-rl; font-family: var(--en);
  font-size: 10px; letter-spacing: .3em; color: var(--ink);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.scroll-hint .sh-bar { width: 1px; height: 62px; background: rgba(16,16,19,.16); position: relative; overflow: hidden; }
.scroll-hint .sh-bar::after {
  content: ""; position: absolute; left: 0; top: 0; width: 1px; height: 40%;
  background: var(--ink); animation: scrollBar 1.9s cubic-bezier(.4,0,.2,1) infinite;
}
@keyframes scrollBar { 0% { transform: translateY(-100%); } 55%, 100% { transform: translateY(250%); } }
@media (max-height: 560px) { .scroll-hint { display: none; } }

/* ---- ヒーローのモーション（ロードイン + 低速ドリフト + 縦ティッカー） ---- */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(34px); }
  to   { opacity: 1; transform: none; }
}
/* hero-jp は文字バラし（split-chars）で出すため keyframe 対象外 */
.hero .hero-en   { animation: heroIn .9s cubic-bezier(.22,.8,.3,1) .38s both; }
.hero .hero-lead { animation: heroIn .9s cubic-bezier(.22,.8,.3,1) .62s both; }
.hero .hero-cta   { animation: heroIn .9s cubic-bezier(.22,.8,.3,1) .8s both; }
.hero .scroll-hint { animation: heroIn 1s ease 1s both; }
@keyframes orbIn {
  from { opacity: 0; transform: scale(.06); }
  to   { opacity: 1; transform: none; }
}
@keyframes orbDrift {
  0%   { translate: 0 0; rotate: 0deg; }
  50%  { translate: -36px 30px; rotate: 5deg; }
  100% { translate: 0 0; rotate: 0deg; }
}
.hero .orb { animation: orbDrift 14s ease-in-out infinite; }
.orb { animation: orbDrift 15s ease-in-out infinite; }

/* 右端の縦テキスト・ティッカー（低速ループ） */
.hero-side { display: none; }
@keyframes tickerV { from { transform: translateY(0); } to { transform: translateY(-50%); } }
.hero-side .tk {
  writing-mode: vertical-rl; font-family: var(--en); font-size: 10px;
  letter-spacing: .4em; color: #9aa1ac; white-space: nowrap;
  animation: tickerV 26s linear infinite;
}
.hero-side .tk span { display: inline-block; padding-block: 2.2em; }

@media (prefers-reduced-motion: reduce) {
  .hero .hero-jp, .hero .hero-en, .hero .hero-lead, .hero .scroll-hint,
  .hero .orb, .orb, .hero-side .tk { animation: none; }
  .rv { opacity: 1; transform: none; transition: none; }
}

/* 巨大タイポブロック（スクラブtransformが文書幅を広げないよう自セクションでクリップ） */
.giant { padding: 96px 0 40px; position: relative; overflow: hidden; }
.giant-line {
  font-family: var(--en); font-weight: 700; text-transform: uppercase;
  font-size: clamp(52px, 10.5vw, 152px); line-height: .92; letter-spacing: -.025em; white-space: nowrap;
}
.giant-line.right { text-align: right; }
.giant-note { max-width: 560px; margin: 34px 0 0 4px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }

/* 集合写真帯 */
.team-visual { padding: 30px 0 70px; }
.team-visual .ph { width: min(1240px, 94vw); margin: 0 auto; aspect-ratio: 1240 / 520; }
.team-visual .more-row { width: var(--w); margin: 30px auto 0; text-align: right; }

/* ============================ OUR BUSINESS（TOP） ============================ */
.biz { padding: 90px 0 0; position: relative; background: #fff; }
.biz-head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 48px; }
.biz-head-row p { max-width: 420px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }
.biz-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 4vw; width: 100vw; margin-left: calc(50% - 50vw); }
.biz-photos .ph { aspect-ratio: 16 / 10; border-left: 0; border-right: 0; }

/* ============================ VOICE カード（TOP） ============================ */
.voice { padding: 100px 0 60px; position: relative; }
.voice-rail { padding: 8px 0 26px; }
.voice-rail .marq-track { align-items: stretch; }
.voice-rail .vcard { width: 300px; flex: 0 0 300px; }
.vcard {
  background: #fff; border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  scroll-snap-align: start; box-shadow: 0 14px 34px rgba(24,24,32,.08);
  display: flex; flex-direction: column;
}
.vcard .ph { aspect-ratio: 4 / 3; border: 0; border-bottom: 2px dashed #b9bfca; }
.vcard-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.vcard-chip {
  align-self: flex-start; font-size: 10.5px; font-weight: 700; letter-spacing: .06em;
  color: var(--ink-soft); border: 1px solid #b9b9c2; border-radius: 999px; padding: 2px 12px;
}
.vcard-title { font-size: 14.5px; font-weight: 700; line-height: 1.7; }
.vcard-meta { font-size: 11px; color: var(--mute); }
.vcard-text { font-size: 13px; color: var(--ink-soft); line-height: 1.8; }
.voice .more-row { text-align: right; margin-top: 10px; }

/* ============================ INSTRUCTORS 帯（TOP） ============================ */
.join { background: var(--dark); color: #fff; position: relative; overflow: hidden; }
.join-inner { width: min(1240px, 94vw); margin: 0 auto; padding: 90px 0; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; }
.join .sec-head { color: #fff; }
.join .sec-sub { color: #c7ccd6; }
.join .sec-sub::before { background: #fff; }
.join-catch { font-size: clamp(18px, 2.2vw, 24px); font-weight: 700; margin-top: 26px; line-height: 2; }
.join .viewmore { color: #fff; border-color: #fff; margin-top: 30px; }
.join .more-row { text-align: right; margin-top: 30px; }
.join .more-row .viewmore { margin-top: 0; }
.join .ph { aspect-ratio: 4 / 3; background: repeating-linear-gradient(45deg, #232530 0 14px, #1b1d26 14px 28px); border-color: #4a4f5e; color: #9aa1b4; }

/* ============================ NEWS リスト ============================ */
.news { padding: 100px 0 80px; position: relative; }
.news-list { margin-top: 46px; border-top: 1px solid var(--line); }
.news-row {
  display: grid; grid-template-columns: 110px 130px 1fr; gap: 18px; align-items: center;
  padding: 26px 6px; border-bottom: 1px solid var(--line); transition: background .25s;
}
.news-row:hover { background: #fafafc; }
.news-date { font-family: var(--en); line-height: 1.2; }
.news-date .y { display: block; font-size: 11px; color: var(--mute); }
.news-date .d { font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.news-chip {
  justify-self: start; font-size: 10.5px; font-weight: 700; color: var(--ink-soft);
  border: 1px solid #b9b9c2; border-radius: 999px; padding: 2px 14px; white-space: nowrap;
}
.news-title { font-size: 13.5px; font-weight: 600; }
.news .more-row { text-align: right; margin-top: 30px; }

/* ============================ CONTACT 帯（チャコール。旧: 青） ============================ */
.contact-band { background: var(--charcoal); color: #fff; }
.contact-band a { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 30px; width: var(--w); margin: 0 auto; padding: 70px 0; }
.contact-band .sec-head { font-size: clamp(40px, 5.5vw, 72px); color: #fff; }
.contact-band .sec-sub { color: #c9c9d0; }
.contact-band .sec-sub::before { background: #fff; }
.cb-right { display: flex; align-items: center; gap: 26px; font-weight: 700; font-size: 15px; line-height: 2; }
.cb-arrow {
  width: 64px; height: 64px; border: 1.5px solid #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 22px; transition: background .3s, color .3s;
}
.contact-band a:hover .cb-arrow { background: #fff; color: var(--charcoal); }

/* ============================ フッター ============================ */
.footer { background: #101116; color: #fff; padding: 80px 0 34px; }
.footer-grid { width: var(--w); margin: 0 auto; display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; }
.footer .logo { color: #fff; }
.footer .logo img { filter: brightness(0) invert(1); opacity: .92; }
.footer-addr { margin-top: 22px; font-size: 12px; color: #a7adba; line-height: 2.1; }
.footer-sns { margin-top: 18px; }
.footer-sns a {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--en);
  font-size: 12px; font-weight: 600; letter-spacing: .06em; color: #c9ccd6;
  border: 1px solid #3c4050; border-radius: 999px; padding: 7px 16px; transition: border-color .3s, color .3s;
}
.footer-sns a:hover { border-color: #fff; color: #fff; }
.fnav { display: grid; grid-template-columns: .4fr 1.7fr 1fr .9fr; gap: 34px 40px; }
.fnav-col h4 { font-family: var(--en); font-size: 14px; font-weight: 700; letter-spacing: .12em; margin-bottom: 14px; }
.fnav-col h4 a:hover, .fnav-col li a:hover { opacity: .65; }
.fnav-col li { font-size: 12px; color: #a7adba; margin-bottom: 9px; text-wrap: pretty; }
.footer-bottom {
  width: var(--w); margin: 60px auto 0; padding-top: 24px; border-top: 1px solid #2a2c34;
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
  font-size: 11px; color: #8a919d;
}
.footer-bottom .links { display: flex; gap: 22px; }
.footer-bottom .links a:hover { color: #fff; }

/* ============================ 下層ページ共通 ============================ */
.page-hero { padding: 170px 0 60px; position: relative; }
.page-hero .sec-head { font-size: clamp(52px, 8.5vw, 120px); }
.page-hero .lead { margin-top: 30px; max-width: 640px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }

/* ---- BUSINESS 下層 ---- */
.biz-index { margin-top: 44px; display: grid; gap: 12px; }
.biz-index a {
  display: flex; gap: 16px; align-items: baseline; font-size: 13px; font-weight: 700;
  border-bottom: 1px solid var(--line); padding-bottom: 10px; width: fit-content;
  transition: opacity .3s;
}
.biz-index a .no { font-family: var(--en); font-size: 11px; color: var(--mute); }
.biz-index a:hover { opacity: .6; }
/* en-bg のスクラブtransformが文書幅を広げないよう自セクションでクリップ */
.biz-sec { position: relative; padding: 110px 0; overflow: hidden; }
.biz-sec:nth-child(even) { background: var(--gray); }
.biz-sec .en-bg {
  font-family: var(--en); font-weight: 700;
  font-size: clamp(40px, 6.5vw, 92px); line-height: 1; letter-spacing: -.02em;
  text-align: right; margin-bottom: 46px;
}
.biz-sec .no { font-family: var(--en); font-size: 15px; font-weight: 700; color: var(--mute); letter-spacing: .1em; }
.biz-sec h3 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; letter-spacing: .05em; margin: 10px 0 22px; }
.biz-sec .catch { font-size: 16px; font-weight: 700; color: var(--ink); margin-bottom: 14px; border-left: 3px solid var(--ink); padding-left: 12px; }
.biz-sec .desc { max-width: 600px; font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); }
.biz-boxes { margin-top: 44px; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.biz-box { background: #fff; border: 1px solid var(--line); padding: 30px 28px; box-shadow: 0 10px 26px rgba(24,24,32,.05); }
.biz-sec:nth-child(odd) .biz-box { background: var(--gray); border: 0; box-shadow: none; }
.biz-box h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.biz-box h4::before { content: ""; width: 18px; height: 1px; background: var(--ink); flex: none; }
.biz-box p, .biz-box li { font-size: 12.5px; color: var(--ink-soft); }
.biz-box li { padding-left: 1.1em; text-indent: -1.1em; margin-bottom: 6px; }
.biz-box li::before { content: "・"; }

/* 事業02〜06の密度モジュール（01のboxとの密度差を解消。写真ゼロでも成立） */
.biz-body { display: grid; grid-template-columns: 1fr 340px; gap: 56px; align-items: start; margin-top: 34px; }
.biz-main .desc { max-width: none; }
.biz-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.biz-tags li {
  font-size: 11px; font-weight: 700; letter-spacing: .03em; color: var(--ink-soft);
  border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px;
}
/* 右カラム: 写真スロット＋ファクト表 */
.biz-side .ph { aspect-ratio: 4 / 3; }
.biz-facts { border-top: 1px solid var(--ink); margin-top: 20px; }
.biz-facts dl { display: grid; grid-template-columns: 92px 1fr; margin: 0; }
.biz-facts dt, .biz-facts dd { padding: 13px 2px; border-bottom: 1px solid var(--line); margin: 0; }
.biz-facts dt { font-family: var(--en); font-size: 11px; font-weight: 700; letter-spacing: .06em; color: var(--mute); }
.biz-facts dd { font-size: 12.5px; color: var(--ink-soft); }

/* ---- COMPANY 下層 ---- */
.office-visual { position: relative; margin-top: 30px; }
.office-visual .ph { aspect-ratio: 1240 / 480; }
.office-catch {
  position: absolute; left: 0; bottom: -34px; background: #fff; padding: 26px 38px 26px 0;
  font-size: clamp(22px, 3vw, 32px); font-weight: 900; line-height: 1.7;
}
.leader { padding: 130px 0 90px; position: relative; }
.leader-grid { display: grid; grid-template-columns: 380px 1fr; gap: 56px; margin-top: 50px; align-items: start; }
.leader-photo .ph { aspect-ratio: 3 / 3.4; }
.leader-photo figcaption { margin-top: 14px; font-size: 12px; color: var(--mute); }
.leader-photo figcaption strong { display: block; font-size: 17px; color: var(--ink); font-weight: 700; letter-spacing: .06em; }
.leader-msg { max-width: 600px; }
.leader-msg p { font-size: 14.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 1.5em; }
.leader-msg .sign { text-align: right; font-size: 12.5px; font-weight: 700; color: var(--ink); }
.dummy-note {
  display: inline-block; background: #fff3cd; border: 1px solid #e6c95c; color: #7a5d00;
  font-size: 11px; font-weight: 700; border-radius: 4px; padding: 2px 10px; margin-bottom: 14px;
}
.philosophy { padding: 90px 0; background: var(--gray); position: relative; overflow: hidden; }
.phil-item { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; padding: 56px 0; border-bottom: 1px solid #dfe2e8; }
.phil-item:last-of-type { border-bottom: 0; }
.phil-item h3 { font-size: clamp(22px, 3vw, 32px); font-weight: 900; line-height: 1.7; margin-bottom: 18px; }
.phil-item h3 .no { font-family: var(--en); color: #c3c9d4; font-size: .8em; margin-right: 14px; }
.phil-item p { font-size: 13px; color: var(--ink-soft); max-width: 560px; }

/* PHILOSOPHY 図版: 「製図プレート」。正方形の1px枠に、巨大アウトライン番号(ウォーターマーク)・
   1px極細ジオメトリ・四隅レジストマーク・英字ラベルを重ね、写真に頼らず精度＝高級感を出す。
   3枚は枠と番号で統一言語、中の幾何(.geo)だけ差し替える。完全モノトーン。 */
.phil-g {
  width: 100%; max-width: 320px; aspect-ratio: 1; justify-self: center;
  position: relative; background: #fff; border: 1px solid rgba(16,16,19,.14); overflow: hidden;
}
/* 巨大アウトライン番号（data-no） */
.phil-g::before {
  content: attr(data-no); position: absolute; right: 12px; bottom: -18px;
  font-family: var(--en); font-weight: 700; font-size: clamp(108px, 13vw, 150px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(16,16,19,.16); pointer-events: none;
}
/* 四隅のブループリント風L字レジストマーク */
.phil-g::after {
  content: ""; position: absolute; inset: 14px; pointer-events: none; opacity: .4;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 13px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 0 / 1px 13px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 100% 0 / 13px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 100% 0 / 1px 13px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 13px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 100% / 1px 13px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 100% 100% / 13px 1px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 100% 100% / 1px 13px no-repeat;
}
/* 極小の英字ラベル */
.phil-g small {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--en); font-weight: 700; font-size: 10px; letter-spacing: .16em; color: var(--mute);
}
/* 中の精密ジオメトリ（枠内に収める） */
.phil-g .geo { position: absolute; inset: 24%; }
/* 01: 同心リンググリッド（放射＝すべての人へ広がる） */
.phil-g.g1 .geo {
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, transparent 0 14px, rgba(16,16,19,.18) 14px 15px);
}
/* 02: 十字照準＋中心リング（狙いを定める＝影響力を創る） */
.phil-g.g2 .geo {
  background:
    linear-gradient(rgba(16,16,19,.32), rgba(16,16,19,.32)) center / 1px 100% no-repeat,
    linear-gradient(rgba(16,16,19,.32), rgba(16,16,19,.32)) center / 100% 1px no-repeat;
}
.phil-g.g2 .geo::after {
  content: ""; position: absolute; inset: 22%; border: 1px solid rgba(16,16,19,.4); border-radius: 50%;
}
/* 03: 放射ファン（一点から伴走・集中） */
.phil-g.g3 .geo {
  border-radius: 50%;
  background: repeating-conic-gradient(from -90deg at 50% 100%, rgba(16,16,19,.18) 0 .5deg, transparent .5deg 8deg);
  -webkit-mask: radial-gradient(circle at 50% 100%, #000 0 96%, transparent 98%);
  mask: radial-gradient(circle at 50% 100%, #000 0 96%, transparent 98%);
}
.profile { padding: 100px 0; }
.profile-table { margin-top: 44px; border-top: 1px solid var(--line); }
.profile-table dl { display: grid; grid-template-columns: 220px 1fr; border-bottom: 1px solid var(--line); padding: 24px 6px; gap: 16px; }
.profile-table dt { font-size: 13px; font-weight: 700; }
.profile-table dd { font-size: 13.5px; color: var(--ink-soft); }

/* ---- INSTRUCTORS（MEMBERグリッド） ---- */
.members { padding: 80px 0 110px; position: relative; }
.member-grid { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 34px; }
.mcard .ph { aspect-ratio: 3 / 3.2; }
.mcard .role { margin-top: 16px; font-size: 10.5px; letter-spacing: .12em; color: var(--mute); font-weight: 700; font-family: var(--en); }
.mcard h3 { font-size: 18px; font-weight: 900; letter-spacing: .08em; margin: 4px 0 10px; }
.mcard p { font-size: 13px; line-height: 1.8; color: var(--ink-soft); }

/* ---- NEWS 下層 ---- */
.news-page { padding: 0 0 110px; }
.news-layout { display: grid; grid-template-columns: 220px 1fr; gap: 60px; }
.news-cats li { margin-bottom: 14px; font-size: 13.5px; font-weight: 700; color: var(--mute); display: flex; align-items: center; gap: 10px; }
.news-cats li::before { content: ""; width: 16px; height: 1px; background: #c3c9d4; }
.news-cats li.on { color: var(--ink); }
.news-cats li.on::before { background: var(--ink); }

/* ---- CONTACT 下層 ---- */
.contact-page { padding: 0 0 110px; }
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; max-width: 760px; }
.contact-guide p { font-size: 13px; font-weight: 600; color: var(--ink-soft); margin-bottom: 1.4em; }
.contact-direct {
  margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 64px 1fr; row-gap: 14px; font-size: 14px;
}
.contact-direct dt { font-family: var(--en); font-weight: 700; color: var(--mute); }
.contact-direct dd a:hover { text-decoration: underline; }
.contact-note { margin-top: 20px; font-size: 12px; color: var(--mute); }
.form-field { margin-bottom: 26px; }
.form-field label { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.req { background: var(--ink); color: #fff; font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 3px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; border: 1px solid #c9ced7; border-radius: 4px; padding: 15px 16px;
  font-family: var(--jp); font-size: 14px; color: var(--ink); background: #fff;
}
.form-field input:focus, .form-field textarea:focus { outline: 1.5px solid rgba(16,16,19,.55); }
.form-field input::placeholder, .form-field textarea::placeholder { color: #b3b9c4; }
.form-field textarea { min-height: 200px; resize: vertical; }
.form-agree { font-size: 12.5px; display: flex; align-items: center; gap: 10px; margin: 6px 0 34px; }
.form-agree a { color: var(--ink); text-decoration: underline; }
.submit-btn {
  width: 100%; background: var(--ink); color: #fff; border: 0; border-radius: 999px;
  font-family: var(--jp); font-size: 15px; font-weight: 700; letter-spacing: .1em;
  padding: 20px; cursor: pointer; transition: opacity .25s;
}
.submit-btn:hover { opacity: .75; }
.mock-note { margin-top: 14px; font-size: 11px; color: var(--mute); text-align: center; }

/* ============================ レスポンシブ ============================ */
@media (max-width: 1020px) {
  .member-grid { grid-template-columns: repeat(2, 1fr); }
  .leader-grid { grid-template-columns: 300px 1fr; gap: 36px; }
}
@media (max-width: 840px) {
  /* SPのナビ・CTAはハンバーガーメニュー内に集約（CONTACTもメニュー内） */
  .gnav, .header .header-cta { display: none; }
  .menu-btn { display: block; }
  /* SPのヒーローは縦グラデで文字ゾーン全体を保護 */
  .hero-veil {
    background: linear-gradient(180deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.30) 52%, rgba(255,255,255,.62) 100%);
  }
  /* SPはヒーローを圧縮（92vhだとCTA下の余白が間延びするため） */
  .hero { min-height: 100svh; min-height: 100dvh; padding-bottom: 12vh; }
  .hero .wrap { margin-top: 3vh; }
  .giant-line { white-space: normal; }
  .biz-body { grid-template-columns: 1fr; gap: 32px; }
  .join-inner { grid-template-columns: 1fr; padding: 70px 0; }
  .contact-band a { grid-template-columns: 1fr; gap: 20px; padding: 56px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 44px; }
  .fnav { grid-template-columns: repeat(2, 1fr); }
  .news-row { grid-template-columns: 90px 1fr; }
  .news-row .news-chip { grid-column: 2; justify-self: start; }
  .news-row .news-title { grid-column: 1 / -1; }
  .news-layout { grid-template-columns: 1fr; gap: 34px; }
  .news-cats ul { display: flex; gap: 22px; flex-wrap: wrap; }
  .news-cats li { margin-bottom: 0; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .leader-grid { grid-template-columns: 1fr; }
  .leader-photo .ph { max-width: 340px; }
  .phil-item { grid-template-columns: 1fr; }
  .phil-g { width: 160px; height: 160px; }
  .profile-table dl { grid-template-columns: 1fr; gap: 4px; padding: 18px 4px; }
  .biz-photos { grid-template-columns: 1fr; gap: 14px; }
  .office-catch { position: static; padding: 20px 0 0; }
}
@media (max-width: 560px) {
  .member-grid { grid-template-columns: 1fr; }
  .cb-right { font-size: 13px; }
  .cb-right p br { display: none; }
  /* SPフッター: 1カラユ積みで折返し・バランスを整える */
  .footer { padding: 56px 0 28px; }
  .footer-grid { gap: 36px; }
  .fnav { grid-template-columns: 1fr; gap: 26px; }
  .fnav-col h4 { margin-bottom: 10px; }
  .fnav-col li { font-size: 12.5px; margin-bottom: 10px; }
  .footer-bottom { margin-top: 44px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-bottom .links { gap: 16px; flex-wrap: wrap; }
  .voice-rail { grid-auto-columns: 82vw; }
  .hero-side { display: none; }
}

/* ============================ 汎用マーキー（自動フロー・カルーセル） ============================ */
.marquee { overflow: hidden; position: relative; }
.marq-track { display: flex !important; flex-direction: row !important; gap: 26px; width: max-content; will-change: transform; }
.marquee[data-dir="left"]  .marq-track { animation: marqL var(--dur, 45s) linear infinite; }
.marquee[data-dir="right"] .marq-track { animation: marqR var(--dur, 45s) linear infinite; }
@keyframes marqL { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes marqR { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.marquee:hover .marq-track { animation-play-state: paused; }
@media (prefers-reduced-motion: reduce) { .marq-track { animation: none !important; } }

/* 項目25 OUR BUSINESS: 2段カルーセル */
.biz-carousels { margin-top: 6px; display: flex; flex-direction: column; gap: 4vw; width: 100vw; margin-left: calc(50% - 50vw); }
.biz-row .marq-track { gap: 4vw; }
.biz-slide { flex: 0 0 42vw !important; width: 42vw; aspect-ratio: 16 / 10; border-left: 0; border-right: 0; }
@media (max-width: 840px) { .biz-slide { flex-basis: 70vw; } }

/* ============================ company修正(2026-07-11) ============================ */
/* 項目24: オフィス画像 4:3 カルーセル */
.office-carousel { margin-top: 6px; }
.office-slide { flex: 0 0 min(520px, 78vw); aspect-ratio: 4 / 3; }
/* P14: office-catch を大きく・細く・カルーセル下に静的配置 */
.office-catch {
  position: static; background: transparent; padding: 22px 0 0;
  font-size: clamp(28px, 4vw, 46px); font-weight: 600; line-height: 1.5;
}
/* 項目17: 事業内容の ■ 項目に下げインデント(折返しを揃える) */
.biz-list-dd { display: block; }
.biz-list-dd span { display: block; padding-left: 1.3em; text-indent: -1.3em; }
/* 項目18: 代表写真を横幅いっぱいに */
.leader-photo .ph { aspect-ratio: 4 / 5; width: 100%; }
/* 項目19: 氏名を大きく */
.leader-photo figcaption strong { font-size: 24px; }
/* 項目20: 署名の氏名を筆書き風フォントに */
.brush-name { font-family: "Yuji Mai", var(--jp); font-size: 1.9em; font-weight: 400; letter-spacing: .08em; vertical-align: middle; }
/* 項目21: PHILOSOPHY プレートに線画イラスト(それっぽいイラスト) */
.phil-g.has-illust .illust {
  position: absolute; inset: 22%; background-repeat: no-repeat; background-position: center; background-size: contain; pointer-events: none; z-index: 1;
}
.il-empower { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%239d949b' stroke-width='2.4' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M20 42 L52 30 L52 70 L20 58 Z'/%3E%3Cpath d='M52 36 L74 28 L74 72 L52 64'/%3E%3Cpath d='M28 58 L30 76 L40 76 L38 61'/%3E%3Cpath d='M82 40 h8 M80 52 l7 4 M80 30 l7 -4'/%3E%3C/g%3E%3C/svg%3E"); }
.il-influence { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%239d949b' stroke-width='2.4' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M20 72 L42 54 L56 64 L82 34'/%3E%3Cpath d='M82 34 l-14 1 M82 34 l1 14'/%3E%3Cpath d='M64 20 l3 6 6 1 -4 5 1 6 -6 -3 -6 3 1 -6 -4 -5 6 -1 z'/%3E%3C/g%3E%3C/svg%3E"); }
.il-commit { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%239d949b' stroke-width='2.4' stroke-linejoin='round' stroke-linecap='round'%3E%3Ccircle cx='50' cy='50' r='26'/%3E%3Ccircle cx='50' cy='50' r='13'/%3E%3Cpath d='M50 8 v14 M50 78 v14 M8 50 h14 M78 50 h14'/%3E%3Cpath d='M42 50 l6 6 12 -14'/%3E%3C/g%3E%3C/svg%3E"); }
/* 番号ウォーターマークは残す(番号=右のプレートへ集約) */
@media (max-width: 840px) {
  .office-slide { flex-basis: 82vw; }
  .leader-photo .ph { max-width: none; }   /* 項目18: SP でも横いっぱい(旧340px制限を解除) */
}

/* 項目21調整: has-illustプレートは番号ウォーターマークを小さく右上へ寄せ、イラストを主役に */
.phil-g.has-illust::before { font-size: clamp(40px,5vw,58px); right: 14px; bottom: auto; top: 10px; -webkit-text-stroke: 1px rgba(16,16,19,.14); }
.phil-g.has-illust .illust { inset: 17%; filter: none; }

/* 項目22/23: 事業見出し右のブランドロゴ */
.biz-headrow { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.biz-headrow > div:first-child { flex: 1 1 auto; }
.biz-brand { flex: 0 0 300px; max-width: 300px; display: flex; flex-direction: column; gap: 18px; }
.biz-brand .brand-logo { width: 100%; max-width: 240px; height: auto; margin: 0 auto; object-fit: contain; }
.biz-brand.brand-text .brand-logo { max-width: 200px; }
.biz-brand .brand-ph { aspect-ratio: 4 / 3; width: 100%; }
@media (max-width: 840px) {
  .biz-headrow { flex-direction: column; gap: 22px; }
  .biz-brand { flex-basis: auto; max-width: 100%; width: 100%; }
  .biz-brand .brand-logo { margin: 0 auto; max-width: 200px; }
}

/* 項目16: 法的ページ(プライバシー/利用規約/特商法) */
.legal-hero { padding: 160px 0 40px; }
.legal { padding: 30px 0 120px; }
/* 見出し(page-hero)と本文の左端を揃える。テキストは読みやすい幅で制限 */
.legal-lead { font-size: 15px; line-height: 2; color: var(--ink-soft); margin: 6px 0 48px; max-width: 880px;
  padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.legal-block { margin-bottom: 40px; max-width: 880px; }
.legal-block h2 { font-size: 18px; font-weight: 700; margin-bottom: 12px; letter-spacing: .04em;
  padding-left: 14px; border-left: 3px solid var(--ink); }
.legal-block p { font-size: 14px; line-height: 2; color: var(--ink-soft); }
.legal-table { border-top: 2px solid var(--ink); margin-top: 10px; max-width: 940px; }
.legal-table dl { display: grid; grid-template-columns: 200px 1fr; border-bottom: 1px solid var(--line); padding: 18px 4px; gap: 16px; margin: 0; }
.legal-table dt { font-size: 13px; font-weight: 700; }
.legal-table dd { font-size: 13.5px; color: var(--ink-soft); }
@media (max-width: 840px) { .legal-table dl { grid-template-columns: 1fr; gap: 4px; } }

/* 項目15: 奥の丸(同心円)を途切れず全部見せる */
.orb.ring { max-width: 92vw; max-height: 92vw; }
@media (max-width: 840px) {
  /* モバイルは画面内に収まるサイズへ縮小し、全周が見えるよう再配置 */
  .orb.ring {
    width: 78vw !important; height: 78vw !important;
    left: 11vw !important; right: auto !important; top: 6% !important; bottom: auto !important;
    opacity: .28 !important;
  }
}

/* 無料相談ボタンを FV 左下へ(削除ではなく移動が正) */
.hero-cta-btns {
  position: absolute; left: max(28px, 4vw); bottom: -34px; z-index: 6;
  display: flex; gap: 14px; flex-wrap: wrap;
  animation: heroIn .9s cubic-bezier(.22,.8,.3,1) .7s both;
}
.hero-btn { display: inline-flex; align-items: center; gap: 12px; box-shadow: 0 8px 20px rgba(16,16,19,.22); }
.hero-btn .ar { transition: transform .25s; }
.hero-btn:hover .ar { transform: translateX(5px); }
.btn-line-hero {
  background: #fff; color: var(--ink); border: 1.5px solid var(--ink); border-radius: 999px; padding: 16px 30px;
  font-weight: 700; font-size: 14px; box-shadow: 0 6px 18px rgba(16,16,19,.18);
  transition: background .25s, color .25s;
}
.btn-line-hero:hover { background: var(--ink); color: #fff; }
@media (max-width: 840px) { .hero-cta-btns { bottom: -30px; } .hero .wrap { margin-top: 20vh; } }

/* 項目21再: 番号を見出し右へ移動、製図プレート撤去し新イラストのみ */
.phil-lead { min-width: 0; }
.phil-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.phil-head h3 { margin-bottom: 0; }
.phil-no {
  font-family: var(--en); font-weight: 700; line-height: .85;
  font-size: clamp(44px, 6vw, 82px); color: #cfd4dc; flex: none;
}
.phil-fig {
  width: 100%; max-width: 260px; aspect-ratio: 1; justify-self: start;
  position: relative; background: transparent; border: 0;
  display: grid; place-items: center; overflow: visible;
}
.phil-fig .illust {
  position: absolute; inset: 8%;
  background-repeat: no-repeat; background-position: center; background-size: contain;
}
@media (max-width: 840px) {
  .phil-item { grid-template-columns: 84px 1fr; gap: 18px; }
  .phil-fig { width: 84px; height: 84px; max-width: none; }
  .phil-head { gap: 12px; }
}
/* 項目23再: 見出し右のテキスト / ロゴを写真の上(文章と写真の間)へ */
.biz-brand .brand-name {
  font-family: var(--en); font-weight: 600; font-size: 22px; letter-spacing: .04em; color: var(--ink);
  display: block; text-align: right;
}
.biz-side .brand-logo-mid { width: 180px; max-width: 60%; height: auto; margin: 0 auto 20px; display: block; object-fit: contain; }
@media (max-width: 840px) { .biz-brand .brand-name { text-align: left; } .biz-side .brand-logo-mid { margin: 0 auto 16px; } }

/* P14: office-catch に英字サブ(FV同様・黒小さく) */
.office-en { display:block; font-family:var(--en); font-weight:600; text-transform:uppercase; font-size:clamp(12px,1.5vw,17px); letter-spacing:.1em; color:var(--ink); margin-top:8px; }

/* ============================================================
   修正第2弾（2026-07-15 クライアント差し戻しPDF 12ページ分）
   ============================================================ */
/* R2-P1/P2: FVを画面ぴったりに(次セクションをFV内に見せない)・上部も動画コンテンツを見せる */
.hero { min-height: 100svh; padding-bottom: 0; }
@supports (height: 100dvh) { .hero { min-height: 100dvh; } }
/* R2-P2: 無料相談ボタンはFV内・少し上へ(従来はFV下端から-34pxはみ出し) */
.hero-cta-btns { bottom: 64px; }
@media (max-width: 840px) {
  /* R2-3(2026-07-16): ①背景アニメを下まで敷き詰め＝下部の白い膜を薄くして動画を最下部まで見せる
     ②CTAはFV下部に接地＝flex下寄せ＋セーフエリア分だけ上げてブラユザバーを避ける */
  .hero { flex-direction: column; }
  .hero .wrap { margin-top: 14vh; }
  .hero-cta-btns {
    position: static; bottom: auto; left: auto;
    margin-top: auto;                                   /* FVの一番下へ押し下げる */
    margin-bottom: calc(env(safe-area-inset-bottom, 0px) + 26px);
    margin-left: 5vw;
  }
  .hero-veil {
    /* キャッチ帯(中央)だけ可読性のため薄く白、最下部は白を弱めて動画を敷き詰める */
    background: linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,.26) 46%, rgba(255,255,255,.14) 100%);
  }
}
/* R2-P12: 背景の同心円を認識できる濃さに(全ページ共通) */
.orb.ring {
  background: repeating-radial-gradient(circle at center,
    transparent 0 64px,
    rgba(16,16,19,.22) 64px 65px);
  border: 1px solid rgba(16,16,19,.30);
}
@media (max-width: 840px) {
  .orb.ring { opacity: .55 !important; }
}
/* R2-P3: OUR BUSINESS 説明文を横めいっぱいに(SPの右余白解消) */
.biz-head-txt { flex: 1 1 320px; }
.biz-head-txt p { max-width: none; }
/* R2-P3: カルーセル画像を修正前の大きさに戻す(SP)。基底の flex !important に勝つため同強度で上書き */
@media (max-width: 840px) { .biz-slide { flex: 0 0 86vw !important; width: 86vw; } }
/* R2-P3: VIEW MOREを写真(カルーセル)の下・右端揃えに */
.biz-more { text-align: right; margin: 26px 0 0; padding-bottom: 70px; }
.biz { padding-bottom: 0; }
/* R2-P4: INSTRUCTORSのVIEW MOREを写真の下・右寄せに */
.join-photo-col .more-row { text-align: right; margin-top: 22px; }
/* R2-P10: メニューのTOP追加に伴い、せり上げアニメの順延を7項目まで拡張 */
body.menu-open .sp-menu a:nth-child(7) { animation-delay: .66s; }
/* R2: 現在ページ項目はせり上げアニメのfill:bothがopacityを1に戻してしまうため、アニメ後も減光を維持 */
body.menu-open .sp-menu a[aria-current="page"] { animation-name: menuItemInDim; }
@keyframes menuItemInDim { from { opacity: 0; transform: translateY(42px) scale(.94); filter: blur(4px); } to { opacity: .45; transform: none; filter: blur(0); } }
/* R2-P5: COMPANYのオフィス写真カルーセルを大きく。
   .office-visual .ph の aspect-ratio:1240/480 が勝って超横長に潰れていたため、
   同詳細度で後勝ちさせて本来の4:3に(高さ約2倍=SPでも明確に大きく) */
.office-slide { flex: 0 0 min(680px, 88vw); }
.office-visual .office-slide { aspect-ratio: 4 / 3; }
@media (max-width: 840px) { .office-slide { flex-basis: 90vw; } }
/* R2-P6: 「影響力は、創り出せる。」を大きく */
.office-catch { font-size: clamp(34px, 5vw, 58px); }
/* R2-P11: 署名の「株式会社FrastoLink 代表取締役」を氏名の縦中央に */
.leader-msg .sign { display: flex; align-items: center; justify-content: flex-end; gap: 14px; flex-wrap: wrap; }
/* R2-P7: Hashtag Labo. ロゴを大きく・白ロゴ(視認のためチャコールパネル上に) */
.biz-brand { flex: 0 0 380px; max-width: 380px; }
.biz-brand .brand-logo { max-width: 320px; }
.brand-logo-panel {
  display: flex; align-items: center; justify-content: center;
  background: var(--charcoal); border-radius: 10px; padding: 26px 30px;
}
.brand-logo-white { filter: brightness(0) invert(1); }
/* R2-P7: Hashtag Labo. 画像カルーセル(右から左・5枚) */
.hl-carousel { margin: 36px 0 40px; width: 100vw; margin-left: calc(50% - 50vw); }
.hl-carousel .marq-track { gap: 26px; }
.hl-slide { flex: 0 0 min(420px, 78vw); aspect-ratio: 4 / 3; }
/* R2-P9: Liver Labo. ロゴ+画像を見出し直後へ(01と同構成)。既存brand-phを流用 */
@media (max-width: 840px) {
  .biz-brand { flex-basis: auto; max-width: 100%; }
  .brand-logo-panel { max-width: 320px; margin: 0 auto; }
}

/* R2-3(2026-07-16): ブラント名(Hashtag Labo./Liver Labo.)を語中で改行させない */
.nobr { white-space: nowrap; }

/* ================= R3 (2026-07-22 その3) ================= */
/* P1: VOICE / COMPANYオフィスのカルーセルを画面端まで（.wrap外に出して素の全幅化＝iOSのvw計算ズレを構造的に回避） */
.voice-rail, .office-carousel { width: 100%; margin-left: 0; margin-right: 0; }
.office-carousel { margin-top: 30px; }
/* P2+P3: Hashtag Labo. ロゴ = 黒枠(チャコールパネル)撤去・白反転やめグレーのまま・拡大 */
.brand-logo-panel { background: none; padding: 0; border-radius: 0; }
.brand-logo-white { filter: none; }
.biz-brand .brand-logo { max-width: 100%; }
/* P4+P2: Liver Labo. ロゴを本文タグ下（左下）に配置・拡大（s02をs06と同構図化） */
.biz-main .brand-logo-lg { display: block; width: auto; max-width: 300px; height: auto; margin: 30px 0 0; object-fit: contain; }
@media (max-width: 840px) { .biz-main .brand-logo-lg { max-width: 280px; margin: 24px auto 0; } }

/* 2026-07-30 Hashtag Labo. white logo dark panel */
.brand-logo-panel.dark { background: var(--charcoal); border-radius: 10px; padding: 26px 30px; }


/* ===== 2026-07-30 導入サービス / 提携企業一覧 (P10/P11) ===== */
.clients{padding:100px 0 40px;background:#fff;position:relative;}
.clients.partners{padding:40px 0 100px;}
.client-grid{margin-top:48px;display:grid;gap:20px;}
.client-grid.cols-4{grid-template-columns:repeat(4,1fr);}
.client-grid.cols-5{grid-template-columns:repeat(5,1fr);}
.client-card{border:1px solid var(--line);border-radius:14px;background:#fff;padding:26px 20px;display:flex;flex-direction:column;align-items:center;gap:16px;transition:box-shadow .35s,transform .35s,border-color .35s;}
.client-card:hover{box-shadow:0 14px 40px rgba(16,16,19,.08);transform:translateY(-4px);border-color:#d9d9de;}
.cc-logo{height:60px;width:100%;display:flex;align-items:center;justify-content:center;}
.cc-logo img{max-height:52px;max-width:82%;width:auto;object-fit:contain;filter:grayscale(1);opacity:.72;transition:filter .35s,opacity .35s;}
.client-card:hover .cc-logo img{filter:grayscale(0);opacity:1;}
.cc-textlogo{font-family:var(--en);font-weight:700;font-size:28px;letter-spacing:-.01em;color:var(--ink);}
.cc-textlogo .d{color:var(--mute);}
.cc-name{font-size:12.5px;line-height:1.5;color:var(--ink-soft);text-align:center;font-weight:500;}
@media(max-width:840px){
  .clients{padding:70px 0 26px;}
  .clients.partners{padding:26px 0 72px;}
  .client-grid{margin-top:34px;gap:14px;}
  .client-grid.cols-4,.client-grid.cols-5{grid-template-columns:repeat(2,1fr);}
  .cc-logo{height:50px;}
  .cc-logo img{max-height:44px;}
  .cc-name{font-size:11.5px;}
}


/* 2026-07-30 MIYAMAE. 暫定ワードマーク(ロゴ未着のため) */
.brand-text-logo{font-family:var(--en);font-weight:700;font-size:clamp(28px,3.2vw,42px);line-height:1;color:#fff;letter-spacing:.01em;}
.brand-text-logo .d{color:var(--mute);}


/* 2026-07-30 Recruit ページ Numbers */
.rec-numbers{margin-top:40px;}
.rec-num{display:block;font-family:var(--en);font-weight:700;font-size:clamp(40px,5vw,60px);line-height:1;letter-spacing:-.02em;color:var(--ink);margin-bottom:8px;}
.rec-num small{font-family:var(--jp);font-size:15px;font-weight:700;color:var(--ink-soft);margin-left:6px;letter-spacing:0;}


/* 2026-07-30 導入/提携カードをリンク化(下線・色打ち消し) */
a.client-card{text-decoration:none;color:inherit;cursor:pointer;}
a.client-card:hover{text-decoration:none;}


/* 2026-07-30 TOP Our Business スライダー：写真→事業ロゴ/ワードマークカードに変更 */
.biz-slide-logo{flex:0 0 min(300px,72vw) !important;width:min(300px,72vw);aspect-ratio:16/10;background:#fff;border:1px solid var(--line);border-radius:14px;display:flex;align-items:center;justify-content:center;padding:22px 26px;}
.biz-slide-logo.dark{background:var(--charcoal);border-color:var(--charcoal);}
.biz-slide-logo img{max-width:78%;max-height:56px;width:auto;height:auto;object-fit:contain;}
.biz-slide-logo .biz-slide-word{font-family:var(--jp);font-weight:700;font-size:15px;line-height:1.5;color:var(--ink);text-align:center;letter-spacing:.01em;}
.biz-slide-logo.dark .biz-slide-word{color:#fff;}
@media (max-width:840px){ .biz-slide-logo{flex-basis:70vw !important;width:70vw;} }


/* 2026-07-30 代表/メッセージ写真枠を削除(素材写真を実在人物として表示しないため)。1カラムに変更 */
.leader-grid{display:block;}
.leader-msg{max-width:720px;}
