:root {
  --bg: #fffdfb;
  --bg-soft: #f8f2ed;
  --bg-soft-2: #f3e8e1;
  --line: #eadbd2;
  --text: #352a26;
  --muted: #72645d;
  --accent: #bf7c6b;
  --accent-dark: #a66556;
  --accent-pale: #fff2eb;
  --white: #ffffff;
  --shadow-sm: 0 10px 24px rgba(70, 42, 31, 0.06);
  --shadow-md: 0 18px 42px rgba(70, 42, 31, 0.08);
  --radius: 24px;
  --radius-sm: 18px;
  --container: 1080px;
  --container-narrow: 820px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fffdfa 0%, #fffaf7 100%);
  line-height: 1.8;
  letter-spacing: 0.01em;
}

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

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

.container {
  width: min(calc(100% - 28px), var(--container));
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 28px), var(--container-narrow));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 219, 210, 0.9);
}

.site-header__inner {
  width: min(calc(100% - 28px), var(--container));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.site-logo__main {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-logo__sub {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-nav a {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.header-nav a:hover {
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.header-nav__cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

.hero {
  padding: 28px 0 52px;
  background:
    radial-gradient(circle at top right, rgba(243, 232, 225, 0.95), transparent 24%),
    linear-gradient(180deg, #fffdfb 0%, #fbf5f0 100%);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero__text {
  order: 2;
}

.hero__visual {
  order: 1;
}

.hero__eyebrow {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-size: clamp(30px, 8vw, 48px);
  line-height: 1.22;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 16px 0 0;
  font-size: 15px;
  color: var(--muted);
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.hero__badges li,
.cta-box__badges li {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(234, 219, 210, 0.95);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 700;
}

.hero__actions,
.cta-box__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

.hero__note,
.cta-box__note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--muted);
}

.hero__visual {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(234, 219, 210, 0.95);
  border-radius: 26px;
  padding: 12px;
  box-shadow: var(--shadow-md);
}

.image-placeholder {
  min-height: 300px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05)),
    repeating-linear-gradient(
      -45deg,
      rgba(255,255,255,0.22),
      rgba(255,255,255,0.22) 18px,
      rgba(255,255,255,0.08) 18px,
      rgba(255,255,255,0.08) 36px
    ),
    linear-gradient(180deg, #f4e6df 0%, #efdcd2 100%);
  border: 1px solid rgba(234, 219, 210, 0.9);
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  color: #9b7a6f;
  font-size: 13px;
  line-height: 1.8;
}

.image-placeholder--hero {
  min-height: 420px;
}

.intro-strip {
  margin-top: -10px;
  padding-bottom: 18px;
}

.intro-strip__inner {
  display: grid;
}

.intro-card {
  background: var(--white);
  border: 1px solid rgba(234, 219, 210, 0.95);
  border-radius: 24px;
  padding: 22px 20px;
  box-shadow: var(--shadow-md);
}

.intro-card__label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-card h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.4;
}

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

.section {
  padding: 58px 0;
}

.section--soft {
  background: var(--bg-soft);
}

.section-heading {
  margin-bottom: 24px;
}

.section-heading__eyebrow,
.mini-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-dark);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading__title {
  margin: 0;
  font-size: clamp(26px, 6vw, 38px);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.section-heading__lead {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.soft-panel,
.note-box,
.stack-card,
.support-card,
.safety-card,
.flow-item,
.faq-item {
  background: var(--white);
  border: 1px solid rgba(234, 219, 210, 0.95);
  box-shadow: var(--shadow-sm);
}

.soft-panel {
  border-radius: 24px;
  padding: 22px 20px;
}

.check-list,
.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 30px;
  font-size: 14px;
  line-height: 1.9;
}

.check-list li + li,
.plain-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--bg-soft-2);
  box-shadow: inset 0 0 0 5px var(--accent);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.stack-cards,
.support-cards,
.safety-grid,
.faq-list {
  display: grid;
  gap: 14px;
}

.stack-card,
.support-card,
.safety-card {
  border-radius: 22px;
  padding: 18px;
}

.stack-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.stack-card__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
}

.stack-card__body h3,
.support-card h3,
.safety-card h3,
.flow-item__body h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.stack-card__body p,
.support-card p,
.safety-card p,
.flow-item__body p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.image-text__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}

.image-text__text h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.4;
}

.image-text__text p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.image-text__text .plain-list,
.image-text__text .check-list {
  margin-top: 16px;
}

.support-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.note-box {
  margin-top: 18px;
  border-radius: 20px;
  padding: 18px;
}

.note-box__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.note-box p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.flow-list {
  display: grid;
  gap: 14px;
}

.flow-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  border-radius: 20px;
  padding: 18px;
}

.flow-item__num {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-weight: 700;
}

.faq-item {
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 18px 48px 18px 18px;
  font-size: 15px;
  font-weight: 700;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent-dark);
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 14px;
}

