/* ============================================
   LiveDash — style.css
   コーポレート仕様 / 白基調 + ローズの締め色
============================================ */

:root {
  --white: #ffffff;
  --gray-bg: #f5f6f8;
  --ink: #1c1d22;
  --ink-soft: #62636c;
  --rose: #d0426b;
  --rose-deep: #ab2f53;
  --peach: #ef8e63;
  --line: #e4e5ea;
  --grad: linear-gradient(115deg, #d0426b 0%, #ef8e63 100%);
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "Montserrat", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  font-size: 15px;
  letter-spacing: 0.02em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-h);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 2px; }

/* ---------- 共通レイアウト ---------- */
.container {
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
}
.container-narrow { max-width: 800px; }

.section { padding: 72px 0; position: relative; }

/* セクション見出し：EN大｜縦罫線｜JP小 */
.sec-ttl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  line-height: 1.2;
}
.sec-ttl .en {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(30px, 7vw, 46px);
  letter-spacing: 0.04em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}
.sec-ttl .ja {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
}
.sec-ttl.light .ja { color: rgba(255,255,255,0.75); }
.sec-ttl.light .en { border-right-color: rgba(255,255,255,0.25); }

.sec-catch {
  margin-top: 26px;
  font-size: clamp(21px, 4.6vw, 30px);
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.section-head { margin-bottom: 44px; }
.section-lead {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 14px;
}

.sp { display: inline; }
.pc { display: none; }
@media (min-width: 768px) {
  .sp { display: none; }
  .pc { display: inline; }
  body { font-size: 16px; }
  .section { padding: 120px 0; }
  .section-head { margin-bottom: 56px; }
  .section-lead { font-size: 15px; }
}

/* ---------- ボタン ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), background 0.3s, color 0.3s;
}
.btn .arrow {
  width: 16px; height: 10px;
  position: relative;
  flex: none;
  transition: transform 0.4s var(--ease-out);
}
.btn .arrow::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 100%; height: 1.5px; background: currentColor;
}
.btn .arrow::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 7px; height: 7px;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
  margin-top: 0.75px;
}
.btn:hover .arrow { transform: translateX(5px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 22px rgba(208, 66, 107, 0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(208, 66, 107, 0.4); }

.btn-ghost {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover { transform: translateY(-3px); background: var(--ink); color: #fff; }

.btn-line { background: #fff; color: var(--ink); box-shadow: 0 8px 22px rgba(0,0,0,0.22); }
.btn-line:hover { transform: translateY(-3px); }
.btn-insta { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-insta:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); }
.btn-ghost-light { border: 1.5px solid rgba(255,255,255,0.6); color: #fff; }
.btn-ghost-light:hover { transform: translateY(-3px); background: #fff; color: var(--ink); }

/* ---------- ローディング ---------- */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.8s var(--ease-out);
}
.loader.is-done { transform: translateY(-100%); }
.loader-inner { text-align: center; }
.loader-logo {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(34px, 9vw, 54px);
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(16px);
  animation: loaderIn 0.8s var(--ease-out) 0.1s forwards;
}
.loader-logo em { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.loader-tag {
  display: block;
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.5em;
  color: rgba(255,255,255,0.5);
  opacity: 0;
  animation: loaderIn 0.8s var(--ease-out) 0.35s forwards;
}
@keyframes loaderIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.4s;
  transform: translateY(-100%);
}
.header.is-ready { transform: translateY(0); }
.header.is-scrolled { box-shadow: 0 4px 20px rgba(28, 29, 34, 0.06); }
.header-inner {
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between;
  padding-inline: 24px;
  max-width: 1280px; margin-inline: auto;
}
.logo {
  font-family: var(--font-en);
  font-size: 24px; font-weight: 500;
  letter-spacing: 0.02em;
  display: flex; align-items: center; gap: 10px;
  line-height: 1;
}
.logo em { font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.logo-sub {
  font-family: var(--font-jp);
  font-size: 10px; font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  padding-left: 10px;
  border-left: 1px solid var(--line);
}

.pc-nav { display: none; }
.header-cta { display: none; }

.menu-btn {
  width: 44px; height: 44px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px;
  background: none; border: none; cursor: pointer;
  z-index: 60; position: relative;
}
.menu-btn span {
  width: 26px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.menu-btn.is-open span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); background: #fff; }
.menu-btn.is-open span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); background: #fff; }

