/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #2B2A33;
  background: #FDF9F5;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --coral: #E26A5E;
  --coral-dark: #C5544A;
  --cream: #FDF9F5;
  --pink: #FBF2EE;
  --pink-alt: #FBEEE9;
  --dark: #2A2832;
  --text: #2B2A33;
  --text-sub: #5F5E68;
  --text-muted: #8A8792;
  --text-dark-sub: #C9C6CE;
  --border: #ECE0D9;
  --border-dark: #403D49;
  --white: #FFFFFF;
  --cta-grad: linear-gradient(115deg, #E8836F, #D2554A);
  --pillar-grad: linear-gradient(180deg, #E8836F, #D85A4E);
  --shadow-card: 0 14px 34px rgba(42,40,50,0.125);
  --shadow-coral: 0 8px 22px rgba(197,84,74,0.3);
  --shadow-pillar: 0 18px 44px rgba(226,106,94,0.2);
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --max-w: 1140px;
  --max-w-narrow: 880px;
}

/* ===== TYPOGRAPHY ===== */
.section__title, .hero__h1, .deliverable__title, .cta__title, .story-card h3,
.pillar__title, .disclosure-callout__title, .modal__title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
}

/* ===== UTILITY ===== */
.hide-sp { }
/* スマホでのみ改行する（PCでは無効） */
.br-sp { display: none; }
@media (max-width: 767px) {
  .hide-sp { display: none; }
  .br-sp { display: inline; }
}

/* ===== BUTTON CTA ===== */
.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--coral);
  color: var(--white);
  font-weight: 700;
  font-size: 18px;
  padding: 17px 32px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-coral);
  transition: background 0.2s, transform 0.15s;
}
.btn-cta:hover { background: var(--coral-dark); transform: translateY(-1px); }
.btn-cta--sm { font-size: 15px; padding: 11px 20px; }
.btn-cta--sm svg { width: 15px; height: 15px; }
.btn-cta--white {
  background: var(--white);
  color: var(--coral-dark);
  box-shadow: 0 10px 30px rgba(0,0,0,0.13);
}
.btn-cta--white:hover { background: #f5f5f5; }
.btn-cta--full { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-img { height: 40px; width: auto; }
.logo-img--footer { height: 32px; }
.logo-wordmark {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 25px;
  color: var(--coral);
}
.header__tagline {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sub);
  margin-left: 6px;
  padding-left: 10px;
  border-left: 1px solid var(--border);
  white-space: nowrap;
}
.logo-wordmark--white { color: var(--white); }
.header__right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.header__nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-sub);
  transition: color 0.2s;
}
.header__nav-link:hover { color: var(--coral); }
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.header__hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.header__hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__hamburger.is-active span:nth-child(2) { opacity: 0; }
.header__hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-nav.is-active { display: flex; }
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.mobile-nav__links a {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 96px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section--white { background: var(--white); }
.section--cream { background: var(--cream); }
.section--pink { background: var(--pink); }
.section--dark { background: var(--dark); }
.section--cta { background: var(--cta-grad); padding: 104px 48px; }

.section__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: var(--max-w-narrow);
  width: 100%;
  margin-bottom: 50px;
  text-align: center;
}
.section__label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--coral-dark);
}
.section__label--dark { color: var(--coral); }
.section__title {
  font-size: 38px;
  line-height: 1.4;
  color: var(--text);
  text-wrap: balance;
}
.section__title--white { color: var(--white); }
.section__title--narrow { max-width: 880px; }
.section__sub {
  font-size: 18px;
  line-height: 1.75;
  color: var(--text-sub);
}
.section__sub--dark { color: var(--text-dark-sub); }

/* ===== HERO ===== */
.hero {
  background: var(--cream);
  padding: 100px 48px;
  padding-top: 176px; /* header offset */
}
.hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero__text { flex: 0 0 560px; max-width: 560px; }
.eyebrow-pill {
  display: inline-block;
  background: var(--pink-alt);
  color: var(--coral-dark);
  font-size: 14px;
  font-weight: 700;
  padding: 7px 15px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.hero__h1 {
  font-size: 54px;
  line-height: 1.34;
  color: var(--text);
  margin-top: 20px;
}
.hero__sub {
  font-size: 20px;
  line-height: 1.75;
  color: #403f48;
  font-weight: 500;
  margin-top: 26px;
}
.hero__cta-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 26px;
}

