﻿/* =============================================
   LifeFlow総合研究所 — Global Stylesheet
   ============================================= */

/* ----- CSS Custom Properties ----- */
:root {
  --color-white:      #FFFFFF;
  --color-offwhite:   #FAFAF8;
  --color-cream:      #F0EBE2;
  --color-navy:       #1A1A2E;
  --color-text-main:  #1A1A1A;
  --color-text-sub:   #6B7280;
  --color-text-light: #9CA3AF;
  --color-line:       #06C755;
  --color-border:     #E5E5E5;

  --font-jp:    'Kosugi Maru', sans-serif;
  --font-serif: 'Kosugi Maru', sans-serif;
  --font-round: 'Kosugi Maru', sans-serif;

  --grid-width:    1100px;
  --header-height: 64px;
}

/* ----- Reset & Base ----- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-jp);
  font-weight: 300;
  color: var(--color-text-main);
  background: var(--color-white);
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 16px rgba(0, 0, 0, 0.04);
  z-index: 100;
  transition: background 0.4s ease;
}

.header-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.site-logo a {
  display: flex;
  align-items: center;
  transition: opacity 0.2s ease;
}

.site-logo a:hover {
  opacity: 0.6;
}

.logo-img {
  height: 48px;
  width: auto;
  display: block;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-sub);
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.site-nav a:hover {
  color: var(--color-text-main);
  border-bottom-color: var(--color-text-main);
}

.header-cta {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text-sub);
  padding: 7px 18px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.header-cta:hover {
  color: var(--color-text-main);
  border-color: var(--color-text-sub);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-text-main);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =============================================
   HERO
   ============================================= */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(160deg, #0c1226 0%, #132040 55%, #0a1428 100%);
  padding-top: var(--header-height);
  padding-left: max(40px, 10vw);
  padding-right: max(40px, 10vw);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100,500 C200,320 600,560 900,380 C1100,260 1300,460 1600,320' stroke='%23ffffff' stroke-width='1.5' fill='none' opacity='0.1'/%3E%3Cpath d='M-100,650 C300,500 700,680 1100,500 C1300,400 1450,580 1600,460' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.06'/%3E%3Cpath d='M-100,300 C250,180 550,420 850,250 C1050,140 1350,340 1600,200' stroke='%23ffffff' stroke-width='0.8' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(72px, 10vw, 120px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: rgba(255,255,255,0.95);
}

.hero-philosophy {
  max-width: 640px;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 36px;
}

.hero-statement {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255,255,255,0.92);
  margin-bottom: 40px;
}

.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2.1;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.hero-sig {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.25);
}

.hero-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.18);
}

.hero-year {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.18);
}

/* Hero CTA */
.hero-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-cta-primary {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.14em;
  padding: 15px 40px;
  background: var(--color-line);
  color: #fff;
  transition: background 0.25s ease;
}
.hero-cta-primary:hover { background: #05a247; }
.hero-cta-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.hero-cta-sub:hover { opacity: 0.7; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 48px;
  right: max(40px, 10vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.scroll-indicator::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  flex-shrink: 0;
}

.scroll-indicator span {
  display: block;
  width: 1px;
  height: 52px;
  background: rgba(255,255,255,0.1);
  position: relative;
  overflow: hidden;
}

.scroll-indicator span::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,0.3);
  animation: scrollDown 2.4s ease infinite;
}

@keyframes scrollDown {
  0%   { top: -100%; }
  60%  { top: 100%; }
  100% { top: 100%; }
}

/* =============================================
   ABOUT
   ============================================= */

.about {
  background: var(--color-navy);
  padding: 100px max(40px, 10vw);
}

.about-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
}

.about-body {
  padding-top: 8px;
}

.about-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 24px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* =============================================
   PERSPECTIVES
   ============================================= */

.perspectives {
  background: var(--color-cream);
  padding: 96px max(40px, 10vw);
}

.perspectives-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
}

.perspectives-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(26, 26, 46, 0.38);
  margin-bottom: 48px;
}

.domain-list {
  border-top: 1px solid rgba(26, 26, 46, 0.12);
}

.domain-item {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(26, 26, 46, 0.12);
  transition: opacity 0.2s ease;
}

.domain-item:hover {
  opacity: 0.45;
}

.domain-num {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: rgba(26, 26, 46, 0.32);
  flex: 0 0 28px;
}

.domain-q {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  line-height: 1.4;
}

/* =============================================
   RESEARCH + LINE
   ============================================= */

.research {
  background: var(--color-offwhite);
  padding: 96px max(40px, 10vw);
}

.research-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* 研究成果ブロック */
.research-eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: var(--color-text-light);
  margin-bottom: 28px;
}

.research-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.3;
  color: var(--color-text-main);
  margin-bottom: 28px;
}

.research-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--color-text-sub);
  margin-bottom: 36px;
}

.research-link {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-text-main);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}

.research-link:hover {
  opacity: 0.4;
}

/* LINE ブロック */
.line-block {
  padding-top: 8px;
}

.line-entry-label {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 28px;
}

.line-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--color-text-sub);
  margin-bottom: 40px;
}

.line-button {
  display: inline-block;
  background: transparent;
  color: var(--color-text-main);
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  padding: 16px 32px;
  border: 1px solid var(--color-text-main);
  transition: background 0.25s ease, color 0.25s ease;
}

.line-button:hover {
  background: var(--color-text-main);
  color: var(--color-white);
}

/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: var(--color-navy);
  padding: 80px 0 56px;
}

.footer-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px 64px;
  align-items: start;
}

.footer-logo {
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
}

.footer-tagline {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 16px;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  justify-content: flex-end;
}

.footer-nav a {
  font-family: var(--font-round);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: rgba(255, 255, 255, 0.82);
}

.footer-copy {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 8px;
}
.footer-copy-copy {
  font-family: var(--font-round);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 12px;
}
.footer-copy-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px;
  flex-wrap: wrap;
}
.footer-copy-links a {
  font-family: var(--font-round);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-copy-links a:hover {
  color: rgba(255,255,255,0.6);
}
.footer-copy-sep {
  color: rgba(255,255,255,0.15);
  font-size: 11px;
  user-select: none;
}
@media (max-width: 768px) {
  .footer-copy-links {
    flex-direction: column;
    gap: 8px 0;
  }
  .footer-copy-sep { display: none; }
}

/* =============================================
   RESPONSIVE — タブレット（〜 1024px）
   ============================================= */

@media (max-width: 1024px) {
  .header-inner {
    padding: 0 28px;
    gap: 24px;
  }

  .site-nav ul {
    gap: 20px;
  }

  .footer-inner {
    padding: 0 28px;
    gap: 36px 40px;
  }
}

/* =============================================
   RESPONSIVE — モバイル（〜 768px）
   ============================================= */

/* =============================================
   v2.0 CORPORATE SITE — New Section Styles
   ============================================= */

.section-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 32px;
  display: block;
}

/* Hero additions */
.hero-sub-statement {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}

.hero-definition {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.04em;
  line-height: 2;
  color: rgba(255,255,255,0.35);
  max-width: 480px;
}

/* Section link */
.section-link {
  display: inline-block;
  margin-top: 36px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-text-main);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.section-link:hover { opacity: 0.4; }

/* ─── PROBLEM SECTION (navy) ─── */
.problem-section {
  background: var(--color-navy);
  padding: 96px max(40px, 10vw);
}
.problem-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
}
.problem-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: rgba(255,255,255,0.9);
  margin-bottom: 52px;
}
.problem-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.5;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0;
}
.problem-text .accent {
  color: rgba(255,255,255,0.85);
}

/* ─── INSTITUTE SECTION (white) ─── */
.institute-section {
  background: var(--color-white);
  padding: 96px max(40px, 10vw);
}
.institute-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.institute-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-text-main);
}
.institute-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.institute-body p:last-of-type { margin-bottom: 0; }

/* ─── SYSTEM SECTION (cream) ─── */
.system-section {
  background: var(--color-cream);
  padding: 96px max(40px, 10vw);
}
.system-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
.system-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-text-main);
}
.system-not-fortune {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  margin-bottom: 24px;
}
.system-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--color-text-sub);
  margin-bottom: 14px;
}
.system-body p:last-of-type { margin-bottom: 0; }

/* ─── THREE LAYER SECTION (offwhite) ─── */
.three-layer-section {
  background: var(--color-offwhite);
  padding: 96px max(40px, 10vw);
}
.three-layer-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
}
.three-layer-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 520px;
  margin: 48px auto 40px;
}
.layer-item {
  width: 100%;
  padding: 22px 32px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  gap: 24px;
}
.layer-num {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.25em;
  color: var(--color-text-light);
  flex-shrink: 0;
  width: 24px;
}
.layer-content { flex: 1; }
.layer-name {
  display: block;
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  margin-bottom: 3px;
}
.layer-desc {
  display: block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}
.layer-connector {
  width: 1px;
  height: 32px;
  background: var(--color-border);
  position: relative;
}
.layer-connector::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--color-border);
}
.three-layer-caption {
  max-width: 520px;
  margin: 0 auto;
}
.three-layer-caption p {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.3;
  color: var(--color-text-sub);
  text-align: center;
}

