/* =========================================================
   OASIS Recruit LP — Stylesheet
   Brand: Navy × Champagne Gold × Sky watercolor
   ========================================================= */

:root {
  /* Brand colors */
  --navy: #1F3D6E;
  --navy-dark: #0E2654;
  --navy-mid: #2A4F85;
  --gold: #C9A557;
  --gold-light: #E8C97A;
  --gold-pale: #F0DC9A;

  /* Surface colors */
  --bg-white: #FFFFFF;
  --bg-sky-1: #C9DEEF;
  --bg-sky-2: #E8F2FA;
  --bg-sky-3: #F4F9FC;
  --bg-sky-4: #DCEAF5;
  --bg-ice: #EEF5FC;
  --bg-cream: #FFFAF0;

  /* Text colors */
  --text: #222222;
  --text-sub: #5A6070;
  --text-on-dark: #F0F4F8;

  /* Borders */
  --border: #D8DFE8;
  --border-gold-faint: rgba(201, 165, 87, 0.2);

  /* Type */
  --font-serif: "Noto Serif JP", "Yu Mincho", "游明朝", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-mono: "Montserrat", "Helvetica Neue", sans-serif;

  /* Shape */
  --container: 780px;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #F2F6FA;
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; height: auto; }
.sp-only { display: none; }
ul, ol, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, h5, h6, p { margin: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; }

/* SVG icon base */
.icon {
  display: inline-block;
  fill: currentColor;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 0;
}

.lp {
  width: 100%;
  background: var(--bg-white);
  overflow: hidden;
}
.lp > section,
.lp > footer {
  /* 各セクションの背景は全幅、コンテンツは中央寄せ */
}
.section,
.line-gift,
.income {
  max-width: 100%;
}
/* コンテンツ幅の制限用 */
.section > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}
.hero {
  max-width: 100%;
}
.hero__inner {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

/* ====================================
   01 — HERO (780×908 aspect-ratio canvas)
   ==================================== */
.hero {
  max-width: 100%;
  display: flex;
  justify-content: center;
  background-image: url(./images/fv_background.png);
  background-size: cover;
  background-position: center;
}
.hero__canvas {
  position: relative;
  width: 100%;
  max-width: 780px;
  overflow: hidden;
  container-type: inline-size;
  /* Flex column: header → group → band flow naturally */
  display: flex;
  flex-direction: column;
  padding: 3cqi 3.5cqi 2cqi;
  gap: 1.5cqi;
}

/* ---- Person image (absolute overlay) ---- */
.hero__person {
  position: absolute;
  left: 34%; top: 2.5%;
  width: 80%;
  margin: 0;
  pointer-events: none;
  z-index: 0;
}
.hero__person img {
  width: 100%; height: auto;
  object-fit: contain;
}

/* ---- Header section ---- */
.hero__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2cqi;
}

.hero__brand-row {
  display: flex;
  align-items: center;
  gap: 2cqi;
}

/* Logo */
.hero__logo {
  width: 13cqi;
  height: 13cqi;
  flex-shrink: 0;
}
.hero__logo img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* Eyebrow */
.hero__eyebrow {
  display: flex; flex-direction: column; gap: 0.5cqi;
}
.hero__eyebrow-en {
  font-family: var(--font-mono);
  font-size: 3.85cqi; font-weight: 800;
  letter-spacing: 0.77cqi;
  color: var(--navy);
  line-height: 1.1;
}
.hero__eyebrow-ja {
  font-family: var(--font-serif);
  font-size: 2.31cqi; font-weight: 700;
  letter-spacing: 0.26cqi;
  color: var(--navy);
  line-height: 1.4;
}

/* Heading */
.hero__heading {
  display: flex; flex-direction: column; gap: 1cqi;
  margin: 0;
}
.hero__ttl,
.hero__ttl-sub {
  font-family: var(--font-serif);
  font-weight: 900;
  font-size: 8.2cqi;
  line-height: 1;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  white-space: nowrap;
  filter:
    drop-shadow(0 0 10px rgba(255,255,255,.95))
    drop-shadow(0 0 20px rgba(255,255,255,.85))
    drop-shadow(0 0 36px rgba(255,255,255,.65))
    drop-shadow(0 2px 4px rgba(255,255,255,1));
}
.hero__ttl { letter-spacing: 0.77cqi; }
.hero__ttl-sub { letter-spacing: 1.03cqi; }