/* Flow Card (Hero) */
.flow-card {
  flex: 1;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: 0 20px 50px rgba(226,106,94,0.13);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.flow-card__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--coral);
}
.flow-card__row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--pink-alt);
  border-radius: var(--radius-md);
  padding: 16px;
}
.flow-card__icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-card__label { font-size: 17px; font-weight: 700; color: var(--text); }
.flow-card__desc { font-size: 15px; color: var(--text-sub); line-height: 1.5; }
.flow-card__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--text-sub);
  font-size: 12.5px;
  font-weight: 500;
}
.flow-card__hub {
  background: var(--coral);
  border-radius: var(--radius-md);
  padding: 16px;
}
.flow-card__hub-head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.flow-card__hub-icon {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.22);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-card__hub-label { font-size: 16px; font-weight: 700; color: var(--white); }
.flow-card__hub-desc { font-size: 13.5px; color: #FBEAE4; line-height: 1.55; margin-top: 2px; }
.flow-card__hub-note {
  margin-top: 12px;
  font-size: 13px;
  color: var(--white);
  background: rgba(255,255,255,0.16);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  line-height: 1.6;
}

/* ===== S2 課題提起 ===== */
.problem-photo {
  width: 100%;
  max-width: var(--max-w);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 50px;
}
.problem-photo img { width: 100%; object-fit: cover; }
.problem-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  width: 100%;
}
.problem-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.problem-card__icon {
  width: 48px; height: 48px;
  background: var(--pink-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.problem-card__title { font-size: 20px; font-weight: 700; }
.problem-card__body { font-size: 16px; line-height: 1.75; color: var(--text-sub); }

/* ===== S4 背骨 ===== */
.pillar {
  background: var(--pillar-grad);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 540px;
  width: 100%;
  box-shadow: var(--shadow-pillar);
  text-align: center;
}
.pillar__icon-wrap {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar__title { font-size: 24px; font-weight: 700; color: var(--white); }
.pillar__sub { font-size: 16px; color: rgba(255,255,255,0.9); line-height: 1.7; }

/* Split Connector */
.split-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
}
.split-connector__stem {
  width: 6px; height: 24px;
  background: var(--coral-dark);
  border-radius: 3px;
}
.split-connector__dot {
  width: 18px; height: 18px;
  background: var(--coral-dark);
  border-radius: 999px;
  margin-top: -3px;
}
.split-connector__bus {
  width: 70%;
  height: 6px;
  background: var(--coral-dark);
  border-radius: 3px;
  margin-top: -3px;
}
.split-connector__drops {
  display: flex;
  justify-content: space-between;
  width: 70%;
}
.split-connector__drop-group {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.split-connector__drop {
  width: 6px; height: 30px;
  background: var(--coral-dark);
  border-radius: 3px;
  margin-top: -3px;
}

/* Effect Cards */
.effect-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-w);
  width: 100%;
}
.effect-card {
  background: var(--white);
  border: 2px solid var(--coral);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.effect-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.effect-card__badge {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--coral);
}
.effect-card__num {
  font-family: 'Noto Serif JP', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.effect-card__title { font-size: 24px; font-weight: 700; }
.effect-card__body { font-size: 17px; line-height: 1.8; color: var(--text-sub); }
.effect-card__mech {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

/* ===== S5 3点セット ===== */
.reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 980px;
  width: 100%;
}
.reason-card {
  display: flex;
  gap: 26px;
  background: var(--pink-alt);
  border: 1px solid rgba(226,106,94,0.33);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.reason-card__num {
  flex-shrink: 0;
  width: 58px; height: 58px;
  background: var(--coral);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reason-card__num span {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
}
.reason-card__body { display: flex; flex-direction: column; gap: 10px; }
.reason-card__tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.reason-card__tag {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  padding: 5px 12px;
  border-radius: 999px;
}
.reason-card__title { font-size: 22px; font-weight: 700; }
.reason-card__text { font-size: 17px; line-height: 1.85; color: var(--text-sub); }

/* ===== S6 面談の流れ ===== */
.flow-photo {
  width: 100%;
  max-width: 920px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 40px;
}
.flow-photo img { width: 100%; object-fit: cover; }

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 920px;
  width: 100%;
  margin-bottom: 40px;
}
.flow-step {
  display: flex;
  gap: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 28px;
}
.flow-step__num {
  flex-shrink: 0;
  width: 50px; height: 50px;
  background: var(--coral);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.flow-step__num span {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.flow-step__body { display: flex; flex-direction: column; gap: 6px; }
.flow-step__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--coral);
}
.flow-step__title { font-size: 20px; font-weight: 700; }
.flow-step__text { font-size: 16px; line-height: 1.8; color: var(--text-sub); }

/* Disclosure Callout */
.disclosure-callout {
  display: flex;
  gap: 22px;
  background: var(--pillar-grad);
  border-radius: var(--radius-lg);
  padding: 30px;
  max-width: 920px;
  width: 100%;
  box-shadow: var(--shadow-pillar);
}
.disclosure-callout__icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.disclosure-callout__body { display: flex; flex-direction: column; gap: 8px; }
.disclosure-callout__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.18);
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.disclosure-callout__title { font-size: 24px; font-weight: 700; color: var(--white); }
.disclosure-callout__text { font-size: 17px; line-height: 1.8; color: rgba(255,255,255,0.9); }
.disclosure-callout__note { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,0.8); }

/* ===== S7 納品レポート ===== */
.report-photo {
  width: 100%;
  max-width: 1080px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 18px;
}
.report-photo img { width: 100%; object-fit: cover; }
.report-caption {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text-sub);
  text-align: center;
  max-width: 780px;
  margin-bottom: 56px;
}