/* ─── NAV CARDS (white) ─── */
.nav-cards-section {
  background: var(--color-white);
  padding: 96px max(40px, 10vw);
}
.nav-cards-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.nav-card {
  background: var(--color-offwhite);
  padding: 56px 48px;
  transition: background 0.25s ease;
}
.nav-card:hover { background: var(--color-cream); }
.nav-card-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 20px;
}
.nav-card-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--color-text-main);
  margin-bottom: 18px;
}
.nav-card-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 2.2;
  color: var(--color-text-sub);
  margin-bottom: 32px;
}
.nav-card-link {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-text-main);
  padding-bottom: 2px;
  transition: opacity 0.2s ease;
}
.nav-card-link:hover { opacity: 0.4; }

/* ─── PAGE HERO (sub-pages) ─── */
.page-hero {
  background: linear-gradient(160deg, #0c1226 0%, #132040 55%, #0a1428 100%);
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) max(40px, 10vw) 80px;
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 500' preserveAspectRatio='xMidYMid slice'%3E%3Cpath d='M-100,320 C200,180 600,400 900,250 C1100,150 1300,350 1600,200' stroke='%23ffffff' stroke-width='1.5' fill='none' opacity='0.12'/%3E%3Cpath d='M-100,420 C300,300 700,460 1100,320 C1300,240 1450,400 1600,300' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.07'/%3E%3Cpath d='M-100,180 C250,100 550,300 850,150 C1050,60 1350,220 1600,100' stroke='%23ffffff' stroke-width='0.8' fill='none' opacity='0.06'/%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  pointer-events: none;
}
.page-hero-inner { width: 100%; max-width: var(--grid-width); margin: 0; position: relative; z-index: 1; }
.page-hero-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
  display: block;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.18;
  color: rgba(255,255,255,0.95);
}
.page-hero-sub {
  font-family: var(--font-round);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 2.2;
  color: rgba(255,255,255,0.52);
  margin-top: 28px;
  max-width: 560px;
}

/* Page hero 2-line title (LifeFlow Report style) */
.page-hero-title-2line {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.page-hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.5vw, 17px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.18em;
  line-height: 1.4;
}

.page-hero-product {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5.5vw, 64px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

/* Page hero CTA */
.page-hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.page-hero-cta-primary {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  background: var(--color-line);
  color: #fff;
  transition: background 0.25s ease;
}
.page-hero-cta-primary:hover { background: #05a247; }
.page-hero-cta-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 1px;
  transition: opacity 0.2s ease;
}
.page-hero-cta-sub:hover { opacity: 0.7; }

/* ─── CONTENT SECTIONS ─── */
.content-section        { padding: 88px max(40px, 10vw); background: var(--color-white); }
.content-section-alt    { padding: 88px max(40px, 10vw); background: var(--color-offwhite); }
.content-section-cream  { padding: 88px max(40px, 10vw); background: var(--color-cream); }
.content-section-navy   { padding: 88px max(40px, 10vw); background: var(--color-navy); }

.content-inner { max-width: var(--grid-width); margin: 0 auto; }
.content-inner.narrow   { max-width: 680px; }
.content-inner.two-col  { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }

.content-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 20px;
  display: block;
}
.content-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.45;
  color: var(--color-text-main);
  margin-bottom: 28px;
}
.content-heading.white { color: rgba(255,255,255,0.9); }
.content-heading-sm {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.6;
  color: var(--color-text-main);
  margin-bottom: 18px;
}
.content-text p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--color-text-sub);
  margin-bottom: 16px;
}
.content-text p:last-child { margin-bottom: 0; }
.content-text.white p { color: rgba(255,255,255,0.5); }

/* Mission / Vision */
.mv-block {
  margin-bottom: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--color-border);
}
.mv-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.mv-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 20px;
  display: block;
}
.mv-text {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: var(--color-text-main);
}

/* Profile */
.profile-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}
.profile-meta { padding-top: 4px; }
.profile-role {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: block;
}
.profile-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: var(--color-text-main);
  margin-bottom: 6px;
}
.profile-name-en {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  display: block;
}
.profile-body p {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.4;
  color: var(--color-text-sub);
  margin-bottom: 18px;
}
.profile-body p:last-child { margin-bottom: 0; }

/* Domain list — 2×2 card grid */
.domain-list-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}
.domain-item-v2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: var(--color-white);
  border: 1px solid rgba(26,26,46,0.1);
}
.domain-item-v2 .domain-num { line-height: 1; }
.domain-item-v2-right {}
.domain-q-v2 {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  line-height: 1.4;
  margin-bottom: 4px;
}
.domain-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--color-text-light);
}

/* System logic blocks */
.logic-block {
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--color-border);
}
.logic-block:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.logic-num {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: var(--color-text-light);
  margin-bottom: 12px;
  display: block;
}

/* Benefits list — card style */
.benefits-list { display: flex; flex-direction: column; gap: 8px; margin-top: 20px; }
.benefits-list li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-sub);
  padding: 16px 20px 16px 48px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  position: relative;
}
.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 20px;
  top: 16px;
  color: var(--color-navy);
  font-size: 12px;
}

/* Flow steps */
.flow-steps { display: flex; flex-direction: column; margin-top: 28px; }
.flow-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
}
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 19px;
  top: 40px;
  width: 1px;
  height: calc(100% - 8px);
  background: var(--color-border);
}
.flow-step-num {
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  flex-shrink: 0;
  background: var(--color-white);
  position: relative;
  z-index: 1;
}
.flow-step-body { padding: 8px 0 40px; flex: 1; }
.flow-step-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
  margin-bottom: 6px;
}
.flow-step-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* CTA block (navy) */
.cta-section {
  background: var(--color-navy);
  padding: 80px max(40px, 10vw);
  text-align: center;
}
.cta-inner { max-width: 600px; margin: 0 auto; }
.cta-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 24px;
  display: block;
}
.cta-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
}
.cta-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.2;
  color: rgba(255,255,255,0.45);
  margin-bottom: 40px;
}
.cta-btn {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  padding: 17px 48px;
  border: 1px solid rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.85);
  background: transparent;
  transition: all 0.25s ease;
  cursor: pointer;
}
.cta-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
  color: #fff;
}
.cta-btn.line-btn {
  background: var(--color-line);
  border-color: var(--color-line);
  color: #fff;
  font-weight: 400;
}
.cta-btn.line-btn:hover { background: #05a247; border-color: #05a247; }

/* Footer director */
.footer-director {
  grid-column: 1 / -1;
  margin-top: 8px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-director-name {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 5px;
}
.footer-director-body {
  font-size: 11px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.18);
}

/* Coming soon */
.coming-soon {
  display: inline-block;
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--color-text-light);
  border: 1px solid var(--color-border);
  padding: 4px 14px;
  margin-bottom: 24px;
}

/* Contact form */
.contact-form { max-width: 640px; margin: 40px auto 0; }
.form-group { margin-bottom: 28px; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--color-text-sub);
  margin-bottom: 10px;
}
.form-label .req { font-size: 10px; color: #b03030; margin-left: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: var(--color-text-main);
  line-height: 1.6;
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--color-text-sub);
}
.form-textarea { resize: vertical; min-height: 160px; }
.form-select-wrap { position: relative; }
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--color-text-light);
  pointer-events: none;
}
.form-submit {
  display: block;
  width: 100%;
  padding: 17px;
  background: var(--color-text-main);
  color: var(--color-white);
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.16em;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}
.form-submit:hover { background: #3a3a3a; }

/* ─── HERO COPY HIERARCHY (TOP page) ─── */
.hero-copy { margin-bottom: 36px; }

.hero-copy-main {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 400;
  letter-spacing: 0.08em;
  line-height: 1.2;
  color: rgba(255,255,255,0.88);
  margin-bottom: 20px;
}

.hero-copy-bridge {
  font-family: var(--font-serif);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: rgba(255,255,255,0.38);
  margin-bottom: 0;
}

.hero-copy-accent {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.3;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0;
}

/* ─── VALUE SECTION (S2: 白) ─── */
.value-section { background: var(--color-white); padding: 96px max(40px, 10vw); }
.value-inner { max-width: var(--grid-width); margin: 0 auto; }
.value-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 18px;
  display: block;
}
.value-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-text-main);
  margin-bottom: 48px;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--color-border);
  border: 1px solid var(--color-border);
}
.value-card {
  background: var(--color-white);
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.value-card-icon {
  width: 48px;
  height: 48px;
  background: var(--color-offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
}
.value-card-desc {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.9;
  color: var(--color-text-sub);
}

/* ─── ANTITHESIS SECTION (S3: 濃紺) ─── */
.antithesis-section {
  background: var(--color-navy);
  padding: 96px max(40px, 10vw);
}
.antithesis-inner { max-width: var(--grid-width); margin: 0 auto; }
.antithesis-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 32px;
  display: block;
}
.antithesis-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin-bottom: 40px;
  max-width: 680px;
}
.antithesis-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.6;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0;
}
.antithesis-link {
  display: inline-block;
  margin-top: 48px;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.antithesis-link:hover {
  color: rgba(255,255,255,0.85);
  border-bottom-color: rgba(255,255,255,0.5);
}

/* ─── PERSPECTIVES SECTION (S4: クリーム) ─── */
.perspectives-section {
  background: var(--color-cream);
  padding: 96px max(40px, 10vw);
}
.perspectives-inner { max-width: var(--grid-width); margin: 0 auto; }
.perspectives-eyebrow {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 18px;
  display: block;
}
.perspectives-heading {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--color-text-main);
  margin-bottom: 48px;
}
.perspectives-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.perspective-card {
  background: var(--color-white);
  padding: 40px 32px;
  border: 1px solid rgba(26,26,46,0.07);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.perspective-num {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: rgba(26,26,46,0.28);
}
.perspective-q {
  font-family: var(--font-serif);
  font-size: clamp(19px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-navy);
  line-height: 1.4;
}
.perspective-sub {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--color-text-light);
}