.cta-section {
  padding: 64px 0 88px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 44px 28px 40px;
  text-align: center;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.72), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.4), transparent 24%),
    linear-gradient(135deg, #f6eee8 0%, #efe1d8 52%, #ead9cf 100%);
  border: 1px solid rgba(191, 124, 107, 0.18);
  box-shadow: 0 24px 56px rgba(88, 56, 44, 0.10);
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  pointer-events: none;
}

.cta-box__eyebrow {
  position: relative;
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.cta-box__title {
  position: relative;
  margin: 0;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.38;
  letter-spacing: -0.02em;
  color: var(--text);
}

.cta-box__lead {
  position: relative;
  max-width: 680px;
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--muted);
}

.cta-box__badges {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 760px;
  margin: 26px auto 0;
  padding: 0;
  list-style: none;
}

.cta-box__badges li {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(191, 124, 107, 0.14);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(88, 56, 44, 0.05);
}

.cta-box__actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button--cta-primary,
.button--cta-secondary {
  min-width: 240px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.02em;
  transition: 0.25s ease;
}

.button--cta-primary {
  background: linear-gradient(135deg, #bf7c6b 0%, #a66556 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(166, 101, 86, 0.22);
}

.button--cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(166, 101, 86, 0.28);
}

.button--cta-secondary {
  background: rgba(255, 255, 255, 0.78);
  color: var(--text);
  border: 1px solid rgba(191, 124, 107, 0.18);
  box-shadow: 0 10px 22px rgba(88, 56, 44, 0.06);
}

.button--cta-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .cta-section {
    padding: 46px 0 64px;
  }

  .cta-box {
    border-radius: 24px;
    padding: 34px 18px 28px;
    text-align: left;
  }

  .cta-box::before {
    inset: 10px;
    border-radius: 18px;
  }

  .cta-box__eyebrow {
    margin-bottom: 10px;
  }

  .cta-box__title {
    font-size: 28px;
    line-height: 1.45;
  }

  .cta-box__lead {
    margin-top: 14px;
    font-size: 14px;
    line-height: 1.9;
  }

  .cta-box__badges {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 22px;
  }

  .cta-box__badges li {
    font-size: 12px;
    min-height: 34px;
    padding: 7px 12px;
  }

  .cta-box__actions {
    flex-direction: column;
    margin-top: 24px;
  }

  .button--cta-primary,
  .button--cta-secondary {
    width: 100%;
    min-width: 0;
  }
}

.site-footer {
  padding: 0 0 34px;
}

.site-footer__inner {
  border-top: 1px solid rgba(234, 219, 210, 0.9);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo-image {
  display: block;
  width: auto;
  height: 34px;
  max-width: 180px;
}

.site-footer__copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }

  .site-footer__logo-image {
    height: 38px;
    max-width: 200px;
  }
}

.section-observe {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  will-change: opacity, transform;
}

.section-observe.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) {
  .stack-card:hover,
  .support-card:hover,
  .safety-card:hover,
  .flow-item:hover,
  .faq-item:hover,
  .note-box:hover,
  .soft-panel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    transition: 0.28s ease;
  }
}

@media (min-width: 768px) {
  .hero {
    padding: 48px 0 72px;
  }

  .hero__inner {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 38px;
    align-items: center;
  }

  .hero__text {
    order: 1;
  }

  .hero__visual {
    order: 2;
  }

  .hero__actions,
  .cta-box__actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .stack-cards,
  .support-cards,
  .safety-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-text__inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .image-text--reverse .image-text__image {
    order: 2;
  }

  .image-text--reverse .image-text__text {
    order: 1;
  }

  .site-footer__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 76px 0;
  }

  .stack-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .support-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .section-observe,
  .section-observe.is-visible,
  .button,
  .stack-card,
  .support-card,
  .safety-card,
  .flow-item,
  .faq-item,
  .note-box,
  .soft-panel {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
.hero {
  padding: 0;
  background: none;
}

.hero__picture {
  display: block;
  width: 100%;
}

.hero__image {
  display: block;
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .hero__image {
    width: 100%;
    height: auto;
  }
}

.intro-strip {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, #f8f4f1 0%, #fdfaf8 100%);
}

.intro-strip__inner {
  display: flex;
  justify-content: center;
}

.intro-message--card {
  width: 100%;
  max-width: 860px;
  margin: 0;
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(234, 219, 210, 0.95);
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  text-align: left;
}

.intro-message__eyebrow {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-dark);
}

.intro-message__lead {
  margin: 0;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--text);
}