.deliverable {
  display: flex;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  width: 100%;
  margin-bottom: 56px;
}
.deliverable--reverse { flex-direction: row-reverse; }
.deliverable__text { flex: 1; display: flex; flex-direction: column; gap: 22px; }
.deliverable__title {
  font-size: 36px;
  line-height: 1.4;
}
.deliverable__sub { font-size: 17px; line-height: 1.85; color: var(--text-sub); }
.deliverable__mock { flex: 0 0 440px; max-width: 440px; }
.deliverable__photo {
  flex: 0 0 520px;
  max-width: 520px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.deliverable__photo img { width: 100%; object-fit: cover; }

/* Check List */
.check-list { display: flex; flex-direction: column; gap: 12px; }
.check-item {
  display: flex;
  gap: 12px;
}
.check-item__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  background: var(--pink-alt);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.check-item__title { font-size: 17px; font-weight: 700; }
.check-item__desc { font-size: 15px; line-height: 1.6; color: var(--text-sub); }

/* Report Mock */
.report-mock {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 22px 50px rgba(43,42,51,0.13);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.report-mock__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.report-mock__logo {
  font-family: 'Noto Serif JP', serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--coral);
}
.report-mock__doc-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-sub);
}
.report-mock__sample {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 2px 10px;
  border-radius: 4px;
  margin-top: 6px;
}
.report-mock__hr { border: none; height: 1px; background: var(--border); }
.report-mock__section-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  padding: 5px 11px;
  border-radius: 4px;
  width: fit-content;
}
.report-mock__blur {
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 2px;
  filter: blur(2.4px);
}
.report-mock__line {
  height: 10px;
  background: #eee;
  border-radius: 4px;
}

/* ===== S8 キャリアデザイナー ===== */
.designer-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  width: 100%;
  margin-bottom: 44px;
}
.designer-card {
  background: var(--white);
  border: 1px solid #EDE2DC;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.designer-card__icon {
  width: 52px; height: 52px;
  background: var(--pink-alt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.designer-card__title { font-size: 20px; font-weight: 700; }
.designer-card__body { font-size: 16px; line-height: 1.8; color: var(--text-sub); }

.designer-closing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: 1080px;
  width: 100%;
  background: var(--white);
  border: 1px solid #EDE2DC;
  border-radius: var(--radius-md);
  padding: 20px 28px;
  font-size: 19px;
  font-weight: 700;
}

/* ===== S8b メンバー ===== */
.members {
  display: flex;
  gap: 24px;
  justify-content: center;
  max-width: 1080px;
  width: 100%;
  flex-wrap: wrap;
}
.member-card {
  width: 380px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.member-card__photo {
  width: 300px; height: 300px;
  border-radius: 999px;
  overflow: hidden;
}
.member-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.member-card__name-block { text-align: center; }
.member-card__role { font-size: 14px; color: var(--coral-dark); font-weight: 700; letter-spacing: 1px; }
.member-card__name { font-size: 24px; font-weight: 700; margin-top: 5px; }
.member-card__divider { width: 48px; height: 2px; background: #F6DAD1; border: none; border-radius: 2px; }
.member-card__bio { font-size: 15px; line-height: 1.8; color: var(--text-sub); }
.member-card__reading {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -4px;
  width: 100%;
}
.member-card__qual {
  width: 100%;
  background: var(--pink-alt);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}

/* ===== HERO 価格注記 ===== */
.hero__price-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.7;
}

/* ===== 成果物 注記 ===== */
.deliverable__note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-top: 4px;
}

/* ===== 料金カード ===== */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 44px;
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pricing-card__header { text-align: center; }
.pricing-card__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--coral-dark);
}
.pricing-card__title {
  font-family: 'Noto Serif JP', serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 6px;
}
.pricing-card__highlight { color: var(--coral); font-size: 30px; }
.pricing-card__price {
  text-align: center;
  margin: 18px 0 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}
