:root {
  --color-bg: #ffffff;
  --color-text: #444444;
  --color-muted: #777777;
  --color-border: #d9d9d9;
  --color-soft: #f8f8f5;
  --color-panel: #fbfbf8;
  --color-badge: #e8f0c9;
  --color-badge-text: #59613e;
  --content-width: 960px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0;
}

.page-shell {
  width: min(var(--content-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 112px;
}

.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--color-border);
}

.section:first-child {
  border-top: 1px solid var(--color-border);
}

.section:last-child {
  border-bottom: 0;
}

.hero {
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px 0;
  text-align: center;
}

.eyebrow-row {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}

.new-badge {
  display: inline-flex;
  align-items: center;
  height: 27px;
  padding: 0 14px;
  border: 1px solid #d8e1b9;
  background: var(--color-badge);
  color: var(--color-badge-text);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.eyebrow,
.section-kicker {
  color: var(--color-muted);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1.55;
  text-wrap: balance;
}

h2 {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.7;
  text-wrap: balance;
}

h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

h4 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.lead {
  max-width: 620px;
  margin-top: 48px;
  margin-right: auto;
  margin-left: auto;
  font-size: 25px;
  font-weight: 300;
  line-height: 2;
  text-wrap: balance;
}

.hero-text {
  max-width: 620px;
  margin-top: 34px;
  margin-right: auto;
  margin-left: auto;
  color: var(--color-muted);
  font-size: 15px;
  text-wrap: pretty;
}

.intro {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.intro > .section-kicker {
  display: block;
  margin-bottom: 18px;
}

.intro h2 {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 30px;
  margin-left: auto;
}

.text-block {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-wrap: pretty;
}

.copy-line {
  display: block;
}

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

.section-heading h2 {
  margin-top: 12px;
}

.section-heading.centered {
  max-width: 680px;
  margin-right: auto;
  margin-bottom: 42px;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered p:last-child {
  margin-top: 18px;
  color: var(--color-muted);
  text-wrap: pretty;
}

.preparing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.preparing-card {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.24)),
    var(--color-panel);
}

.preparing-card + .preparing-card {
  border-left: 1px solid var(--color-border);
}

.preparing-inner {
  width: 100%;
  max-width: 240px;
  text-align: center;
}

.preparing-label {
  display: block;
  margin-bottom: 24px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: uppercase;
}

.preparing-line {
  display: block;
  width: 58px;
  height: 1px;
  margin: 0 auto 24px;
  background: #c9c9c2;
}

.preparing-title {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
  font-weight: 400;
}

.preparing-text {
  color: var(--color-muted);
  font-size: 12px;
  line-height: 1.9;
}

.menu-section {
  padding: 76px 0;
}

.menu-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 46px 54px 54px;
  border: 1px solid #b8b8b8;
  border-radius: 7px;
  background: #ffffff;
  text-align: left;
}

.menu-title-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 58px;
}

.menu-title-row h2 {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid #8f8f8f;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}

.menu-title-row .new-badge {
  height: 27px;
  padding: 0 13px;
  border-color: #b7ed99;
  background: #a8f282;
  color: #444444;
  font-size: 13px;
  text-transform: lowercase;
}

.plan-grid {
  display: grid;
  gap: 38px;
}

.plan-card {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  column-gap: 22px;
  row-gap: 10px;
  background: #ffffff;
}

.plan-card h3 {
  grid-column: 1;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.price {
  grid-column: 2;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  white-space: nowrap;
}

.price span {
  display: inline-block;
  margin-left: 6px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 300;
}

.feature-list {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.feature-list li,
.delivery,
.note-list li {
  color: var(--color-text);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  text-wrap: pretty;
}

.feature-list li::before,
.delivery::before,
.note-list li::before {
  content: "・";
}

.delivery {
  grid-column: 1 / -1;
  text-align: left;
}

.menu-bottom-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.45fr);
  gap: 38px;
  margin-top: 62px;
  padding: 28px 34px;
  border: 1px solid #b8b8b8;
  border-radius: 7px;
  text-align: left;
}

.menu-bottom-box h3 {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
}

.option-list,
.note-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.option-item {
  display: block;
}

.sp-only {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 900ms var(--ease), transform 900ms var(--ease);
}

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

@media (max-width: 760px) {
  body {
    font-size: 14px;
    line-height: 1.9;
  }

  .page-shell {
    width: min(100% - 28px, var(--content-width));
    padding: 54px 0 72px;
  }

  .section,
  .hero {
    padding: 48px 0;
  }

  .hero {
    min-height: 440px;
  }

  .eyebrow-row {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 19px;
  }

  .lead {
    margin-top: 34px;
    font-size: 21px;
    line-height: 1.9;
  }

  .hero-text {
    margin-top: 28px;
    font-size: 14px;
  }

  .intro h2 {
    margin-bottom: 24px;
  }

  .preparing-grid {
    max-width: 560px;
  }

  .preparing-card {
    min-height: 300px;
    padding: 24px;
  }

  .menu-section {
    padding: 48px 0;
  }

  .menu-panel {
    padding: 34px 28px 34px;
  }

  .menu-title-row {
    gap: 18px;
    margin-bottom: 38px;
  }

  .plan-grid {
    gap: 32px;
  }

  .plan-card {
    grid-template-columns: 1fr;
    row-gap: 6px;
  }

  .plan-card h3,
  .price,
  .feature-list,
  .delivery {
    grid-column: auto;
  }

  .price {
    white-space: normal;
  }

  .menu-bottom-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 42px;
    padding: 24px 22px;
  }

  .sp-only {
    display: inline;
  }
}

@media (max-width: 460px) {
  .menu-panel {
    padding: 30px 20px;
  }

  .menu-title-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .preparing-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 9px;
  }

  .preparing-card + .preparing-card {
    border-top: 1px solid var(--color-border);
    border-left: 0;
  }

  .menu-bottom-grid {
    padding: 22px 18px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