@media (min-width: 1060px) {
  .pc-nav { display: flex; gap: 22px; }
  .pc-nav a {
    font-size: 13px; font-weight: 700; position: relative; padding: 4px 0;
  }
  .pc-nav a::after {
    content: ""; position: absolute; left: 0; bottom: 0;
    width: 100%; height: 2px; background: var(--grad);
    transform: scaleX(0); transform-origin: right;
    transition: transform 0.4s var(--ease-out);
  }
  .pc-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
  .header-cta {
    display: inline-block;
    background: var(--grad); color: #fff;
    font-size: 13px; font-weight: 700;
    padding: 11px 22px; border-radius: 6px;
    transition: opacity 0.3s, transform 0.3s;
  }
  .header-cta:hover { opacity: 0.85; transform: translateY(-2px); }
  .menu-btn { display: none; }
}

/* ---------- モバイルメニュー ---------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--ink);
  display: flex; align-items: center;
  padding: 80px 36px;
  clip-path: circle(0% at calc(100% - 46px) 36px);
  transition: clip-path 0.7s var(--ease-out);
  visibility: hidden;
}
.mobile-menu.is-open { clip-path: circle(150% at calc(100% - 46px) 36px); visibility: visible; }
.mobile-nav { display: flex; flex-direction: column; gap: 2px; width: 100%; }
.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  padding: 9px 0;
  display: flex; align-items: baseline; gap: 14px;
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.mobile-menu.is-open .mobile-nav a { opacity: 1; transform: translateY(0); }
.mobile-nav a .num {
  font-family: var(--font-en); font-size: 11px; font-weight: 500;
  color: var(--peach); letter-spacing: 0.2em;
}
.mobile-nav .mobile-cta {
  margin-top: 26px;
  background: var(--grad);
  border-radius: 6px;
  justify-content: center;
  font-size: 15px;
  padding: 16px;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  display: flex; align-items: center;
  padding: 44px 0 88px;
  overflow: hidden;
  background: var(--white);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-band {
  position: absolute;
  top: -20%; right: -30%;
  width: 75%; height: 150%;
  background: linear-gradient(115deg, rgba(208,66,107,0.06) 0%, rgba(239,142,99,0.09) 100%);
  transform: skewX(-12deg);
  border-left: 1px solid rgba(208, 66, 107, 0.14);
}
.hero-dots {
  position: absolute;
  bottom: 8%; left: -60px;
  width: 300px; height: 220px;
  background-image: radial-gradient(rgba(28,29,34,0.14) 1.5px, transparent 1.5px);
  background-size: 18px 18px;
}
.hero-outline {
  position: absolute;
  bottom: 2%; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-weight: 800;
  font-size: clamp(80px, 16vw, 220px);
  letter-spacing: 0.02em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(28, 29, 34, 0.07);
  white-space: nowrap;
  user-select: none;
}

.hero-inner {
  position: relative;
  width: min(100% - 48px, 1120px);
  margin-inline: auto;
  display: grid;
  gap: 48px;
}

.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.38em;
  color: var(--rose);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ""; width: 36px; height: 2px; background: var(--grad); flex: none;
}

.hero-title {
  font-weight: 900;
  font-size: clamp(36px, 9.5vw, 68px);
  line-height: 1.35;
  letter-spacing: 0.03em;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
body.is-loaded .hero-title .line:nth-child(1) > span { transform: translateY(0); transition-delay: 0.15s; }
body.is-loaded .hero-title .line:nth-child(2) > span { transform: translateY(0); transition-delay: 0.3s; }

.hero-mv, .hero-lead, .hero-note, .hero-actions, .hero-badges {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
body.is-loaded .hero-mv { opacity: 1; transform: none; transition-delay: 0.45s; }
body.is-loaded .hero-lead { opacity: 1; transform: none; transition-delay: 0.55s; }
body.is-loaded .hero-note { opacity: 1; transform: none; transition-delay: 0.65s; }
body.is-loaded .hero-actions { opacity: 1; transform: none; transition-delay: 0.75s; }
body.is-loaded .hero-badges { opacity: 1; transform: none; transition-delay: 0.9s; }

.hero-mv {
  margin-top: 22px;
  display: grid;
  gap: 8px;
}
.hero-mv > div {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.hero-mv dt {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  width: 74px;
  flex: none;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-mv dd {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.hero-lead {
  margin-top: 18px;
  font-size: 14px;
  color: var(--ink-soft);
}

.hero-note {
  margin-top: 16px;
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  border: 1px solid rgba(208, 66, 107, 0.35);
  background: rgba(208, 66, 107, 0.05);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 700;
}
.hero-note strong {
  font-weight: 900;
  color: var(--rose);
  letter-spacing: 0.04em;
}

.hero-actions {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 12px;
}

.hero-badges { margin-top: 34px; }
.badges-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.badges-ttl .en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--rose);
}
.badges-ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.badges-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.badges-list li {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rose);
  border-radius: 8px;
  padding: 12px 10px;
  font-size: 10px;
  line-height: 1.6;
  color: var(--ink-soft);
  text-align: center;
  box-shadow: 0 6px 18px rgba(28, 29, 34, 0.05);
}
.badges-list strong {
  display: block; margin-top: 4px;
  font-size: 13px;
  font-weight: 900;
  color: var(--ink);
}

/* ヒーロー写真 */
.hero-visual {
  position: relative;
  justify-self: center;
  width: min(100% - 16px, 300px);
  opacity: 0; transform: translateY(30px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
body.is-loaded .hero-visual { opacity: 1; transform: none; transition-delay: 0.5s; }

.photo-frame {
  position: relative; z-index: 2;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(160deg, #f7f0f2 0%, #f3e7ea 45%, #f7efe6 100%);
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(28, 29, 34, 0.12);
}
.photo-hero { aspect-ratio: 3 / 4; }
.photo-story { aspect-ratio: 4 / 5; }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 15%; }

.photo-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  color: rgba(171, 47, 83, 0.5);
}
.photo-placeholder svg { width: 34px; height: 34px; opacity: 0.7; }
.photo-placeholder .ph-en {
  font-family: var(--font-en); font-size: 12px; font-weight: 700; letter-spacing: 0.4em;
}
.photo-placeholder .ph-ja { font-size: 11px; letter-spacing: 0.1em; opacity: 0.8; }

.frame-deco {
  position: absolute; z-index: 1;
  inset: 0;
  border-radius: 10px;
  background: var(--grad);
  opacity: 0.85;
  transform: translate(12px, 12px);
}
.frame-deco.deco-left { transform: translate(-12px, 12px); }

.scroll-hint {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-txt {
  font-family: var(--font-en); font-size: 9px; font-weight: 600; letter-spacing: 0.4em; color: var(--ink-soft);
}
.scroll-line {
  width: 1.5px; height: 40px;
  background: linear-gradient(var(--rose), transparent);
  overflow: hidden; position: relative;
}
.scroll-line::after {
  content: ""; position: absolute; inset: 0;
  background: var(--white);
  animation: scrollLine 2s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { transform: translateY(0); }
  60%, 100% { transform: translateY(100%); }
}

@media (min-width: 900px) {
  .hero { padding: 64px 0 96px; }
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; gap: 64px; }
  .hero-visual { width: min(100%, 400px); justify-self: end; }
  .hero-lead { font-size: 15px; }
  .hero-mv dd { font-size: 17px; }
  .hero-note { font-size: 13px; }
  .badges-list { grid-template-columns: repeat(4, 1fr); }
  .badges-list li { font-size: 10.5px; padding: 14px 10px; }
  .badges-list strong { font-size: 14px; }
}

/* スマホ最適化 */
@media (max-width: 480px) {
  .container { width: min(100% - 40px, 1120px); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .badges-list { gap: 8px; }
  .badges-list li { padding: 11px 8px; }
  .stat-card { padding: 22px 16px 20px; }
  .why-card, .support-card, .flow-step { padding: 24px 20px; }
  .cta-block { padding: 32px 22px; }
  .sec-catch { margin-top: 20px; }
}

/* ---------- ニュース ---------- */
.news { background: var(--white); padding: 56px 0; border-top: 1px solid var(--line); }
.news-grid { display: grid; gap: 28px; }
.news .sec-ttl .en { font-size: clamp(26px, 5.5vw, 34px); }
.news-list { border-top: 1px solid var(--line); }
.news-list li { border-bottom: 1px solid var(--line); }
.news-list a {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px;
  padding: 18px 6px;
  transition: background 0.3s;
}
.news-list a:hover { background: var(--gray-bg); }
.news-list time {
  font-family: var(--font-en);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
  flex: none;
}
.news-cat {
  flex: none;
  font-size: 10px; font-weight: 700;
  color: var(--rose);
  border: 1px solid currentColor;
  border-radius: 3px;
  padding: 1px 10px;
  letter-spacing: 0.08em;
}
.news-title {
  font-size: 13px; font-weight: 500;
  width: 100%;
  line-height: 1.7;
}
@media (min-width: 900px) {
  .news { padding: 72px 0; }
  .news-grid { grid-template-columns: 260px 1fr; align-items: start; }
  .news-list a { padding: 22px 10px; }
  .news-title { width: auto; flex: 1; font-size: 14px; }
}

/* ---------- マーキー ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  padding: 16px 0;
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  display: flex; align-items: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.2em;
  white-space: nowrap;
  padding-right: 0.5em;
}
.marquee-track i {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 1.2em;
  font-size: 11px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- LiveDashの強み ---------- */
.why { background: var(--gray-bg); }
.why-grid {
  display: grid;
  gap: 16px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--rose);
  border-radius: 10px;
  padding: 28px 24px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.why-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(28,29,34,0.08); }
.why-tag {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-card h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 12px 0 10px;
}
.why-card p:not(.why-tag) { font-size: 13px; color: var(--ink-soft); }
@media (min-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .why-card { padding: 36px 32px; }
  .why-card p:not(.why-tag) { font-size: 14px; }
}

.record { margin-top: 52px; }
.record-ttl {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.record-ttl .en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--rose);
}
.record-ttl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.record-extra {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 500;
}
.record-extra strong { font-weight: 900; }
@media (min-width: 768px) {
  .record { margin-top: 72px; }
  .record-extra { font-size: 14px; }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 26px 20px 22px;
  position: relative;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.stat-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.6s var(--ease-out);
}
.stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(28,29,34,0.08); }
.stat-card:hover::before { transform: scaleX(1); }