.pricing-card__amount {
  font-family: 'Noto Serif JP', serif;
  font-size: 68px;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.pricing-card__unit { font-size: 22px; font-weight: 700; color: var(--text); }
.pricing-card__tax { font-size: 14px; font-weight: 500; color: var(--text-sub); }
.pricing-card__hr { border: none; height: 1px; background: var(--border); margin: 20px 0; }
.pricing-card__includes-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
}
.pricing-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.pricing-card__list li svg { flex-shrink: 0; }
.pricing-card__note {
  font-size: 12.5px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-top: 20px;
}

/* ===== 個人情報・機密情報 ===== */
.security-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--max-w-narrow);
  width: 100%;
}
.security-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 26px;
}
.security-item__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--pink-alt);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.security-item__text {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
}
.security-item__text strong { color: var(--coral-dark); font-weight: 700; }

/* ===== S9 私たちの約束 ===== */
.promise-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1020px;
  width: 100%;
}
.promise-cards--4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1140px;
}
.promise-cards--4 .promise-card { padding: 30px 22px; }
.promise-card {
  background: #393644;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.promise-card__icon {
  width: 60px; height: 60px;
  background: rgba(226,106,94,0.15);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promise-card__title { font-size: 21px; font-weight: 700; color: var(--white); }
.promise-card__body { font-size: 16px; line-height: 1.8; color: var(--text-dark-sub); }

/* ===== S10 代表メッセージ ===== */
.story-card {
  max-width: 900px;
  width: 100%;
  background: var(--white);
  border-radius: 20px;
  border-left: 5px solid var(--coral);
  box-shadow: 0 16px 40px rgba(43,42,51,0.08);
  overflow: hidden;
}
.story-card__inner { padding: 44px 48px; }
.story-card__quote { margin-bottom: 18px; }
.story-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text);
}
.story-card__sign {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  justify-content: flex-end;
}
.story-card__sign-name { font-size: 17px; font-weight: 700; }
.story-card__sign-role { font-size: 14px; font-weight: 500; color: var(--text-sub); }

/* ===== S10b ご利用の流れ ===== */
.usage-steps {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 1080px;
  width: 100%;
}
.usage-step {
  flex: 1;
  background: var(--white);
  border: 1px solid #EDE2DC;
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.usage-step__num {
  width: 46px; height: 46px;
  background: var(--coral);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usage-step__num span {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}
.usage-step__title { font-size: 20px; font-weight: 700; }
.usage-step__body { font-size: 16px; line-height: 1.75; color: var(--text-sub); }
.usage-step__chevron {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

/* ===== S11 FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: var(--max-w-narrow);
  width: 100%;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-q, .faq-a {
  display: flex;
  gap: 14px;
}
.faq-badge {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 700;
}
.faq-badge--q { background: var(--coral); color: var(--white); }
.faq-badge--a { background: var(--pink-alt); color: var(--coral-dark); }
.faq-q p { font-size: 18px; font-weight: 700; line-height: 1.55; padding-top: 3px; }
.faq-a p { font-size: 16px; line-height: 1.85; color: var(--text-sub); padding-top: 5px; }

/* ===== S12 CTA ===== */
.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  max-width: 780px;
  text-align: center;
}
.cta__title {
  font-size: 48px;
  color: var(--white);
  text-wrap: balance;
}
.cta__sub {
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255,255,255,0.93);
}
.cta__note {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.footer__nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark-sub);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--white); }
.footer__company {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.footer__hr { border: none; height: 1px; background: var(--border-dark); }
.footer__copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: rgba(42,40,50,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.is-active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal__close {
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  color: var(--text-sub);
  line-height: 1;
}
.modal__title { font-size: 32px; margin-bottom: 8px; }
.modal__sub { font-size: 16px; color: var(--text-sub); margin-bottom: 32px; line-height: 1.7; }

/* Form */
.form { display: flex; flex-direction: column; gap: 20px; }
.form[hidden] { display: none; }
.form__group { display: flex; flex-direction: column; gap: 6px; }
.form__row { display: flex; gap: 16px; }
.form__group--half { flex: 1; }
.form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235F5E68' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
}
.form__label { font-size: 16px; font-weight: 700; }
.form__req { font-size: 12px; color: var(--coral); margin-left: 4px; }
.form__input {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 15px;
  font-size: 16px;
  font-family: inherit;
  transition: border-color 0.2s;
  width: 100%;
}
.form__input:focus { outline: none; border-color: var(--coral); }
.form__textarea { resize: vertical; }
.form__error {
  font-size: 12px;
  color: #D93C15;
  display: none;
}
.form__input.is-invalid { border-color: #D93C15; }
.form__input.is-invalid ~ .form__error { display: block; }
.form__group--checkbox .form__error { display: none; }
.form__group--checkbox.is-invalid .form__error { display: block; }
.form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 15px;
  cursor: pointer;
}
.form__checkbox-label input { margin-top: 4px; accent-color: var(--coral); }
.form__checkbox-label a { color: var(--coral); text-decoration: underline; }

/* Form Success */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  padding: 20px 0;
}
/* hidden属性を尊重（送信完了前は非表示にする） */
.form-success[hidden] {
  display: none;
}
.form-success h3 { font-size: 22px; font-weight: 700; }
.form-success p { font-size: 14px; color: var(--text-sub); line-height: 1.7; }