/* ─── GATEWAY SECTION (S5: 2択入口) ─── */
.gateway-section {
  background: var(--color-offwhite);
  padding: 0;
}
.gateway-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gateway-card {
  background: var(--color-white);
  padding: 80px max(40px, 6vw);
  display: flex;
  flex-direction: column;
}
.gateway-card-dark {
  background: var(--color-navy);
}
.gateway-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: var(--color-text-light);
  margin-bottom: 20px;
  display: block;
}
.gateway-card-dark .gateway-label { color: rgba(255,255,255,0.22); }
.gateway-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 42px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
  color: var(--color-text-main);
  margin-bottom: 16px;
}
.gateway-card-dark .gateway-heading { color: rgba(255,255,255,0.9); }
.gateway-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--color-text-sub);
  margin-bottom: 28px;
}
.gateway-card-dark .gateway-body { color: rgba(255,255,255,0.42); }
.gateway-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 48px;
  flex: 1;
}
.gateway-list li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--color-text-sub);
  padding-left: 20px;
  position: relative;
}
.gateway-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--color-text-light);
}
.gateway-card-dark .gateway-list li { color: rgba(255,255,255,0.42); }
.gateway-card-dark .gateway-list li::before { color: rgba(255,255,255,0.18); }
.gateway-btn {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.14em;
  padding: 14px 36px;
  border: 1px solid var(--color-text-main);
  color: var(--color-text-main);
  align-self: flex-start;
  transition: background 0.25s ease, color 0.25s ease;
}
.gateway-btn:hover {
  background: var(--color-text-main);
  color: var(--color-white);
}
.gateway-btn-light {
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.75);
}
.gateway-btn-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  color: rgba(255,255,255,0.95);
}

/* ─── PHILOSOPHY SECTION (navy dramatic) ─── */
.philosophy-section {
  background: var(--color-navy);
  padding: 96px max(40px, 10vw);
  position: relative;
  overflow: hidden;
}
.philosophy-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600'%3E%3Cpath d='M-100,400 C200,250 600,480 900,320 C1100,210 1300,400 1600,270' stroke='%23ffffff' stroke-width='1' fill='none' opacity='0.05'/%3E%3C/svg%3E");
  background-size: cover;
  pointer-events: none;
}
.philosophy-inner {
  max-width: var(--grid-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.philosophy-label {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.25);
  margin-bottom: 36px;
  display: block;
}
.philosophy-statement {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.5vw, 48px);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  margin-bottom: 48px;
  max-width: 720px;
}
.philosophy-body { max-width: 640px; }
.philosophy-body p {
  font-size: 15px;
  font-weight: 300;
  line-height: 2.5;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
}
.philosophy-body p:last-child { margin-bottom: 0; }
.philosophy-accent { color: rgba(255,255,255,0.85); }

/* ─── RESPONSIVE (new sections) ─── */
@media (max-width: 768px) {
  .institute-inner, .system-inner { grid-template-columns: 1fr; gap: 40px; }
  .content-inner.two-col { gap: 32px; }
  .domain-list-v2 { grid-template-columns: 1fr; }
  .nav-cards-inner { grid-template-columns: 1fr; }
  .value-cards { grid-template-columns: 1fr 1fr; }
  .perspectives-grid { grid-template-columns: 1fr; }
  .gateway-inner { grid-template-columns: 1fr; }
  .value-section, .antithesis-section, .perspectives-section { padding: 64px 28px; }
  .gateway-card { padding: 56px 28px; }
  .profile-block { grid-template-columns: 1fr; gap: 28px; }
  .nav-card { padding: 40px 28px; }
  .three-layer-section, .nav-cards-section,
  .institute-section, .system-section,
  .problem-section,
  .content-section, .content-section-alt,
  .content-section-cream, .content-section-navy,
  .philosophy-section,
  .cta-section { padding: 64px 28px; }
  .page-hero { min-height: 320px; padding: calc(var(--header-height) + 20px) 28px 60px; }
  .page-hero-title { font-size: clamp(38px, 11vw, 60px); }
}

@media (max-width: 768px) {
  :root {
    --header-height: 56px;
  }

  /* Header */
  .header-inner {
    padding: 0 20px;
    gap: 0;
  }

  .site-nav {
    display: none;
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 24px 20px 32px;
  }

  .site-nav.is-open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: none;
    border-top: 1px solid var(--color-border);
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  /* Hero */
  .hero {
    padding-left: 28px;
    padding-right: 28px;
    padding-bottom: 48px;
  }

  .hero-title {
    font-size: clamp(52px, 14vw, 80px);
  }

  .hero-statement {
    font-size: clamp(26px, 7vw, 40px);
    line-height: 1.55;
  }

  .scroll-indicator {
    right: 28px;
    bottom: 40px;
  }

  /* About */
  .about {
    padding: 72px 28px;
  }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Perspectives */
  .perspectives {
    padding: 72px 28px;
  }

  .domain-item {
    gap: 24px;
    padding: 22px 0;
  }

  /* Research */
  .research {
    padding: 72px 28px;
  }

  .research-inner {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .line-block {
    padding-top: 0;
  }

  /* Footer */
  .footer-inner {
    padding: 0 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-nav ul {
    justify-content: flex-start;
    gap: 8px 20px;
  }
}

/* ─── CONTACT LAYOUT ─── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 4px; }
.contact-type-list {
  margin-top: 28px;
  border-top: 1px solid var(--color-border);
}
.contact-type-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}
.contact-type-title {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-text-main);
}
.contact-type-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text-light);
}
.contact-note {
  font-size: 11px;
  font-weight: 300;
  color: var(--color-text-light);
  margin-top: 24px;
  letter-spacing: 0.04em;
}
.form-required {
  font-size: 10px;
  font-weight: 300;
  color: #b03030;
  letter-spacing: 0.06em;
  margin-left: 6px;
}
.contact-form-wrap { padding-top: 4px; }
.contact-form { max-width: none; margin: 0; }

@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}


/* =============================================
   TOP PAGE — NEW DESIGN SYSTEM
   Class prefix: .t-*
   ============================================= */

/* ----- Shared utilities ----- */
.t-inner {
  max-width: 960px;
  margin: 0 auto;
}

.t-label {
  display: block;
  font-family: var(--font-jp);
  font-size: 9.5px;
  font-weight: 300;
  letter-spacing: 0.28em;
  color: rgba(26, 26, 46, 0.32);
  margin-bottom: 20px;
}

.t-label--light {
  color: rgba(255, 255, 255, 0.22);
}

.t-h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 400;
  color: var(--color-navy);
  line-height: 1.55;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
}

.t-h2--center {
  text-align: center;
}

.t-body {
  font-family: var(--font-jp);
  font-size: 14.5px;
  font-weight: 300;
  color: #555568;
  line-height: 2;
  letter-spacing: 0.04em;
  max-width: 580px;
}

.t-body + .t-body {
  margin-top: 14px;
}

.t-body--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 56px;
}

.t-link-text {
  display: inline-block;
  margin-top: 40px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 300;
  color: var(--color-navy);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(26, 26, 46, 0.28);
  padding-bottom: 3px;
  transition: opacity 0.2s;
}

.t-link-text:hover { opacity: 0.55; }

.t-br-pc { display: inline; }


/* ----- S1: HERO ----- */
.t-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(160deg, #0c1226 0%, #122040 55%, #09121e 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.t-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.t-hero-bg-svg {
  width: 100%;
  height: 100%;
  animation: tHeroDrift 28s ease-in-out infinite;
}

@keyframes tHeroDrift {
  0%   { transform: translate(0, 0); }
  50%  { transform: translate(-16px, 8px); }
  100% { transform: translate(0, 0); }
}

.t-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 128px max(52px, 10vw) 80px;
  animation: tFadeUp 1.4s ease-out both;
}

@keyframes tFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.t-hero-eyebrow {
  font-family: var(--font-round);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.22);
  margin-bottom: 44px;
  display: block;
}

.t-hero-copy {
  margin-bottom: 32px;
}

.t-hero-lead {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 6px;
}

.t-hero-accent {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
}

