/* ===========================================================
   CAPURE — Design System
   Adapted from recruit-site reference. Palette: Navy x Vermilion (朱).
   Type: Zen Kaku Gothic New (display) / Noto Sans JP (body) / Inter (num)
   NOTE: token names keep the "--ac-*" prefix = accent (vermilion) scale.
   =========================================================== */
/* ===========================================================
   Telwel West Recruit 2027 — Design System
   Palette: Navy base × Cyan accent × White
   Type: Zen Kaku Gothic New (display) + Noto Sans JP (body) + Inter (numerals)
   =========================================================== */

:root{
  /* Color — navy / vermilion (朱) family */
  --navy-900: #0a1b3d;
  --navy-800: #112a5c;
  --navy-700: #1a3b7a;
  --navy-600: #26509d;
  --navy-500: #3a6ac0;

  --ac-600: #0b1020;
  --ac-500: #14213a;
  --ac-400: #3a4560;
  --ac-300: #8a93a6;
  --ac-200: #c9ccd4;
  --ac-100: #e8e9ee;
  --ac-50:  #f4f5f7;

  --accent-coral: #14213a;   /* used very sparingly for primary CTA option */

  --ink-900: #0a1224;
  --ink-800: #1a2438;
  --ink-700: #2a3650;
  --ink-600: #4a5672;
  --ink-500: #6b7897;
  --ink-400: #9aa5bd;
  --ink-300: #c4cbdb;
  --ink-200: #e3e7f0;
  --ink-100: #f1f4f9;
  --ink-50:  #f7f9fc;

  --white: #ffffff;

  /* Type */
  --font-display: "Zen Kaku Gothic New", "Noto Sans JP", system-ui, sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", system-ui, sans-serif;
  --font-num: "Inter", "Noto Sans JP", system-ui, sans-serif;

  /* Layout */
  --max-w: 1200px;
  --gutter: clamp(20px, 4vw, 48px);
  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
}

*{ box-sizing: border-box; }
html, body{ margin: 0; padding: 0; }
html{ scroll-behavior: smooth; }
/* 横スワイプ時のはみ出し・ズレ防止 */
html, body{ overflow-x: hidden; max-width: 100%; }
body{ position: relative; }
*, *::before, *::after{ min-width: 0; }
body{
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
  font-feature-settings: "palt";
}
img{ max-width: 100%; display: block; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; }
a{ color: inherit; text-decoration: none; }

/* ========== Utility ========== */
.container{
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section{
  padding-block: clamp(72px, 10vw, 140px);
  position: relative;
}

.section-label{
  font-family: var(--font-num);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--ac-600);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before{
  content: "";
  width: 28px;
  height: 1px;
  background: var(--ac-500);
  display: inline-block;
}

.section-title{
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  color: var(--navy-900);
  margin: 16px 0 0;
  letter-spacing: 0.02em;
}

.section-title .accent{
  color: var(--ac-500);
}

.section-lede{
  font-size: 16px;
  color: var(--ink-600);
  max-width: 680px;
  margin-top: 20px;
  line-height: 2;
}

/* ========== Navigation ========== */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 80;
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(10,27,61,0.06);
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav.transparent{
  background: rgba(10,27,61,0);
  border-bottom-color: transparent;
  color: #fff;
}
.nav.transparent .nav-link{ color: #fff; }

.nav-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-inline: var(--gutter);
}
.nav-logo{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo{ position: relative; display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo-img{
  height: 24px;
  width: auto;
  display: block;
  transition: opacity .25s ease;
}
.nav-logo-dark{ position: absolute; top: 0; left: 0; }
/* Transparent (over hero): show white */
.nav.transparent .nav-logo-white{ opacity: 1; }
.nav.transparent .nav-logo-dark{ opacity: 0; }
/* Solid (scrolled) nav: show dark */
.nav:not(.transparent) .nav-logo-white{ opacity: 0; }
.nav:not(.transparent) .nav-logo-dark{ opacity: 1; }
.nav-logo-divider{
  width: 1px; height: 18px;
  background: currentColor;
  opacity: 0.25;
}
.nav-logo-tag{
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: var(--ink-500);
  text-transform: uppercase;
}
.nav.transparent .nav-logo-tag{ color: rgba(255,255,255,0.85); }

/* legacy — kept for safety if older markup is re-used elsewhere */
.nav-logo-mark{
  width: 36px; height: 36px; border-radius: 10px;
  background: linear-gradient(135deg, var(--navy-800), var(--ac-500));
  border: 1px solid rgba(255,255,255,0);
  display: grid; place-items: center;
  color: #fff;
  font-family: var(--font-num);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.03em;
}
.nav-logo-text{
  display: flex; flex-direction: column;
  line-height: 1.1;
  color: var(--navy-900);
}
.nav-logo-text .jp{ font-size: 14px; font-weight: 700; letter-spacing: 0.02em; }
.nav-logo-text .en{ font-family: var(--font-num); font-size: 10px; letter-spacing: 0.18em; color: var(--ink-500); text-transform: uppercase; }
.nav.transparent .nav-logo-text .en{ color: rgba(255,255,255,.7); }

.nav-links{
  display: flex; align-items: center; gap: 22px;
}
/* CTAを他リンクから一定距離で分離（画面幅でズレないよう固定） */
.nav-links .nav-cta{ margin-left: 6px; }
.nav-link{
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-700);
  position: relative;
  padding: 6px 2px;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav-link .num{
  font-family: var(--font-num);
  font-size: 10px;
  color: var(--ac-500);
  margin-right: 6px;
  letter-spacing: 0.1em;
}
.nav-link:hover{ color: var(--ac-500); }
.nav-cta{
  background: var(--ac-500);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform .2s var(--ease), background .2s var(--ease);
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-cta:hover{ background: var(--ac-600); transform: translateY(-1px); }

.nav-burger{
  display: none;
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(10,27,61,0.06);
  align-items: center; justify-content: center;
}

@media (max-width: 900px){
  /* お問い合わせCTAも含めて全リンクを隠してハンバーガーに集約 */
  .nav-links{ display: none; }
  .nav-burger{ display: inline-flex; }
}

/* ハンバーガー内：お問い合わせ（最後の項目）を朱色で目立たせる */
.nav-panel a[href="bb-contact.html"],
.nav-panel a[href*="contact"]:last-child{
  background: var(--ac-500);
  color: #fff !important;
  border-radius: 10px;
  margin-top: 10px;
  padding: 16px 18px;
  border-bottom: none !important;
}
.nav-panel a[href="bb-contact.html"] .num,
.nav-panel a[href*="contact"]:last-child .num{
  color: rgba(255,255,255,0.7) !important;
}

/* ========== Hero ========== */
.hero{
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
}

/* Bright video-feel mosaic */
.hero-bright{
  background: #0a1b3d;
}
.hero-mosaic{
  position: absolute; inset: 0; z-index: -2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
}
.hero-tile{
  overflow: hidden;
  position: relative;
}
.hero-tile.tile-0{ grid-row: 1 / span 2; }
.hero-tile-inner{
  position: absolute; inset: 0;
  animation: heroKen 3s ease-out forwards, heroFadein .8s ease forwards;
  transform: scale(1.12);
}
@keyframes heroKen{
  0%{ transform: scale(1.12) translate(0,0); }
  100%{ transform: scale(1.25) translate(-1%, -1.5%); }
}
@keyframes heroFadein{
  from{ opacity: 0; }
  to{ opacity: 1; }
}
.hero-tile-stripes{
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(115deg, rgba(255,255,255,0.08) 0 8px, transparent 8px 28px),
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(255,255,255,0.35), transparent 60%);
  mix-blend-mode: overlay;
}
.hero-tile-label{
  position: absolute;
  bottom: 14px; left: 16px;
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.75);
  background: rgba(10, 27, 61, 0.35);
  padding: 5px 10px;
  border-radius: 4px;
  backdrop-filter: blur(6px);
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 900px){
  .hero-mosaic{ grid-template-columns: 1fr 1fr; }
  .hero-tile.tile-0{ grid-row: 1; }
}

.hero-wash{
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(10,27,61,0.15) 0%, rgba(10,27,61,0.35) 40%, rgba(10,27,61,0.7) 100%),
    linear-gradient(90deg, rgba(10,27,61,0.55) 0%, rgba(10,27,61,0.2) 50%, rgba(10,27,61,0.1) 100%);
  pointer-events: none;
}

.hero-inner{
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.hero-eyebrow .dot{
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--ac-300);
  box-shadow: 0 0 12px var(--ac-300);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse{
  0%, 100%{ opacity: 1; transform: scale(1); }
  50%{ opacity: 0.5; transform: scale(1.3); }
}

.hero-title{
  font-family: var(--font-display);
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin: 28px 0 24px;
}
.hero-title .line{ display: block; overflow: hidden; }
.hero-title .word{
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: rise .9s var(--ease) forwards;
}
@keyframes rise{
  to{ opacity: 1; transform: translateY(0); }
}
.hero-title .accent{
  background: linear-gradient(135deg, var(--ac-300) 0%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub{
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 2.1;
  max-width: 620px;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  opacity: 0; animation: fadein 1s .9s var(--ease) forwards;
}
@keyframes fadein{ to{ opacity: 1; } }

.hero-ctas{
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadein 1s 1.1s var(--ease) forwards;
}
.btn{
  display: inline-flex; align-items: center; gap: 12px;
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  transition: transform .2s var(--ease), background .2s var(--ease), box-shadow .3s var(--ease);
}
.btn-primary{
  background: var(--ac-500);
  color: #fff;
  box-shadow: 0 12px 30px -10px rgba(226,73,43,0.8);
}
.btn-primary:hover{
  background: var(--ac-400);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(226,73,43,0.9);
}
.btn-ghost{
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover{ background: rgba(255,255,255,0.15); transform: translateY(-2px); }

.btn-arrow{
  display: inline-grid; place-items: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: transform .3s var(--ease);
}
.btn:hover .btn-arrow{ transform: translateX(4px); }

/* Hero stats strip */
.hero-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: clamp(60px, 10vh, 120px);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 40px;
  opacity: 0; animation: fadein 1s 1.4s var(--ease) forwards;
}
.hero-stat{
  padding-right: 24px;
}
.hero-stat + .hero-stat{ border-left: 1px solid rgba(255,255,255,0.08); padding-left: 24px; }
.hero-stat .val{
  font-family: var(--font-num);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #fff;
  display: flex; align-items: baseline; gap: 4px;
}
.hero-stat .val .unit{ font-size: 0.5em; font-weight: 500; color: var(--ac-300); }
.hero-stat .lbl{
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.6);
  margin-top: 10px;
  font-weight: 500;
}

.hero-scroll{
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column; align-items: center;
  gap: 12px;
}
.hero-scroll::after{
  content: "";
  width: 1px; height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.5), transparent);
  animation: scrollpulse 2s ease-in-out infinite;
}
@keyframes scrollpulse{
  0%,100%{ transform: scaleY(1); transform-origin: top; }
  50%{ transform: scaleY(0.4); transform-origin: top; }
}

@media (max-width: 720px){
  .hero-stats{ grid-template-columns: repeat(2, 1fr); row-gap: 28px; }
  .hero-stat:nth-child(3){ border-left: none; padding-left: 0; }
}

/* ========== About / Business ========== */
.about{
  background: var(--white);
  position: relative;
}
.about-header{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 900px){ .about-header{ grid-template-columns: 1fr; gap: 24px; } }

.pillars{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1080px){ .pillars{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .pillars{ grid-template-columns: 1fr; } }

.pillar{
  padding: 40px 32px;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-200);
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(10,27,61,0.2);
  border-color: var(--ac-300);
}
.pillar-num{
  font-family: var(--font-num);
  font-size: 14px;
  font-weight: 700;
  color: var(--ac-500);
  letter-spacing: 0.1em;
}
.pillar-icon{
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--ac-500), var(--navy-700));
  display: grid; place-items: center;
  color: #fff;
  margin: 18px 0 24px;
}
.pillar h3{
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 12px;
  line-height: 1.4;
}
.pillar p{
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-600);
  margin: 0;
}
.pillar-bg{
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--ac-100), transparent);
  opacity: 0.6;
  pointer-events: none;
}

/* Business areas scroller */
.biz-scroll{
  margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid var(--ink-200);
  border-bottom: 1px solid var(--ink-200);
  padding-block: 32px;
  background: linear-gradient(180deg, var(--white), var(--ac-50));
}
.biz-track{
  display: flex;
  gap: 48px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}
.biz-item{
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--navy-800);
  display: inline-flex;
  align-items: center;
  gap: 48px;
}
.biz-item::after{
  content: "";
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ac-500);
}

/* ========== Message ========== */
.message{
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.message::before{
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(238,106,77,0.15), transparent 60%);
  pointer-events: none;
}
.message .section-label{ color: var(--ac-300); }
.message .section-label::before{ background: var(--ac-300); }
.message .section-title{ color: #fff; }
.message-grid{
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}
@media (max-width: 900px){ .message-grid{ grid-template-columns: 1fr; gap: 32px; } }

.message-photo{
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--ac-600));
  position: relative;
  overflow: hidden;
}
.placeholder{
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.05) 0 10px, transparent 10px 20px);
  display: grid; place-items: center;
}
.placeholder-label{
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.55);
  background: rgba(0,0,0,0.25);
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}
.message-author{
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 4px;
}
.message-author .role{ font-size: 11px; letter-spacing: 0.2em; color: var(--ac-300); text-transform: uppercase; font-family: var(--font-num); }
.message-author .name{ font-family: var(--font-display); font-size: 22px; font-weight: 800; }
.message-author .name .en{ display: block; font-family: var(--font-num); font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.1em; margin-top: 4px; font-weight: 400; }

.message-body{
  font-size: 16px;
  line-height: 2.2;
  color: rgba(255,255,255,0.85);
}
.message-body .kicker{
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  margin: 0 0 32px;
  letter-spacing: 0.02em;
}
.message-body .kicker .accent{ color: var(--ac-300); }
.message-body p + p{ margin-top: 1.3em; }

/* ========== People / Interviews ========== */
.people{
  background: var(--ink-50);
}
.people-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
@media (max-width: 900px){ .people-grid{ grid-template-columns: 1fr; } }

.person{
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.person:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 50px -25px rgba(10,27,61,0.2);
}
.person-photo{
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ac-100), var(--ac-300));
  position: relative;
  overflow: hidden;
}
.person-tag{
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(10,27,61,0.9);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.person-body{
  padding: 28px;
  flex: 1;
  display: flex; flex-direction: column;
}
.person-quote{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.55;
  margin: 0 0 20px;
  letter-spacing: 0.02em;
}
.person-quote .hl{
  background: linear-gradient(180deg, transparent 65%, var(--ac-200) 65%);
}
.person-desc{
  font-size: 13px;
  line-height: 1.9;
  color: var(--ink-600);
  margin: 0 0 24px;
}
.person-meta{
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--ink-200);
  display: grid; gap: 4px;
}
.person-meta .dept{ font-size: 11px; letter-spacing: 0.15em; color: var(--ac-600); font-family: var(--font-num); font-weight: 600; }
.person-meta .name{ font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--navy-900); }
.person-meta .join{ font-size: 11px; color: var(--ink-500); font-family: var(--font-num); }

/* ========== Requirements / Benefits ========== */
.requirements{
  background: #fff;
}
.req-table{
  margin-top: 60px;
  border-top: 2px solid var(--navy-900);
}
.req-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink-200);
  align-items: start;
}
@media (max-width: 720px){
  .req-row{ grid-template-columns: 1fr; gap: 8px; padding: 20px 0; }
}
.req-key{
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.08em;
  display: flex; align-items: center; gap: 12px;
}
.req-key .chip{
  font-family: var(--font-num);
  font-size: 10px;
  padding: 3px 8px;
  background: var(--ac-100);
  color: var(--ac-600);
  border-radius: 4px;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.req-val{
  font-size: 14px;
  color: var(--ink-700);
  line-height: 1.9;
}

.benefits{
  margin-top: 80px;
  padding: 48px;
  background: linear-gradient(135deg, var(--ac-50), var(--ink-50));
  border-radius: var(--radius-lg);
  border: 1px solid var(--ac-200);
}
@media (max-width: 720px){ .benefits{ padding: 28px; } }
.benefits-title{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 28px;
  display: flex; align-items: center; gap: 12px;
}
.benefits-title::before{
  content: ""; width: 24px; height: 3px; background: var(--ac-500); border-radius: 2px;
}
.benefits-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
}
@media (max-width: 900px){ .benefits-grid{ grid-template-columns: repeat(2, 1fr); } }
.benefit-item{
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 13px;
  color: var(--ink-700);
  line-height: 1.7;
}
.benefit-item .check{
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--ac-500);
  display: grid; place-items: center;
  color: #fff;
  font-size: 11px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ========== Flow ========== */