.stat-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  min-height: 2.8em;
}
.stat-value {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(32px, 7.5vw, 50px);
  line-height: 1.1;
  background: linear-gradient(120deg, var(--rose-deep), var(--rose) 55%, var(--peach));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
}
.stat-value .unit {
  font-family: var(--font-jp);
  font-size: 0.45em;
  font-weight: 900;
  margin-left: 2px;
}
.stat-value .unit small { font-size: 0.7em; }
.stat-word {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: 0.68em;
  letter-spacing: 0.02em;
}
.stat-word b { font-family: var(--font-en); font-weight: 700; font-size: 1.35em; }
.stat-word-sm { font-size: 0.5em; letter-spacing: 0; }
.stat-note {
  margin-top: 8px;
  font-size: 11px;
  color: var(--ink-soft);
}
.stats-footnote {
  margin-top: 22px;
  font-size: 11px;
  color: var(--ink-soft);
  opacity: 0.75;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .stat-card { padding: 32px 24px 28px; }
  .stat-label { font-size: 12px; }
}

/* ---------- ストーリー ---------- */
.story { background: var(--white); }
.story-grid { display: grid; gap: 44px; }
.story-text p { margin-bottom: 1.4em; font-size: 14px; }
.story-text strong {
  background: linear-gradient(transparent 68%, rgba(239, 142, 99, 0.4) 68%);
  font-weight: 700;
}
.story-sign {
  font-size: 15px;
  font-weight: 900;
  text-align: right;
  margin-top: 2em;
  line-height: 1.8;
}