.t-hero-rule {
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  margin: 32px 0;
}

.t-hero-service {
  font-family: var(--font-round);
  font-size: 13.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 28px;
}

.t-hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.5vw, 17px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.58);
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}

.t-hero-def {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: 52px;
}

.t-hero-cta {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.t-hero-cta-note {
  width: 100%;
  font-family: var(--font-round);
  font-size: 11.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.48);
  letter-spacing: 0.08em;
  margin-bottom: -12px;
}

.t-btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-round);
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.t-btn-line:hover { opacity: 0.82; }

.t-btn-ghost {
  font-family: var(--font-round);
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.t-btn-ghost:hover { color: rgba(255, 255, 255, 0.65); }

.t-hero-foot {
  position: absolute;
  bottom: 44px;
  right: max(48px, 6vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.t-hero-scroll-label {
  font-family: var(--font-jp);
  font-size: 8.5px;
  letter-spacing: 0.32em;
  color: rgba(255, 255, 255, 0.18);
  writing-mode: vertical-rl;
}

.t-hero-scroll-line {
  display: block;
  width: 1px;
  height: 52px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0));
}


/* ----- S2: CONCEPT ----- */
.t-concept {
  background: #ffffff;
  padding: 100px max(52px, 10vw);
}

.t-concept-head {
  margin-bottom: 60px;
}

.t-concept-visual {
  margin: 0 0 64px;
  padding: 40px 0;
  border-top: 1px solid rgba(26, 26, 46, 0.07);
  border-bottom: 1px solid rgba(26, 26, 46, 0.07);
}

.t-concept-svg {
  width: 100%;
  max-width: 720px;
  display: block;
  margin: 0 auto 16px;
}

.t-concept-svg-caption {
  text-align: center;
  font-family: var(--font-jp);
  font-size: 11.5px;
  font-weight: 300;
  color: rgba(26, 26, 46, 0.3);
  letter-spacing: 0.1em;
}

.t-process {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.t-process-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.t-process-item--result .t-process-title {
  font-weight: 500;
  color: var(--color-navy);
}

.t-process-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.t-process-icon svg {
  width: 48px;
  height: 48px;
}

.t-process-arrow {
  display: flex;
  align-items: center;
  padding-top: 18px;
  flex-shrink: 0;
}

.t-process-arrow svg {
  width: 36px;
  height: 14px;
}

.t-process-title {
  font-family: var(--font-serif);
  font-size: 14.5px;
  color: #2a2a3a;
  line-height: 1.55;
  margin-bottom: 8px;
  letter-spacing: 0.04em;
}

.t-process-sub {
  font-family: var(--font-jp);
  font-size: 11.5px;
  color: rgba(26, 26, 46, 0.38);
  letter-spacing: 0.06em;
  line-height: 1.6;
}


/* ----- S3: PERSPECTIVES ----- */
.t-perspectives {
  background: var(--color-cream);
  padding: 100px max(52px, 10vw) 0;
}

.t-perspectives .t-inner {
  text-align: center;
}

.t-persp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 0;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}

.t-persp-card {
  background: var(--color-cream);
  padding: 48px 24px 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid rgba(26, 26, 46, 0.08);
  transition: background 0.25s;
}

.t-persp-card:last-child {
  border-right: none;
}

.t-persp-card:hover {
  background: rgba(255, 255, 255, 0.7);
}

.t-persp-visual {
  width: 72px;
  height: 72px;
  margin-bottom: 24px;
}

.t-persp-visual svg {
  width: 72px;
  height: 72px;
}

.t-persp-num {
  font-family: var(--font-jp);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: rgba(26, 26, 46, 0.28);
  margin-bottom: 12px;
  display: block;
}

.t-persp-q {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-navy);
  line-height: 1.65;
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.t-persp-desc {
  font-family: var(--font-jp);
  font-size: 11px;
  color: rgba(26, 26, 46, 0.4);
  letter-spacing: 0.1em;
}


/* ----- S4: ANTITHESIS ----- */
.t-anti {
  background: #0c1226;
  padding: 100px max(52px, 10vw);
}

.t-anti-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.38;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
}

.t-anti-sub {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.35);
  line-height: 2;
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  max-width: 500px;
}

.t-anti-compare {
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  gap: 0;
  border: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 48px;
  max-width: 820px;
}

.t-anti-col {
  padding: 40px 36px;
}

.t-anti-col--no {
  opacity: 0.38;
}

.t-anti-col--yes {
  background: rgba(255, 255, 255, 0.03);
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.t-anti-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.t-anti-divider span {
  font-family: var(--font-jp);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.18);
}

.t-anti-col-label {
  font-family: var(--font-jp);
  font-size: 9.5px;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  display: block;
  font-weight: 300;
}

.t-anti-col--no .t-anti-col-label  { color: rgba(255, 255, 255, 0.3); }
.t-anti-col--yes .t-anti-col-label { color: rgba(255, 255, 255, 0.55); }

.t-anti-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.t-anti-list li {
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  padding: 11px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  letter-spacing: 0.04em;
}

.t-anti-list li:last-child { border-bottom: none; }

.t-anti-col--no .t-anti-list li {
  color: rgba(255, 255, 255, 0.38);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 255, 255, 0.12);
}

.t-anti-col--yes .t-anti-list li {
  color: rgba(255, 255, 255, 0.82);
}

.t-anti-link {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 12.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding-bottom: 3px;
  transition: color 0.2s;
}

.t-anti-link:hover { color: rgba(255, 255, 255, 0.65); }


/* ----- S5: GATEWAY ----- */
.t-gateway {
  background: var(--color-offwhite);
}

.t-gateway-title-wrap {
  text-align: center;
  padding: 80px max(52px, 10vw) 52px;
}

.t-gateway-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--color-navy);
  letter-spacing: 0.06em;
}

.t-gateway-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.t-gateway-card {
  padding: 60px max(48px, 6vw) 72px;
}

.t-gateway-card--user {
  background: #ffffff;
  border-top: 1px solid rgba(26, 26, 46, 0.07);
}

.t-gateway-card--partner {
  background: #0c1226;
}

.t-gateway-label {
  display: block;
  font-family: var(--font-jp);
  font-size: 9px;
  letter-spacing: 0.28em;
  margin-bottom: 20px;
  font-weight: 300;
}

.t-gateway-card--user    .t-gateway-label { color: rgba(26, 26, 46, 0.3); }
.t-gateway-card--partner .t-gateway-label { color: rgba(255, 255, 255, 0.25); }

.t-gateway-h3 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}

.t-gateway-card--user    .t-gateway-h3 { color: var(--color-navy); }
.t-gateway-card--partner .t-gateway-h3 { color: rgba(255, 255, 255, 0.88); }

/* =============================================
   FOR USERS PAGE
   ============================================= */