/* Cross row */
.hero__cross {
  position: relative;
  display: flex; align-items: center; gap: 0.26cqi;
  z-index: 2;
}
.hero__cross::before {
  content: "";
  position: absolute;
  inset: -1cqi -2cqi;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 70%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.hero__cross > * {
  filter:
    drop-shadow(0 0 2px rgba(255,255,255,.95))
    drop-shadow(0 0 16px rgba(255,255,255,.80))
    drop-shadow(0 0 24px rgba(255,255,255,.60));
}
.hero__cross-ln {
  width: 8px; height: 1px;
  background: var(--gold);
  margin: 0 0.51cqi;
}
.hero__cross-ja {
  font-family: var(--font-serif);
  font-size: max(13px, 2.44cqi); font-weight: 800;
  letter-spacing: 0.38cqi;
  color: var(--navy);
  padding: 0 0.51cqi;
}
.hero__cross-x {
  font-family: var(--font-serif);
  font-size: max(11px, 2.05cqi); font-weight: 700;
  color: var(--gold);
}

/* ---- Group: Hex + Facts (flow, not absolute) ---- */
.hero__group {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  gap: 1.5cqi;
  flex: 1;
}

/* -- SVG Hexagon badge -- */
.hero__hex {
  flex: 0 0 38%;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* hex shape wrapper — maintains aspect ratio of original 260×300 */
.hero__hex-shape {
  position: relative;
  width: 100%;
  aspect-ratio: 260 / 300;
  max-height: 100%;
}
.hero__hex-bg {
  position: absolute; inset: 0;
  filter: drop-shadow(0 8px 24px rgba(10,42,85,.30));
}
.hero__hex-bg svg { display: block; width: 100%; height: 100%; }
.hero__hex-inner {
  position: absolute;
  left: 5.38%; top: 5.33%;
  width: 89.23%; height: 89.33%;
  pointer-events: none;
}
.hero__hex-inner svg { display: block; width: 100%; height: 100%; }
.hero__hex-content {
  position: absolute;
  left: 3.08%; top: 2.67%;
  width: 93.85%; height: 94.67%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 4px;
}
.hero__hex-eb {
  font-family: var(--font-serif);
  font-size: clamp(12px, 3.08vw, 24px); font-weight: 600;
  letter-spacing: 3px; color: #fff;
}
.hero__hex-big {
  display: flex; align-items: flex-end; gap: 2px;
}
.hero__hex-ji {
  font-family: var(--font-serif);
  font-size: clamp(12px, 3.08vw, 24px); font-weight: 700;
  letter-spacing: 1px;
  width: clamp(20px, 4.87vw, 38px);
  text-align: center; line-height: 1.1;
  background: linear-gradient(0deg, var(--gold) 0%, var(--gold-pale) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: flex; flex-direction: column; justify-content: flex-end; align-self: flex-end;
  padding-bottom: 8px;
}
.hero__hex-num {
  font-family: var(--font-serif);
  font-size: clamp(40px, 10vw, 78px); font-weight: 900;
  line-height: .95;
  background: linear-gradient(180deg, var(--gold-pale) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__hex-yen {
  font-family: var(--font-serif);
  font-size: clamp(10px, 2.31vw, 18px); font-weight: 700;
  letter-spacing: 1px; color: #fff;
  padding-bottom: 8px;
}
.hero__hex-sub {
  font-family: var(--font-serif);
  font-size: clamp(10px, 2.56vw, 20px); font-weight: 600;
  letter-spacing: 3px; color: #fff;
}

/* -- Fact cards (all sizes in cqi: 780px = 100cqi) -- */
.hero__facts {
  flex: 1;
  min-width: 0;
  display: flex; flex-direction: column;
  justify-content: center; gap: 1.28cqi;
}
.hero__fact {
  width: 100%;
  padding: 1.28cqi 2.05cqi 1.54cqi;
  border-radius: 1.28cqi;
  background: rgba(255,255,255,.90);
  border: 1px solid var(--gold);
  box-shadow: 0 0.51cqi 1.54cqi rgba(10,42,85,.12);
  display: flex; flex-direction: column;
  align-items: center; gap: 0.51cqi;
}
.hero__fact--3 { gap: 0.77cqi; }
.hero__fact-tab {
  display: inline-flex; align-items: center; gap: 0.77cqi;
  padding: 0.51cqi 1.79cqi;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 100%);
}
.hero__fact-dot {
  width: 0.51cqi; height: 0.51cqi; border-radius: 50%; background: #fff;
}
.hero__fact-tab span:not(.hero__fact-dot) {
  font-family: var(--font-sans);
  font-size: max(8px, 1.41cqi); font-weight: 700;
  letter-spacing: 0.26cqi; color: #fff;
}
.hero__fact-sub {
  font-family: var(--font-sans);
  font-size: max(9px, 1.41cqi); font-weight: 600; color: var(--text-sub);
}
/* Fact 1 */
.hero__fact-big1 { display: flex; align-items: flex-end; gap: 0.26cqi; }
.hero__fact-num {
  font-family: var(--font-serif);
  font-size: 4.62cqi; font-weight: 900; line-height: 1; color: var(--navy);
}
.hero__fact-unit {
  font-family: var(--font-serif);
  font-size: 1.79cqi; font-weight: 800; color: var(--navy); padding-bottom: 0.26cqi;
}
/* Fact 2 */
.hero__fact-big2-row {
  display: flex; align-items: center; gap: 1.79cqi;
}
.hero__fact-big2 {
  display: flex; align-items: baseline; gap: 0.26cqi;
  color: var(--navy); font-family: var(--font-serif);
}
.hero__fact-ja-s { font-size: 2.05cqi; font-weight: 800; }
.hero__fact-ja-l { font-size: 4.87cqi; font-weight: 900; line-height: 1; }
.hero__fact-en-l { font-size: 3.33cqi; font-weight: 900; }
.hero__fact-cal {
  width: 4.1cqi; height: 4.1cqi; color: var(--navy); flex-shrink: 0;
}
/* Fact 3 */
.hero__fact-inner-row {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
}
.hero__fact-col3 {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.26cqi;
}
.hero__fact-col3-top {
  display: flex; align-items: center; gap: 0.51cqi;
}
.hero__fact-ic { width: 2.82cqi; height: 2.82cqi; color: var(--navy); }
.hero__fact-col3-lbl {
  font-family: var(--font-sans);
  font-size: max(8px, 1.41cqi); font-weight: 700; color: var(--navy);
}
.hero__fact-col3-val {
  font-family: var(--font-serif); font-weight: 900; color: var(--navy);
}
.hero__fact-col3-val--lg { font-size: max(12px, 2.31cqi); }
.hero__fact-col3-val--md { font-size: max(10px, 1.92cqi); }
.hero__fact-divider {
  width: 1px; height: 5.13cqi; background: rgba(201,165,87,.40);
}

/* ---- Band: 高収入を実現 (cqi units) ---- */
.hero__band {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 3.08cqi;
  border-radius: 1.79cqi;
  background: linear-gradient(180deg, #fff 0%, #FBF8F0 50%, #F7EFDD 100%);
  border: 2px solid var(--gold);
  box-shadow: 0 1.03cqi 3.08cqi rgba(10,42,85,.18), inset 0 1px 0 rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  gap: 3.08cqi;
}
.hero__band::before {
  content: "";
  position: absolute; inset: 0.77cqi;
  border: 1px solid rgba(201,165,87,.55);
  border-radius: 1.15cqi;
  pointer-events: none;
}
.hero__band-corner {
  position: absolute; width: 1.28cqi; height: 1.28cqi;
  pointer-events: none; color: var(--gold);
}
.hero__band-corner--tl { top: 1.28cqi; left: 1.28cqi; }
.hero__band-corner--tr { top: 1.28cqi; right: 1.28cqi; }
.hero__band-corner--bl { bottom: 1.28cqi; left: 1.28cqi; }
.hero__band-corner--br { bottom: 1.28cqi; right: 1.28cqi; }
.hero__band-corner svg { width: 100%; height: 100%; display: block; }

.hero__band-orn {
  display: flex; align-items: center; gap: 0.77cqi; color: var(--gold);
}
.hero__band-dash {
  display: block; width: 2.56cqi; height: 1.5px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}
.hero__band-dash--short { width: 1.54cqi; }
.hero__band-gem { width: 1.54cqi; height: 1.54cqi; flex-shrink: 0; }

.hero__band-text {
  display: flex; flex-direction: column; align-items: center; gap: 0.26cqi;
  position: relative; z-index: 2;
}
.hero__band-l1 {
  font-family: var(--font-serif);
  font-size: 4.1cqi; font-weight: 900;
  letter-spacing: 0.64cqi; color: var(--navy);
  line-height: 1.2;
  text-shadow: 0 1px 0 rgba(255,255,255,.8);
}
.hero__band-l2 {
  font-family: var(--font-serif);
  font-size: 2.82cqi; font-weight: 700;
  letter-spacing: 0.38cqi; color: var(--navy);
  line-height: 1.4;
}

/* ====================================
   01b — LINE Gift (特典)
   ==================================== */
.line-gift {
  padding: 56px 24px 48px;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  position: relative;
  overflow: hidden;
}
/* 背景のゴールドグロー装飾 */
.line-gift::before {
  content: "";
  position: absolute;
  width: 400px; height: 400px;
  left: -100px; top: -100px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,165,87,.12) 0%, transparent 100%);
  pointer-events: none;
}
.line-gift::after {
  content: "";
  position: absolute;
  width: 350px; height: 350px;
  right: -80px; bottom: -80px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,165,87,.1) 0%, transparent 100%);
  pointer-events: none;
}
.line-gift__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  position: relative; z-index: 1;
}
.line-gift__title {
  text-align: center;
  font-family: var(--font-serif);
  line-height: 1.5;
}
.line-gift__pre {
  display: block;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: .12em;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.line-gift__title strong {
  display: block;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: .1em;
  color: #fff;
}

.line-gift__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
}
.line-gift__card {
  position: relative;
  padding: 20px 14px 18px;
  background: rgba(255,255,255,.95);
  border: 1.5px solid var(--gold);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0,0,0,.15);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  text-align: center;
  overflow: hidden;
}
/* 「今だけ！」リボン — 左上斜め配置 */
.line-gift__badge {
  position: absolute;
  top: 12px; left: -32px;
  width: 120px;
  padding: 4px 0;
  background: linear-gradient(180deg, #FF6B6B, #E04848);
  font-family: var(--font-sans); font-weight: 800;
  font-size: 10px; letter-spacing: .1em;
  color: #fff;
  text-align: center;
  transform: rotate(-35deg);
  box-shadow: 0 2px 8px rgba(224,72,72,.3);
}
.line-gift__card-icon {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  display: grid; place-items: center;
  color: var(--gold);
  border: 2px solid var(--gold);
  box-shadow:
    0 4px 14px rgba(10,31,69,.25),
    0 0 0 4px rgba(201,165,87,.12),
    inset 0 1px 0 rgba(255,255,255,.1);
}
/* 外側のゴールドリング */
.line-gift__card-icon-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(201,165,87,.3);
  pointer-events: none;
}
.line-gift__card-icon-ring::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px dashed rgba(201,165,87,.15);
}
/* 動画アイコンのアクセントカラー */
.line-gift__card-icon--movie {
  background: linear-gradient(135deg, #2A4F85, var(--navy-dark));
}
/* 相談アイコンのアクセントカラー */
.line-gift__card-icon--consult {
  background: linear-gradient(135deg, #3A5A90, var(--navy));
}
.line-gift__card-title {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 16px; letter-spacing: .06em;
  line-height: 1.5; color: var(--navy);
}
.line-gift__card-sub {
  font-size: 11px; line-height: 1.7;
  color: var(--text-sub);
}

.line-gift__cta {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 24px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 16px; letter-spacing: .06em;
  border-radius: 999px;
  box-shadow: 0 4px 16px rgba(6,199,85,.25);
  transition: opacity .2s;
}
.line-gift__cta:hover { opacity: .9; }
.line-gift__cta strong { font-weight: 900; color: #FFE066; }
.line-gift__cta .icon:first-child { flex-shrink: 0; }
.line-gift__cta .icon:last-child { color: rgba(255,255,255,.7); flex-shrink: 0; }

/* btn-primary (used in later sections) */
.btn-primary {
  width: 100%;
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 16px 0;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  color: #fff;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 18px; letter-spacing: .2em;
  border: 1.5px solid var(--gold);
  border-radius: 60px;
  box-shadow: 0 8px 20px rgba(10,31,69,.25);
  transition: opacity .2s, transform .2s;
}
.btn-primary:hover { opacity: .92; }
.btn-primary__lead,
.btn-primary__trail { color: var(--gold); }


/* ====================================
   Section base
   ==================================== */
.section {
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}
.section--movie       { background: linear-gradient(180deg, var(--bg-sky-3), #E6EFF6); }
.section--media       { background: linear-gradient(180deg, var(--bg-sky-4), var(--bg-sky-2)); padding-bottom: 64px; }
.section--benefits    { background: linear-gradient(180deg, var(--bg-sky-3), #E2EDF6); }
.section--message     { background: linear-gradient(180deg, var(--navy), var(--navy-dark)); color: var(--text-on-dark); padding: 80px 32px; }
.section--voices      { background: linear-gradient(180deg, var(--bg-sky-4), var(--bg-sky-2)); padding: 80px 24px; }
.section--reqs        { background: linear-gradient(180deg, var(--bg-sky-3), #E6EFF6); }
.section--cta         { background: linear-gradient(180deg, var(--navy), #0A1F45); color: #fff; padding: 80px 32px; text-align: center; }

.sec-head {
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  text-align: center;
  margin-bottom: 32px;
}
.sec-head--dark { color: #fff; }
.sec-head--cta { gap: 12px; }
.sec-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; letter-spacing: .42em;
  color: var(--gold);
}
.sec-rule { display: inline-block; width: 24px; height: 1px; background: var(--gold); }

.sec-title {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 30px; letter-spacing: .15em;
  color: var(--navy);
}
.sec-title--light { color: #fff; font-size: 28px; }
.sec-intro {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 14px; line-height: 1.9; color: var(--text-sub);
}
.sec-intro--light { color: rgba(255,255,255,.7); }

/* ====================================
   03 — Movie
   ==================================== */
.video-list {
  display: flex; flex-direction: column; gap: 20px;
}
.video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  border: 1px solid rgba(201,165,87,.5);
  box-shadow: 0 8px 24px rgba(10,31,69,.2);
  aspect-ratio: 16 / 10;
  display: grid; place-items: center;
}
.video video { width: 100%; height: 100%; object-fit: cover; }
.video__play {
  position: absolute;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold));
  border: 1px solid rgba(255,255,255,.5);
  box-shadow: 0 6px 24px rgba(201,165,87,.31);
  color: var(--navy);
  display: grid; place-items: center;
  z-index: 2;
}
.video__play i { font-size: 36px; }
.video__label {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-mono); font-weight: 700;
  font-size: 11px; letter-spacing: .42em;
  color: var(--gold);
  z-index: 2;
}

/* ====================================
   04 — Media
   ==================================== */
.media { display: flex; flex-direction: column; gap: 28px; }
.media__item { display: flex; flex-direction: column; gap: 12px; }
.media__cat {
  display: inline-block; align-self: flex-start;
  padding-bottom: 8px;
  font-family: var(--font-sans); font-weight: 700;
  font-size: 16px; color: var(--navy);
  border-bottom: 2px solid var(--navy);
}
.media__item img { width: 100%; height: auto; border-radius: 8px; }
.media__list {
  font-size: 12px; line-height: 1.8;
  color: var(--text-sub);
  padding: 8px 0 0;
}

/* (Endorsement section removed) */

/* ====================================
   06 — Benefits
   ==================================== */
.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit {
  position: relative; overflow: hidden;
  padding: 16px 18px 14px;
  border-radius: 14px;
  border: 1px solid var(--border-gold-faint);
  background: linear-gradient(180deg, #fff, var(--bg-ice));
  box-shadow: 0 6px 14px rgba(10,31,69,.1);
  display: flex; flex-direction: column; gap: 4px;
  justify-content: center;
}
.benefit__bg {
  position: absolute; right: -8px; bottom: -16px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 100px; letter-spacing: -.02em;
  line-height: 1; color: rgba(31,61,110,.04);
  pointer-events: none;
}
.benefit__bg--gold { color: rgba(201,165,87,.06); }

/* メイン行: アイコン + ラベル + 数字を横一列 */
.benefit__main {
  display: flex; align-items: center;
  gap: 8px;
  position: relative; z-index: 1;
}
.benefit__top {
  display: flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}
.benefit__ic {
  width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  color: var(--gold);
  border: 1px solid rgba(201,165,87,.5);
  box-shadow: 0 3px 8px rgba(10,31,69,.2);
  flex-shrink: 0;
}
.benefit__ic--gold {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold));
  color: #fff;
  border-color: rgba(255,255,255,.7);
  box-shadow: 0 3px 8px rgba(201,165,87,.2);
}
.benefit__ic .icon { width: 16px; height: 16px; }
.benefit__label {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 13px; letter-spacing: .1em;
  color: var(--navy);
}
.benefit__hero {
  font-family: var(--font-serif); font-weight: 900;
  font-size: 28px; line-height: 1;
  color: var(--navy);
  display: inline-flex; align-items: baseline; gap: 1px;
  position: relative; z-index: 1;
  margin-left: auto;
}
.benefit__hero strong { font-weight: 900; font-size: 42px; line-height: 1; }
.benefit__hero span { font-size: 12px; font-weight: 600; color: var(--text-sub); margin-left: 2px; }
.g-navy { background: linear-gradient(180deg, var(--navy), var(--navy-dark)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.g-gold { background: linear-gradient(180deg, var(--gold-pale), var(--gold)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
/* --- Section inline CTA (共通) --- */
.sec-cta {
  display: flex; justify-content: center;
  padding-top: 28px;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
}
.sec-cta-link {
  text-align: center;
  padding-top: 24px;
  max-width: var(--container);
  margin-left: auto; margin-right: auto;
}
.sec-cta-link a {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; letter-spacing: .08em;
  color: var(--navy);
  transition: opacity .2s;
}
.sec-cta-link a:hover { opacity: .7; }

.btn-primary--sm {
  width: 100%; max-width: 560px;
  padding: 14px 0;
  font-size: 16px; letter-spacing: .15em;
}
.btn-line--sm {
  padding: 12px 28px;
  font-size: 15px;
}

.benefits__cta {
  display: flex; justify-content: center;
  padding-top: 28px;
}
.benefit__sub {
  font-size: 11px; line-height: 1.7; color: var(--text-sub);
  position: relative; z-index: 1;
}

/* ====================================
   07 — CEO Message
   ==================================== */
.watermark {
  position: absolute;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 240px; letter-spacing: .13em;
  color: rgba(255,255,255,.04);
  pointer-events: none; z-index: 0;
  left: -30px; top: 60px;
  line-height: 1;
}
.watermark--cta { font-size: 200px; left: 80px; top: 140px; letter-spacing: .12em; color: rgba(255,255,255,.05); }
.message__glow {
  position: absolute; right: -120px; top: -120px;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(201,165,87,.2) 0%, rgba(201,165,87,0) 100%);
  z-index: 0;
}
.section--message .sec-head,
.ceo {
  position: relative; z-index: 1;
}
.ceo {
  display: flex; gap: 28px; align-items: flex-start;
}
.ceo__photo {
  flex-shrink: 0; width: 200px; height: 240px;
  border-radius: 8px; overflow: hidden;
  border: 2px solid var(--gold);
  margin: 0;
}
.ceo__photo img { width: 100%; height: 100%; object-fit: cover; }
.ceo__body { flex: 1; display: flex; flex-direction: column; gap: 18px; }
.ceo__body p {
  font-family: var(--font-sans); font-weight: 400;
  font-size: 14px; line-height: 1.9; color: var(--text-on-dark);
}
.ceo__hl {
  color: var(--gold-light);
  font-weight: 700;
}
.ceo__sig {
  display: flex; flex-direction: column; gap: 8px;
  align-items: flex-end; text-align: right;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.ceo__sig small { font-size: 12px; color: rgba(255,255,255,.7); }
.ceo__sig strong { font-family: var(--font-sans); font-weight: 700; font-size: 18px; color: #fff; }

/* ====================================
   08 — Voices
   ==================================== */
.voices { display: flex; flex-direction: column; gap: 36px; }

.voice {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,.08);
  overflow: hidden;
}
.voice__header {
  display: flex; align-items: flex-start; gap: 24px;
  padding: 32px 32px 28px;
}
.voice__photo-col {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  width: 220px; flex-shrink: 0;
}
.voice__photo {
  width: 220px; height: 280px;
  border-radius: 10px; overflow: hidden;
  border: 2px solid var(--gold);
  box-shadow: 0 6px 14px rgba(10,31,69,.19);
  margin: 0;
}
.voice__photo img { width: 100%; height: 100%; object-fit: cover; }
.voice__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold));
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 9px; letter-spacing: .3em;
  box-shadow: 0 3px 10px rgba(10,31,69,.25);
}
.voice__badge strong { font-size: 12px; font-weight: 900; letter-spacing: .08em; margin-left: 2px; }

.voice__info { flex: 1; display: flex; flex-direction: column; gap: 8px; }
.voice__name-group {
  display: flex; flex-direction: column; gap: 2px;
}
.voice__romaji {
  font-family: var(--font-mono); font-weight: 600;
  font-size: 10px; letter-spacing: .8em;
  color: var(--gold);
}
.voice__name {
  display: flex; align-items: baseline; gap: 6px;
  font-family: var(--font-serif); font-weight: 900;
  font-size: 24px; letter-spacing: .08em;
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.voice__name span {
  font-size: 14px; font-weight: 600;
  background: none; -webkit-text-fill-color: var(--text-sub); color: var(--text-sub);
}
.voice__status {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid rgba(201,165,87,.5);
  border-radius: 6px;
  font-size: 12px; font-weight: 600; color: var(--navy);
}

.voice__stats {
  display: flex;
  padding: 14px 0;
  border-top: 1px solid rgba(201,165,87,.33);
  border-bottom: 1px solid rgba(201,165,87,.33);
}
.voice__stats li {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px;
  text-align: center;
}
.voice__stats li + li { padding-left: 12px; border-left: 1px solid rgba(201,165,87,.2); }
.voice__stats small {
  font-family: var(--font-mono); font-weight: 700;
  font-size: 9px; letter-spacing: .22em; color: var(--text-sub);
}
.voice__stats small.gold { color: var(--gold); }
.voice__stats span {
  display: inline-flex; align-items: flex-end; gap: 2px;
  font-family: var(--font-serif); font-weight: 700;
  color: var(--navy);
  font-size: 12px;
}
.voice__stats span strong { font-size: 28px; font-weight: 900; line-height: 1; }
.voice__stats span strong.g-gold { font-size: 32px; }
.voice__stats .navy { color: var(--navy); }

.voice__quote {
  margin: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, var(--bg-sky-3), #E8F0F8);
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.voice__quote-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 9px; letter-spacing: .3em;
  color: var(--gold);
}
.voice__quote-label .rule { width: 18px; height: 1px; background: var(--gold); display: inline-block; }
.voice__quote-text {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 20px; letter-spacing: .07em; line-height: 1.5;
  color: var(--navy);
}
.voice__quote-sub {
  font-family: var(--font-sans); font-weight: 500;
  font-size: 12px; line-height: 1.8; color: var(--text-sub);
}

.qa__hl {
  background: linear-gradient(transparent 60%, rgba(31, 61, 110, 0.1) 60%);
  font-weight: 700;
  color: var(--navy);
}
.voice__qa { padding: 0 32px 32px; }
.voice__qa-head {
  display: flex; flex-direction: column; gap: 8px;
  padding: 8px 0 16px;
}
.voice__qa-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 10px; letter-spacing: .4em; color: var(--gold);
}
.voice__qa-label .rule { width: 20px; height: 1px; background: var(--gold); display: inline-block; }
.voice__qa h4 {
  font-family: var(--font-serif); font-weight: 800;
  font-size: 22px; letter-spacing: .15em; color: var(--navy);
}
.voice__qa dl > div {
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.voice__qa dl > div:last-child { border-bottom: 0; }
.voice__qa dt {
  font-family: var(--font-sans); font-weight: 700;
  font-size: 14px; line-height: 1.7; color: var(--navy);
  margin-bottom: 8px;
}
.voice__qa dd {
  font-size: 14px; line-height: 1.9; color: var(--text);
  margin: 0;
}

/* ====================================
   09 — Requirements table
   ==================================== */
.reqs {
  width: 100%;
  border-collapse: collapse;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(201,165,87,.5);
  box-shadow: 0 8px 24px rgba(10,31,69,.13);
  background: #fff;
}
.reqs tr { border-bottom: 1px solid rgba(201,165,87,.2); }
.reqs tr:last-child { border-bottom: 0; }
.reqs th {
  width: 160px;
  padding: 14px 16px;
  vertical-align: middle;
  text-align: left;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-dark));
  color: #fff;
  font-family: var(--font-serif); font-weight: 700;
  font-size: 14px; letter-spacing: .15em;
  line-height: 1.7;
}
.reqs td {
  padding: 14px 16px;
  vertical-align: middle;
  font-family: var(--font-sans); font-weight: 500;
  font-size: 14px; line-height: 1.9;
  color: var(--text);
}
.reqs__hl td {
  background: linear-gradient(90deg, #FAF4E3, #fff);
}
.reqs__th-hl {
  background: linear-gradient(135deg, #5A4A1F, #3A2F12) !important;
  border-right: 2px solid var(--gold);
  color: var(--gold) !important;
}
.reqs__rate {
  font-family: var(--font-serif); font-weight: 900;
  font-size: 22px;
  background: linear-gradient(180deg, var(--gold-pale), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-left: 4px;
}
.pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pills span {
  padding: 4px 10px;
  background: var(--bg-ice);
  border-radius: 999px;
  font-size: 12px; font-weight: 600;
  color: var(--navy);
}
.reqs__note { font-size: 13px; line-height: 1.9; color: var(--text-sub); }
.reqs__hl-text {
  background: linear-gradient(transparent 60%, rgba(31, 61, 110, 0.1) 60%);
  font-weight: 700;
  color: var(--navy);
}

/* ====================================
   10 — CTA
   ==================================== */
.cta__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta__glow--l {
  width: 480px; height: 480px;
  left: -120px; top: -160px;
  background: radial-gradient(closest-side, rgba(201,165,87,.15) 0%, rgba(201,165,87,0) 100%);
}
.cta__glow--r {
  width: 520px; height: 520px;
  left: 420px; top: 200px;
  background: radial-gradient(closest-side, rgba(201,165,87,.13) 0%, rgba(201,165,87,0) 100%);
}
.section--cta .sec-head,
.cta-buttons,
.cta__note { position: relative; z-index: 1; }
.cta-buttons {
  display: flex; flex-direction: column; gap: 14px; align-items: center;
  margin-bottom: 18px;
}
.btn-line,
.btn-tel {
  width: 100%; max-width: 560px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 999px;
  font-weight: 700;
  transition: opacity .2s;
}
.btn-line {
  background: #06C755;
  color: #fff;
  font-family: var(--font-sans); font-size: 18px;
  padding: 16px 32px;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 18px rgba(6,199,85,.25);
}
.btn-line:hover { opacity: .9; }
.btn-tel {
  background: linear-gradient(180deg, var(--navy), var(--navy-dark));
  color: #fff;
  font-family: var(--font-mono); font-size: 18px; letter-spacing: .08em;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  box-shadow: 0 6px 18px rgba(10,31,69,.25);
}
.btn-tel .icon { color: var(--gold); }
.cta__note { font-size: 12px; color: rgba(255,255,255,.6); }

/* ====================================
   Footer
   ==================================== */
.footer {
  padding: 28px 24px;
  background: #08183A;
  color: #fff;
  text-align: center;
  display: flex; flex-direction: column; gap: 6px; align-items: center;
}
.footer__brand {
  font-family: var(--font-mono); font-weight: 900;
  font-size: 18px; letter-spacing: .35em;
}
.footer small {
  font-family: var(--font-mono); font-weight: 400;
  font-size: 11px; letter-spacing: .08em;
  color: rgba(255,255,255,.5);
}

/* ====================================
   Responsive — SP (max-width: 600px)
   ==================================== */
@media (max-width: 600px) {

  /* --- Hero: cqi units handle scaling automatically, only non-hero overrides needed --- */
  .sp-only { display: inline; }

  /* --- LINE Gift --- */
  .line-gift { padding: 40px 14px 36px; }
  .line-gift__inner { gap: 20px; }
  .line-gift__pre { font-size: 14px; }
  .line-gift__title strong { font-size: 22px; }
  .line-gift__cards { gap: 10px; }
  .line-gift__card { padding: 18px 8px 14px; }
  .line-gift__card-icon { width: 40px; height: 40px; }
  .line-gift__card-icon .icon { width: 22px; height: 22px; }
  .line-gift__card-title { font-size: 13px; }
  .line-gift__card-sub { font-size: 10px; }
  .line-gift__badge { top: 10px; left: -34px; width: 110px; font-size: 9px; }
  .line-gift__cta { font-size: 13px; padding: 14px 14px; }

  /* --- Section base --- */
  .section { padding: 40px 16px; }
  .section--message { padding: 48px 16px; }
  .section--voices { padding: 48px 16px; }
  .section--cta { padding: 48px 16px; }
  .sec-head { margin-bottom: 24px; gap: 10px; }
  .sec-title { font-size: 20px; letter-spacing: .08em; }
  .sec-title--light { font-size: 20px; }
  .sec-intro { font-size: 12px; }
  .sec-label { font-size: 10px; letter-spacing: .3em; }

  /* --- Video --- */
  .video__play { width: 64px; height: 64px; }
  .video__play .icon { width: 28px; height: 28px; }
  .video__label { font-size: 9px; bottom: 16px; }

  /* --- Media --- */
  .media { gap: 20px; }
  .media__cat { font-size: 14px; }
  .media__list { font-size: 11px; }

  /* --- Benefits --- */
  .benefits { grid-template-columns: 1fr; gap: 10px; }
  .benefit { padding: 14px 16px 12px; }
  .benefit__bg { font-size: 80px; right: -6px; bottom: -12px; }
  .benefit__main { gap: 6px; }
  .benefit__ic { width: 28px; height: 28px; }
  .benefit__ic .icon { width: 14px; height: 14px; }
  .benefit__label { font-size: 12px; }
  .benefit__hero { font-size: 24px; }
  .benefit__hero strong { font-size: 36px; }
  .benefit__sub { font-size: 10px; }

  /* --- CEO Message --- */
  .ceo { flex-direction: column; align-items: center; gap: 20px; }
  .ceo__photo { width: 100%; max-width: 220px; height: 260px; }
  .ceo__body { gap: 14px; }
  .ceo__body p { font-size: 13px; }
  .ceo__sig { align-items: flex-end; text-align: right; }
  .ceo__sig strong { font-size: 16px; }
  .watermark { font-size: 120px; left: -20px; top: 40px; }

  /* --- Voices --- */
  .voices { gap: 28px; }
  .voice__header { flex-direction: column; align-items: stretch; gap: 16px; padding: 24px 16px 20px; }
  .voice__photo-col { width: 100%; max-width: none; align-items: center; gap: 6px; }
  .voice__photo { width: 100%; max-width: 280px; height: 300px; }
  .voice__info { gap: 8px; align-items: stretch; text-align: left; width: 100%; }
  .voice__name-group { align-items: center; }
  .voice__name { font-size: 22px; }
  .voice__status { font-size: 11px; }
  .voice__stats { padding: 10px 0; }
  .voice__stats span strong { font-size: 24px; }
  .voice__stats span strong.g-gold { font-size: 28px; }
  .voice__stats small { font-size: 8px; }
  .voice__quote { padding: 12px 14px; }
  .voice__quote-text { font-size: 16px; }
  .voice__quote-sub { font-size: 11px; }
  .voice__qa { padding: 0 16px 24px; }
  .voice__qa-head { padding: 6px 0 12px; }
  .voice__qa h4 { font-size: 18px; }
  .voice__qa dt { font-size: 13px; }
  .voice__qa dd { font-size: 13px; }

  /* --- Requirements --- */
  .reqs { border-radius: 10px; }
  .reqs th {
    width: 100px; padding: 10px 10px;
    font-size: 11px; letter-spacing: .06em;
  }
  .reqs td { padding: 10px 10px; font-size: 12px; line-height: 1.8; }
  .reqs__rate { font-size: 18px; }
  .pills { gap: 6px; }
  .pills span { padding: 3px 8px; font-size: 10px; }
  .reqs__note { font-size: 11px; }

  /* --- CTA --- */
  .watermark--cta { font-size: 100px; left: 20px; top: 80px; }
  .btn-line { font-size: 16px; padding: 14px 24px; }
  .btn-tel { font-size: 16px; padding: 12px 24px; }
  .cta__note { font-size: 11px; }
}