.story-more-summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--rose);
  margin-bottom: 0.6em;
  padding: 12px 20px;
  border: 1px solid var(--rose);
  border-radius: 100px;
}
.story-more-summary::-webkit-details-marker { display: none; }
.story-more-summary .txt-close { display: none; }
.story-more[open] .story-more-summary .txt-open { display: none; }
.story-more[open] .story-more-summary .txt-close { display: inline; }
.story-more-icon {
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease-out);
}
.story-more[open] .story-more-icon { transform: rotate(-135deg); }
.story-more-body p:first-child { margin-top: 0; }

.timeline {
  margin-top: 64px;
  position: relative;
  display: grid; gap: 0;
  padding-left: 22px;
}
.timeline::before {
  content: "";
  position: absolute; left: 5px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--peach), var(--rose));
}
.timeline li { position: relative; padding: 0 0 26px 18px; }
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute; left: -22px; top: 8px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--white);
  border: 2.5px solid var(--rose);
}
.timeline li:last-child::before { background: var(--rose); box-shadow: 0 0 0 5px rgba(208,66,107,0.15); }
.tl-label {
  display: block;
  font-weight: 900;
  font-size: 15px;
}
.tl-desc { display: block; font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

@media (min-width: 900px) {
  .story-more-body > p { max-width: 720px; margin-inline: auto; }
  .story-text p { font-size: 15px; }
  .story-more-summary { display: none; }
  .timeline {
    margin-top: 88px;
    grid-template-columns: repeat(5, 1fr);
    padding-left: 0;
  }
  .timeline::before {
    left: 8px; right: 8px; top: 5px; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, var(--peach), var(--rose));
  }
  .timeline li { padding: 26px 14px 0 0; }
  .timeline li::before { left: 0; top: 0; }
  .tl-label { font-size: 14px; }
}