/* 共通 — セクション縦padding + 内側コンテナ中央寄せ */
.fu-thought, .fu-theory, .fu-flow,
.fu-when, .fu-sample, .fu-contents, .fu-cta {
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 96px 0;
}
.fu-thought-inner, .fu-theory-inner, .fu-flow-inner,
.fu-when-inner, .fu-contents-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.fu-sample-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.fu-cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 共通 — 見出し */
.fu-thought-heading, .fu-theory-heading, .fu-flow-heading,
.fu-when-heading {
  font-family: var(--font-round);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* 共通 — 本文 */
.fu-thought-body p, .fu-theory-body p, .fu-flow-body p {
  font-family: var(--font-round);
  font-size: 18px;
  color: #5a5a70;
  line-height: 2.3;
  margin-bottom: 24px;
}
.fu-thought-body p:last-child,
.fu-flow-body p:last-child { margin-bottom: 0; }
.fu-theory-body p:last-child { margin-bottom: 52px; }

/* 2. 思想ブロック */
.fu-thought { background: #fff; }

/* 3. 理論ブロック */
.fu-theory { background: var(--color-offwhite); }
.fu-theory-inner { max-width: 940px; }

/* --- タイプカード 3×2 --- */
.fu-type-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fu-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 32px 16px 28px;
  background: #fff;
  border-radius: 4px;
  border: 1px solid rgba(26,26,46,0.08);
  transition: border-color 0.2s;
}
.fu-type-card:hover { border-color: var(--type-color); }
.fu-type-kanji {
  font-family: var(--font-round);
  font-size: 42px;
  font-weight: 400;
  color: var(--type-color);
  line-height: 1;
}
.fu-type-name {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(26,26,46,0.38);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

/* 4. フロー説明ブロック */
.fu-flow { background: #fff; }

/* 5. このような時に */
.fu-when { background: var(--color-offwhite); }
.fu-when-lead {
  font-family: var(--font-round);
  font-size: 18px;
  color: #5a5a70;
  line-height: 2.3;
  margin-bottom: 48px;
}
.fu-when-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fu-when-list li {
  font-family: var(--font-round);
  font-size: 17.5px;
  color: #5a5a70;
  line-height: 1.9;
  padding-left: 24px;
  position: relative;
}
.fu-when-list li::before {
  content: '・';
  position: absolute;
  left: 0;
  color: rgba(26,26,46,0.28);
}

/* 6. レポートサンプル */
.fu-sample { background: #fff; }
.fu-sample-heading {
  font-family: var(--font-round);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.7;
  margin-bottom: 52px;
}
/* レポートページ構成 — カバー上段 + 中面4枚2列下段 */
.fu-pages-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

/* 上段：表紙（大きめ・中央） */
.fu-page-cover {
  margin: 0;
  width: 100%;
  max-width: 460px;
}
.fu-page-cover img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 8px 36px rgba(26,26,46,0.12);
  border: 1px solid rgba(200,195,188,0.38);
}
.fu-page-cover figcaption {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(26,26,46,0.35);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.08em;
}

/* 下段：中面4枚 2列 */
.fu-pages-sub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 48px;
  width: 100%;
  max-width: 880px;
}
.fu-page-item { margin: 0; }
.fu-page-item img {
  width: 100%;
  display: block;
  border-radius: 4px;
  box-shadow: 0 4px 20px rgba(26,26,46,0.09);
  border: 1px solid rgba(200,195,188,0.4);
}
.fu-page-item figcaption {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(26,26,46,0.35);
  text-align: center;
  margin-top: 14px;
  letter-spacing: 0.08em;
}

/* 7. レポートで見えること */
.fu-contents {
  background: var(--color-offwhite);
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 80px 0;
}
.fu-contents-heading {
  font-family: var(--font-round);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 20px;
}
.fu-contents-lead {
  font-family: var(--font-round);
  font-size: 17.5px;
  color: #5a5a70;
  line-height: 2.2;
  margin-bottom: 24px;
}
.fu-contents-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fu-contents-list li {
  font-family: var(--font-round);
  font-size: 17px;
  color: #5a5a70;
  line-height: 1.75;
  padding-left: 20px;
  position: relative;
}
.fu-contents-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 1px;
  background: rgba(26,26,46,0.22);
}
/* fu-contents-note は注釈ではなく本文 */
.fu-contents-note {
  font-family: var(--font-round);
  font-size: 17.5px;
  color: #5a5a70;
  line-height: 2.3;
  padding-top: 8px;
  margin-top: 8px;
  border-top: 1px solid rgba(26,26,46,0.06);
}

/* ---- ページ数表記 ---- */
.fu-sample-spec {
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(26,26,46,0.38);
  letter-spacing: 0.1em;
  margin-bottom: 52px;
}

/* 新7. レポートを受け取ると */
.fu-receive {
  background: #fff;
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 96px 0;
}
.fu-receive-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.fu-receive-heading {
  font-family: var(--font-round);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.7;
  margin-bottom: 40px;
}
.fu-receive-body p {
  font-family: var(--font-round);
  font-size: 18px;
  color: #5a5a70;
  line-height: 2.3;
  margin-bottom: 18px;
}
.fu-receive-body p:last-child { margin-bottom: 0; }

/* 新9. 自分を責める前に */
/* 比較セクション */
.fu-compare {
  background: var(--color-offwhite);
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 88px 0;
}
.fu-compare-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.fu-compare-heading {
  font-family: var(--font-round);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.7;
  margin-bottom: 32px;
}
.fu-compare-cols {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}
.fu-compare-col {
  padding: 24px 0;
}
.fu-compare-col--free {
  padding-right: 24px;
  border-right: 1px solid rgba(26,26,46,0.1);
}
.fu-compare-col--report {}
.fu-compare-col-tag {
  font-family: var(--font-round);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: rgba(26,26,46,0.35);
  margin-bottom: 8px;
}
.fu-compare-col-title {
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 500;
  color: rgba(26,26,46,0.55);
  margin-bottom: 16px;
}
.fu-compare-col--report .fu-compare-col-title {
  color: var(--color-navy);
}
.fu-compare-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fu-compare-list li {
  font-family: var(--font-round);
  font-size: 14px;
  color: rgba(26,26,46,0.7);
  line-height: 1.7;
  padding-left: 14px;
  position: relative;
}
.fu-compare-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(26,26,46,0.2);
}
.fu-compare-col--report .fu-compare-list li { color: var(--color-navy); font-size: 15px; }
.fu-compare-col--report .fu-compare-list li::before { background: var(--color-navy); opacity: 0.35; }

/* TOPページ レポートノート */
.t-hero-report-note {
  font-family: var(--font-round);
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  margin-top: 18px;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
.t-hero-report-link {
  color: rgba(255,255,255,0.42);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.t-hero-report-link:hover { color: rgba(255,255,255,0.65); }

/* fu-cta 2軸ボタン */
.fu-cta-btns {
  width: 100%;
  text-align: center;
}
.fu-cta-btn--primary {
  display: inline-block;
  padding: 18px 56px;
  background: #fff;
  color: var(--color-navy);
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fu-cta-btn--primary:hover { opacity: 0.88; }
.fu-cta-sub {
  margin-top: 32px;
  text-align: center;
}
.fu-cta-sub-text {
  font-family: var(--font-round);
  font-size: 12px;
  color: rgba(255,255,255,0.32);
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.fu-cta-btn--line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.45);
  font-family: var(--font-round);
  font-size: 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s;
}
.fu-cta-btn--line:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.65); }

/* TOP ページ 公式レポートボタン */
.t-btn-report {
  display: inline-block;
  padding: 15px 32px;
  background: rgba(255,255,255,0.92);
  color: var(--color-navy);
  font-family: var(--font-round);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.t-btn-report:hover { background: #fff; }

.fu-before-cta {
  background: var(--color-offwhite);
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 96px 0;
}
.fu-before-cta-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 max(40px, 5vw);
}
.fu-before-cta-heading {
  font-family: var(--font-round);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.7;
  margin-bottom: 40px;
}
.fu-before-cta-body p {
  font-family: var(--font-round);
  font-size: 18px;
  color: #5a5a70;
  line-height: 2.3;
  margin-bottom: 24px;
}
.fu-before-cta-body p:last-child { margin-bottom: 0; }

/* 10. CTA */
.fu-cta { background: var(--color-navy); border-top: none; }
.fu-cta-heading {
  font-family: var(--font-round);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 32px;
  width: 100%;
  text-align: center;
}
.fu-cta-body {
  font-family: var(--font-round);
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 2.3;
  margin-bottom: 44px;
  width: 100%;
  text-align: center;
}
.fu-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-round);
  font-size: 14px;
  background: #06C755;
  color: #fff;
  padding: 15px 32px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fu-cta-btn:hover { opacity: 0.85; }

/* 新7. レポート概要カード */
.fu-overview {
  background: var(--color-offwhite);
  border-top: 1px solid rgba(26,26,46,0.08);
  padding: 96px 0;
}
.fu-overview-inner {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px;
}
.fu-overview-heading {
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 400;
  color: rgba(26,26,46,0.4);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}
.fu-overview-card {
  background: #fff;
  border: 1px solid rgba(26,26,46,0.1);
  border-radius: 6px;
  padding: 36px 40px;
  text-align: center;
}
.fu-overview-product-name {
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(26,26,46,0.08);
  text-align: center;
}
.fu-overview-dl {
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.fu-overview-dl-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,26,46,0.07);
}
.fu-overview-dl-item:last-child { border-bottom: none; }
.fu-overview-dl dt {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(26,26,46,0.4);
  letter-spacing: 0.1em;
}
.fu-overview-dl dd {
  font-family: var(--font-round);
  font-size: 15px;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.5;
}
.fu-spec-price {
  font-family: var(--font-round);
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--color-navy);
}
.fu-overview-apply {
  padding-top: 20px;
  border-top: 1px solid rgba(26,26,46,0.07);
  text-align: center;
}
.fu-overview-payment-note {
  font-family: var(--font-round);
  font-size: 12px;
  color: rgba(26,26,46,0.38);
  margin-top: 10px;
  line-height: 1.7;
  text-align: center;
}
.fu-overview-apply-btn {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 16px 24px;
  background: var(--color-navy);
  color: #fff;
  font-family: var(--font-round);
  font-size: 14px;
  letter-spacing: 0.1em;
  border-radius: 2px;
  text-align: center;
  white-space: nowrap;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fu-overview-apply-btn:hover { opacity: 0.82; }
.fu-overview-free {
  margin-top: 28px;
  padding: 24px 28px;
  background: rgba(26,26,46,0.03);
  border: 1px solid rgba(26,26,46,0.08);
  border-radius: 4px;
  text-align: center;
}
.fu-overview-free-heading {
  font-family: var(--font-round);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 8px;
}
.fu-overview-free-body {
  font-family: var(--font-round);
  font-size: 13.5px;
  color: rgba(26,26,46,0.55);
  line-height: 1.9;
  margin-bottom: 14px;
}
.fu-overview-free-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-round);
  font-size: 13px;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.fu-overview-free-btn:hover { opacity: 0.82; }

