:root {
  --bg: #f8f5ee;
  --bg-soft: #fbf9f4;
  --text: #1f2933;
  --muted: #66717d;
  --navy: #0f2742;
  --charcoal: #2b2f33;
  --gold: #c8a45d;
  --cta: #c97800;
  --cta-dark: #a75c00;
  --line: #e6e0d4;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(15, 39, 66, 0.11);
  --radius: 28px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans JP", "Hiragino Sans", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

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

img,
svg {
  max-width: 100%;
  display: block;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 46px);
  background: rgba(248, 245, 238, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(230, 224, 212, 0.72);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(15, 39, 66, 0.08);
  background: rgba(248, 245, 238, 0.95);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--navy);
  color: #f7edd8;
  font-size: 14px;
  letter-spacing: 0.06em;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

.brand-text small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.global-nav a {
  color: var(--charcoal);
}

.global-nav a:hover {
  color: var(--cta);
}

.nav-cta {
  padding: 11px 18px;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(15, 39, 66, 0.18);
}

.nav-cta:hover {
  background: #18385d;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 999px;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(72px, 10vw, 128px) clamp(20px, 4vw, 44px);
}

.section-grid,
.split-section {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(40px, 7vw, 86px);
  align-items: center;
}

.hero {
  min-height: calc(100vh - 80px);
  padding-top: clamp(56px, 8vw, 110px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cta);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.split-section h2,
.solution-panel h2,
.final-cta h2 {
  margin: 0;
  color: var(--navy);
  font-weight: 900;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(42px, 7vw, 76px);
}

.hero h1 span {
  color: var(--cta);
}

.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: #3d4752;
  margin: 26px 0 0;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-actions.centered {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  border: 1px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--cta);
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(201, 120, 0, 0.25);
}

.btn-primary:hover {
  background: var(--cta-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.74);
  border-color: var(--line);
  color: var(--navy);
}

.text-link {
  font-weight: 800;
  color: var(--cta);
  border-bottom: 1px solid currentColor;
}

.trust-notes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-notes span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 999px;
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.visual-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(230, 224, 212, 0.9);
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.visual-card-main {
  padding: 28px;
  position: relative;
  z-index: 2;
}

.visual-topline {
  display: flex;
  gap: 8px;
}

.visual-topline span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d9d0bf;
}

.dashboard-title {
  margin-top: 22px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.08em;
}

.workflow {
  display: flex;
  align-items: center;
  margin-top: 30px;
}

.flow-node {
  padding: 16px 15px;
  border-radius: 18px;
  background: #f4efe4;
  color: var(--navy);
  font-weight: 800;
  font-size: 13px;
  text-align: center;
  min-width: 86px;
}

.flow-node.active {
  background: #eaf0f3;
}

.flow-node.gold {
  background: #f1dfb5;
}

.flow-line {
  height: 2px;
  flex: 1;
  background: var(--line);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.metric-grid div {
  background: #fbf9f4;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px;
  text-align: center;
}

.metric-grid strong {
  display: block;
  font-size: 28px;
  color: var(--navy);
  line-height: 1;
}

.metric-grid span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.floating-note {
  position: absolute;
  z-index: 3;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  color: var(--navy);
  box-shadow: 0 16px 34px rgba(15, 39, 66, 0.12);
}

.note-1 {
  top: 18px;
  right: 10px;
}

.note-2 {
  bottom: 64px;
  left: 4px;
}

.note-3 {
  bottom: 8px;
  right: 50px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 44px -26px -28px 62px;
  border-radius: 42px;
  background: linear-gradient(135deg, #eee4cf, #fff7e8);
  z-index: 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
  text-align: center;
}

.section-heading h2,
.split-section h2,
.solution-panel h2,
.final-cta h2 {
  font-size: clamp(30px, 4.4vw, 50px);
}

.section-heading p:not(.eyebrow),
.split-section p,
.solution-panel p,
.final-cta p {
  color: #4d5964;
}

.problem,
.difference,
.service,
.faq {
  max-width: var(--max);
  margin: 0 auto;
}

.problem-grid,
.difference-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.problem-card,
.difference-card,
.price-card,
.logic-card,
.solution-panel,
.task-grid,
.faq details {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(15, 39, 66, 0.06);
}

.problem-card {
  padding: 24px;
}

.problem-card span {
  font-weight: 900;
  color: var(--gold);
}

.problem-card h3 {
  line-height: 1.45;
  color: var(--navy);
  margin: 10px 0;
}

.problem-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.reframe {
  background: #fffdf8;
  border-radius: 42px;
  padding: clamp(36px, 6vw, 72px);
  margin-top: 24px;
}

.logic-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 20px;
}

.logic-item {
  padding: 22px;
  border-radius: 22px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
}

.logic-item strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
}

.logic-item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.solution {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: stretch;
}

.solution-panel {
  padding: clamp(30px, 5vw, 54px);
  background: var(--navy);
  color: #ffffff;
}