.flow{
  background: var(--navy-900);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.flow-bg{
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
  pointer-events: none;
}
.flow .section-label{ color: var(--ac-300); }
.flow .section-label::before{ background: var(--ac-300); }
.flow .section-title{ color: #fff; }

.flow-steps{
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
}
@media (max-width: 900px){ .flow-steps{ grid-template-columns: 1fr; gap: 20px; } }

.flow-step{
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 22px 24px;
  backdrop-filter: blur(8px);
  position: relative;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.flow-step:hover{
  background: rgba(238,106,77,0.08);
  border-color: var(--ac-300);
  transform: translateY(-4px);
}
.flow-step.final{
  background: linear-gradient(135deg, var(--ac-500), var(--ac-600));
  border-color: transparent;
}
.flow-step .step-num{
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 600;
  color: var(--ac-300);
  letter-spacing: 0.2em;
  display: block;
}
.flow-step.final .step-num{ color: rgba(255,255,255,0.8); }
.flow-step .step-icon{
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(238,106,77,0.15);
  display: grid; place-items: center;
  margin: 14px 0 16px;
  color: var(--ac-300);
}
.flow-step.final .step-icon{ background: rgba(255,255,255,0.2); color: #fff; }
.flow-step h4{
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.flow-step p{
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.7);
  margin: 0;
}
.flow-step.final p{ color: rgba(255,255,255,0.85); }

.flow-step .step-arrow{
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 20px; height: 20px;
  display: grid; place-items: center;
  color: rgba(255,255,255,0.3);
  z-index: 2;
}
@media (max-width: 900px){ .flow-step .step-arrow{ display: none; } }

/* ========== FAQ ========== */
.faq{
  background: var(--ink-50);
}
.faq-list{
  margin-top: 56px;
  display: grid;
  gap: 12px;
  max-width: 900px;
}
.faq-item{
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq-item[data-open="true"]{ border-color: var(--ac-400); }

.faq-q{
  width: 100%;
  padding: 22px 28px;
  display: grid;
  grid-template-columns: 40px 1fr 24px;
  gap: 20px;
  align-items: center;
  text-align: left;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.5;
}
.faq-q .marker{
  font-family: var(--font-num);
  font-size: 20px;
  font-weight: 800;
  color: var(--ac-500);
  letter-spacing: -0.03em;
}
.faq-q .toggle{
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--ink-100);
  display: grid; place-items: center;
  color: var(--navy-800);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.faq-item[data-open="true"] .toggle{
  background: var(--ac-500);
  color: #fff;
  transform: rotate(45deg);
}
.faq-a{
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s var(--ease);
}
.faq-item[data-open="true"] .faq-a{ grid-template-rows: 1fr; }
.faq-a > div{
  overflow: hidden;
  padding: 0 28px;
}
.faq-item[data-open="true"] .faq-a > div{
  padding-bottom: 24px;
}
.faq-a p{
  font-size: 14px;
  line-height: 2;
  color: var(--ink-600);
  margin: 0;
  border-left: 3px solid var(--ac-200);
  padding: 4px 0 4px 20px;
}

/* ========== CTA ========== */
.cta{
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  pointer-events: none;
}
.cta-orb-1{ width: 500px; height: 500px; background: var(--ac-500); top: -200px; left: -100px; }
.cta-orb-2{ width: 400px; height: 400px; background: var(--ac-300); bottom: -150px; right: -80px; }

.cta-inner{
  position: relative;
  text-align: center;
  padding-block: clamp(60px, 8vw, 120px);
}
.cta-title{
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: 0.02em;
  margin: 0 0 24px;
}
.cta-title .accent{ color: var(--ac-300); }
.cta-lede{
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 2;
}
.cta-buttons{
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ========== Footer ========== */
.footer{
  background: #050f26;
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 900px){ .footer-top{ grid-template-columns: 1fr; gap: 40px; } }

.footer-logo{ display: flex; align-items: center; gap: 14px; }
.footer-logo-img{
  height: 28px;
  width: auto;
  display: block;
}
.footer-logo .nav-logo-text .jp{ color: #fff; }
.footer-logo .nav-logo-text .en{ color: rgba(255,255,255,0.5); }

.footer-intro{
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  color: rgba(255,255,255,0.55);
}

.footer-cols{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 720px){ .footer-cols{ grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.footer-col h5{
  font-family: var(--font-num);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ac-300);
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-col ul{ list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.footer-col a{
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--ease);
}
.footer-col a:hover{ color: var(--ac-300); }

.footer-bottom{
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-num);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap; gap: 12px;
}

/* ========== Tweaks panel ========== */
.tweaks{
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 90;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius);
  box-shadow: 0 24px 48px -12px rgba(10,27,61,0.25);
  padding: 18px;
  width: 280px;
  font-family: var(--font-body);
}
.tweaks h4{
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-900);
  display: flex; align-items: center; justify-content: space-between;
}
.tweaks h4 .close{
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink-100);
  display: grid; place-items: center;
  cursor: pointer; color: var(--ink-600);
}
.tweaks .lbl{
  font-family: var(--font-num);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--ink-500);
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}
.tweaks .options{ display: grid; gap: 8px; }
.tweaks .option{
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid var(--ink-200);
  font-size: 12px;
  line-height: 1.5;
  color: var(--ink-700);
  cursor: pointer;
  text-align: left;
  transition: all .15s var(--ease);
  background: #fff;
}
.tweaks .option:hover{ border-color: var(--ac-400); }
.tweaks .option.active{
  border-color: var(--ac-500);
  background: var(--ac-50);
  color: var(--navy-900);
  font-weight: 600;
}

/* ========== Misc ========== */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity: 1; transform: translateY(0); }

/* scrollbar subtle */
::selection{ background: var(--ac-300); color: var(--navy-900); }


/* ========== Video Section ========== */
.video-section{
  position: relative;
  background: #f5f8fc;
  padding: 120px 0 140px;
  overflow: hidden;
}
.video-section::before{
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 85% 15%, rgba(238,106,77,0.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(17,42,92,0.06), transparent 60%);
  pointer-events: none;
}
.video-head{
  max-width: 780px;
  margin: 0 auto 60px;
  text-align: center;
  position: relative;
}
.video-head .section-label{
  display: inline-block;
  margin-bottom: 20px;
}
.video-head .section-title{
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}
.video-head .section-lede{
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-600);
  max-width: 560px;
  margin: 0 auto;
}

.video-frame{
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 30px 80px -20px rgba(10, 27, 61, 0.35),
    0 10px 30px -10px rgba(10, 27, 61, 0.2);
  background: var(--navy-900);
  transform: translateZ(0);
}
.video-frame-inner{
  position: relative;
  aspect-ratio: 16 / 9;
  width: 100%;
}
.video-frame-inner iframe{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-frame-border{
  position: absolute; inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.12);
  pointer-events: none;
  z-index: 2;
}

.video-poster{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  padding: 0; margin: 0;
  border: 0;
  background: #000;
  cursor: pointer;
  overflow: hidden;
  display: block;
}
.video-poster img{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease), filter .4s var(--ease);
}
.video-poster:hover img{
  transform: scale(1.03);
  filter: brightness(1.05);
}
.video-poster-overlay{
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,27,61,0.0) 40%, rgba(10,27,61,0.55) 100%),
    linear-gradient(90deg, rgba(10,27,61,0.25) 0%, rgba(10,27,61,0) 50%);
}
.video-play{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 88px; height: 88px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: var(--navy-900);
  display: grid;
  place-items: center;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.video-play svg{ margin-left: 4px; }
.video-poster:hover .video-play{
  transform: translate(-50%, -50%) scale(1.08);
  background: var(--ac-400, #2bb0c8);
  color: #fff;
}
.video-play::before{
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.5);
  animation: videoPulse 2.2s ease-out infinite;
}
@keyframes videoPulse{
  0%{ transform: scale(0.9); opacity: 1; }
  100%{ transform: scale(1.25); opacity: 0; }
}
.video-poster-caption{
  position: absolute;
  left: 28px; bottom: 24px;
  display: flex; flex-direction: column;
  gap: 6px;
  color: #fff;
  text-align: left;
}
.video-duration{
  font-family: var(--font-num);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.video-caption-title{
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.video-meta{
  max-width: 1100px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding-top: 30px;
  border-top: 1px solid rgba(10,27,61,0.08);
}
.video-meta-item{
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 0 8px;
}
.video-meta-num{
  font-family: var(--font-num);
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: var(--ac-500, #2bb0c8);
}
.video-meta-label{
  font-size: 15px;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
@media (max-width: 720px){
  .video-section{ padding: 80px 0 90px; }
  .video-frame{ border-radius: 14px; }
  .video-play{ width: 68px; height: 68px; }
  .video-play svg{ width: 22px; height: 22px; }
  .video-poster-caption{ left: 18px; bottom: 16px; }
  .video-caption-title{ font-size: 15px; }
  .video-meta{ grid-template-columns: 1fr; gap: 14px; }
}


/* ===========================================================
   CAPURE — additions (header notice, sub-page, content blocks)
   =========================================================== */
.site-header{ position: fixed; top:0; left:0; right:0; z-index: 80; }
.site-header .nav{ position: static; }

/* notice bar directly under the header */
.notice-bar{
  background: var(--navy-800);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.notice-bar-inner{
  max-width: var(--max-w); margin: 0 auto;
  padding: 9px var(--gutter);
  display: flex; align-items: center; gap: 14px;
  color: #fff;
}
.notice-bar .tag{
  font-family: var(--font-num); font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  background: var(--ac-500); color: #fff;
  padding: 3px 9px; border-radius: 4px; flex-shrink: 0;
}
.notice-bar .label{ font-size: 12.5px; font-weight: 600; }
.notice-bar .arrow{
  margin-left: auto; color: var(--ac-300);
  transition: transform .2s var(--ease);
}
.notice-bar a:hover .arrow{ transform: translateX(4px); }
@media (max-width: 560px){ .notice-bar .label{ font-size: 11.3px; } }

/* plain navy hero (no photo mosaic) */
.hero-plain{
  background: radial-gradient(ellipse 85% 75% at 72% 18%, var(--navy-700), var(--navy-900) 72%);
}
.hero-grid-bg{
  position: absolute; inset: 0; z-index: -1;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 60% 70% at 50% 42%, black, transparent 86%);
  -webkit-mask-image: radial-gradient(ellipse 60% 70% at 50% 42%, black, transparent 86%);
}
.hero-logo{ height: 38px; width: auto; margin-bottom: 26px;
  opacity: 0; animation: fadein 1s .3s var(--ease) forwards; }

/* sub-page hero (compact) */
.subhero{
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: #fff;
  padding: 184px 0 84px;
  position: relative; overflow: hidden;
}
.subhero::before{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 80% at 28% 30%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 28% 30%, black, transparent 85%);
}
.subhero .container{ position: relative; }
.subhero .section-label{ color: var(--ac-300); }
.subhero .section-label::before{ background: var(--ac-300); }
.subhero-title{
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 900; line-height: 1.32; margin: 14px 0 0;
  letter-spacing: 0.02em;
}
.subhero-lede{
  font-size: 15px; line-height: 2;
  color: rgba(255,255,255,0.78);
  max-width: 660px; margin-top: 20px;
}

/* news list */
.news-list{ margin-top: 56px; border-top: 2px solid var(--navy-900); }
.news-row{
  display: grid; grid-template-columns: 132px 1fr; gap: 32px;
  padding: 22px 4px; border-bottom: 1px solid var(--ink-200);
  align-items: baseline;
}
.news-row .date{
  font-family: var(--font-num); font-size: 13px;
  color: var(--ac-600); font-weight: 600; letter-spacing: 0.05em;
}
.news-row .body{ font-size: 14px; color: var(--ink-700); line-height: 1.9; }
@media (max-width: 560px){ .news-row{ grid-template-columns: 1fr; gap: 4px; } }

/* link card */
.link-card{
  display: block; margin-top: 8px; max-width: 580px;
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg); padding: 34px 36px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.link-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 44px -22px rgba(10,27,61,0.25);
  border-color: var(--ac-300);
}
.link-card .kicker{
  font-family: var(--font-num); font-size: 11px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ac-600); font-weight: 600;
}
.link-card h3{
  font-family: var(--font-display); font-size: 23px; font-weight: 800;
  color: var(--navy-900); margin: 10px 0 12px;
}
.link-card p{ font-size: 14px; color: var(--ink-600); line-height: 1.9; margin: 0 0 16px; }
.link-card .more{ font-size: 13px; font-weight: 700; color: var(--ac-500); }

/* prose (policy / blog / notice) */
.prose{ max-width: 780px; }
.prose > .lead{
  font-size: 16px; line-height: 2.1; color: var(--ink-700);
  margin: 0 0 8px;
}
.prose h2{
  font-family: var(--font-display); font-size: 22px; font-weight: 800;
  color: var(--navy-900); margin: 52px 0 16px;
  padding-left: 15px; border-left: 4px solid var(--ac-500);
  line-height: 1.5;
}
.prose h3{
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: var(--navy-800); margin: 32px 0 10px;
}
.prose p{ font-size: 14.5px; line-height: 2.05; color: var(--ink-700); margin: 0 0 16px; }
.prose ul, .prose ol{ margin: 0 0 18px; padding-left: 22px; }
.prose li{ font-size: 14.5px; line-height: 1.95; color: var(--ink-700); margin-bottom: 7px; }
.prose strong{ color: var(--navy-900); font-weight: 700; }
.prose a{ color: var(--ac-600); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout{
  background: linear-gradient(135deg, var(--ac-50), var(--ink-50));
  border: 1px solid var(--ac-200);
  border-radius: var(--radius); padding: 24px 28px; margin: 28px 0;
}
.prose .callout p{ margin: 0; font-size: 14px; }

/* definition table (privacy / company info) */
.def-table{ margin-top: 40px; border-top: 2px solid var(--navy-900); max-width: 820px; }
.def-row{
  display: grid; grid-template-columns: 200px 1fr; gap: 32px;
  padding: 20px 4px; border-bottom: 1px solid var(--ink-200);
}
.def-row dt, .def-row .k{
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  color: var(--navy-900); letter-spacing: 0.04em;
}
.def-row dd, .def-row .v{
  margin: 0; font-size: 14px; color: var(--ink-700); line-height: 1.9;
}
@media (max-width: 560px){ .def-row{ grid-template-columns: 1fr; gap: 6px; } }

/* form */
.form-grid{ max-width: 660px; margin-top: 48px; display: grid; gap: 22px; }
.form-field label{
  display: block; font-size: 13px; font-weight: 700;
  color: var(--navy-900); margin-bottom: 8px;
}
.form-field .req{
  color: #fff; background: var(--ac-500); margin-left: 8px;
  font-size: 10px; padding: 2px 7px; border-radius: 3px;
  font-family: var(--font-num); letter-spacing: 0.08em;
}
.form-field input, .form-field select, .form-field textarea{
  width: 100%; font-family: inherit; font-size: 14px;
  padding: 13px 16px; border: 1px solid var(--ink-300);
  border-radius: var(--radius-sm); background: #fff; color: var(--ink-800);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus{
  outline: none; border-color: var(--ac-500);
  box-shadow: 0 0 0 3px var(--ac-100);
}
.form-field textarea{ min-height: 150px; resize: vertical; }

/* manifesto lines on dark */
.manifesto-lines{ margin-top: 16px; max-width: 740px; }
.manifesto-lines p{
  font-family: var(--font-display);
  font-size: clamp(17px, 2.2vw, 25px);
  font-weight: 700; line-height: 1.95; margin: 0;
  color: rgba(255,255,255,0.34);
  transition: color .6s var(--ease);
}
.manifesto-lines p.lit{ color: #fff; }
.manifesto-lines p.accent{ color: var(--ac-300); }
.manifesto-lines .gap{ height: 22px; }

/* clients */
.client-names{
  margin-top: 36px; font-size: 14.5px; line-height: 2.2;
  color: var(--ink-700); max-width: 880px;
}
.client-names .em{ color: var(--navy-900); font-weight: 700; }

/* noindex strip */
.noindex-strip{
  background: var(--ink-100);
  border-top: 1px solid var(--ink-200);
  text-align: center; padding: 14px var(--gutter);
  font-family: var(--font-num);
  font-size: 11px; letter-spacing: 0.06em; color: var(--ink-500);
}

/* generic content section title sizing for sub-pages */
.section-tight{ padding-block: clamp(56px, 7vw, 96px); }

/* mobile drawer */
.nav-panel{
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(82vw, 320px);
  background: var(--navy-900); color: #fff;
  z-index: 95;
  transform: translateX(100%);
  transition: transform .38s var(--ease);
  display: flex; flex-direction: column;
  padding: 96px 32px 40px; gap: 6px;
}
.nav-panel.open{ transform: translateX(0); }
.nav-panel a{
  font-family: var(--font-display); font-size: 17px; font-weight: 700;
  color: #fff; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-panel a .num{
  font-family: var(--font-num); font-size: 11px;
  color: var(--ac-300); margin-right: 10px;
}
.nav-scrim{
  position: fixed; inset: 0; z-index: 94;
  background: rgba(5,15,38,0.5);
  opacity: 0; visibility: hidden; transition: opacity .3s var(--ease), visibility .3s;
}
.nav-scrim.open{ opacity: 1; visibility: visible; }
.nav-panel-close{
  position: absolute; top: 24px; right: 24px;
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.08); color: #fff;
  display: grid; place-items: center; font-size: 20px;
}

/* ============================================================
   CAPURE — REVISION: White / Transparent / Vermilion theme
   青・紺色を排除。白基調＋朱色アクセント＋ガラス(透明)。
   末尾に置くことで既存ルールを上書きする。
   ============================================================ */
:root{
  /* dark tokens を「青みのない暖かみのある黒・チャコール」に再定義 */
  --navy-900:#211815;
  --navy-800:#30231f;
  --navy-700:#41302a;
  --navy-600:#553f37;
  --navy-500:#6c534a;
  /* ink を青みのないニュートラルグレーに再定義 */
  --ink-900:#1d1714;
  --ink-800:#2c2521;
  --ink-700:#403833;
  --ink-600:#5c534d;
  --ink-500:#8b817a;
  --ink-400:#aaa19b;
  --ink-300:#cdc6c1;
  --ink-200:#e8e3df;
  --ink-100:#f3f0ed;
  --ink-50:#faf8f6;
}

/* --- nav: 常に白ガラス（透明スクロール挙動を無効化） --- */
.nav, .nav.transparent{
  background: #ffffff;        /* 不透明白：羊JPGの白背景と一体化（スクロール時の浮き解消） */
  border-bottom: 1px solid rgba(33,24,21,0.07);
  color: var(--ink-800);
}
.nav.transparent .nav-link{ color: var(--ink-700); }
.nav.transparent .nav-logo-tag{ color: var(--ink-500); }
.nav-burger{ background: rgba(33,24,21,0.06); }

/* --- notice bar: ロゴと同じ青に統一（色数を減らす） --- */
.notice-bar{ background: #14213a; border-bottom: none; }
.notice-bar .tag{ background: rgba(255,255,255,0.18); color:#fff; }
.notice-bar .arrow{ color: rgba(255,255,255,0.9); }

/* --- hero: 白基調 --- */
.hero, .hero-bright, .hero-plain{ background:#fff; color: var(--ink-800); }
.hero-plain{ background: radial-gradient(ellipse 95% 85% at 78% 12%, var(--ac-50), #ffffff 68%); }
.hero-grid-bg{
  background-image:
    linear-gradient(rgba(33,24,21,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,24,21,0.05) 1px, transparent 1px);
}
.hero-eyebrow{
  border: 1px solid var(--ac-200);
  background: var(--ac-50);
  color: var(--ac-600);
  -webkit-backdrop-filter:none; backdrop-filter:none;
}
.hero-eyebrow .dot{ background: var(--ac-500); box-shadow: 0 0 12px var(--ac-300); }
.hero-title{ color: var(--navy-900); }
.hero-title .accent{
  background: none;
  -webkit-background-clip: border-box; background-clip: border-box;
  color: var(--ac-500); -webkit-text-fill-color: var(--ac-500);
}
.hero-sub{ color: var(--ink-600); }
.hero-stats{ border-top: 1px solid var(--ink-200); }
.hero-stat + .hero-stat{ border-left: 1px solid var(--ink-200); }
.hero-stat .val{ color: var(--navy-900); }
.hero-stat .val .unit{ color: var(--ac-500); }
.hero-stat .lbl{ color: var(--ink-500); }
.hero-scroll{ color: var(--ink-400); }
.hero-scroll::after{ background: linear-gradient(180deg, var(--ac-400), transparent); }

/* --- ghost button: 白地用 --- */
.btn-ghost{ background:#fff; color: var(--navy-900); border: 1px solid var(--ink-300); }
.btn-ghost:hover{ background: var(--ink-50); border-color: var(--ac-300); }

/* --- message section (旧ダークネイビー) → 明るく --- */
.message{ background: var(--ink-50); color: var(--ink-800); }
.message::before{ background: radial-gradient(circle, var(--ac-100), transparent 62%); }
.message .section-label{ color: var(--ac-600); }
.message .section-label::before{ background: var(--ac-500); }
.message .section-title{ color: var(--navy-900); }
.message-body{ color: var(--ink-700); }
.message-body .kicker{ color: var(--navy-900); }
.message-body .kicker .accent{ color: var(--ac-500); }
.manifesto-lines p{ color: rgba(33,24,21,0.20); }
.manifesto-lines p.lit{ color: var(--navy-900); }
.manifesto-lines p.accent{ color: var(--ac-500); }

/* --- flow section (旧ダークネイビー) → 明るく --- */
.flow{ background: var(--ink-50); color: var(--ink-800); }
.flow .section-label{ color: var(--ac-600); }
.flow .section-label::before{ background: var(--ac-500); }
.flow .section-title{ color: var(--navy-900); }
.flow-bg{
  background-image:
    linear-gradient(rgba(33,24,21,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,24,21,0.04) 1px, transparent 1px);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black, transparent 90%);
}

/* --- CTA section → 朱色ブロック --- */
.cta{ background: linear-gradient(135deg, var(--ac-500), var(--ac-600)); color:#fff; }
.cta-orb-1{ background: rgba(255,255,255,0.35); }
.cta-orb-2{ background: rgba(255,255,255,0.22); }
.cta-title{ color:#fff; }
.cta-title .accent{ color:#fff; opacity:.82; }
.cta-lede{ color: rgba(255,255,255,0.9); }
.cta .btn-primary{ background:#fff; color: var(--ac-600); box-shadow: 0 12px 30px -10px rgba(0,0,0,0.3); }
.cta .btn-primary:hover{ background: var(--ink-50); }
.cta .btn-ghost{ background: rgba(255,255,255,0.12); color:#fff; border-color: rgba(255,255,255,0.45); }
.cta .btn-ghost:hover{ background: rgba(255,255,255,0.2); }

/* --- sub-page hero → 明るく --- */
.subhero{ background: linear-gradient(150deg, var(--ac-50), #ffffff 65%); color: var(--ink-800); }
.subhero::before{
  background-image:
    linear-gradient(rgba(33,24,21,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,24,21,0.04) 1px, transparent 1px);
}
.subhero .section-label{ color: var(--ac-600); }
.subhero .section-label::before{ background: var(--ac-500); }
.subhero-title{ color: var(--navy-900); }
.subhero-lede{ color: var(--ink-600); }

/* --- footer: 青黒(#050f26)を排除 → 暖かみのあるチャコール --- */
.footer{ background: var(--ink-900); }

/* --- mobile drawer → 白 --- */
.nav-panel{ background:#fff; color: var(--ink-800); }
.nav-panel a{ color: var(--navy-900); border-bottom: 1px solid var(--ink-200); }
.nav-panel a .num{ color: var(--ac-500); }
.nav-panel-close{ background: var(--ink-100); color: var(--ink-700); }

/* --- misc --- */
::selection{ background: var(--ac-200); color: var(--navy-900); }
.prose code{
  font-family: ui-monospace, "DM Mono", monospace;
  font-size: 0.86em; background: var(--ac-50);
  color: var(--ac-600); padding: 2px 7px; border-radius: 4px;
}

/* --- REVISION: コピペ抑止（フォーム入力欄は除外） --- */
body{
  -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none;
  -webkit-touch-callout: none;
}
input, textarea, select{
  -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text;
}
img{ -webkit-user-drag: none; user-drag: none; pointer-events: none; }
.link-card img, a img{ pointer-events: auto; }

/* --- REVISION: manifesto 見出し横のロゴ＋メッセージ --- */
.manifesto-head{
  display: grid;
  grid-template-columns: 1fr minmax(220px, 300px);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  margin-bottom: 12px;
}
.manifesto-aside{
  display: flex; flex-direction: column; gap: 16px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 40px -28px rgba(33,24,21,0.25);
}
.manifesto-aside img{ width: 148px; height: auto; }
.manifesto-aside p{
  font-size: 13.5px; line-height: 2; color: var(--ink-600); margin: 0;
}
.manifesto-aside .em{ color: var(--ac-600); font-weight: 700; }
@media (max-width: 860px){
  .manifesto-head{ grid-template-columns: 1fr; gap: 26px; }
  .manifesto-aside{ flex-direction: row; align-items: center; }
  .manifesto-aside img{ width: 116px; flex-shrink: 0; }
}
@media (max-width: 480px){
  .manifesto-aside{ flex-direction: column; align-items: flex-start; }
}

/* --- REVISION: 「3分でわかる」動画セクション（白・朱色化） --- */
.video-section{ background:#fff; }
.video-section::before{
  background:
    radial-gradient(ellipse 60% 40% at 85% 15%, var(--ac-100), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, var(--ink-100), transparent 60%);
}
.video-head .section-label{ color: var(--ac-600); }
.video-head .section-label::before{ background: var(--ac-500); }
.video-head .section-title{ color: var(--navy-900); }
.video-head .section-lede{ color: var(--ink-600); }
.video-frame{ background: var(--navy-900); }
.video-poster-ph{
  position:absolute; inset:0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 60%, var(--ac-600) 160%);
}
.video-poster-ph::after{
  content:""; position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black, transparent 88%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 45%, black, transparent 88%);
}
.video-play{ background:#fff; color: var(--ac-600); }
.video-poster:hover .video-play{ background: var(--ac-500); color:#fff; }
.video-meta{ border-top-color: rgba(33,24,21,0.08); }
.video-meta-num{ color: var(--ac-500); }
.video-meta-label{ color: var(--navy-900); }

/* --- REVISION: 動画「Coming Soon」プレースホルダー --- */
.video-poster--soon{ cursor: default; }
.video-soon{
  position: absolute; inset: 0; z-index: 3;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  color: #fff; text-align: center; padding: 20px;
}
.video-soon-mark{ color: var(--ac-400); display: block; }
.video-soon-mark .ring-dash{
  transform-origin: 50px 50px;
  animation: soonSpin 16s linear infinite;
}
@keyframes soonSpin{ to{ transform: rotate(360deg); } }
.video-soon-mark .ring-pulse{
  transform-origin: 50px 50px;
  animation: soonPulse 2.6s ease-in-out infinite;
}
@keyframes soonPulse{
  0%,100%{ opacity: .85; transform: scale(1); }
  50%{ opacity: .35; transform: scale(1.06); }
}
.video-soon-text{
  font-family: var(--font-num);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.36em; text-transform: uppercase;
  color: #fff; padding-left: 0.36em;
}
.video-soon-sub{
  font-size: 12px; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

/* --- MUNITA式 AIO公式ブロック --- */
.aio-formula{
  margin: 38px 0;
  background: var(--ink-50);
  border: 1px solid var(--ink-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
}
.aio-eq{
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 14px;
  font-family: var(--font-num);
  padding-bottom: 32px;
  border-bottom: 1px solid var(--ink-200);
}
.aio-eq .aio-r{ font-size: 54px; font-weight: 800; color: var(--ac-500); line-height: 1; }
.aio-eq .aio-op{ font-size: 28px; font-weight: 400; color: var(--ink-400); }
.aio-eq .aio-term{
  font-size: 40px; font-weight: 800; color: var(--navy-900);
  width: 74px; height: 74px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1.5px solid var(--ink-300); border-radius: 16px; background: #fff;
}
.aio-defs{ margin-top: 30px; display: grid; gap: 16px; }
.aio-def{ display: grid; grid-template-columns: 46px 1fr; gap: 18px; align-items: start; }
.aio-def .aio-key{
  font-family: var(--font-num); font-size: 20px; font-weight: 800;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px; background: var(--ac-500); color: #fff;
}
.aio-def h4{
  font-family: var(--font-display); font-size: 15.5px; font-weight: 800;
  color: var(--navy-900); margin: 1px 0 5px;
}
.aio-def h4 .en{
  font-family: var(--font-num); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.12em; color: var(--ac-600);
  display: block; margin-bottom: 3px; text-transform: uppercase;
}
.aio-def p{ font-size: 13.5px; line-height: 1.9; color: var(--ink-600); margin: 0; }
@media (max-width: 560px){
  .aio-eq .aio-r{ font-size: 42px; }
  .aio-eq .aio-op{ font-size: 22px; }
  .aio-eq .aio-term{ font-size: 32px; width: 58px; height: 58px; }
  .aio-def{ grid-template-columns: 1fr; gap: 8px; }
}

/* --- REVISION: クライアント種別チップ（取引先一覧の上に表示） --- */
.client-chip{
  padding:6px 14px; border-radius:999px;
  background: var(--ac-50);
  border:1px solid var(--ac-200);
  font-family: var(--font-num); font-size:11.5px; font-weight:700;
  letter-spacing:.06em; color: var(--ac-600);
  white-space: nowrap;
}

/* === REVISION: 5 Cores / 2030 IP / Team chips (site additions) === */
.cores-grid{
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.core-card{
  background: #fff; border: 1px solid var(--ink-200);
  border-radius: var(--radius); padding: 26px 22px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.core-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(33,24,21,.18);
  border-color: var(--ac-300);
}
.core-num{
  font-family: var(--font-num); font-size: 12px; font-weight: 800;
  letter-spacing: .14em; color: var(--ac-600); margin-bottom: 12px;
}
.core-name{
  font-family: var(--font-display); font-size: 18px; font-weight: 800;
  color: var(--navy-900); margin: 0 0 10px; line-height: 1.3;
}
.core-desc{ font-size: 12.5px; line-height: 1.85; color: var(--ink-600); margin: 0; }
@media (max-width: 1080px){ .cores-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .cores-grid{ grid-template-columns: 1fr; } }

.team-chips{
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
}
.team-chip{
  padding: 9px 18px; border-radius: 999px;
  background: var(--ac-50); border: 1.5px solid var(--ac-300);
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700; color: var(--ac-600);
  white-space: nowrap;
}

.ip-arrow-block{
  margin: 40px auto 0;
  display: flex; align-items: center; justify-content: center;
  gap: 18px; flex-wrap: wrap;
}
.ip-st{
  padding: 16px 26px; border-radius: 14px;
  background: #fff; border: 1.5px solid var(--ink-200);
  font-family: var(--font-display);
  font-size: 18px; font-weight: 800; color: var(--ink-500);
  text-align: center; line-height: 1.3;
  box-shadow: 0 6px 18px rgba(33,24,21,.05);
}
.ip-st small{
  display: block; font-family: var(--font-body);
  font-size: 11px; font-weight: 500; color: var(--ink-400); margin-top: 4px;
}
.ip-st--win{
  background: var(--ac-500); border-color: var(--ac-500); color: #fff;
  box-shadow: 0 14px 32px -10px rgba(196,61,31,.4);
}
.ip-st--win small{ color: rgba(255,255,255,.82); }
.ip-ar{
  font-family: var(--font-num); font-size: 22px; font-weight: 700;
  color: var(--ac-500);
}

/* === REVISION: Free Papers (リード獲得セクション) === */
.fp-head{ text-align: center; margin-bottom: 56px; max-width: 760px; margin-left: auto; margin-right: auto; }
.fp-head .section-title{ margin-top: 14px; }
.fp-head .section-lede{ margin: 22px auto 0; }

.fp-grid{
  display: flex; flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.fp-card{
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px; max-width: 360px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--ink-200);
  display: flex; flex-direction: column;
  text-decoration: none; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.fp-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 56px -20px rgba(33,24,21,.22);
  border-color: var(--ac-300);
}
.fp-img{
  aspect-ratio: 5 / 3;
  background: linear-gradient(135deg, var(--ac-50) 0%, var(--vm-100) 100%);
  position: relative;
  overflow: hidden;
}
.fp-img svg{ position:absolute; inset:0; width:100%; height:100%; display:block; }
.fp-body{
  padding: 22px 22px 24px;
  display: flex; flex-direction: column; flex: 1; gap: 10px;
}
.fp-num{
  font-family: var(--font-num);
  font-size: 11px; font-weight: 800;
  letter-spacing: .18em; color: var(--ac-600);
  text-transform: uppercase;
}
.fp-title{
  font-family: var(--font-display);
  font-size: 16.5px; font-weight: 800;
  color: var(--navy-900);
  line-height: 1.55; margin: 0;
}
.fp-desc{
  font-size: 12.5px; line-height: 1.9;
  color: var(--ink-600);
  margin: 4px 0 0; flex: 1;
}
.fp-btn{
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 18px;
  background: var(--ac-500); color: #fff !important;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  align-self: flex-start;
  margin-top: 8px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.fp-btn:hover{ background: var(--ac-600); transform: translateX(2px); }
.fp-btn .arrow{ transition: transform .2s var(--ease); }
.fp-card:hover .fp-btn .arrow{ transform: translateX(3px); }

.fp-note{
  margin-top: 40px; text-align: center;
  font-size: 12.5px; color: var(--ink-500);
  font-family: var(--font-body);
}
@media (max-width: 720px){
  .fp-card{ flex: 1 1 100%; max-width: none; }
}

/* === REVISION: 期間限定バッジ (Paper 6) === */
.fp-card{ position:relative; }
.fp-card--limited::before{
  content: "期間限定";
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--navy-900);
  color: #fff;
  font-family: var(--font-num);
  font-size: 10px; font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
  letter-spacing: 0.12em;
  box-shadow: 0 4px 12px rgba(33,24,21,.25);
}

/* === PDF Request 2分岐ページ === */
.pdf-options{
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 24px; margin-top: 36px;
}
@media (max-width: 720px){ .pdf-options{ grid-template-columns: 1fr; } }
.pdf-option{
  padding: 40px 36px;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1.5px solid var(--ink-200);
  display: flex; flex-direction: column;
}
.pdf-option--paused{ background: var(--ink-50); }
.pdf-option--priority{
  background: linear-gradient(135deg, var(--ac-50), #fff 70%);
  border-color: var(--ac-300);
  box-shadow: 0 20px 40px -20px rgba(196,61,31,.18);
}
.pdf-tag{
  font-family: var(--font-num);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-500); margin-bottom: 18px;
}
.pdf-option--priority .pdf-tag{ color: var(--ac-600); }
.pdf-option h2{
  font-family: var(--font-display);
  font-size: 22px; font-weight: 800;
  color: var(--navy-900); line-height: 1.45;
  margin: 0 0 18px;
}
.pdf-option p{
  font-size: 14px; line-height: 2;
  color: var(--ink-700);
  margin: 0;
}
.pdf-option p + p{ margin-top: 14px; }
.pdf-line-btn{
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  padding: 14px 24px;
  background: #06C755;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.05em;
  align-self: flex-start;
  transition: background .2s var(--ease), transform .2s var(--ease);
  text-decoration: none;
}
.pdf-line-btn:hover{ background: #05A847; transform: translateX(2px); }
.pdf-line-btn::before{
  content: ""; display:inline-block;
  width: 18px; height: 18px; border-radius: 4px;
  background: #fff;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 2C6.48 2 2 5.84 2 10.5c0 3.07 1.94 5.76 4.86 7.27-.21.78-.76 2.84-.87 3.28-.13.55.2.55.42.4.18-.12 2.84-1.93 3.99-2.71.49.07.99.11 1.6.11 5.52 0 10-3.84 10-8.5S17.52 2 12 2z'/></svg>") no-repeat center;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23000'><path d='M12 2C6.48 2 2 5.84 2 10.5c0 3.07 1.94 5.76 4.86 7.27-.21.78-.76 2.84-.87 3.28-.13.55.2.55.42.4.18-.12 2.84-1.93 3.99-2.71.49.07.99.11 1.6.11 5.52 0 10-3.84 10-8.5S17.52 2 12 2z'/></svg>") no-repeat center;
}
.pdf-back{
  margin-top: 56px; text-align: center;
  font-size: 13px;
}
.pdf-back a{
  color: var(--ac-600); text-decoration: underline; text-underline-offset: 3px;
}

/* === REVISION: SCROLL削除後の余白調整 === */
.hero, .hero-plain{ min-height: max(560px, 72vh); }
.hero-inner{ padding-block: 130px 80px; }

/* === PDF Request: 3チャネル & 念のためフォーム === */
.pdf-channels{
  display: flex; flex-direction: column; gap: 10px;
  margin-top: 26px;
}
.pdf-channel{
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border: 1.5px solid var(--ink-200);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy-900);
  transition: border-color .2s var(--ease), transform .2s var(--ease), box-shadow .2s var(--ease);
}
.pdf-channel:hover{
  transform: translateX(4px);
  border-color: var(--ac-400);
  box-shadow: 0 6px 18px rgba(33,24,21,.08);
}
.pdf-channel-icon{
  width: 38px; height: 38px;
  border-radius: 9px;
  background: var(--ac-50);
  display: grid; place-items: center;
  flex-shrink: 0;
  color: var(--ac-600);
}
.pdf-channel-icon svg{ width: 19px; height: 19px; }
.pdf-channel--line .pdf-channel-icon{ background: #E8F8EE; color: #06C755; }
.pdf-channel-body{ flex: 1; display: flex; flex-direction: column; gap: 2px; }
.pdf-channel-label{
  font-family: var(--font-display);
  font-weight: 800; font-size: 14px;
  color: var(--navy-900);
}
.pdf-channel-sub{
  font-family: var(--font-num);
  font-size: 10.5px; font-weight: 600;
  color: var(--ink-500);
  letter-spacing: 0.06em;
}
.pdf-channel-arrow{
  color: var(--ink-400);
  transition: transform .2s var(--ease), color .2s var(--ease);
  font-family: var(--font-num);
  font-size: 16px;
}
.pdf-channel:hover .pdf-channel-arrow{
  color: var(--ac-500);
  transform: translateX(3px);
}

/* 念のためフォーム */
.fallback-form-wrap{
  margin-top: 56px;
  background: var(--ink-50);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.fallback-form-head{
  text-align: center; margin-bottom: 26px;
}
.fallback-form-head .pause-badge{
  display: inline-block;
  font-family: var(--font-num);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px;
  background: var(--navy-900); color: #fff;
  margin-bottom: 14px;
}
.fallback-form-head h2{
  font-family: var(--font-display);
  font-size: 21px; font-weight: 800;
  color: var(--navy-900); margin: 0 0 12px; line-height: 1.5;
}
.fallback-form-head p{
  font-size: 13px; color: var(--ink-600); line-height: 1.95;
  margin: 0;
}
@media (max-width: 560px){ .fallback-form-wrap{ padding: 28px 22px; } }

/* === REVISION: 5-Step Process Flow (Sairu風 chevron) === */
.process-flow-wrap{
  background: #fff;
  padding-block: clamp(56px, 7vw, 88px);
}
.process-flow-head{
  text-align: center;
  max-width: 920px;
  margin: 0 auto 40px;
}
.process-flow-head h2{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.7;
  letter-spacing: 0.02em;
}
.process-flow-head h2 .accent{ color: var(--ac-500); }
.process-headers{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  max-width: 1180px; margin: 0 auto 10px; text-align: center;
  padding: 0 12px;
}
.process-header .en{
  font-family: var(--font-num); font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; color: var(--ac-600);
  display: block; margin-bottom: 4px;
}
.process-header .jp{
  font-family: var(--font-display); font-size: 13.5px; font-weight: 800;
  color: var(--navy-900);
}
.process-header .sub{
  font-size: 11px; font-weight: 500;
  color: var(--ink-500); display: block; margin-top: 2px;
}

.process-flow{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  max-width: 1180px; margin: 0 auto;
}
.process-step{
  position: relative;
  padding: 28px 18px 28px 32px;
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%, 18px 50%);
  margin-left: -18px;
  text-align: left;
}
.process-step:first-child{
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 50%, calc(100% - 18px) 100%, 0 100%);
  margin-left: 0;
  padding-left: 24px;
}
.process-step:last-child{
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 18px 50%);
}
.process-step .step-tag{
  font-family: var(--font-num); font-size: 10px;
  font-weight: 800; letter-spacing: 0.18em;
  opacity: 0.7; margin-bottom: 6px;
}
.process-step .step-name{
  font-family: var(--font-display);
  font-size: 14px; font-weight: 800; line-height: 1.45;
}
.process-step:nth-child(1){ background: var(--ac-400); }
.process-step:nth-child(2){ background: var(--ac-500); }
.process-step:nth-child(3){ background: var(--ac-600); }
.process-step:nth-child(4){ background: var(--ink-500); }
.process-step:nth-child(5){ background: var(--navy-900); }

.process-descs{
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  max-width: 1180px; margin: 18px auto 0; padding: 0 12px;
}
.process-desc{
  padding: 0 14px;
  font-size: 12px; line-height: 1.85;
  color: var(--ink-600);
}

@media (max-width: 860px){
  .process-headers, .process-descs{ display: none; }
  .process-flow{ grid-template-columns: 1fr; gap: 10px; max-width: 100%; }
  .process-step{
    clip-path: none !important;
    margin-left: 0 !important;
    padding: 18px 22px !important;
    border-radius: 12px;
  }
  .process-step .step-tag{ display: inline-block; margin-right: 12px; opacity: 0.85; }
  .process-step .step-name{ display: inline; font-size: 15px; }
  .process-step .step-name br{ display: none; }
}

/* === Hero コンパクト化 === */
.hero, .hero-plain{ min-height: max(440px, 58vh); }
.hero-inner{ padding-block: 100px 56px; }
.hero-stats{ margin-top: clamp(36px, 5vh, 60px); padding-top: 28px; }
@media (max-width: 720px){
  .hero, .hero-plain{ min-height: max(380px, 56vh); }
  .hero-inner{ padding-block: 96px 40px; }
}

/* === ブログカード 横並び維持＋モバイル横配置 === */
.blog-cards-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 8px;
}
@media (max-width: 780px){
  .blog-cards-grid{ grid-template-columns: 1fr; gap: 12px; }
  .blog-cards-grid .link-card{
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
    padding: 20px 22px;
    align-items: start;
  }
  .blog-cards-grid .link-card .kicker{ grid-column: 1; }
  .blog-cards-grid .link-card h3{ grid-column: 1; font-size: 16px; line-height: 1.5; }
  .blog-cards-grid .link-card p{ grid-column: 1 / -1; font-size: 13px; }
  .blog-cards-grid .link-card .more{ grid-column: 1 / -1; }
  .blog-cards-grid .link-card h3 br{ display: none; }
}

/* === Free Papers モバイル余白 === */
@media (max-width: 720px){
  #free-papers{ padding-block: 56px; }
  .fp-head{ margin-bottom: 36px; }
  .fp-head .section-lede{ font-size: 13px; line-height: 1.85; }
}


/* === REVISION: CAPURE Brand Wordmark === */
.brand-wordmark{
  font-family: var(--font-num);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: var(--navy-900);
  line-height: 1;
  display: inline-block;
  white-space: nowrap;
}
.brand-wordmark .co{
  color: var(--ac-500);
  font-size: 0.6em;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 3px;
}
.brand-wordmark--lg{ font-size: 28px; }
.nav-logo{ text-decoration: none; }


/* === REVISION: CAPURE Logo SVG + 空間調整 === */
.capure-logo-img{
  display: block;
  width: auto;
  height: 60px;             /* スクロール後（通常）の高さ */
  flex-shrink: 0;
  transition: height .28s var(--ease);
}
.capure-logo-img--lg{ height: 78px; }
/* 最上部（ヒーロー上の透過ヘッダー）ではロゴを特大に（Zoff風） */
.nav.transparent .capure-logo-img{ height: 92px; }
@media (max-width: 720px){
  .capure-logo-img{ height: 46px; }
  .nav.transparent .capure-logo-img{ height: 60px; }
}

/* Hero eyebrow が固定ヘッダー（nav 72px + notice-bar 約38px = 約110px）に
   隠れないよう、hero-inner の上余白を確保 */
.hero-plain .hero-inner,
.hero .hero-inner{ padding-top: clamp(140px, 16vw, 170px); }
@media (max-width: 720px){
  .hero-plain .hero-inner,
  .hero .hero-inner{ padding-top: 130px; }
}
.nav-logo{ display: inline-flex; align-items: center; text-decoration: none; }

/* nav-inner の余白確保（ロゴが横長なのでnav-linksとの余裕を持たせる） */
.nav-inner{ gap: 16px; }
.nav-links{ flex-wrap: nowrap; }
@media (max-width: 1080px){
  .nav-links .nav-link:not(.nav-cta){ font-size: 12px; padding: 6px 10px; }
}

/* footer ロゴと住所文字の縦間隔 */
.footer-logo{ margin-bottom: 14px; }

/* Hero と Process Flow の間の余白を引き締め */
.hero + .process-flow-wrap{ margin-top: 0; }
.process-flow-wrap{ padding-block: clamp(48px, 6vw, 76px); }

/* Process Flow → Free Papers の間 */
.process-flow-wrap + #free-papers{ padding-top: clamp(48px, 6vw, 72px); }

/* Free Papers ヘッド の上下余白を整える */
#free-papers .fp-head{ margin-bottom: clamp(28px, 4vw, 44px); }
#free-papers .section-label{ margin-bottom: 4px; }

/* Pricing 項目間の余白を見直し */
.req-table{ margin-top: 40px; }
.req-row{ padding: 22px 0; }

/* Hero stats の下余白（コンパクト維持） */
.hero-stats{ margin-top: clamp(28px, 4vh, 48px); padding-top: 24px; }

/* 共通 section の上下余白の最小化 */
.section{ padding-block: clamp(64px, 8vw, 110px); }

/* 各カード/コンテナの内部余白の見直し */
.pillar{ padding: 32px 26px; }
.fp-card{ /* keep current */ }

/* notice-bar が長文時のオーバーフロー対策 */
.notice-bar .label{ overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.notice-bar-inner{ min-width: 0; }

/* 商号読み の文字つぶれ対策 (CAPURE & Company（カプレ）) */
.footer-intro{ word-break: keep-all; line-break: strict; }

/* レスポンシブで notice-bar ラベル省略 */
@media (max-width: 720px){
  .notice-bar .label{ font-size: 10.5px; }
  .capure-logo-img{ height: 26px; }
  .capure-logo-img--lg{ height: 32px; }
  .nav-inner{ height: 60px; gap: 8px; }
  .site-header .notice-bar-inner{ padding: 7px var(--gutter); }
}

/* hero-sub の strong (決裁者の決裁者) と本文間隔 */
.hero-sub strong{ display: inline; }

/* process-step タイトル内 <br> がモバイルで非表示 → そのままインライン */
@media (max-width: 860px){
  .process-step .step-name br{ display: none; }
}

/* ===========================================================
   REVISION 2: コンパクトHero + 直下CV動線 + 数字バー
   =========================================================== */

/* Hero 2行版：背景の羊がしっかり広がる高さを確保 */
.hero-compact{ min-height: max(640px, 84vh) !important; display: flex; align-items: center; }
.hero-compact .hero-inner{
  padding-top: clamp(150px, 16vw, 180px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
@media (max-width: 720px){
  .hero-compact{ min-height: max(560px, 82vh) !important; }
}
.hero-title--two{
  font-size: clamp(34px, 6.2vw, 76px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.hero-title--two .line{ display: block; }
.hero-title--two .accent{
  color: var(--ac-500) !important;
  -webkit-text-fill-color: var(--ac-500) !important;
  background: none !important;
}
@media (max-width: 720px){
  .hero-title--two{ font-size: clamp(26px, 8.5vw, 38px); line-height: 1.25; }
  .hero-compact .hero-inner{ padding-top: 128px; padding-bottom: 36px; }
}

/* ===== 事業ライン（何をしているかを示すだけ・非クリック） ===== */
.hero-biz{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 28px;
  max-width: 760px;
}
.hero-biz-item{
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 7px 2px;
  background: transparent;
  border: none;
}
.hero-biz-dot{
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero-biz-item--red .hero-biz-dot{ background: #14213a; }
.hero-biz-item--white .hero-biz-dot{ background: #fff; border: 1.5px solid #14213a; box-sizing: border-box; }
.hero-biz-item--green .hero-biz-dot{ background: #3f8a44; }
.hero-biz-item--orange .hero-biz-dot{ background: var(--warm-600, #14213a); }
.hero-biz-label{
  margin: clamp(22px,3vw,34px) 0 4px;
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-500, #6b6360);
}
.hero-biz-body{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.hero-biz-num{
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink-500, #6b6360);
  text-transform: uppercase;
}
.hero-biz-name{
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.01em;
  line-height: 1.4;
}
@media (max-width: 860px){
  .hero-biz{
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }
  .hero-biz-item{ padding: 12px 16px; }
  .hero-biz-name{ font-size: 13.5px; }
}

/* ===== CV 動線（3カード） ===== */
.cv-strip{
  background: linear-gradient(180deg, #fff 0%, var(--ac-50) 100%);
  padding-block: clamp(28px, 4vw, 56px);
  border-top: 1px solid var(--ac-100, #d6eef4);
}
.cv-strip-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cv-card{
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 22px 22px 20px;
  background: #fff;
  border: 1px solid var(--ink-200, #e6e2df);
  border-radius: 14px;
  text-decoration: none;
  color: var(--navy-900);
  transition: transform .25s var(--ease, ease), box-shadow .25s var(--ease, ease), border-color .25s var(--ease, ease);
  overflow: hidden;
}
.cv-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 32px -16px rgba(226,73,43,0.32);
  border-color: var(--ac-300, #6fcbdc);
}
.cv-card-num{
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: 14px;
  font-weight: 700;
  color: var(--ac-500);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  padding-top: 2px;
}
.cv-card-body{ flex: 1; min-width: 0; }
.cv-card-tag{
  display: inline-block;
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ac-600, #006072);
  background: var(--ac-50);
  padding: 3px 9px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.cv-card h3{
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 6px;
  color: var(--navy-900);
}
.cv-card p{
  font-size: 13px;
  line-height: 1.65;
  color: var(--ink-600, #555);
  margin: 0;
}
.cv-card-arrow{
  font-family: var(--font-num, 'Inter', sans-serif);
  color: var(--ac-500);
  font-size: 18px;
  font-weight: 600;
  flex-shrink: 0;
  align-self: center;
  transition: transform .25s var(--ease, ease);
}
.cv-card:hover .cv-card-arrow{ transform: translateX(4px); }
.cv-card--primary{
  background: var(--ac-500);
  border-color: var(--ac-500);
  color: #fff;
}
.cv-card--primary h3{ color: #fff; }
.cv-card--primary p{ color: rgba(255,255,255,0.85); }
.cv-card--primary .cv-card-num{ color: #fff; opacity: 0.7; }
.cv-card--primary .cv-card-tag{ background: rgba(255,255,255,0.18); color: #fff; }
.cv-card--primary .cv-card-arrow{ color: #fff; }
.cv-card--primary:hover{ background: var(--ac-600, #006072); border-color: var(--ac-600, #006072); }

@media (max-width: 860px){
  .cv-strip-grid{ grid-template-columns: 1fr; gap: 12px; }
  .cv-card{ padding: 18px 18px 18px 16px; }
  .cv-card h3{ font-size: 16px; }
  .cv-card p{ font-size: 12.5px; }
}

/* ===== 数字バー（旧 hero-stats、小型化してCVストリップ内に） ===== */
.stats-bar{
  margin-top: clamp(24px, 3vw, 40px);
  padding-top: clamp(18px, 2.5vw, 24px);
  border-top: 1px solid var(--ink-200, #e6e2df);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stats-bar-item{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 0 8px;
  position: relative;
}
.stats-bar-item + .stats-bar-item::before{
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 1px;
  background: var(--ink-200, #e6e2df);
}
.stats-bar-item .val{
  font-family: var(--font-num, 'Inter', sans-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-bar-item .val .unit{
  font-size: 0.65em;
  color: var(--ac-500);
  margin-left: 1px;
}
.stats-bar-item .lbl{
  font-size: 11px;
  color: var(--ink-500, #6b6360);
  letter-spacing: 0.04em;
  margin-top: 2px;
}
@media (max-width: 720px){
  .stats-bar{ grid-template-columns: repeat(2, 1fr); gap: 14px 8px; }
  .stats-bar-item .val{ font-size: 19px; }
  .stats-bar-item .lbl{ font-size: 10.5px; }
}

/* ===== Works & Voices（ヒーロー直下） ===== */
.works-voices{
  background: #fff;
  padding-block: clamp(48px, 6vw, 96px);
  border-top: 1px solid var(--ink-100, #f0ece9);
}
.wv-head{ margin-bottom: clamp(28px, 4vw, 48px); }
.wv-head .section-title{ margin: 8px 0 12px; }
.wv-head .section-lede{ max-width: 720px; }

/* カテゴリグリッド（sairu の主な支援企業を参考に、業態カテゴリで表示） */
.wv-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 0;
}
.wv-cell{
  background: #fff;
  border: 1px solid var(--ink-200, #e6e2df);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  transition: border-color .25s ease, background .25s ease;
}
.wv-cell:hover{
  border-color: var(--ac-300, #6fcbdc);
  background: var(--ac-50);
}
@media (max-width: 860px){
  .wv-grid{ grid-template-columns: repeat(2, 1fr); }
  .wv-cell{ padding: 18px 12px; font-size: 12.5px; }
}
.wv-grid-note{
  text-align: center;
  font-size: 13px;
  color: var(--ink-500);
  margin: 18px 0 clamp(40px, 5vw, 64px);
}

/* ===== Marquee（取引先 自動横スクロール） ===== */
.wv-marquee{
  position: relative;
  overflow: hidden;
  width: 100%;
  margin-top: clamp(8px, 1.5vw, 16px);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.wv-marquee-track{
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  animation: wvMarquee 48s linear infinite;
}
/* ホバー時も止めずに流し続ける */
.wv-mname{
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: 0.02em;
  padding: 16px 28px;
  position: relative;
  white-space: nowrap;
}
.wv-mname + .wv-mname::before{
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ac-500);
  transform: translate(-2px, -50%);
}
@keyframes wvMarquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}
@media (max-width: 720px){
  .wv-mname{ font-size: 14px; padding: 12px 20px; }
  .wv-marquee-track{ animation-duration: 36s; }
}
@media (prefers-reduced-motion: reduce){
  .wv-marquee-track{ animation: none; }
  .wv-marquee{ overflow-x: auto; }
}

/* Voices */
.wv-voices{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.wv-voice{
  background: var(--ac-50);
  border-radius: 14px;
  padding: 22px 22px 20px;
  border-left: 3px solid var(--ac-500);
}
.wv-voice-who{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.wv-voice-avatar{
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--ink-200, #e6e2df);
  overflow: hidden;
  flex-shrink: 0;
}
.wv-voice-avatar svg{ width: 100%; height: 100%; display: block; }
.wv-voice-meta{ display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.wv-voice-tag{
  font-size: 13px;
  font-weight: 800;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.wv-voice-role{
  font-size: 11.5px;
  font-weight: 600;
  color: var(--ink-500, #6b6360);
  letter-spacing: 0.02em;
}
.wv-voice-text{
  font-size: 14px;
  line-height: 1.75;
  color: var(--ink-700, #3d3530);
  margin: 0;
}
@media (max-width: 860px){
  .wv-voices{ grid-template-columns: 1fr; gap: 12px; }
  .wv-voice{ padding: 18px 18px 16px; }
  .wv-voice-text{ font-size: 13.5px; }
}

/* CVストリップは撤去済み。Process Flow → Free Papers 間の余白を圧縮 */
.process-flow-wrap{ padding-bottom: clamp(32px, 4vw, 48px) !important; }
.process-flow-wrap + #free-papers{ padding-top: clamp(32px, 4vw, 56px) !important; }
.process-descs{ margin-bottom: 0 !important; }

/* stats-bar はもうフリーペーパー下に移設しているので、余白だけ調整 */
#free-papers .stats-bar{ margin-top: clamp(40px, 5vw, 64px); }

/* ===========================================================================
   ███  PRO RESPONSIVE POLISH  ███
   全画面サイズで「文字バランス」「縦リズム」「タップ余白」をプロ仕様に統一。
   ブレークポイント:
     - ≤480px  : 小型スマホ
     - ≤640px  : 大型スマホ
     - ≤860px  : タブレット縦
     - ≤1080px : タブレット横 / 小ノート
   原則: フォントは clamp() で流体化、セクション縦余白は clamp() で一定リズム
   =========================================================================== */

/* --- Global rhythm: section padding を統一 --- */
.section,
.works-voices,
.process-flow-wrap,
#free-papers,
#cores,
#method,
#ip2030,
#pricing,
#news,
.cta,
.message{
  padding-block: clamp(48px, 7vw, 110px);
}

/* --- Container gutter を画面サイズに応じて段階化 --- */
:root{
  --gutter: clamp(20px, 4vw, 48px);
}
.container{ padding-inline: var(--gutter); }

/* ===== HERO ===== */
.hero-compact .hero-inner{
  padding-top: clamp(120px, 17vw, 180px);
  padding-bottom: clamp(36px, 6vw, 64px);
}
.hero-title--two{
  font-size: clamp(28px, 6.4vw, 76px);
  line-height: 1.22;
  letter-spacing: -0.01em;
  font-weight: 800;
}
.hero-title--two .line{ display: block; }
.hero-eyebrow{
  font-size: clamp(10px, 1.3vw, 13px);
  padding: clamp(6px, 1vw, 9px) clamp(12px, 2vw, 18px);
}

/* 事業ライン 3本 */
.hero-biz{
  margin-top: clamp(24px, 3.5vw, 44px);
  gap: clamp(8px, 1vw, 14px);
}
.hero-biz-name{ font-size: clamp(13px, 1.4vw, 15px); line-height: 1.4; }
.hero-biz-num{ font-size: clamp(10px, 1vw, 11px); }
@media (max-width: 720px){
  .hero-biz{ grid-template-columns: 1fr; max-width: 100%; }
}

/* ===== Process Flow ===== */
.process-flow-head h2{
  font-size: clamp(18px, 2.8vw, 30px);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.process-headers{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 1vw, 16px);
  margin-top: clamp(28px, 4vw, 56px);
}
.process-header .en{
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.16em;
}
.process-header .jp{ font-size: clamp(13px, 1.5vw, 16px); }
.process-header .sub{ font-size: clamp(10px, 1.1vw, 12px); }

.process-flow{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.process-step .step-tag{ font-size: clamp(9px, 1vw, 11px); letter-spacing: 0.16em; }
.process-step .step-name{
  font-size: clamp(11.5px, 1.4vw, 15px);
  line-height: 1.45;
  font-weight: 700;
}

.process-descs{
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(8px, 1vw, 20px);
  margin-top: clamp(16px, 2.5vw, 28px);
}
.process-desc{
  font-size: clamp(11.5px, 1.2vw, 13.5px);
  line-height: 1.7;
  color: var(--ink-600, #555);
}

/* タブレット縦: 5→3カラム→2カラム→縦並びへ段階移行 */
@media (max-width: 1080px){
  .process-headers,
  .process-descs{ grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 860px){
  /* ヘッダー、ステップ、説明をすべて1行ペアの縦カードに変換 */
  .process-headers,
  .process-descs{ display: none; }
  .process-flow{
    grid-template-columns: 1fr;
    gap: 10px;
    background: transparent;
  }
  .process-step{
    clip-path: none !important;
    background: #fff !important;
    color: var(--navy-900) !important;
    border: 1px solid var(--ink-200, #e6e2df);
    border-left: 3px solid var(--ac-500);
    border-radius: 10px;
    padding: 16px 18px !important;
    margin: 0 !important;
    width: 100% !important;
    height: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 14px;
  }
  .process-step .step-tag{
    color: var(--ac-500) !important;
    font-size: 11px !important;
    flex-shrink: 0;
    min-width: 56px;
  }
  .process-step .step-name{
    color: var(--navy-900) !important;
    font-size: 13.5px !important;
    line-height: 1.45;
  }
  .process-step .step-name br{ display: none; }
}

/* ===== Free Papers ===== */
.fp-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
}
.fp-card{ padding: 0; }
.fp-body{ padding: clamp(14px, 1.6vw, 18px); }
.fp-title{ font-size: clamp(14px, 1.5vw, 16.5px); line-height: 1.5; }
.fp-desc{ font-size: clamp(12px, 1.2vw, 13.5px); line-height: 1.65; }
.fp-btn{ font-size: clamp(11.5px, 1.2vw, 13px); }

@media (max-width: 1080px){ .fp-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .fp-grid{ grid-template-columns: 1fr; gap: 14px; } }

#free-papers .section-lede{
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.85;
}

/* ===== Works & Voices ===== */
.wv-head .section-title{
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.4;
}
.wv-head .section-lede{
  font-size: clamp(13px, 1.4vw, 15.5px);
  line-height: 1.85;
}
.wv-marquee{ margin-top: clamp(12px, 2vw, 24px); }
.wv-mname{
  font-size: clamp(13px, 1.4vw, 16px);
  padding: clamp(12px, 1.6vw, 18px) clamp(18px, 2.4vw, 32px);
}
@media (max-width: 720px){
  .wv-marquee-track{ animation-duration: 32s; }
}

.wv-voices{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: clamp(24px, 3vw, 36px);
}
.wv-voice{ padding: clamp(18px, 2vw, 24px); }
.wv-voice-text{
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.85;
}
.wv-voice-tag{ font-size: clamp(12px, 1.2vw, 13px); }
.wv-voice-role{ font-size: clamp(10.5px, 1.1vw, 12px); }
.wv-voice-avatar{ width: clamp(34px, 4vw, 42px); height: clamp(34px, 4vw, 42px); }
@media (max-width: 860px){ .wv-voices{ grid-template-columns: 1fr; } }

/* ===== 5 Cores ===== */
.cores-grid{
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(10px, 1.4vw, 16px);
}
.pillar{
  padding: clamp(20px, 2.4vw, 32px) clamp(16px, 2vw, 26px);
}
.pillar h3{ font-size: clamp(14px, 1.6vw, 18px); }
.pillar p{ font-size: clamp(12px, 1.2vw, 13.5px); line-height: 1.75; }
@media (max-width: 1080px){ .cores-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .cores-grid{ grid-template-columns: 1fr; gap: 12px; } }

/* ===== Method / People ===== */
.section-title{
  font-size: clamp(24px, 3.4vw, 40px);
  line-height: 1.35;
}
.section-lede{
  font-size: clamp(13px, 1.4vw, 16px);
  line-height: 1.85;
}
.section-label{
  font-size: clamp(10px, 1.1vw, 12px);
  letter-spacing: 0.22em;
}

/* ===== Pricing ===== */
.benefits-title{ font-size: clamp(15px, 1.7vw, 19px); line-height: 1.5; }
.req-row{
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(12px, 2vw, 32px);
  padding: clamp(18px, 2vw, 26px) 0;
}
.req-key{ font-size: clamp(13px, 1.4vw, 15.5px); }
.req-val{ font-size: clamp(12.5px, 1.3vw, 14.5px); line-height: 1.7; }
@media (max-width: 720px){
  .req-row{ grid-template-columns: 1fr; gap: 6px; }
  .req-key{ font-size: 13px; }
  .req-val{ font-size: 13px; }
  .req-val strong{ font-size: 17px !important; }
}

/* ===== Blog cards ===== */
.blog-cards-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.link-card{ padding: clamp(22px, 2.4vw, 32px); }
.link-card h3{ font-size: clamp(16px, 1.8vw, 20px); line-height: 1.55; }
.link-card p{ font-size: clamp(12.5px, 1.3vw, 14px); line-height: 1.8; }
@media (max-width: 860px){ .blog-cards-grid{ grid-template-columns: 1fr; } }

/* ===== News (FAQ) ===== */
.news-row{
  display: grid;
  grid-template-columns: 120px 100px 1fr;
  gap: clamp(8px, 1.4vw, 20px);
  padding: clamp(14px, 1.6vw, 20px) 0;
  font-size: clamp(12.5px, 1.3vw, 14px);
}
@media (max-width: 720px){
  .news-row{ grid-template-columns: 1fr; gap: 4px; padding: 14px 0; font-size: 13px; }
}

/* ===== CTA ===== */
.cta-title{
  font-size: clamp(22px, 3.2vw, 38px);
  line-height: 1.45;
}
.cta-lede{ font-size: clamp(13px, 1.3vw, 15px); line-height: 1.8; }

/* ===== Footer ===== */
.footer{ padding-block: clamp(40px, 5vw, 72px) clamp(24px, 3vw, 40px); }
.footer-intro{ font-size: clamp(12px, 1.2vw, 13px); line-height: 1.9; }
.footer-col h5{ font-size: clamp(11px, 1.1vw, 12px); }
.footer-col li, .footer-col a{ font-size: clamp(12px, 1.2vw, 13.5px); }
.footer-bottom{ font-size: clamp(11px, 1vw, 12px); }
@media (max-width: 720px){
  .footer-cols{ grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-bottom{ flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* ===== Stats Bar ===== */
.stats-bar{
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(8px, 1.4vw, 18px);
  margin-top: clamp(28px, 4vw, 56px);
  padding-top: clamp(18px, 2.5vw, 28px);
}
.stats-bar-item .val{ font-size: clamp(18px, 2.4vw, 28px); }
.stats-bar-item .lbl{ font-size: clamp(10px, 1.05vw, 11.5px); line-height: 1.4; }
@media (max-width: 640px){
  .stats-bar{ grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
}

/* ===== Notice Bar（モバイル省略・小型化） ===== */
.notice-bar-inner{ padding: clamp(7px, 1vw, 10px) var(--gutter); gap: clamp(8px, 1.2vw, 14px); }
.notice-bar .tag{ font-size: clamp(9px, 1vw, 10.5px); padding: 3px 8px; }
.notice-bar .label{
  font-size: clamp(11px, 1.2vw, 12.5px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

/* ===== Navigation ===== */
.nav-inner{ height: clamp(64px, 6vw, 80px); transition: height .28s var(--ease); }
/* 最上部（透過）はヘッダーを高く＝ロゴ特大を収める */
.nav.transparent .nav-inner{ height: clamp(76px, 8vw, 112px); }
@media (max-width: 720px){
  .nav.transparent .nav-inner{ height: 72px; }
}
.nav-link{ font-size: clamp(12.5px, 1.2vw, 14px); }
.nav-cta{ font-size: clamp(13px, 1.2vw, 14px); padding: clamp(10px, 1.2vw, 14px) clamp(18px, 2vw, 26px); }

/* ハンバーガーパネル内のリンクをタップしやすく */
.nav-panel a{
  padding: clamp(14px, 2vw, 18px) clamp(18px, 3vw, 24px);
  font-size: clamp(14px, 1.6vw, 16px);
}

/* ===== Sub-page hero (subhero) ===== */
.subhero{ padding-block: clamp(120px, 16vw, 180px) clamp(40px, 5vw, 64px); }
.subhero-title{
  font-size: clamp(28px, 4.5vw, 56px);
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.subhero-lede{ font-size: clamp(13.5px, 1.5vw, 16.5px); line-height: 1.9; max-width: 720px; }

/* ===== Prose（記事本文） ===== */
.prose p{ font-size: clamp(14px, 1.4vw, 16px); line-height: 2.0; }
.prose h2{ font-size: clamp(18px, 2.2vw, 24px); line-height: 1.5; margin-top: clamp(36px, 4vw, 56px); }
.prose .lead{ font-size: clamp(15px, 1.6vw, 18px); line-height: 1.95; }

/* ===== 小型スマホ（≤480px）最終調整 ===== */
@media (max-width: 480px){
  .container{ padding-inline: 16px; }
  .hero-title--two{ font-size: 26px; line-height: 1.32; }
  .hero-eyebrow{ font-size: 10.5px; }
  .section-title{ font-size: 22px; }
  .wv-head .section-title{ font-size: 21px; }
  .process-flow-head h2{ font-size: 16px; line-height: 1.7; }
  .subhero-title{ font-size: 26px; line-height: 1.35; }
  .cta-title{ font-size: 22px; }
  .req-row{ padding: 14px 0; }
}

/* ===== タブレット縦（≤860px）の縦リズム引き締め ===== */
@media (max-width: 860px){
  .section,
  .works-voices,
  .process-flow-wrap,
  #free-papers,
  #cores,
  #method,
  #ip2030,
  #pricing{
    padding-block: clamp(44px, 7vw, 72px);
  }
}

/* ===== Reveal アニメーションのモバイルでの過剰反応を抑制 ===== */
@media (max-width: 720px){
  .reveal{ transition-duration: .45s; }
}

/* ===== 連続する空セクション余白の重複対策 ===== */
.process-flow-wrap + #free-papers{ padding-top: clamp(40px, 5vw, 80px) !important; }
#free-papers + .works-voices{ padding-top: clamp(40px, 5vw, 80px); }
.works-voices + .section{ padding-top: clamp(40px, 5vw, 80px); }

/* ===========================================================================
   ███  REVISION 3: Process Flow（モバイル）改行制御 ＆ ステップ間矢印
   =========================================================================== */

/* 見出しの自然改行: 各フレーズを inline-block で「壊れない単位」に */
.phrase-h2{
  word-break: keep-all;
  line-break: strict;
}
.phrase-h2 .phr{
  display: inline-block;     /* phrase boundary を維持 */
  word-break: keep-all;
}
.phrase-h2 .nobr{
  white-space: nowrap;       /* 「決裁者の決裁者」「スピード」等を絶対に折らない */
}
.hide-sp{ display: inline; }
@media (max-width: 860px){
  .hide-sp{ display: none; } /* 中央 <br> を消して自然フローに */
  .phrase-h2{
    font-size: clamp(15px, 4.4vw, 19px) !important;
    line-height: 1.85;
    letter-spacing: 0.005em;
    text-align: left;
  }
}
@media (max-width: 480px){
  .phrase-h2{ font-size: 15px !important; line-height: 1.9; }
}

/* ===== ステップ間：ダウン矢印（モバイル縦カード時のみ） ===== */
@media (max-width: 860px){
  .process-flow{
    gap: 28px !important;  /* 矢印分の余裕 */
  }
  .process-step{
    position: relative;
  }
  .process-step:not(:last-child)::after{
    content: "";
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 11px solid var(--ac-500);
    z-index: 2;
  }
  /* 矢印の上に薄い縦ガイド線（オプション） */
  .process-step:not(:last-child)::before{
    content: "";
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px; height: 12px;
    background: var(--ac-300, #6fcbdc);
    z-index: 1;
  }
}

/* === ロゴ横の読み仮名（トップページのみ） === */
.nav-logo-furigana{
  display: inline-block;
  margin-left: 14px;
  padding-left: 14px;
  border-left: 1px solid var(--ac-200, #aaddea);
  font-family: 'Zen Kaku Gothic New','Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ac-500, #14213a);
  white-space: nowrap;
  line-height: 1.2;
  align-self: center;
}
.nav.transparent .nav-logo-furigana{
  color: var(--ac-500, #14213a);
}
/* ナビが詰まる狭い幅ではふりがなを隠してリンクの折返しを防ぐ */
@media (max-width: 1080px){
  .nav-logo-furigana{ display: none; }
}

/* === ロゴをPCでもう少し左寄せ === */
@media (min-width: 961px){
  .nav-inner{
    padding-left: clamp(16px, 1.6vw, 24px);
  }
}

/* === ヘッダー（ナビ＋notice-bar）の濃いめ調整 ===
   ロゴSVGは fill="#006072" に書き換え済み。
   ふりがな・notice-bar など連動要素もここで深トーンへ揃える */
.nav-logo-furigana{
  color: #14213a !important;
  border-left-color: rgba(31,156,224,0.35) !important;
}
.nav:not(.transparent) .nav-link:hover{ color: #006072; }
/* notice-bar の News タグは暗いネイビー帯背景に対してコントラストが必要 */
.notice-bar .tag{
  background: var(--ac-500, #14213a);
  color: #fff;
  font-weight: 800;
}

/* =========================================================================
   ███  KUNUGI-INFLUENCED CV POLISH（暖色CTA・温度感・トラスト）
   ========================================================================= */

/* 暖色アクセント変数（CTA限定の温度感） */
:root{
  --warm-500: #14213a;   /* オレンジ（CTAメイン） */
  --warm-600: #0b1020;   /* ホバー */
  --warm-50:  #f4f5f7;   /* 背景ティント */
}

/* ===== ヒーロー sub-warm（温度のある1行） ===== */
.hero-sub-warm{
  margin-top: clamp(20px, 2.5vw, 32px);
  max-width: 720px;
  font-size: clamp(13px, 1.45vw, 16px);
  line-height: 1.95;
  color: var(--ink-700, #3d3530);
  font-weight: 500;
}
.hero-sub-warm strong{ font-weight: 700; color: var(--navy-900); }
.hero-sub-warm strong.accent{
  color: var(--ac-500);
  display: inline-block;
}

/* ===== ヒーロー直下 2-CTA 並列 ===== */
.hero-cta-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: clamp(24px, 3vw, 36px);
  max-width: 720px;
}
.hero-cta{
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 6px 14px;
  padding: clamp(16px, 1.8vw, 22px) clamp(18px, 2vw, 26px);
  border-radius: 12px;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1.5px solid transparent;
}
.hero-cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 28px -14px rgba(238,106,58,0.4);
}
.hero-cta-label{
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 800;
  letter-spacing: 0.02em;
  grid-column: 1;
}
.hero-cta-sub{
  font-size: clamp(11px, 1.15vw, 12.5px);
  grid-column: 1;
  opacity: 0.85;
  font-weight: 500;
}
.hero-cta-arrow{
  grid-column: 2;
  grid-row: 1 / span 2;
  font-size: 20px;
  font-weight: 700;
  align-self: center;
  transition: transform .2s ease;
}
.hero-cta:hover .hero-cta-arrow{ transform: translateX(4px); }

.hero-cta--primary{
  background: var(--warm-500);
  color: #fff;
  border-color: var(--warm-500);
}
.hero-cta--primary:hover{
  background: var(--warm-600);
  border-color: var(--warm-600);
}
.hero-cta--secondary{
  background: #fff;
  color: var(--navy-900);
  border-color: var(--ink-200, #e6e2df);
}
.hero-cta--secondary .hero-cta-arrow{ color: var(--warm-500); }
.hero-cta--secondary:hover{
  border-color: var(--warm-500);
  background: var(--warm-50);
}

@media (max-width: 720px){
  .hero-cta-row{ grid-template-columns: 1fr; gap: 10px; }
}

/* ===== ミッドCTA バンド（プロセス → フリーペーパー間に挟む用） ===== */
.mid-cta{
  background: linear-gradient(135deg, var(--warm-50) 0%, #fff 100%);
  border-top: 1px solid var(--ink-200, #e6e2df);
  border-bottom: 1px solid var(--ink-200, #e6e2df);
  padding-block: clamp(36px, 4vw, 56px);
}
.mid-cta-inner{
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mid-cta-text{ flex: 1; min-width: 240px; }
.mid-cta-text h3{
  font-size: clamp(16px, 1.8vw, 21px);
  font-weight: 800;
  color: var(--navy-900);
  margin: 0 0 6px;
  line-height: 1.5;
}
.mid-cta-text p{
  font-size: clamp(12.5px, 1.25vw, 14px);
  color: var(--ink-600, #555);
  margin: 0;
  line-height: 1.7;
}
.mid-cta .hero-cta{ max-width: 320px; }
@media (max-width: 640px){
  .mid-cta-inner{ flex-direction: column; align-items: stretch; gap: 18px; }
  .mid-cta .hero-cta{ max-width: none; }
}

/* ===== トラストバッジ（フッター直上） ===== */
.trust-bar{
  background: #fff;
  padding-block: clamp(28px, 3.5vw, 48px);
  border-top: 1px solid var(--ink-100, #f0ece9);
}
.trust-bar-inner{
  max-width: var(--max-w, 1200px);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-chip{
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border: 1px solid var(--ink-200, #e6e2df);
  border-radius: 10px;
  background: #fff;
}
.trust-chip-ico{
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ac-50);
  color: var(--ac-500);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800;
  font-family: 'Inter', sans-serif;
}
.trust-chip-body{ display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.trust-chip-title{
  font-size: clamp(11.5px, 1.2vw, 13px);
  font-weight: 800;
  color: var(--navy-900);
  line-height: 1.4;
}
.trust-chip-sub{
  font-size: 10.5px;
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
@media (max-width: 860px){
  .trust-bar-inner{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px){
  .trust-bar-inner{ grid-template-columns: 1fr; }
}

/* ===== Free Papers ヘッダーに「無料」強調 ===== */
.fp-free-badge{
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  background: var(--warm-500);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.fp-free-badge .num{
  font-family: 'Inter', sans-serif;
  font-size: 14px;
}

/* ===== notice-bar Expiry：2026年8月以降は非表示 ===== */
/* JSで data-after-date を判定して非表示に。CSSは fallback */
.notice-bar[data-expires]{ /* JS制御 */ }
.notice-bar.is-expired{ display: none !important; }

/* ABC voice metric（具体数値の信頼度バンド） */
.wv-voice-metric{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed var(--ac-200);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-family: 'Inter','Helvetica Neue', sans-serif;
}
.wv-voice-metric .metric-num{
  font-size: clamp(12px, 1.2vw, 13px);
  font-weight: 800;
  color: var(--warm-500);
  letter-spacing: 0.02em;
}
.wv-voice-metric .metric-sep{
  color: var(--ink-400, #b9b2ad);
  font-size: 11px;
  font-weight: 600;
}

/* ===== 今だけ10万円メニュー（spot10） ===== */
.spot10-head{ max-width: 760px; }
.spot10-flag{
  display: inline-block;
  background: #14213a; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.12em;
  padding: 5px 14px; border-radius: 999px; margin-bottom: 16px;
}
.spot10 .section-title{ color: var(--navy-900); }
.spot10 .section-title .accent{ color: #14213a; }
.spot10-price-note{
  margin-top: 14px; font-size: clamp(15px, 1.8vw, 19px);
  color: var(--navy-900);
}
.spot10-price-note strong{ color: #14213a; font-size: 1.15em; }
.spot10-grid{
  margin-top: clamp(28px, 4vw, 44px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 1.6vw, 18px);
}
.spot10-card{
  background: #fff; border: 1px solid var(--ink-200, #e6e2df);
  border-top: 3px solid #14213a;
  border-radius: 12px; padding: clamp(18px, 2vw, 24px);
  display: flex; flex-direction: column; gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.spot10-card:hover{ transform: translateY(-3px); box-shadow: 0 16px 32px -20px rgba(33,24,21,.22); }
.spot10-tag{
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px; background: #14213a; color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.spot10-card h3{
  font-size: clamp(14.5px, 1.5vw, 16.5px); font-weight: 800;
  color: var(--navy-900); line-height: 1.5; margin: 4px 0 0;
}
.spot10-card h3 small{
  display: inline-block; font-size: 11px; font-weight: 700;
  color: #14213a; margin-left: 6px;
}
.spot10-card p{
  font-size: clamp(12.5px, 1.25vw, 13.5px); line-height: 1.75;
  color: var(--ink-600, #555); margin: 0;
}
.spot10-note{
  margin-top: 4px !important;
  padding-top: 10px;
  border-top: 1px dashed var(--ink-200, #e6e2df);
  font-size: 11.5px !important; line-height: 1.7;
  color: var(--ink-500, #6b6360) !important;
}
.spot10-card--closed{ background: var(--ink-50, #f7f5f3); border-top-color: var(--ink-300, #cdc6c1); }
.spot10-card--closed .spot10-tag{ background: var(--ink-300, #cdc6c1); }
.spot10-card--closed s{ color: var(--ink-400, #b9b2ad); text-decoration-thickness: 1px; }
.spot10-closed-note{
  margin-top: 8px !important;
  font-size: 12px !important; font-weight: 700;
  color: var(--warm-600) !important; line-height: 1.6;
}
.spot10-op{
  margin-top: clamp(16px, 2vw, 22px);
  display: flex; align-items: center; gap: 18px;
  background: #fff; color: var(--navy-900);
  border: 1px solid var(--ink-200, #e6e2df);
  border-left: 4px solid #14213a;
  border-radius: 14px; padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 0 18px 40px -28px rgba(33,24,21,.22);
  flex-wrap: wrap;
}
.spot10-op-tag{
  flex-shrink: 0; font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 12px; letter-spacing: 0.14em;
  background: var(--ac-50, #ecf6f9); color: #14213a;
  padding: 6px 14px; border-radius: 999px;
}
.spot10-op-body{ flex: 1; min-width: 240px; }
.spot10-op-body h3{
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 800; margin: 0 0 6px;
  color: var(--navy-900);
  display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap;
}
.spot10-op-price{ color: #14213a; font-family: 'Inter', sans-serif; }
.spot10-op-body p{ font-size: clamp(12.5px, 1.25vw, 14px); line-height: 1.75; color: var(--ink-600, #555); margin: 0; }
.spot10-terms{
  margin-top: 20px; font-size: 12.5px; line-height: 1.9;
  color: var(--ink-500);
}
.spot10-cta{ margin-top: clamp(24px, 3vw, 32px); }
@media (max-width: 960px){
  .spot10-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .spot10-grid{ grid-template-columns: 1fr; }
  .spot10-op{ flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* ===== プライバシーポリシー：エール弁護士保険の図版 ===== */
.yell-figure{
  margin: 28px 0 0;
  max-width: 360px;
}
.yell-figure img{
  width: 100%; height: auto;
  display: block;
  border: 1px solid var(--ink-200, #e6e2df);
  border-radius: 10px;
}
.yell-figure figcaption{
  margin-top: 8px;
  font-size: 12px; line-height: 1.6;
  color: var(--ink-500, #6b6360);
}

/* ===== フリーペーパー：無料CV帯（第三者コンテンツ強調） ===== */
.fp-hero{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(20px, 3vw, 44px);
  align-items: center;
  margin: clamp(24px, 3vw, 36px) 0 clamp(28px, 3.5vw, 40px);
  padding: clamp(24px, 3vw, 40px);
  background: linear-gradient(135deg, var(--ac-50) 0%, #fff 70%);
  border: 1px solid var(--ac-200);
  border-radius: 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: box-shadow .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.fp-hero:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 50px -28px rgba(1,97,208,0.35);
  border-color: var(--ac-400);
}
.fp-hero-flag{
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--ink-500);
  letter-spacing: 0.04em; margin-bottom: 12px;
}
.fp-hero-free{
  background: var(--warm-500); color: #fff;
  font-weight: 800; font-size: 12px;
  padding: 3px 10px; border-radius: 999px; letter-spacing: 0.08em;
}
.fp-hero-title{
  font-size: clamp(19px, 2.6vw, 28px);
  font-weight: 800; line-height: 1.5;
  color: var(--navy-900); margin: 0 0 12px;
}
.fp-hero-em{ color: #14213a; }
.fp-hero-desc{
  font-size: clamp(13px, 1.35vw, 14.5px);
  line-height: 1.85; color: var(--ink-600, #555);
  margin: 0 0 20px;
}
.fp-hero-cta{
  display: inline-flex; align-items: center; gap: 8px;
  background: #14213a; color: #fff;
  font-size: 15px; font-weight: 800;
  padding: 13px 28px; border-radius: 999px;
  transition: background .2s var(--ease), gap .2s var(--ease);
}
.fp-hero:hover .fp-hero-cta{ background: #0a4fa0; gap: 12px; }
.fp-hero-cta .arrow{ transition: transform .2s var(--ease); }
.fp-hero:hover .fp-hero-cta .arrow{ transform: translateX(3px); }
.fp-hero-art{ width: 100%; }
.fp-hero-art svg{
  width: 100%; height: auto; display: block;
  border-radius: 10px;
  box-shadow: 0 16px 36px -22px rgba(33,24,21,0.4);
}
@media (max-width: 760px){
  .fp-hero{ grid-template-columns: 1fr; }
  .fp-hero-art{ order: -1; max-width: 360px; }
}

/* ===== お問い合わせ：左フォーム＋右LINE の2カラム ===== */
.contact-layout{
  display: grid;
  grid-template-columns: 1fr minmax(300px, 360px);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.contact-form-intro{
  font-size: 14px; line-height: 1.9;
  color: var(--ink-600, #555);
  margin: 0 0 clamp(20px, 2.5vw, 28px);
}
.contact-line-col{ position: sticky; top: 96px; }
.contact-method{
  position: relative;
  background: #fff;
  border: 1px solid var(--ink-200, #e6e2df);
  border-top: 3px solid #14213a;
  border-radius: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  display: flex; flex-direction: column;
}

/* LINE：大きく・存在感を出す */
.contact-method--line{
  border: 1px solid #06C755;
  border-top: 4px solid #06C755;
  background: linear-gradient(160deg, #f0fbf4 0%, #ffffff 70%);
  align-items: center;
  text-align: center;
  padding: clamp(32px, 4vw, 48px) clamp(22px, 2.5vw, 32px);
  box-shadow: 0 22px 48px -28px rgba(6,199,85,0.45);
}
.contact-method--line .contact-method-num{
  display: inline-block;
  background: #06C755; color: #fff;
  font-size: 13px; letter-spacing: 0.16em;
  padding: 5px 16px; border-radius: 999px; margin-bottom: 18px;
}
/* 大型LINEアイコン */
.contact-line-icon{
  width: clamp(64px, 8vw, 84px); height: clamp(64px, 8vw, 84px);
  border-radius: 22px;
  background: #06C755;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 14px 30px -14px rgba(6,199,85,0.6);
}
.contact-line-icon svg{ width: 56%; height: 56%; color: #fff; }
.contact-method--line .contact-method-title{
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 12px;
}
.contact-method--line .contact-method-desc{
  font-size: 14px; line-height: 1.85; flex: none;
  margin: 0 0 26px;
}
.contact-method-btn{ width: 100%; justify-content: center; }
.contact-line-btn{
  background: #06C755; color: #fff !important;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 800; font-size: clamp(15px, 1.6vw, 17px);
  padding: 16px 28px;
  box-shadow: 0 12px 26px -12px rgba(6,199,85,0.7);
}
.contact-line-btn:hover{ background: #05b54c; transform: translateY(-2px); }
.contact-line-btn svg{ flex-shrink: 0; width: 20px; height: 20px; }
@media (max-width: 860px){
  .contact-layout{ grid-template-columns: 1fr; }
  .contact-line-col{ position: static; order: 1; }
  .contact-form-col{ order: 2; }
}

/* ===== お問い合わせ：受付停止ノーティス＋LINEメール案内 ===== */
.contact-notice{
  background: var(--warm-50, #fff3ee);
  border: 1px solid #f3c9b5;
  border-left: 4px solid var(--warm-500);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: clamp(20px, 2.5vw, 28px);
}
.contact-notice p{
  font-size: 13.5px; line-height: 1.85;
  color: var(--ink-700, #3f3a37); margin: 0;
}
.contact-notice strong{ color: var(--warm-600); }
.contact-line-qr{
  display: block;
  margin: 18px auto 0;
  max-width: 180px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .2s var(--ease);
}
.contact-line-qr:hover{ transform: scale(1.03); }
.contact-line-qr img{ width: 100%; height: auto; display: block; }
.contact-line-mail{
  margin: 16px 0 0;
  font-size: 13px; font-weight: 700;
  color: var(--navy-900); line-height: 1.6;
}
.contact-line-mail-note{
  display: block; margin-top: 4px;
  font-size: 11px; font-weight: 500;
  color: var(--ink-500, #6b6360);
}

/* ===== ヒーロー：左に文字／右に羊2枚（完全分割） ===== */
.hero{ position: relative; overflow: hidden; }
.hero-inner{ position: relative; z-index: 3; }
.hero-compact .hero-inner{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
  gap: clamp(24px, 4vw, 56px);
}
.hero-text{ min-width: 0; }
.hero-visual{
  display: flex;
  align-items: flex-start;  /* 見出し上端（AIにも）に合わせる */
  justify-content: center;
}
.hero-visual img{
  width: 100%;
  max-width: 440px;
  height: auto;             /* 画像本来の比率＝途切れない */
  border-radius: 24px;
  box-shadow: 0 26px 56px -24px rgba(1,97,208,0.45);
  margin-top: 58px;         /* eyebrow分下げて「AIにも」の頭に合わせる */
}

/* モバイル専用画像：通常は非表示（PCは右カラムを使う） */
.hero-visual-mobile{ display: none; }
.hero-visual-mobile img{
  display: block;           /* inline下の隙間防止 */
  width: 100%;
  height: auto;             /* 画像本来の比率＝途切れない */
  aspect-ratio: 510 / 408;  /* 画像実比率を明示（読込前の余白も防ぐ） */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 44px -22px rgba(1,97,208,0.45);
}

/* タブレット以下：右カラム画像を隠し、見出し直下のモバイル画像を表示 */
@media (max-width: 860px){
  .hero-compact .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ display: none; }
  .hero-visual-mobile{ display: block; margin: clamp(18px,4vw,28px) 0 clamp(8px,2vw,16px); }
}
.hero-title--two .line{ display:block; }
/* 2語を自然に折り返す（inline-blockだと折れないため） */
.hero-title--two .word{ display: inline; }
/* モバイルでは青（1行目）と黒（2行目）を分けて読みやすく */
@media (max-width: 860px){
  .hero-title--two .word{ display: block; }
}

/* ダーク背景CTA上の白ボタン（career等） */
.cta-white-btn{
  background:#fff !important;
  color: var(--navy-900) !important;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,0.4);
}
.cta-white-btn .btn-arrow{ color: var(--ac-600); }
.cta-white-btn:hover{ background: var(--ink-50) !important; transform: translateY(-2px); }

/* 屋号変更ページ：ロゴ入りmanifesto-asideは常に縦並び＋ロゴを全幅で */
.manifesto-aside--logo{ flex-direction: column !important; align-items: stretch !important; }
.manifesto-aside--logo .capure-logo-img{
  height: auto !important;
  width: 100%;
  max-width: 360px;
}
@media (max-width: 480px){
  .manifesto-aside--logo .capure-logo-img{ max-width: 100%; }
}

/* === BUBBLES BLUE ブランド青(#14213a)：ヘッダー＋notice-bar のトンマナ統一 === */
.notice-bar{ background: #14213a !important; }
.nav-link .num{ color: #14213a !important; }
.nav-link:hover{ color: #14213a !important; }

/* 事業名変更ページ：アクセントをブランド青(#14213a)に */
.page-bb-brand{ --ac-500: #14213a; --ac-600: #1683c4; }

/* スクロール後はお知らせバーを隠す（Zoff風）。ヒーロー有りページのみ対象 */
.notice-bar{ transition: max-height .3s var(--ease), opacity .25s var(--ease); max-height: 80px; }
body[data-hero-nav="true"] .nav:not(.transparent) ~ .notice-bar{
  max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
}

/* ===== AI クリエイティブ ギャラリー（左フィーチャー＋右グリッド・単一グリッド） ===== */
.ai-cr-head{ max-width: 760px; }
.ai-cr-layout{
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1fr 1fr;   /* 左カラム／右カラム */
  gap: clamp(12px, 1.6vw, 20px);
  align-items: stretch;
}
/* 左カラム：メイン画像1枚（右グリッドと同じ高さに） */
.ai-cr-left{ display: block; }
.ai-cr-feature{ height: 100%; aspect-ratio: auto !important; }
.ai-cr-feature, .ai-cr-item{
  display: block; padding: 0; border: none; background: none; cursor: pointer;
  border-radius: 14px; overflow: hidden; position: relative;
  box-shadow: 0 10px 26px -18px rgba(1,97,208,0.4);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.ai-cr-feature{ aspect-ratio: 1 / 1; height: 100%; }
.ai-cr-feature img, .ai-cr-item img{
  display: block; width: 100%; height: 100%;
  object-fit: cover; transition: transform .5s var(--ease);
}
/* 右カラム：4枚（2列×2行）の正方形グリッド */
.ai-cr-right{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, 1.4vw, 14px);
}
.ai-cr-item{ aspect-ratio: 1 / 1; }
/* ホバー（浮かび上がり＋ズーム） */
.ai-cr-feature:hover, .ai-cr-item:hover{ transform: translateY(-3px); box-shadow: 0 22px 44px -20px rgba(1,97,208,0.5); }
.ai-cr-feature:hover img, .ai-cr-item:hover img{ transform: scale(1.06); }

@media (max-width: 720px){
  .ai-cr-layout{ grid-template-columns: 1fr; }
}
@media (max-width: 480px){
  .ai-cr-right{ grid-template-columns: 1fr 1fr; }
}

/* ライトボックス */
.ai-cr-lightbox{
  position: fixed; inset: 0; z-index: 200;
  background: rgba(6,16,34,0.92);
  display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 48px);
}
.ai-cr-lightbox.is-open{ display: flex; }
.ai-cr-lb-img{
  max-width: 90vw; max-height: 86vh;
  border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,0.7);
}
.ai-cr-lb-close{
  position: absolute; top: 20px; right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 28px; line-height: 1; border: none; cursor: pointer;
  transition: background .2s var(--ease);
}
.ai-cr-lb-close:hover{ background: rgba(255,255,255,0.25); }
.ai-cr-lb-nav{
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(255,255,255,0.12); color: #fff;
  font-size: 34px; line-height: 1; border: none; cursor: pointer;
  transition: background .2s var(--ease);
}
.ai-cr-lb-nav:hover{ background: rgba(255,255,255,0.25); }
.ai-cr-lb-prev{ left: clamp(8px, 2vw, 28px); }
.ai-cr-lb-next{ right: clamp(8px, 2vw, 28px); }
@media (max-width: 600px){
  .ai-cr-lb-nav{ width: 42px; height: 42px; font-size: 26px; }
}

/* OPTION（まるっとパック）締切グレーアウト */
.spot10-op--closed{ background: var(--ink-50, #f7f5f3); border-left-color: var(--ink-300, #cdc6c1); box-shadow: none; }
.spot10-op--closed .spot10-op-tag{ background: var(--ink-200, #e6e2df); color: var(--ink-500); }
.spot10-op--closed s{ color: var(--ink-400, #b9b2ad); }
.spot10-op--closed .spot10-op-price s{ color: var(--ink-400, #b9b2ad); }

/* ===== Pricing 2ボタン切替 ===== */
.price-tabs{
  display: flex; gap: 12px; flex-wrap: wrap;
  margin: clamp(28px, 4vw, 44px) 0 clamp(20px, 2.5vw, 28px);
}
.price-tab{
  flex: 1 1 240px;
  padding: 16px 22px;
  border: 1.5px solid var(--ink-200, #e6e2df);
  border-radius: 12px; background: #fff;
  font-size: clamp(14px, 1.5vw, 16px); font-weight: 800;
  color: var(--ink-600, #555); cursor: pointer;
  transition: all .2s var(--ease);
}
.price-tab:hover{ border-color: var(--ac-300); }
.price-tab.is-active{
  background: var(--ac-500); color: #fff; border-color: var(--ac-500);
  box-shadow: 0 12px 26px -12px rgba(0,144,169,0.5);
}
.price-panel{ display: none; }
.price-panel.is-open{ display: block; animation: pricefade .35s var(--ease); }
@keyframes pricefade{ from{ opacity:0; transform: translateY(8px);} to{ opacity:1; transform:none; } }

/* =========================================================
   CALM REFINE LAYER — 「静かな実力」トーンへ（余白・配色・カード・CTA・アニメ）
   ※既存構造は変えず、トーンだけ上書き
   ========================================================= */

/* ① 余白：セクションをゆったり呼吸させる */
.section{ padding-block: clamp(84px, 11vw, 168px) !important; }
.container{ --max-w: 1160px; }
.section-lede{ line-height: 2.0; }
.section-title{ line-height: 1.5; letter-spacing: .01em; }
.section-label{ letter-spacing: .22em; }

/* ② アニメ：穏やかに（動きを小さく・上品に） */
.reveal{ transform: translateY(16px); transition: opacity .9s var(--ease), transform .9s var(--ease); }

/* ③ カード：ミニマル・薄い境界＋控えめな影＋やわらかホバー */
.pillar, .core-card, .link-card, .fp-card, .spot10-card, .wv-voice, .trust-chip{
  border: 1px solid #e9edf3 !important;
  border-radius: 16px !important;
  box-shadow: 0 1px 2px rgba(16,32,64,0.04) !important;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease) !important;
}
.pillar:hover, .core-card:hover, .link-card:hover, .fp-card:hover, .spot10-card:hover, .wv-voice:hover{
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 44px -24px rgba(16,32,64,0.22) !important;
  border-color: #d4dbe6 !important;
}

/* 見出し英ラベルの前の罫線をreadycrew風の短い線に */
.section-label::before{ width: 26px; height: 2px; }

/* =========================================================
   READYCREW GATSURI — セクション見出しを中央寄せ・配色統一・下地整理
   ========================================================= */

/* ⑥ 主要セクションの見出しブロックのみ中央寄せ（崩れないよう限定） */
.ai-cr-head, .fp-head,
#cores > .container > .reveal:first-child,
.spot10 .spot10-head{
  text-align: center !important;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.section-label{
  display: inline-flex; align-items: center; gap: 10px;
  color: #14213a !important;
  font-weight: 800;
}
.section-label::before{ background: #14213a !important; }
.section-title{
  color: #0f2440 !important;
  font-weight: 900;
}
.section-title .accent{ color: #14213a !important; -webkit-text-fill-color:#14213a !important; }
.section-lede{ color: #4a5672 !important; margin-left: auto; margin-right: auto; }

/* ⑦ アクセントを全面的にブランド青へ寄せる */
.chip, .fp-num, .core-num, .pillar-num, .wv-voice-tag{
  color: #14213a !important;
}

/* ⑧ 下地：白と極淡い水色グレーで交互に落ち着かせる（既存の濃い背景セクションは除外） */
#free-papers{ background: #fff !important; }
.works-voices{ background: #f5f9fd !important; }
.ai-cr{ background: #fff !important; }
#cores{ background: #f5f9fd !important; }
.people{ background: #fff !important; }

/* ⑨ カード内の見出しも濃紺で締める */
.pillar h3, .core-card h3, .link-card h3, .fp-title, .spot10-card h3{
  color: #0f2440 !important;
}


/* =========================================================
   HERO (readycrew風・中央寄せ)
   ========================================================= */
.hero-rc{
  position: relative;
  min-height: auto !important;
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 72%);
  overflow: hidden;
}
.hero-rc-bg{
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 50% -10%, rgba(31,156,224,0.16), transparent 70%),
    linear-gradient(rgba(31,156,224,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31,156,224,0.05) 1px, transparent 1px);
  background-size: auto, 56px 56px, 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 88%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000, transparent 88%);
}
.hero-rc-inner{
  position: relative; z-index: 2;
  max-width: 940px; margin: 0 auto;
  padding: clamp(140px, 17vw, 200px) var(--gutter) clamp(72px, 9vw, 120px);
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.hero-rc-eyebrow{
  display: inline-flex; align-items: center; gap: 10px;
  padding: 9px 20px; border-radius: 999px;
  background: #fff; border: 1px solid #d5e6f4;
  font-size: clamp(12px, 1.3vw, 13.5px); font-weight: 700;
  color: #1683c4; letter-spacing: .04em;
  box-shadow: 0 6px 18px -10px rgba(31,156,224,0.4);
}
.hero-rc-eyebrow .dot{ width: 8px; height: 8px; border-radius: 50%; background: #14213a; box-shadow: 0 0 10px #14213a; }
.hero-rc-title{
  margin: clamp(24px, 3vw, 34px) 0 0;
  font-family: var(--font-display, 'Zen Kaku Gothic New', sans-serif);
  font-size: clamp(32px, 6vw, 62px);
  font-weight: 900; line-height: 1.4; letter-spacing: .01em;
  color: #0f2440;
}
.hero-rc-title .accent{ color: #14213a; }
.hero-rc-lede{
  margin: clamp(20px, 2.5vw, 30px) 0 0;
  font-size: clamp(14px, 1.5vw, 17px); line-height: 2.0;
  color: #4a5672; max-width: 720px;
}
.hero-rc-cta{
  margin: clamp(30px, 4vw, 44px) 0 0;
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
}
.hero-rc-btn{
  font-size: clamp(15px, 1.5vw, 16px) !important;
  padding: 16px 34px !important;
}
/* 信頼指標 */
.hero-rc-stats{
  margin: clamp(48px, 6vw, 72px) 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
  width: 100%; max-width: 760px;
  padding-top: clamp(28px, 3.5vw, 40px);
  border-top: 1px solid #e3ebf3;
}
.hero-rc-stat{ display: flex; flex-direction: column; gap: 6px; }
.hero-rc-stat .num{
  font-family: 'Jost','Poppins',sans-serif;
  font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #0f2440; line-height: 1;
}
.hero-rc-stat .num small{ font-size: .5em; font-weight: 700; color: #14213a; margin-left: 2px; }
.hero-rc-stat .lbl{ font-size: clamp(10.5px, 1.1vw, 12px); color: #6b7897; letter-spacing: .02em; }

@media (max-width: 640px){
  .hero-rc-stats{ grid-template-columns: repeat(2, 1fr); gap: 20px 12px; }
  .hero-rc-cta{ flex-direction: column; width: 100%; max-width: 340px; }
  .hero-rc-btn{ width: 100%; justify-content: center; }
}

/* ヒーロー：ブランド表記 BUBBLES BLUE by ANTII */
.hero-rc-brand{
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-family: 'Jost','Poppins',sans-serif;
  font-size: clamp(24px, 3.6vw, 40px);
  font-weight: 800; letter-spacing: .02em; line-height: 1;
  color: #14213a;
  display: inline-flex; align-items: baseline; gap: 10px;
}
.hero-rc-brand .by{
  font-size: .34em; font-weight: 600; letter-spacing: .12em;
  color: #9aa5bd;
}

/* =========================================================
   HERO 2カラム（左文言＋右ビジュアル）
   ========================================================= */
.hero-rc2{
  position: relative;
  min-height: auto !important;
  background: linear-gradient(180deg, #f4f9fd 0%, #ffffff 78%);
  overflow: hidden;
}
.hero-rc2-inner{
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: clamp(130px, 15vw, 180px) var(--gutter) clamp(64px, 8vw, 104px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
}
.hero-rc2-title{
  margin: clamp(20px, 2.6vw, 30px) 0 0;
  font-family: var(--font-display, 'Zen Kaku Gothic New', sans-serif);
  font-size: clamp(30px, 4.6vw, 54px);
  font-weight: 900; line-height: 1.45; letter-spacing: .01em;
  color: #0f2440;
}
.hero-rc2-title .accent{ color: #14213a; }
.hero-rc2-lede{
  margin: clamp(18px, 2.2vw, 28px) 0 0;
  font-size: clamp(14px, 1.45vw, 16.5px); line-height: 2.0; color: #4a5672;
}
.hero-rc2-lede strong{ color: #14213a; }
.hero-rc2 .hero-rc-cta{ margin-top: clamp(28px, 3.4vw, 40px); justify-content: flex-start; }
.hero-rc2-visual{
  justify-self: center;
}
.hero-rc2-visual img{
  width: 100%; max-width: 440px; height: auto;
  border-radius: 24px;
  box-shadow: 0 30px 60px -28px rgba(1,97,208,0.45);
}
@media (max-width: 860px){
  .hero-rc2-inner{ grid-template-columns: 1fr; text-align: center; }
  .hero-rc2 .hero-rc-cta{ justify-content: center; }
  .hero-rc2-visual{ order: -1; margin-bottom: clamp(8px,2vw,16px); }
  .hero-rc2-visual img{ max-width: 320px; }
}
@media (max-width: 640px){
  .hero-rc2 .hero-rc-cta{ flex-direction: column; width: 100%; max-width: 340px; margin-left:auto; margin-right:auto; }
  .hero-rc2 .hero-rc-btn{ width: 100%; justify-content: center; }
}

/* =========================================================
   ANTII RENEW — 白基調＋濃紺＋セリフ（Carta風・高級ミニマル）
   ※既存トーンの上に全面上書き
   ========================================================= */

/* ロゴ画像（logo_antii.png） */
.site-logo{
  display: block; width: auto; height: 80px !important;
  object-fit: contain; flex-shrink: 0;
  mix-blend-mode: multiply;   /* グレー背景を白ヘッダーに馴染ませる */
}
.nav.transparent .site-logo{ height: 92px !important; }
@media (max-width: 720px){ .site-logo{ height: 60px !important; } }

/* --- カラー刷新：ブランド青(#14213a/ac系) → 濃紺・黒へ --- */
:root{
  --brand-navy: #14213a;
  --brand-ink:  #0b1020;
  --brand-line: #e6e3dd;
}
/* 見出し・ラベル・アクセントを濃紺/黒に（日英そろうゴシック系） */
.section-title, .hero-rc2-title, .subhero-title,
.pillar h3, .core-card h3, .link-card h3, .fp-title{
  color: var(--brand-ink) !important;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP', sans-serif !important;
  font-weight: 900 !important;
  letter-spacing: .02em;
}
.section-label{
  color: var(--brand-navy) !important; font-weight: 700;
  font-family: 'Zen Kaku Gothic New','Noto Sans JP', sans-serif !important;
}
.section-label::before{ background: var(--brand-navy) !important; }
.section-title .accent, .hero-rc2-title .accent{
  color: var(--brand-navy) !important; -webkit-text-fill-color: var(--brand-navy) !important;
}
/* アクセント青の要素を濃紺に寄せる */
.chip, .fp-num, .core-num, .pillar-num, .wv-voice-tag, .nav-link .num{
  color: var(--brand-navy) !important;
}

/* --- ボタン：白背景＋黒枠（ミニマル）。角控えめ --- */
.btn-primary, .hero-rc-btn.btn-primary, .nav-cta,
.btn-ghost, .hero-rc-btn.btn-ghost{
  background:#fff !important; color: var(--brand-ink) !important;
  border: 1.5px solid var(--brand-ink) !important;
  border-radius: 4px !important;
  box-shadow: none !important;
  letter-spacing: .06em;
  transition: background .2s var(--ease), color .2s var(--ease) !important;
}
.btn-primary:hover, .hero-rc-btn.btn-primary:hover, .nav-cta:hover,
.btn-ghost:hover, .hero-rc-btn.btn-ghost:hover{
  background: var(--brand-ink) !important; color:#fff !important;
  transform: none !important;
}

/* --- ヘッダー：白・細い罫線・レター spaced ナビ --- */
.nav, .nav.transparent{ background:#fff !important; border-bottom:1px solid var(--brand-line) !important; }
.nav-link{ color: var(--brand-ink) !important; letter-spacing: .12em; font-weight: 600; }
.nav-link:hover{ color: var(--brand-navy) !important; }
.nav-logo-furigana{ display:none !important; }

/* --- notice-bar：濃紺 --- */
.notice-bar{ background: var(--brand-ink) !important; }
.notice-bar .tag{ background: rgba(255,255,255,0.16) !important; color:#fff !important; }

/* --- ヒーロー：白基調・セリフ・余白ゆったり --- */
.hero-rc2{ background:#fff !important; }
.hero-rc-bg{ opacity:.5; }
.hero-rc-eyebrow{ background:#fff !important; border-color: var(--brand-line) !important; color: var(--brand-navy) !important; }
.hero-rc-eyebrow .dot{ background: var(--brand-navy) !important; box-shadow:none !important; }
.hero-rc2-lede strong{ color: var(--brand-navy) !important; }

/* カード：極細罫線・角控えめ・影ほぼ無し（ミニマル） */
.pillar, .core-card, .link-card, .fp-card, .spot10-card, .wv-voice, .trust-chip{
  border:1px solid var(--brand-line) !important;
  border-radius: 6px !important;
  box-shadow:none !important;
}
.pillar:hover, .core-card:hover, .link-card:hover, .fp-card:hover, .wv-voice:hover{
  box-shadow: 0 18px 40px -28px rgba(11,16,32,0.22) !important;
  border-color:#cfcabf !important;
}

/* ヒーロー：羊撤去後の中央寄せ1カラム */
.hero-rc2-inner--center{
  grid-template-columns: 1fr !important;
  max-width: 880px; text-align: center;
}
.hero-rc2-inner--center .hero-rc-eyebrow{ margin-left: auto; margin-right: auto; }
.hero-rc2-inner--center .hero-rc-cta{ justify-content: center; }
.hero-rc2-inner--center .hero-rc2-lede{ margin-left: auto; margin-right: auto; max-width: 680px; }

/* =========================================================
   ANTII RENEW 2 — ヒーロー背景画像・ロゴ横表記・eyebrow整形
   ========================================================= */

/* ③ ヒーロー背景に top.jpg（文字は白） */
.hero-rc2{
  background:
    linear-gradient(180deg, rgba(11,16,32,0.55), rgba(11,16,32,0.62)),
    url("../images/top.jpg") center/cover no-repeat !important;
}
.hero-rc2 .hero-rc-bg{ display:none; }
.hero-rc2-title,
.hero-rc2 .hero-rc2-title .accent{ color:#fff !important; -webkit-text-fill-color:#fff !important; }
.hero-rc2-lede{ color: rgba(255,255,255,0.9) !important; }
.hero-rc2-lede strong{ color:#fff !important; }
/* ④ eyebrow の丸を外す（枠なし・白文字・下線風） */
.hero-rc2 .hero-rc-eyebrow{
  background: transparent !important; border: none !important;
  color: #fff !important; box-shadow: none !important;
  padding: 0 0 8px !important; border-radius: 0 !important;
  letter-spacing: .18em; font-weight: 600;
}
.hero-rc2 .hero-rc-eyebrow .dot{ background:#fff !important; }
/* ヒーロー背景時のボタン：白基調は視認性のため半透明白に */
.hero-rc2 .btn-primary, .hero-rc2 .btn-ghost{
  background: rgba(255,255,255,0.10) !important; color:#fff !important;
  border-color: rgba(255,255,255,0.85) !important;
  backdrop-filter: blur(2px);
}
.hero-rc2 .btn-primary:hover, .hero-rc2 .btn-ghost:hover{
  background:#fff !important; color: var(--brand-ink) !important;
}

/* ② ロゴ横の社名表記 */
.nav-logo-name{
  margin-left: 14px; padding-left: 16px;
  border-left: 1px solid var(--brand-line);
  font-family: 'Jost','Poppins', sans-serif;
  font-size: 15px; font-weight: 600; letter-spacing: .06em;
  color: var(--brand-ink); white-space: nowrap; align-self: center;
}
@media (max-width: 640px){
  .nav-logo-name{ margin-left:8px; padding-left:10px; font-size:12px; letter-spacing:.02em; }
}

/* ===== ハイキャリア副業人材との連携 ===== */
.talent-net{ background:#fff; }
.talent-head{ text-align:center; max-width:820px; margin:0 auto; }
.talent-net .section-eyebrow{
  display:inline-block; font-family:'Jost',sans-serif; font-size:12px; letter-spacing:.28em;
  text-transform:uppercase; color:var(--brand-navy,#14213a); opacity:.7; margin-bottom:14px;
}
.talent-lead{
  margin:18px auto 0; max-width:720px; line-height:2; color:#333;
  font-size:clamp(14px,1.5vw,16px);
}
.talent-figure{
  margin:clamp(28px,4vw,48px) auto 0; max-width:1000px;
  border:1px solid var(--brand-line,#e6e3dd); border-radius:14px; overflow:hidden; background:#fff;
}
.talent-figure img{ display:block; width:100%; height:auto; }
.talent-roles{
  display:flex; flex-wrap:wrap; justify-content:center; gap:10px;
  max-width:820px; margin:clamp(22px,3vw,32px) auto 0;
}
.talent-chip{
  font-size:13px; letter-spacing:.02em; color:var(--brand-ink,#0b1020);
  border:1px solid var(--brand-ink,#0b1020); border-radius:999px; padding:8px 16px; background:#fff;
}
@media (max-width:640px){
  .talent-chip{ font-size:12px; padding:7px 13px; }
}