/* ---------- 運営方針（ダークセクション） ---------- */
.policy {
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.policy .sec-catch { color: #fff; }
.policy .section-lead { color: rgba(255,255,255,0.65); }
.policy-grid { display: grid; gap: 16px; }
.policy-card {
  position: relative;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 34px 26px;
  background: rgba(255,255,255,0.03);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s;
}
.policy-card:hover {
  transform: translateY(-6px);
  border-color: rgba(239, 142, 99, 0.5);
  background: rgba(255,255,255,0.06);
}
.policy-num {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 38px;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.policy-card h3 {
  font-size: 21px;
  font-weight: 900;
  margin: 16px 0 12px;
  letter-spacing: 0.06em;
}
.policy-card p { font-size: 13px; color: rgba(255,255,255,0.72); }
.policy-card strong { color: var(--peach); font-weight: 700; }
@media (min-width: 768px) {
  .policy-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .policy-card { padding: 42px 32px; }
  .policy-card p { font-size: 14px; }
}

/* ---------- サポート ---------- */
.support { background: var(--gray-bg); }
.support-grid { display: grid; gap: 14px; }
.support-card {
  background: var(--white);
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--line);
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.support-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(28,29,34,0.09); }
.support-num {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--rose);
  border-bottom: 2px solid;
  border-image: var(--grad) 1;
  padding-bottom: 4px;
}
.support-card h3 {
  font-size: 16px;
  font-weight: 900;
  margin: 14px 0 8px;
  line-height: 1.6;
}
.support-card h3 small { font-size: 0.7em; font-weight: 700; }
.support-card p { font-size: 13px; color: var(--ink-soft); }
.support-card .support-note {
  margin-top: 10px;
  font-size: 10.5px;
  opacity: 0.8;
  line-height: 1.7;
}
.support-summary {
  cursor: pointer;
  position: relative;
  padding-right: 28px;
  list-style: none;
}
.support-summary::-webkit-details-marker { display: none; }
.support-icon {
  position: absolute;
  top: 4px; right: 0;
  width: 18px; height: 18px;
}
.support-icon::before, .support-icon::after {
  content: "";
  position: absolute; top: 50%; left: 50%;
  background: var(--rose);
  transform: translate(-50%, -50%);
}
.support-icon::before { width: 13px; height: 2px; }
.support-icon::after { width: 2px; height: 13px; transition: transform 0.3s var(--ease-out); }
.support-card[open] .support-icon::after { transform: translate(-50%, -50%) rotate(90deg) scale(0); }
.support-body { margin-top: 8px; }
@media (max-width: 767px) {
  .support-card:not([open]) .support-body { display: none; }
}
@media (min-width: 768px) {
  .support-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .support-summary { cursor: default; pointer-events: none; padding-right: 0; }
  .support-icon { display: none; }
}
@media (min-width: 1100px) {
  .support-grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
  .support-card { padding: 28px 22px; }
}

/* ---------- 流れ ---------- */
.flow { background: var(--white); }
.flow-list { display: grid; gap: 18px; }
.flow-step {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 24px 26px;
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
}
.flow-step:hover { transform: translateY(-5px); box-shadow: 0 14px 32px rgba(28,29,34,0.08); }
.flow-num {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.flow-step h3 {
  font-size: 18px;
  font-weight: 900;
  margin: 14px 0 8px;
}
.flow-step p { font-size: 13px; color: var(--ink-soft); }
@media (min-width: 900px) {
  .flow-list { grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .flow-step:not(:last-child)::after {
    content: "";
    position: absolute; top: 42px; right: -16px;
    width: 12px; height: 12px;
    border-top: 2px solid var(--rose); border-right: 2px solid var(--rose);
    transform: rotate(45deg);
  }
}

/* ---------- FAQ ---------- */
.faq { background: var(--gray-bg); }
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.4s;
}
.faq-item[open] { box-shadow: 0 12px 28px rgba(28,29,34,0.07); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.6;
  transition: color 0.3s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--rose); }
.faq-item summary span { display: flex; gap: 12px; }
.faq-item summary span::before {
  content: "Q.";
  font-family: var(--font-en);
  color: var(--rose);
  font-weight: 700;
  flex: none;
}
.faq-icon {
  position: relative; flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
}
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 10px; height: 1.5px;
  background: var(--rose);
  transform: translate(-50%, -50%);
  transition: transform 0.4s var(--ease-out);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-body {
  padding: 0 22px;
  overflow: hidden;
}
.faq-body p {
  font-size: 13px;
  color: var(--ink-soft);
  padding: 4px 0 22px;
  display: flex; gap: 12px;
}
.faq-body p::before {
  content: "A.";
  font-family: var(--font-en);
  color: var(--peach);
  font-weight: 700;
  flex: none;
}
@media (min-width: 768px) {
  .faq-item summary { font-size: 15px; padding: 24px 28px; }
  .faq-body { padding: 0 28px; }
  .faq-body p { font-size: 14px; }
}

/* ---------- 会社概要 ---------- */
.company { background: var(--white); }
.company-table { border-top: 1px solid var(--line); }
.company-table > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 18px 6px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.company-table dt { color: var(--ink-soft); font-weight: 700; }
.company-table dd { font-weight: 500; }
@media (min-width: 768px) {
  .company-table > div { grid-template-columns: 200px 1fr; padding: 22px 10px; }
}

/* ---------- CTA ---------- */
.cta-final {
  position: relative;
  background: var(--ink);
  color: #fff;
  padding: 88px 0;
  overflow: hidden;
}
.cta-final::before {
  content: "";
  position: absolute;
  top: -30%; right: -20%;
  width: 60%; height: 160%;
  background: linear-gradient(115deg, rgba(208,66,107,0.22) 0%, rgba(239,142,99,0.16) 100%);
  transform: skewX(-12deg);
  pointer-events: none;
}
.cta-grid {
  position: relative;
  display: grid; gap: 20px;
}
.cta-block {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  padding: 40px 28px;
  background: rgba(255,255,255,0.03);
}
.cta-liver { border-top: 3px solid var(--rose); }
.cta-biz { border-top: 3px solid rgba(255,255,255,0.4); }
.cta-en {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.34em;
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}
.cta-biz .cta-en { background: none; -webkit-text-fill-color: rgba(255,255,255,0.6); }
.cta-title {
  font-size: clamp(24px, 5.5vw, 34px);
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.cta-lead {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
}
.cta-actions {
  margin-top: 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.cta-actions .btn { width: 100%; }
.cta-note {
  margin-top: 20px;
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}
@media (min-width: 900px) {
  .cta-final { padding: 130px 0; }
  .cta-grid { grid-template-columns: 1.1fr 0.9fr; gap: 28px; align-items: stretch; }
  .cta-block { padding: 52px 44px; }
  .cta-lead { font-size: 14px; }
  .cta-actions { flex-direction: row; }
  .cta-actions .btn { width: auto; min-width: 220px; }
}

/* ---------- フッター ---------- */
.footer {
  background: #15161a;
  color: rgba(255,255,255,0.65);
  padding: 56px 0 28px;
}
.footer-main {
  display: grid; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer .logo { color: #fff; font-size: 24px; }
.footer-desc {
  margin-top: 16px;
  font-size: 12px;
  line-height: 2;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-ttl {
  font-family: var(--font-en);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a { font-size: 12px; transition: color 0.3s; }
.footer-col a:hover { color: var(--peach); }
.footer-bottom {
  padding-top: 24px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 12px 24px;
}
.copyright { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.1em; opacity: 0.55; }
@media (min-width: 900px) {
  .footer-main { grid-template-columns: 1.2fr 1.8fr; gap: 60px; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }
  .footer-bottom { justify-content: flex-end; }
}

/* ---------- スクロールリビール ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
  .reveal, .hero-mv, .hero-lead, .hero-note, .hero-actions, .hero-badges, .hero-visual { opacity: 1; transform: none; }
  .hero-title .line > span { transform: none; }
}