.solution-panel h2,
.solution-panel p {
  color: #ffffff;
}

.solution-panel .eyebrow {
  color: #f1d38c;
}

.solution-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.task-grid {
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.task-grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  background: #fbf9f4;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 18px;
  font-weight: 800;
  color: var(--navy);
}

.method {
  max-width: var(--max);
  margin: 0 auto;
}

.method-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.method-flow div {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 16px 44px rgba(15, 39, 66, 0.06);
}

.method-flow span {
  color: var(--gold);
  font-weight: 900;
}

.method-flow strong {
  display: block;
  margin-top: 14px;
  color: var(--navy);
  font-size: 20px;
}

.method-flow p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.difference-grid {
  grid-template-columns: repeat(3, 1fr);
}

.difference-card {
  padding: 28px;
}

.difference-card h3 {
  margin-top: 0;
  color: var(--navy);
}

.difference-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.difference-card.highlight {
  background: var(--navy);
  color: #ffffff;
}

.difference-card.highlight h3,
.difference-card.highlight p {
  color: #ffffff;
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-card.featured {
  border: 2px solid var(--gold);
  transform: translateY(-8px);
}

.plan-label {
  margin: 0;
  color: var(--cta);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.45;
}

.price {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
}

.price small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}

.price-card p:not(.plan-label):not(.price) {
  margin: 0;
  color: var(--muted);
}

.price-card .btn {
  margin-top: auto;
}

.strength {
  background: #fffdf8;
}

.strength .section-heading {
  margin-bottom: 34px;
}

.strength-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.strength-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  font-weight: 800;
  color: var(--navy);
}

.strength-item span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 6px rgba(200, 164, 93, 0.18);
}

.story {
  max-width: var(--max);
}