.intro-message__text {
  margin: 16px 0 0;
  max-width: 520px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

@media (max-width: 767px) {
  .intro-strip {
    padding: 38px 0 30px;
  }

  .intro-message--card {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .intro-message__lead {
    font-size: 24px;
    line-height: 1.65;
  }

  .intro-message__text {
    font-size: 13px;
  }
}

@media (max-width: 767px) {
  .intro-strip {
    padding: 38px 0 30px;
  }

  .intro-message {
    padding: 0 8px;
  }

  .intro-message__lead {
    font-size: 28px;
    line-height: 1.7;
    letter-spacing: 0.01em;
  }

  .intro-message__text {
    margin-top: 22px;
    padding-top: 16px;
    font-size: 13px;
    letter-spacing: 0.08em;
  }

  .intro-message__text::before {
    width: 44px;
  }
}
.pc-only-br {
  display: inline;
}

@media (max-width: 767px) {
  .pc-only-br {
    display: none;
  }
}
.image-text__image {
  margin: 0;
}

.image-text__img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (max-width: 767px) {
  .image-text__img {
    border-radius: 18px;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 251, 0.88);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 219, 210, 0.9);
}

.site-header__inner {
  width: min(calc(100% - 28px), var(--container));
  min-height: 68px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo__image {
  display: block;
  width: auto;
  height: 44px;
  max-width: 220px;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-nav a {
  font-size: 12px;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  transition: 0.25s ease;
}

.header-nav a:hover {
  background: var(--accent-pale);
  color: var(--accent-dark);
}

.header-nav__cta {
  background: var(--accent);
  color: #fff !important;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(234, 219, 210, 0.95);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(70, 42, 31, 0.06);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .site-logo__image {
    height: 34px;
    max-width: 160px;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-nav {
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(255, 253, 251, 0.98);
    border-top: 1px solid rgba(234, 219, 210, 0.9);
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .mobile-nav.is-open {
    max-height: 420px;
  }

  .mobile-nav__inner {
    width: min(calc(100% - 28px), var(--container));
    margin: 0 auto;
    padding: 10px 0 16px;
    display: grid;
  }

  .mobile-nav a {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0 4px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.5;
    border-bottom: 1px solid rgba(234, 219, 210, 0.8);
    background: transparent;
  }

  .mobile-nav a:first-child {
    border-top: 1px solid rgba(234, 219, 210, 0.8);
  }

  .mobile-nav__cta {
    margin-top: 14px;
    display: inline-flex !important;
    justify-content: center;
    min-height: 50px;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 999px;
    background: linear-gradient(135deg, #bf7c6b 0%, #a66556 100%) !important;
    color: #fff !important;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(166, 101, 86, 0.18);
  }
}

@media (max-width: 767px) {
  .site-header__inner {
    min-height: 60px;
    gap: 12px;
  }

  .site-logo__image {
    height: 34px;
    max-width: 160px;
  }

  .header-nav {
    display: none;
  }
}

.support-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.support-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--accent-pale);
  color: var(--accent-dark);
  flex-shrink: 0;
}

.support-card__svg {
  display: block;
  width: 22px;
  height: 22px;
}

.support-card h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.5;
}

.support-card p {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--muted);
}
.income-section__inner {
  align-items: start;
}

.income-list {
  display: grid;
  gap: 14px;
}

.income-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid rgba(234, 219, 210, 0.95);
  box-shadow: var(--shadow-sm);
}

.income-step__num {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.income-step__body p {
  margin: 0;
  font-size: 15px;
  line-height: 1.95;
  color: var(--text);
}

.income-list__note {
  margin: 2px 0 0;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}

@media (max-width: 767px) {
  .income-list {
    gap: 12px;
  }

  .income-step {
    grid-template-columns: 44px 1fr;
    gap: 12px;
    padding: 16px 14px 14px;
    border-radius: 16px;
  }

  .income-step__num {
    width: 36px;
    height: 36px;
    font-size: 11px;
  }

  .income-step__body p {
    font-size: 14px;
    line-height: 1.9;
  }

  .income-list__note {
    font-size: 11px;
  }
}
.job-cards {
  display: grid;
  gap: 14px;
}

.job-card {
  background: var(--white);
  border: 1px solid rgba(234, 219, 210, 0.95);
  box-shadow: var(--shadow-sm);
  border-radius: 22px;
  padding: 22px 18px 20px;
}

.job-card__num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.job-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}

.job-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

@media (min-width: 768px) {
  .job-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.job-cards {
  display: grid;
  gap: 14px;
}

.job-card {
  background: var(--white);
  border: 1px solid rgba(234, 219, 210, 0.95);
  box-shadow: var(--shadow-sm);
  border-radius: 22px;
  padding: 22px 18px 20px;
}

.job-card__num {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-pale);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.job-card h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
}

.job-card p {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.9;
  color: var(--muted);
}

.job-visual {
  margin-top: 22px;
}

.job-visual__img {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .job-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .job-visual__img {
    height: 300px;
  }
}

@media (max-width: 767px) {
  .job-visual {
    margin-top: 18px;
  }

  .job-visual__img {
    height: 180px;
    border-radius: 18px;
  }
}

/* 必要に応じて追加 */
#v-liver {
  background: linear-gradient(135deg, #fdfaf8 0%, #f3e8e1 100%);
}