/* レスポンシブ */
@media (max-width: 768px) {
  .fu-thought, .fu-theory, .fu-flow,
  .fu-when, .fu-sample, .fu-overview, .fu-receive,
  .fu-contents, .fu-compare, .fu-before-cta, .fu-cta {
    padding: 64px 0;
  }
  .fu-thought-inner, .fu-theory-inner, .fu-flow-inner,
  .fu-when-inner, .fu-sample-inner, .fu-overview-inner, .fu-receive-inner,
  .fu-contents-inner, .fu-compare-inner, .fu-before-cta-inner, .fu-cta-inner {
    padding: 0 24px;
  }
  .fu-type-cards { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fu-type-kanji { font-size: 34px; }
  .fu-pages-layout { gap: 56px; }
  .fu-pages-sub { grid-template-columns: 1fr; max-width: 460px; gap: 40px; }
  .fu-page-cover { max-width: 360px; }
  .fu-overview-inner { padding: 0 16px; }
  .fu-overview-card { padding: 28px 24px; }
  .fu-overview-specs { grid-template-columns: 1fr; }
  .fu-spec-item:nth-child(even) { border-left: none; padding-left: 0; }
  .fu-spec-item:nth-child(odd) { padding-right: 0; }
  .fu-overview-apply-btn { width: 100%; text-align: center; box-sizing: border-box; white-space: nowrap; }
  .fu-compare-cols { grid-template-columns: 1fr; }
  .fu-compare-col--free { border-right: none; border-bottom: 1px solid rgba(26,26,46,0.1); }
  .fu-cta-btn--primary { width: 100%; text-align: center; box-sizing: border-box; padding: 16px 32px; }
  .fu-cta-sub { width: 100%; }
  .fu-cta-btn--line { width: 100%; justify-content: center; }
  .t-btn-report { width: 100%; text-align: center; box-sizing: border-box; }
  .fu-cta-body { text-align: center; }
}

/* =============================================
   REPORT PAGE (rp-*)
   最低フォントサイズ: 本文17px / 補足15px
   アクセントカラー: #C8901A (ウォームアンバー)
   ============================================= */

/* ─── HERO ─── */
.rp-hero {
  background: linear-gradient(160deg, #0c1226 0%, #122040 55%, #09121e 100%);
  min-height: 560px;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  box-sizing: border-box;
}
.rp-hero-content {
  width: 100%;
  padding: 44px max(52px, 10vw) 68px;
}
.rp-hero-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.22);
  margin-bottom: 44px;
  display: block;
}
.rp-hero-lead {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.08;
  display: block;
  margin-bottom: 0;
}
.rp-hero-accent {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 7vw, 86px);
  font-weight: 300;
  color: rgba(255,255,255,0.92);
  line-height: 1.08;
  letter-spacing: 0.12em;
  margin: 0;
}
.rp-hero-rule {
  width: 36px;
  height: 1px;
  background: rgba(255,255,255,0.18);
  margin: 32px 0;
}
.rp-hero-sub {
  font-family: var(--font-round);
  font-size: 13.5px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin-bottom: 20px;
}
.rp-hero-quote {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
  line-height: 1.8;
}

/* ─── OPEN: こんな場面（フック） ─── */
.rp-open { background: var(--color-navy); }
.rp-open-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 140px 40px 100px;
}
.rp-open-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 48px;
  display: block;
}
.rp-open-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.5vw, 60px);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 56px;
}
.rp-open-scenes {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}
.rp-open-scenes li {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  padding: 24px 0 24px 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.rp-open-scenes li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.rp-open-scenes li::before {
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: #C8901A;
  font-weight: 500;
}
.rp-open-scenes li:nth-child(1)::before { content: "①"; }
.rp-open-scenes li:nth-child(2)::before { content: "②"; }
.rp-open-scenes li:nth-child(3)::before { content: "③"; }
.rp-open-scenes li:nth-child(4)::before { content: "④"; }
.rp-open-answer {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}

/* ─── FEELINGS ─── */
.rp-feelings { background: var(--color-cream); }
.rp-feel { border-top: 1px solid rgba(26,26,46,0.09); }
.rp-feel:first-child { border-top: none; }
.rp-feel--alt { background: rgba(255,255,255,0.45); }
.rp-feel-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 40px;
}
.rp-feel-phrase {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 28px;
  padding-left: 20px;
  border-left: 4px solid #C8901A;
}
.rp-feel-body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.7vw, 19px);
  color: var(--color-text-main);
  line-height: 2;
  margin-bottom: 32px;
  max-width: 580px;
}
.rp-feel-examples {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 0;
  border-left: 3px solid rgba(26,26,46,0.18);
}
.rp-feel-examples li {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 18px);
  color: var(--color-text-main);
  line-height: 1.9;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,26,46,0.07);
}
.rp-feel-examples li:last-child { border-bottom: none; }

/* 今年の流れ／今月の流れ カード */
.rp-feel-nowpos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 640px;
  margin: 44px auto 0;
  background: rgba(26,26,46,0.12);
}
.rp-feel-pos {
  background: var(--color-navy);
  padding: 52px 32px;
  text-align: center;
}
.rp-feel-pos-meaning {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: #fff;
  line-height: 1.55;
  margin-bottom: 18px;
  display: block;
}
.rp-feel-pos-meta {
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  line-height: 1.5;
}

/* ─── WHY ─── */
.rp-why { background: var(--color-navy); }
.rp-why-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 88px 40px;
}
.rp-why-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 20px;
}
.rp-why-intro {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 56px;
}
.rp-why-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 60px;
}
.rp-why-col {
  background: rgba(255,255,255,0.03);
  padding: 36px 32px;
}
.rp-why-col-tag {
  font-family: var(--font-serif);
  font-size: 17px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
  display: block;
}
.rp-why-col-name {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 500;
  color: #fff;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}
.rp-why-col-body {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}
.rp-why-conclusion {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  line-height: 1.85;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 52px;
}

/* ─── 6 TYPES (保持) ─── */
.rp-types { background: var(--color-white); }
.rp-types-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 88px 40px;
}
.rp-types-eyebrow {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-navy);
  margin-bottom: 20px;
  display: block;
}
.rp-types-lead {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--color-text-main);
  line-height: 2;
  margin-bottom: 60px;
  max-width: 580px;
}
.rp-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,26,46,0.07);
}
.rp-type-card {
  background: var(--color-white);
  border-top: 3px solid var(--tc);
  padding: 36px 28px;
}
.rp-type-kanji {
  font-family: var(--font-serif);
  font-size: 44px;
  font-weight: 500;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}
.rp-type-flow {
  font-family: var(--font-round);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(26,26,46,0.42);
  margin-bottom: 18px;
  display: block;
}
.rp-type-desc {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--color-text-main);
  line-height: 1.9;
}

/* ─── CONTENTS ─── */
.rp-contents { background: var(--color-cream); }
.rp-contents-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 88px 40px;
}
.rp-contents-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.rp-contents-note {
  font-family: var(--font-serif);
  font-size: 18px;
  color: rgba(26,26,46,0.5);
  margin-bottom: 40px;
}
.rp-clist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.rp-citem {
  background: #fff;
  border-top: 4px solid #C8901A;
  padding: 36px 28px;
}
.rp-citem--wide { grid-column: 1 / -1; }
.rp-citem-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: rgba(200,144,26,0.45);
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.rp-citem-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 14px;
  display: block;
}
.rp-citem-body {
  font-family: var(--font-round);
  font-size: 16px;
  color: rgba(26,26,46,0.65);
  line-height: 1.9;
}