.story-visual {
  position: relative;
  height: 360px;
  border-radius: 42px;
  background: linear-gradient(180deg, #0f2742 0%, #24445f 48%, #f1d38c 100%);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sun {
  position: absolute;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: #f1d38c;
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 70px rgba(241, 211, 140, 0.6);
}

.horizon {
  position: absolute;
  left: 0;
  right: 0;
  border-radius: 50% 50% 0 0;
  background: rgba(255, 255, 255, 0.18);
}

.h1 {
  height: 150px;
  bottom: -70px;
}

.h2 {
  height: 190px;
  bottom: -116px;
  left: -50px;
  right: -50px;
}

.h3 {
  height: 230px;
  bottom: -165px;
  left: -80px;
  right: -80px;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 22px 24px;
}

.faq summary {
  cursor: pointer;
  font-weight: 900;
  color: var(--navy);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq p {
  margin: 14px 0 0;
  color: var(--muted);
}

.final-cta {
  max-width: 960px;
  margin: 0 auto 80px;
  text-align: center;
  background: var(--navy);
  color: #ffffff;
  border-radius: 44px;
  padding: clamp(42px, 8vw, 84px);
  box-shadow: var(--shadow);
}

.final-cta h2,
.final-cta p {
  color: #ffffff;
}

.final-cta .eyebrow {
  color: #f1d38c;
}

.final-cta p {
  max-width: 700px;
  margin: 22px auto 0;
}

.site-footer {
  padding: 52px clamp(20px, 4vw, 44px) 28px;
  background: #111b25;
  color: #d9e0e7;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 34px;
}

.footer-brand .brand-mark {
  background: #f1d38c;
  color: #111b25;
}

.footer-brand .brand-text strong {
  color: #ffffff;
}

.footer-inner p {
  color: #aeb9c4;
}

.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-content: flex-start;
}

.footer-nav a {
  color: #d9e0e7;
}

.footer-nav a:hover {
  color: #f1d38c;
}

.copyright {
  max-width: var(--max);
  margin: 24px auto 0;
  color: #8f9daa;
  font-size: 13px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .section-grid,
  .split-section,
  .solution {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 360px;
  }

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

  .method-flow,
  .pricing-grid,
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .nav-toggle {
    display: block;
  }

  .global-nav {
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    padding: 12px;
  }

  .global-nav.is-open {
    display: flex;
  }

  .global-nav a {
    padding: 13px 14px;
  }

  .nav-cta {
    text-align: center;
    margin-top: 8px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-actions,
  .solution-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .trust-notes {
    gap: 8px;
  }

  .visual-card-main {
    padding: 20px;
  }

  .workflow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .flow-line {
    height: 16px;
    width: 2px;
    justify-self: center;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    display: none;
  }

  .problem-grid,
  .difference-grid,
  .pricing-grid,
  .strength-grid,
  .method-flow,
  .task-grid {
    grid-template-columns: 1fr;
  }

  .reframe {
    padding: 30px 20px;
    border-radius: 30px;
  }

  .logic-card {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .final-cta {
    border-radius: 30px;
    margin-bottom: 44px;
  }

  .story-visual {
    height: 260px;
  }
}

/* =========================
   Hero headline adjustment
   ========================= */

.hero h1 {
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.9;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: clamp(31px, 9vw, 40px);
    line-height: 1.32;
    letter-spacing: -0.04em;
  }

  .lead {
    font-size: 15px;
    line-height: 1.9;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 30px;
    line-height: 1.35;
  }
}

/* =========================
   強制：FV見出しサイズ調整
   ========================= */

.hero .hero-copy h1 {
  font-size: clamp(28px, 4.2vw, 48px) !important;
  line-height: 1.32 !important;
  letter-spacing: -0.04em !important;
  max-width: 760px !important;
}

.hero .hero-copy h1 span {
  display: inline !important;
  color: var(--cta);
}

@media (max-width: 760px) {
  .hero .hero-copy h1 {
    font-size: 30px !important;
    line-height: 1.4 !important;
    letter-spacing: -0.04em !important;
  }
}

@media (max-width: 420px) {
  .hero .hero-copy h1 {
    font-size: 28px !important;
    line-height: 1.45 !important;
  }
}
/* =========================================================
   Phase 0 追記：下層ページ（contact / privacy / thanks）用
   既存セレクタは変更していません。追記のみです。
   ========================================================= */

:root {
  /* privacy.html が参照していたが未定義だった変数を補完 */
  --text-light: #66717d;
}

/* --- 下層ページの見出しブロック --- */
.page-head {
  padding: clamp(96px, 12vw, 132px) clamp(20px, 4vw, 44px) clamp(28px, 5vw, 48px);
  text-align: center;
}

.page-head .page-title {
  max-width: var(--max);
  margin: 0 auto;
  color: var(--navy);
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.page-head .page-desc {
  max-width: 720px;
  margin: 20px auto 0;
  color: #3d4752;
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.95;
}

.page-body {
  padding-top: 0;
}

.narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* --- 規約・ポリシー本文 --- */
.legal-content {
  color: #3d4752;
  line-height: 2;
}

.legal-content h2 {
  margin: 44px 0 12px;
  color: var(--navy);
  font-size: clamp(18px, 2.4vw, 21px);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 0 0 20px;
  padding-left: 1.25em;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-meta {
  margin-top: 44px;
  color: var(--text-light);
  font-size: 14px;
}

/* --- フォーム --- */
.form-card {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 44px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 26px;
}

.field-label {
  display: block;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.req,
.opt {
  display: inline-block;
  margin-left: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: 2px;
}

.req {
  background: rgba(201, 120, 0, 0.12);
  color: var(--cta-dark);
}

.opt {
  background: rgba(15, 39, 66, 0.07);
  color: var(--muted);
}

/* ★ font-size:16px は iOS Safari のフォーカス時自動ズームを防ぐために必須 */
.control {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--text);
  font-family: inherit;
  font-size: 16px;
  line-height: 1.6;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

textarea.control {
  min-height: 148px;
  resize: vertical;
}

select.control {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 22px) calc(50% + 2px), calc(100% - 16px) calc(50% + 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 44px;
}

.control:focus {
  outline: none;
  background: var(--white);
  border-color: var(--cta);
  box-shadow: 0 0 0 3px rgba(201, 120, 0, 0.16);
}

.control::placeholder {
  color: #9aa4ae;
}

/* --- ラジオ / チェックボックス --- */
.choice-group {
  display: grid;
  gap: 10px;
}

.choice {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
  font-size: 15px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.choice:hover {
  border-color: var(--cta);
  background: var(--white);
}

.choice input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--cta);
}

.consent {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin: 8px 0 20px;
  font-size: 15px;
}

.consent input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--cta);
}

.consent a {
  color: var(--cta);
  text-decoration: underline;
}

.form-error {
  min-height: 22px;
  margin: 0 0 10px;
  color: #c0392b;
  font-size: 14px;
  font-weight: 700;
}

.form-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
}

.form-submit {
  width: 100%;
}

/* --- 補足リスト（診断で行うこと・送信後の流れ など） --- */
.note-card {
  max-width: 760px;
  margin: 0 auto 28px;
  padding: 24px clamp(20px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
}

.note-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.note-card ul {
  margin: 0;
  padding-left: 1.2em;
  color: #3d4752;
  line-height: 1.95;
}

.note-card li {
  margin-bottom: 4px;
}

/* --- 事業者情報 --- */
.biz-info {
  max-width: 760px;
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.sp-only {
  display: none;
}

@media (max-width: 760px) {
  .page-head {
    padding-top: 96px;
    text-align: left;
  }

  .page-head .page-desc {
    margin-left: 0;
  }

  .form-card {
    border-radius: 22px;
  }

  .biz-info {
    text-align: left;
  }

  .sp-only {
    display: inline;
  }
}

/* --- 料金セクションの注記（Phase 0 追記） --- */
.pricing-note {
  max-width: var(--max);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.95;
}

/* --- タップ領域の確保（Phase 0 追記） --- */
.nav-toggle {
  min-width: 44px;
  min-height: 44px;
}
