:root {
  --color-bg: #ffffff;
  --color-text: #444444;
  --color-muted: #777777;
  --color-border: #d9d9d9;
  --color-soft: #f8f8f5;
  --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;
}

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

.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);
}

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

.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;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

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

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

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

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

figure {
  margin: 0;
}

.lead {
  margin-top: 48px;
  font-size: 25px;
  font-weight: 300;
  line-height: 2;
}

.hero-text {
  margin-top: 34px;
  color: var(--color-muted);
  font-size: 15px;
}

.intro {
  display: grid;
  grid-template-columns: 240px 1fr;
  column-gap: 64px;
  row-gap: 0;
}

.intro > .section-kicker {
  grid-row: 1 / span 2;
}

.intro h2 {
  grid-column: 2;
  margin-bottom: 30px;
}

.text-block {
  grid-column: 2;
  display: grid;
  gap: 18px;
}

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

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

.section-heading.centered {
  max-width: 620px;
  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);
}

.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;
}

.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;
}

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

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

.delivery {
  grid-column: 1 / -1;
}

.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;
}

.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;
}

.option-item p {
  margin-top: 0;
  color: var(--color-muted);
  font-size: 11px;
  line-height: 1.7;
}

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

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  max-width: 760px;
  margin: 0 auto;
}

.compare-card {
  padding: 12px;
  border: 1px solid var(--color-border);
  background: #ffffff;
}

.compare-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.image-panel {
  min-width: 0;
}

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

.image-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--color-soft);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.before-photo {
  filter: brightness(1.13) contrast(1.04) saturate(1.08) sepia(0.03);
}

.compare-card:hover img {
  transform: scale(1.035);
}

.face-mask-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.face-mask {
  position: absolute;
  left: var(--mask-x);
  top: var(--mask-y);
  width: var(--mask-w);
  height: var(--mask-h);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: 0 8px 22px rgba(255, 255, 255, 0.22);
  transform: translate(-50%, -50%);
  backdrop-filter: blur(11px);
}

.image-label {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-border);
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.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 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .intro > .section-kicker,
  .intro h2,
  .text-block {
    grid-column: auto;
  }

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

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

  .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;
  }

  .option-item {
    display: block;
  }

  .option-price {
    min-width: 0;
    text-align: left;
  }

  .comparison-grid {
    gap: 26px;
  }

  .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;
  }

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

  .compare-card {
    padding: 9px;
  }

  .compare-images {
    grid-template-columns: 1fr;
  }

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

  .image-frame {
    aspect-ratio: 4 / 5;
  }
}

@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;
  }
}