/* ─── PREVIEW: 実物レポートの魅力 ─── */
.rp-preview { background: var(--color-navy); }
.rp-preview-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
}
.rp-preview-eyebrow {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 36px;
  display: block;
}
.rp-preview-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 28px;
}
.rp-preview-body {
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 20px);
  color: rgba(255,255,255,0.55);
  line-height: 2;
  margin: 0 auto 52px;
  max-width: 560px;
}
.rp-preview-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 56px;
  text-align: left;
}
.rp-preview-fig { margin: 0; }
.rp-preview-fig img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.06);
}
.rp-preview-fig figcaption {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(255,255,255,0.30);
  text-align: center;
  margin-top: 10px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
.rp-preview-specs {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rp-preview-spec {
  padding: 36px 52px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.rp-preview-spec:last-child { border-right: none; }
.rp-preview-spec-num {
  font-family: var(--font-round);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  color: #fff;
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.rp-preview-spec-label {
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.1em;
}
.rp-preview-quote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  color: rgba(255,255,255,0.68);
  line-height: 1.9;
  padding: 0 20px;
}
.rp-preview-quote-attr {
  display: block;
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin-top: 16px;
  letter-spacing: 0.1em;
}

/* ─── STEPS: 申し込みの流れ ─── */
.rp-steps { background: var(--color-offwhite); }
.rp-steps-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 40px;
  text-align: center;
}
.rp-steps-heading {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 52px;
}
.rp-steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 36px;
}
.rp-step {
  flex: 1;
  max-width: 200px;
  padding: 32px 20px;
  background: #fff;
  border-top: 3px solid var(--color-navy);
}
.rp-step-arrow {
  display: flex;
  align-items: center;
  padding: 44px 10px 0;
  color: rgba(26,26,46,0.18);
  font-size: 16px;
  flex-shrink: 0;
}
.rp-step-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: #C8901A;
  display: block;
  margin-bottom: 12px;
}
.rp-step-title {
  font-family: var(--font-serif);
  font-size: clamp(14px, 1.7vw, 16px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 10px;
}
.rp-step-body {
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(26,26,46,0.48);
  line-height: 1.8;
}
.rp-steps-note {
  font-family: var(--font-round);
  font-size: 13px;
  color: rgba(26,26,46,0.38);
  letter-spacing: 0.06em;
}

/* ─── PRODUCT ─── */
.rp-product {
  background: var(--color-navy);
  text-align: center;
}
.rp-product-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 88px 40px;
}
.rp-product-heading {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #fff;
  margin-bottom: 44px;
}
.rp-product-specs {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0 28px;
  margin-bottom: 32px;
  text-align: left;
}
.rp-product-row {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.rp-product-row:last-child { border-bottom: none; }
.rp-product-row dt {
  font-family: var(--font-round);
  font-size: 15px;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  width: 72px;
}
.rp-product-row dd {
  font-family: var(--font-round);
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0;
}
.rp-product-price {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 500;
  color: #fff;
}
.rp-product-price span {
  font-family: var(--font-round);
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-left: 4px;
}
.rp-product-btn {
  display: block;
  background: #fff;
  color: var(--color-navy);
  font-family: var(--font-serif);
  font-size: clamp(17px, 1.8vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 22px 40px;
  text-decoration: none;
  margin-bottom: 52px;
  transition: opacity 0.2s;
}
.rp-product-btn:hover { opacity: 0.88; }
.rp-product-free {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.rp-product-free-label {
  font-family: var(--font-serif);
  font-size: 17px;
  color: rgba(255,255,255,0.5);
}
.rp-product-free-body {
  font-family: var(--font-round);
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  line-height: 1.85;
  max-width: 340px;
}
.rp-product-free-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-line);
  color: #fff;
  font-family: var(--font-round);
  font-size: 17px;
  font-weight: 500;
  padding: 16px 32px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.2s;
}
.rp-product-free-btn:hover { opacity: 0.85; }


/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  .rp-hero { min-height: 480px; }
  .rp-hero-content { padding: 0 24px; }
  .rp-open-inner { padding: 100px 24px 72px; }
  .rp-feel-inner { padding: 64px 24px; }
  .rp-why-inner { padding: 64px 24px; }
  .rp-types-inner { padding: 64px 24px; }
  .rp-contents-inner { padding: 64px 24px; }
  .rp-product-inner { padding: 64px 24px; }
  .rp-open-scenes li { font-size: clamp(17px, 5vw, 22px); padding: 22px 0 22px 44px; }
  .rp-open-scenes li::before { top: 20px; font-size: clamp(17px, 5vw, 22px); }
  .rp-feel-phrase { font-size: clamp(26px, 7.5vw, 38px); }
  .rp-feel-nowpos { grid-template-columns: 1fr; max-width: 100%; }
  .rp-why-two { grid-template-columns: 1fr; }
  .rp-why-col { padding: 28px 24px; }
  .rp-type-grid { grid-template-columns: repeat(2, 1fr); }
  .rp-clist { grid-template-columns: 1fr; }
  .rp-preview-inner { padding: 72px 24px; }
  .rp-preview-gallery { grid-template-columns: 1fr; gap: 24px; }
  .rp-preview-specs { flex-direction: column; border: none; margin-bottom: 48px; }
  .rp-preview-spec { padding: 24px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .rp-preview-spec:last-child { border-bottom: none; }
  .rp-steps-inner { padding: 64px 24px; }
  .rp-steps-flow { flex-direction: column; align-items: center; }
  .rp-step { max-width: 100%; width: 100%; }
  .rp-step-arrow { padding-top: 0; padding-bottom: 0; transform: rotate(90deg); }
  .rp-product-btn { width: 100%; box-sizing: border-box; }
  .rp-product-free-btn { width: 100%; justify-content: center; }
}

/* ─── 印刷時センタリング ─── */
@media print {
  .rp-hero, .rp-open, .rp-feelings, .rp-feel, .rp-why, .rp-types, .rp-contents, .rp-preview, .rp-steps, .rp-product {
    width: 100%;
    display: block;
  }
  .rp-hero-content, .rp-open-inner, .rp-feel-inner, .rp-why-inner,
  .rp-types-inner, .rp-contents-inner, .rp-preview-inner, .rp-steps-inner, .rp-product-inner {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ─────────────────────────────── */
  display: inline-block;
  padding: 17px 40px;
  background: #06C755;
  color: #fff;
  font-family: var(--font-jp);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.07em;
  border-radius: 3px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.t-cta-btn:hover { opacity: 0.82; }


/* ----- WHAT BLOCK ----- */
.t-what {
  background: var(--color-offwhite);
  padding: 40px max(52px, 10vw) 56px;
  border-top: 1px solid rgba(26, 26, 46, 0.1);
}

.t-what-inner {
  max-width: 520px;
}

.t-what-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
}

.t-what-body {
  font-family: var(--font-round);
  font-size: 15.5px;
  font-weight: 400;
  color: #5a5a70;
  line-height: 2.1;
  letter-spacing: 0.04em;
}

/* ----- PROBLEM BLOCK ----- */
.t-problem {
  background: #ffffff;
  padding: 56px max(52px, 10vw);
  border-top: 1px solid rgba(26, 26, 46, 0.1);
}

.t-problem-inner {
  max-width: 520px;
}

.t-problem-lead {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: #1A1A2E;
  line-height: 1.7;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

.t-problem-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.t-problem-body p {
  font-family: var(--font-round);
  font-size: 15.5px;
  font-weight: 400;
  color: #5a5a70;
  line-height: 1.9;
  letter-spacing: 0.04em;
}

/* ----- SECTION LABEL ----- */
.t-section-label {
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-text-light);
  margin-bottom: 32px;
}

/* ----- BENEFITS S2 ----- */
.t-benefits {
  background: var(--color-white);
  padding: 72px max(52px, 10vw) 64px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.t-benefits-inner { max-width: 600px; }
.t-benefits-list { display: flex; flex-direction: column; gap: 36px; }
.t-benefit-item { display: flex; gap: 20px; align-items: flex-start; }
.t-benefit-num {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-light);
  min-width: 28px;
  padding-top: 3px;
}
.t-benefit-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text-main);
  letter-spacing: 0.03em;
  margin-bottom: 8px;
  line-height: 1.6;
}
.t-benefit-desc {
  font-family: var(--font-round);
  font-size: 13.5px;
  font-weight: 400;
  color: var(--color-text-sub);
  line-height: 1.85;
  letter-spacing: 0.03em;
}

/* ----- BENEFITS CTA ----- */
.t-benefits-cta {
  background: var(--color-offwhite);
  padding: 52px max(52px, 10vw);
  border-top: 1px solid rgba(26, 26, 46, 0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.t-benefits-cta-lead {
  font-family: var(--font-round);
  font-size: 13px;
  font-weight: 400;
  color: var(--color-text-sub);
  letter-spacing: 0.05em;
}

/* ----- ABOUT LIFEFLOW S3 ----- */
.t-about-lf {
  background: var(--color-white);
  padding: 72px max(52px, 10vw) 80px;
  border-top: 1px solid rgba(26, 26, 46, 0.08);
}
.t-about-lf-inner { max-width: 580px; }
.t-about-lf-block {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.t-about-lf-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.t-about-lf-body {
  font-family: var(--font-round);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-sub);
  line-height: 2.1;
  letter-spacing: 0.04em;
}
.t-about-lf-block--key .t-about-lf-body {
  color: var(--color-text-main);
}

/* =============================================
   TOP PAGE — RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .t-persp-grid {
    grid-template-columns: 1fr 1fr;
  }
  .t-persp-card {
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  }
  .t-persp-card:nth-child(2) { border-right: none; }
  .t-persp-card:nth-child(3) { border-right: 1px solid rgba(26, 26, 46, 0.08); }
  .t-persp-card:nth-child(3),
  .t-persp-card:nth-child(4) { border-bottom: none; }
}

@media (max-width: 768px) {
  .t-br-pc { display: none; }

  .t-hero-content {
    padding: 110px 24px 64px;
  }

  .t-hero-foot { display: none; }

  .t-concept,
  .t-anti,
  .t-cta {
    padding: 72px 24px;
  }

  .t-perspectives {
    padding: 72px 24px 0;
  }

  .t-gateway-title-wrap {
    padding: 60px 24px 40px;
  }

  .t-inner { max-width: 100%; }

  /* Process: 縦積み */
  .t-process {
    flex-direction: column;
    align-items: center;
    gap: 28px;
  }

  .t-process-item {
    padding: 0 8px;
    width: 100%;
    max-width: 280px;
  }

  .t-process-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  /* Perspectives: 2×2 */
  .t-persp-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Antithesis: 縦積み */
  .t-anti-compare {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .t-anti-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 14px;
  }

  .t-anti-col {
    padding: 28px 20px;
  }

  /* Gateway: 縦積み */
  .t-gateway-pair {
    grid-template-columns: 1fr;
  }

  .t-gateway-card {
    padding: 48px 24px 56px;
  }
}

@media (max-width: 480px) {
  .t-hero-accent {
    font-size: clamp(28px, 9vw, 44px);
  }

  .t-persp-grid {
    grid-template-columns: 1fr;
  }

  .t-persp-card {
    border-right: none;
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
  }

  .t-persp-card:last-child {
    border-bottom: none;
  }

  .t-hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .t-btn-line {
    width: 100%;
    justify-content: center;
  }
}

/* =============================================
   FOR PARTNERS PAGE (fp-*)
   アクセントカラー: #C8901A — rp-* 共通
   ============================================= */

/* ─── WHO: こんな支援者に ─── */
.fp-who { background: var(--color-navy); }
.fp-who-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px 96px;
}
.fp-who-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.32);
  margin-bottom: 48px;
  display: block;
}
.fp-who-headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 64px;
}
.fp-who-list {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
}
.fp-who-list li {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  padding: 24px 0 24px 36px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.fp-who-list li:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.fp-who-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  top: 22px;
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.4vw, 24px);
  color: #C8901A;
}
.fp-who-close {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 500;
  color: rgba(255,255,255,0.42);
  line-height: 1.9;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 44px;
}