/* ===== SCROLL ANIMATION ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .header__tagline { display: none; }
  .header__inner { padding: 16px 24px; }
  .section { padding: 72px 24px; }
  .hero { padding: 72px 24px; padding-top: 148px; }
  .hero__inner { flex-direction: column; gap: 40px; }
  .hero__text { flex: none; max-width: 100%; }
  .hero__h1 { font-size: 42px; }

  .deliverable { flex-direction: column; gap: 32px; }
  .deliverable--reverse { flex-direction: column; }
  .deliverable__mock { flex: none; max-width: 100%; width: 100%; }
  .deliverable__photo { flex: none; max-width: 100%; width: 100%; }

  .usage-steps { flex-direction: column; gap: 16px; }
  .usage-step__chevron { transform: rotate(90deg); }

  .promise-cards--4 { grid-template-columns: repeat(2, 1fr); }

  .footer__top { flex-direction: column; gap: 24px; align-items: flex-start; }
  .footer__nav { gap: 16px; }
}

@media (max-width: 767px) {
  .header__nav { display: none; }
  .header__right .btn-cta { display: none; }
  .header__hamburger { display: flex; }
  .header__inner { padding: 14px 20px; }

  .section { padding: 56px 20px; }
  .section--cta { padding: 64px 20px; }
  .hero { padding: 56px 20px; padding-top: 120px; }
  .hero__h1 { font-size: 34px; }
  .hero__sub { font-size: 17px; }

  .section__title { font-size: 27px; }
  .section__sub { font-size: 16px; }
  .deliverable__title { font-size: 27px; }
  .cta__title { font-size: 34px; }

  .problem-cards,
  .effect-cards,
  .designer-cards,
  .promise-cards,
  .promise-cards--4 { grid-template-columns: 1fr; }

  .pillar { padding: 40px 28px; }
  .effect-card { padding: 36px 26px; }

  .pricing-card { padding: 32px 24px; }
  .pricing-card__amount { font-size: 54px; }
  .security-item { padding: 18px 20px; gap: 14px; }
  .security-item__text { font-size: 18px; }

  .reason-card { flex-direction: column; gap: 16px; }

  .flow-step { flex-direction: column; gap: 12px; }

  .disclosure-callout { flex-direction: column; gap: 16px; }

  .members { flex-direction: column; align-items: center; }
  .member-card { width: 100%; max-width: 400px; }
  .member-card__photo { width: 200px; height: 200px; }

  .split-connector { display: none; }
  .pillar { max-width: 100%; margin-bottom: 28px; }

  .flow-card__hub-note { font-size: 12.5px; }
  .flow-card__connector { font-size: 12px; }

  .modal { padding: 32px 24px; }
  .modal__title { font-size: 25px; }

  .story-card__inner { padding: 28px 24px; }

  .footer { padding: 32px 20px; }
  .footer__nav { flex-direction: column; gap: 12px; }
}