/* ─── PROBLEM: こんな経験は ─── */
.fp-problem { background: var(--color-cream); }
.fp-problem-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 100px 40px 88px;
}
.fp-problem-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(26,26,46,0.32);
  margin-bottom: 24px;
  display: block;
}
.fp-problem-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 72px;
}
.fp-problem-phrase {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 48px;
  padding-left: 24px;
  border-left: 4px solid #C8901A;
}
.fp-problem-divider {
  border: none;
  border-top: 1px solid rgba(26,26,46,0.1);
  margin: 56px 0 44px;
}
.fp-problem-question {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  color: rgba(26,26,46,0.55);
  line-height: 1.9;
  margin-bottom: 28px;
}
.fp-problem-close {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(26,26,46,0.45);
  line-height: 2.2;
}

/* ─── TOOLS: LifeFlowが提供するもの ─── */
.fp-tools { background: #fff; }
.fp-tools-inner {
  max-width: 960px;
  margin: 0 auto;
  padding: 96px 40px;
}
.fp-tools-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(26,26,46,0.32);
  margin-bottom: 20px;
  display: block;
}
.fp-tools-headline {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 16px;
}
.fp-tools-lead {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(26,26,46,0.45);
  margin-bottom: 56px;
}
.fp-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(26,26,46,0.07);
}
.fp-tool-card {
  background: var(--color-offwhite);
  border-top: 4px solid #C8901A;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fp-tool-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 500;
  color: rgba(200,144,26,0.4);
  display: block;
  line-height: 1;
}
.fp-tool-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  display: block;
}
.fp-tool-body {
  font-family: var(--font-round);
  font-size: 15px;
  line-height: 2.1;
  color: rgba(26,26,46,0.65);
  flex: 1;
}
.fp-tool-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 4px;
}
.fp-tool-tag {
  font-family: var(--font-round);
  font-size: 11px;
  color: rgba(26,26,46,0.45);
  padding: 4px 12px;
  border: 1px solid rgba(26,26,46,0.12);
}
.fp-tool-badge {
  font-family: var(--font-round);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: rgba(26,26,46,0.35);
  border: 1px solid rgba(26,26,46,0.15);
  padding: 5px 14px;
  display: inline-block;
  align-self: flex-start;
  margin-top: 4px;
}

/* ─── MOMENTS: 活用場面 ─── */
.fp-moments { background: var(--color-cream); }
.fp-moments-head {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 40px 0;
}
.fp-moments-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(26,26,46,0.32);
  margin-bottom: 20px;
  display: block;
}
.fp-moments-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 72px;
}
.fp-moment { border-top: 1px solid rgba(26,26,46,0.09); }
.fp-moment--alt { background: rgba(255,255,255,0.52); }
.fp-moment:last-child { border-bottom: 1px solid rgba(26,26,46,0.09); }
.fp-moment-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 72px 40px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 52px;
  align-items: start;
}
.fp-moment-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(200,144,26,0.28);
  line-height: 1;
  padding-top: 4px;
}
.fp-moment-context {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 500;
  letter-spacing: 0;
  color: var(--color-navy);
  margin-bottom: 16px;
  display: block;
}
.fp-moment-phrase {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 24px;
}
.fp-moment-body {
  font-family: var(--font-round);
  font-size: 16px;
  line-height: 2.2;
  color: rgba(26,26,46,0.6);
}

/* ─── RECRUIT: 第一期募集 ─── */
.fp-recruit { background: var(--color-offwhite); }
.fp-recruit-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 96px 40px;
}
.fp-recruit-label {
  font-family: var(--font-round);
  font-size: 12px;
  letter-spacing: 0.32em;
  color: rgba(26,26,46,0.32);
  margin-bottom: 24px;
  display: block;
}
.fp-recruit-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.35;
  margin-bottom: 52px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(26,26,46,0.1);
}
.fp-recruit-date {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 34px);
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 36px;
  display: block;
}
.fp-recruit-body p {
  font-family: var(--font-round);
  font-size: 17px;
  line-height: 2.3;
  color: rgba(26,26,46,0.65);
  margin-bottom: 16px;
}
.fp-recruit-body p:last-child { margin-bottom: 0; }

/* ─── fp-* RESPONSIVE ─── */
@media (max-width: 768px) {
  .fp-who-inner { padding: 80px 24px 64px; }
  .fp-who-list li { padding: 22px 0 22px 32px; }
  .fp-who-list li::before { top: 20px; }
  .fp-problem-inner { padding: 72px 24px 64px; }
  .fp-tools-inner { padding: 64px 24px; }
  .fp-tools-grid { grid-template-columns: 1fr; background: none; gap: 16px; }
  .fp-moments-head { padding: 72px 24px 0; }
  .fp-moment-inner { padding: 52px 24px; grid-template-columns: 48px 1fr; gap: 24px; }
  .fp-moment-num { font-size: 40px; }
  .fp-recruit-inner { padding: 64px 24px; }
}

/* =============================================
   DESIGN OVERRIDES — 2026-06-15
   ============================================= */

/* ① HERO 見出しサイズ統一 */
.rp-hero-lead,
.rp-hero-accent {
  font-size: clamp(34px, 4.5vw, 48px);
}
.t-hero-accent {
  font-size: clamp(34px, 4.5vw, 48px);
}

/* ② HERO 説明文 */
.rp-hero-sub,
.rp-hero-quote {
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.8;
}

/* ③ HERO 上下余白 → flex center で制御するため水平のみ */
.rp-hero-content {
  padding: 0 max(52px, 10vw);
}

/* ④ セクションタイトル統一 */
.rp-open-headline,
.rp-why-heading,
.rp-types-eyebrow,
.rp-contents-heading,
.rp-preview-heading,
.fp-who-headline,
.fp-problem-headline,
.fp-tools-headline,
.fp-moments-headline,
.fp-recruit-headline,
.content-heading {
  font-size: clamp(28px, 3vw, 36px);
}

/* fp-who-items グリッド */
.fp-who-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  height: 480px;
  gap: 20px;
  margin-top: 52px;
}
.fp-who-item {
  padding: 32px 28px;
  background: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  overflow: hidden;
}
.fp-who-item-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  color: var(--color-navy);
  line-height: 1.5;
  margin-bottom: 14px;
}
.fp-who-item-body {
  font-family: var(--font-serif);
  font-size: clamp(13px, 1.3vw, 15px);
  color: #555;
  line-height: 2;
}

/* スマホ */
@media (max-width: 768px) {
  .fp-who-items { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; gap: 14px; margin-top: 36px; }
  .fp-who-item { padding: 24px 20px; overflow: visible; }
  .rp-hero {
    min-height: 480px;
    padding-top: var(--header-height);
  }
  .rp-hero-lead,
  .rp-hero-accent,
  .t-hero-accent {
    font-size: 34px;
  }
  .rp-hero-sub,
  .rp-hero-quote {
    font-size: 16px;
  }
  .rp-hero-content {
    padding: 0 24px !important;
  }
  .rp-open-headline,
  .rp-why-heading,
  .rp-types-eyebrow,
  .rp-contents-heading,
  .rp-preview-heading,
  .fp-who-headline,
  .fp-problem-headline,
  .fp-tools-headline,
  .fp-moments-headline,
  .fp-recruit-headline,
  .content-heading {
    font-size: 28px;
  }
}

/* content-inner two-col: デスクトップで左右2カラムに */
@media (min-width: 769px) {
  .content-inner.two-col {
    grid-template-columns: 200px 1fr;
    gap: 60px;
  }
  .content-heading {
    margin-bottom: 0;
  }
}

/* 印刷（モバイルブロックより後ろに置くことで優先される） */
@media print {
  .rp-hero {
    display: block !important;
    min-height: 0 !important;
    padding-top: 0 !important;
  }
  .rp-hero-content {
    padding: 80px 52px 80px !important;
  }
}