/*
Theme Name: mamameal
Theme URI: https://mama-meal.com/
Author: mamameal
Description: Original WordPress theme for Mama Meal.
Version: 1.0.0
Text Domain: mamameal
*/

@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800;900&display=swap");

:root {
  --orange: #ff8500;
  --orange-dark: #ec7400;
  --orange-pale: #fff4e6;
  --green: #61ad35;
  --green-dark: #348f2e;
  --cream: #fffaf3;
  --cream-strong: #fff3df;
  --text: #25201c;
  --muted: #746b62;
  --line: #f0dfcc;
  --white: #fff;
  --shadow: 0 12px 34px rgba(105, 65, 25, 0.12);
  --radius: 18px;
  --header: 78px;
  --font-rounded: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "Yu Gothic", "Meiryo", system-ui, sans-serif;
  font-family: var(--font-rounded);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  letter-spacing: 0;
  line-break: strict;
  overflow-wrap: break-word;
  word-break: auto-phrase;
}

body.nav-open {
  overflow: hidden;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

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

h1,
h2,
h3,
summary,
.button,
.small-button,
.nav-button,
.side-order-link,
.partner-buttons .button,
.frozen-order-button,
.service-body a,
.text-link,
.footer-group a {
  line-break: strict;
  overflow-wrap: normal;
  text-wrap: balance;
  word-break: keep-all;
}

p,
li,
dd,
.page-lead,
.section-heading p,
.service-body p,
.info-card p,
.faq-item p {
  line-break: strict;
  text-wrap: pretty;
  word-break: auto-phrase;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header);
  padding: 14px clamp(22px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(240, 223, 204, 0.72);
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(94, 59, 19, 0.08);
}

.brand img {
  width: clamp(150px, 17vw, 210px);
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--orange);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-parent::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  z-index: 80;
  display: grid;
  min-width: 210px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -8px);
  visibility: hidden;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
}

.nav-submenu::before {
  content: "";
  position: absolute;
  inset: -14px 0 auto;
  height: 14px;
}

.nav-dropdown:hover .nav-submenu,
.nav-dropdown:focus-within .nav-submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.nav-submenu a {
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--orange);
  background: var(--orange-pale);
}

.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  line-height: 1.2;
}

.nav-button-fill {
  color: #fff;
  background: var(--orange);
}

.site-nav .nav-button-fill:hover,
.site-nav .nav-button-fill:focus-visible {
  color: var(--orange);
  background: #fff;
  border-color: var(--orange);
}

.nav-button-outline {
  color: var(--orange);
  background: #fff;
}

.side-order {
  position: fixed;
  left: 0;
  top: var(--header);
  bottom: 0;
  z-index: 42;
  display: none;
  width: 196px;
  padding: 26px 14px;
  overflow-y: auto;
  background: linear-gradient(180deg, #ffc475 0%, #ffb25a 100%);
  box-shadow: 12px 0 28px rgba(105, 65, 25, 0.13);
}

.side-order-inner {
  display: grid;
  gap: 16px;
  color: var(--text);
}

.side-order-label {
  margin: 0;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.side-order h2 {
  margin: 0;
  font-size: 1.45rem;
  line-height: 1.35;
}

.side-order-note {
  margin: 0;
  color: #4a4138;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.75;
}

.side-order-buttons {
  display: grid;
  gap: 12px;
}

.side-order-link {
  position: relative;
  display: grid;
  align-items: start;
  justify-items: center;
  min-height: 82px;
  padding: 14px 10px 38px;
  overflow: hidden;
  border: 3px solid rgba(255, 133, 0, 0.58);
  border-radius: 12px;
  background: #fffdf1;
  color: #4d4841;
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1.28;
  text-align: center;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.side-order-link::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 52px;
  height: 52px;
  background: url("assets/favicon.png") center / contain no-repeat;
  transform: translateX(-50%);
  opacity: 0.95;
  pointer-events: none;
}

.side-order-link::after {
  content: none;
}

.side-order-link span {
  position: relative;
  z-index: 1;
}

.side-order-link:hover,
.side-order-link:focus-visible {
  border-color: var(--orange);
  box-shadow: 0 12px 20px rgba(117, 70, 18, 0.15);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 70;
  width: 46px;
  aspect-ratio: 1;
  padding: 11px;
  border: 0;
  border-radius: 50%;
  background: var(--orange-pale);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 4px;
  background: var(--text);
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

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

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(480px, 1.08fr);
  min-height: 540px;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 28%, rgba(255, 210, 111, 0.22) 0 48px, transparent 49px),
    radial-gradient(circle at 96% 92%, rgba(255, 210, 111, 0.35) 0 72px, transparent 73px),
    #fffdf9;
}

.hero-copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 108px) 0 clamp(58px, 8vw, 98px) clamp(34px, 8vw, 92px);
}

.hero-kicker,
.section-label {
  margin: 0 0 12px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.8rem, 4.7vw, 4.35rem);
  line-height: 1.35;
  letter-spacing: 0;
}

.hero h1 span {
  white-space: nowrap;
}

.hero-lead {
  width: min(420px, 100%);
  margin: 28px 0 0;
  font-weight: 700;
  color: #403833;
}

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

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

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -140px;
  z-index: 2;
  width: 45%;
  background: linear-gradient(90deg, #fffdf9 0%, rgba(255, 253, 249, 0.85) 45%, rgba(255, 253, 249, 0) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-goal {
  position: absolute;
  right: clamp(24px, 7vw, 110px);
  top: 148px;
  z-index: 4;
  width: clamp(170px, 16vw, 250px);
  filter: drop-shadow(0 18px 28px rgba(91, 54, 20, 0.15));
}

.hero-dots {
  position: absolute;
  z-index: 1;
  width: 116px;
  height: 116px;
  opacity: 0.45;
  background-image: radial-gradient(var(--orange) 2px, transparent 2px);
  background-size: 16px 16px;
}

.hero-dots-left {
  left: 28px;
  top: 220px;
}

.hero-dots-right {
  right: 16px;
  bottom: 78px;
}

.button,
.small-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 900;
  line-height: 1.25;
}

.button {
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover,
.button:focus-visible,
.small-button:hover,
.small-button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 22px rgba(255, 133, 0, 0.23);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--orange-dark);
}

.button-outline {
  color: var(--orange);
  border-color: var(--orange);
  background: #fff;
}

.text-link {
  color: var(--orange);
  gap: 8px;
}

.text-link::after {
  content: "→";
}

.section-panel,
.split-section,
.reason,
.news-instagram,
.trust,
.voice,
.order-cta,
.faq-section,
.page-hero,
.page-section,
.page-grid,
.company,
.contact {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.section-panel {
  position: relative;
  z-index: 5;
  margin-top: -42px;
  padding: clamp(34px, 5vw, 56px) clamp(26px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.meal-slider {
  position: relative;
  z-index: 6;
  width: 100%;
  margin: -28px 0 24px;
  overflow: hidden;
  overflow: clip;
  contain: paint;
  padding: 20px 0;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0), rgba(255, 250, 243, 0.88) 8%, rgba(255, 250, 243, 0.88) 92%, rgba(255, 250, 243, 0));
}

.meal-slider::before,
.meal-slider::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: min(120px, 12vw);
  content: "";
  pointer-events: none;
}

.meal-slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), rgba(255, 250, 243, 0));
}

.meal-slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(255, 250, 243, 0));
}

.meal-slider + .section-panel {
  margin-top: 0;
}

.meal-slider-track {
  display: flex;
  width: max-content;
  gap: 16px;
  padding-inline: 16px;
  animation: mealSlide 54s linear infinite;
  will-change: transform;
}

.meal-slider:hover .meal-slider-track {
  animation-play-state: paused;
}

.meal-slider img {
  flex: 0 0 clamp(180px, 18vw, 280px);
  width: clamp(180px, 18vw, 280px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(80, 52, 18, 0.1);
}

@keyframes mealSlide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  width: min(720px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.box-title h2,
.contact-copy h2,
.company h2,
.trust h2,
.philosophy-copy h2,
.order-cta h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.section-heading p:last-child,
.philosophy-copy p,
.trust-copy p,
.contact-copy p {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 22px;
}

.service-grid .service-card {
  grid-column: span 2;
}

.service-grid .service-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.service-grid .service-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.service-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 28px rgba(80, 52, 18, 0.08);
}

.service-image {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 4 / 3;
  overflow: visible;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-image > img {
  position: absolute;
  inset: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

.service-icon {
  position: absolute;
  left: 18px;
  bottom: -26px;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border: 5px solid #fff;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  font-size: 1.15rem;
  font-weight: 900;
}

.service-icon img {
  width: 30px;
  height: 30px;
}

.service-icon--image {
  overflow: hidden;
  background: transparent;
}

.service-icon--image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.service-icon-character img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.service-icon-green {
  background: var(--green);
}

.service-icon-pink {
  background: #ff5f7c;
}

.new-badge {
  position: absolute;
  left: 24px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: #ff5f7c;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.service-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 42px 24px 24px;
  text-align: center;
}

.service-body h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
}

.service-body h3 .service-card__note {
  display: block;
  margin-top: 0.18em;
  font-size: 0.72em;
  line-height: 1.25;
}

.service-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-body a {
  display: inline-flex;
  justify-content: center;
  min-width: 136px;
  margin-top: auto;
  padding: 8px 16px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 900;
}

.split-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  padding: clamp(62px, 8vw, 92px) 24px;
}

.philosophy-copy {
  max-width: 520px;
}

.philosophy-photo-wrap {
  position: relative;
  width: min(470px, 100%);
  justify-self: center;
}

.philosophy-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.18 / 1;
  border-radius: 53% 47% 56% 44% / 45% 54% 46% 55%;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.philosophy-photo::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  border: 3px solid rgba(255, 133, 0, 0.35);
  border-radius: 47% 53% 48% 52% / 54% 44% 56% 46%;
  pointer-events: none;
}

.philosophy-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(2deg) scale(1.06);
}

.section-mascot {
  position: absolute;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(0 10px 18px rgba(85, 55, 18, 0.14));
  animation: mascot-float 5.6s ease-in-out infinite;
  transform: translate3d(0, 0, 0) rotate(var(--mascot-rotate, 0deg));
  transform-origin: 50% 80%;
}

.mascot-teacher {
  --mascot-rotate: -8deg;
  width: 118px;
  left: 48%;
  bottom: 30px;
  animation-delay: -0.9s;
}

.mascot-cook {
  --mascot-rotate: 8deg;
  width: 126px;
  right: 0;
  bottom: 24px;
  animation-delay: -2.2s;
}

.veggie {
  position: absolute;
  z-index: 4;
  display: block;
  width: 56px;
  height: 66px;
  border-radius: 50% 50% 48% 52%;
  background:
    radial-gradient(circle at 48% 22%, #62a83a 0 13px, transparent 14px),
    linear-gradient(#ff9a36 0 0) center 31px / 24px 30px no-repeat;
  filter: drop-shadow(0 7px 12px rgba(85, 55, 18, 0.14));
}

.veggie::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 18px;
  width: 26px;
  height: 22px;
  border-radius: 90% 10% 85% 15%;
  background: #62a83a;
  transform: rotate(-30deg);
}

.veggie-left {
  left: -18px;
  bottom: -10px;
  transform: rotate(-18deg);
}

.veggie-right {
  right: -18px;
  bottom: 8px;
  transform: rotate(18deg);
}

.reason {
  padding: clamp(40px, 6vw, 68px) 0;
}

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

.reason-grid article {
  min-height: 260px;
  padding: 26px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.reason-grid img,
.reason-letter {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  color: var(--green);
  font-size: 1.55rem;
  font-weight: 900;
}

.reason-grid h3 {
  margin: 0 0 10px;
  font-size: 1.06rem;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.85;
}

.news-instagram {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1.18fr);
  gap: 18px;
  padding: 20px 0 0;
}

.news-instagram--news-only {
  grid-template-columns: minmax(0, 1fr);
}

.news-box,
.instagram-box,
.voice article,
.company,
.contact {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.news-box,
.instagram-box {
  padding: 26px;
}

.box-title {
  display: flex;
  align-items: end;
  gap: 18px;
  margin-bottom: 18px;
}

.box-title.with-action {
  align-items: center;
  justify-content: space-between;
}

.news-box ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 18px;
  list-style: none;
  font-size: 0.93rem;
}

.news-box li {
  display: grid;
  grid-template-columns: 104px 1fr;
  gap: 16px;
}

.news-box time {
  color: var(--muted);
}

.small-button {
  min-height: 34px;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: var(--orange);
  font-size: 0.82rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.insta-grid img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 12px;
  object-fit: cover;
}

.trust {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1.18fr) 160px;
  gap: 26px;
  align-items: center;
  margin-top: 18px;
  padding: 0 32px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--orange-pale);
}

.trust-photo {
  height: 250px;
}

.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.haccp-certified-mark {
  display: block;
  justify-self: center;
  width: 111px;
  margin-inline: auto;
}

.haccp-certified-mark img {
  display: block;
  width: 100%;
  height: auto;
}

.voice {
  padding: clamp(48px, 7vw, 72px) 0 32px;
}

.voice-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.voice article {
  display: flex;
  gap: 16px;
  padding: 24px;
}

.voice article > div {
  min-width: 0;
}

.voice img {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
}

.voice h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  overflow-wrap: break-word;
  text-wrap: pretty;
  word-break: auto-phrase;
}

.voice p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.88rem;
}

.voice strong {
  font-size: 0.86rem;
}

.faq-section {
  padding: clamp(46px, 7vw, 72px) 0;
}

.faq-section,
.about-mock-faq,
.service-family-faq,
.bento-mock-faq,
.delivery-mock-faq,
.lunch-mock-faq,
.frozen-mock-faq,
.shokuiku-mock-faq,
.reasons-mock-faq,
.safety-mock-faq {
  position: relative;
  overflow: visible;
}

.faq-list,
.service-family-faq-list,
.bento-faq-grid,
.delivery-faq-list,
.lunch-faq-list,
.frozen-faq-grid,
.shokuiku-faq-list,
.reasons-faq-grid,
.safety-faq-grid {
  position: relative;
  grid-template-columns: minmax(0, 1fr);
}

.faq-list::after,
.service-family-faq-list::after,
.bento-faq-grid::after,
.delivery-faq-list::after,
.lunch-faq-list::after,
.frozen-faq-grid::after,
.shokuiku-faq-list::after,
.reasons-faq-grid::after,
.safety-faq-grid::after {
  display: block;
  grid-column: 1 / -1;
  justify-self: end;
  width: clamp(92px, 13vw, 168px);
  aspect-ratio: 1006 / 1563;
  margin-top: clamp(10px, 2vw, 24px);
  content: "";
  pointer-events: none;
  background: url("assets/faq-nutritionist-guide.png") bottom right / contain no-repeat;
}

.faq-list {
  display: grid;
  gap: 12px;
  width: min(880px, 100%);
  margin: 0 auto;
}

.faq-item {
  position: relative;
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.05);
  overflow: hidden;
}

.faq-item summary {
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 18px;
  max-width: 100%;
  padding: 18px 22px;
  cursor: pointer;
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  list-style: none;
  overflow-wrap: anywhere;
  text-wrap: pretty;
  white-space: normal;
  word-break: normal;
}

.faq-question-text {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  min-width: 28px;
  aspect-ratio: 1;
  border-radius: 50%;
  color: #fff;
  background: var(--orange);
  line-height: 1;
  justify-self: end;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px;
  color: var(--muted);
  line-height: 1.9;
}

.faq-item__content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-8px);
  transition:
    height 0.76s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.46s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: height, opacity, transform;
}

.faq-item.is-open .faq-item__content {
  opacity: 1;
  transform: translateY(0);
}

.faq-item__content > :last-child {
  padding-bottom: 20px;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 80px) clamp(18px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 210, 111, 0.3) 0 54px, transparent 55px),
    linear-gradient(120deg, #fffdf9, #fff4df);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1.35;
}

.page-hero .button {
  margin-top: 24px;
}

.page-lead {
  margin: 20px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.page-hero-image {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 53% 47% 56% 44% / 45% 54% 46% 55%;
  box-shadow: var(--shadow);
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--plain {
  display: block;
  max-width: 980px;
  padding: clamp(48px, 7vw, 78px) 0 clamp(28px, 4vw, 42px);
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.page-hero--plain h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.45;
}

.page-hero--plain .page-lead {
  max-width: 760px;
  margin-top: 16px;
  font-weight: 600;
  line-height: 1.9;
}

.page-section {
  padding: clamp(46px, 7vw, 78px) 0 0;
}

.page-section h2 {
  margin: 0 0 18px;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  line-height: 1.45;
}

.page-section p {
  color: var(--muted);
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  padding-top: 24px;
}

.page-grid--reasons {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
  gap: 24px;
}

.policy-document {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px) 0 clamp(18px, 4vw, 38px);
  color: var(--text);
}

.policy-document section + section {
  margin-top: clamp(32px, 5vw, 48px);
}

.policy-document h2 {
  margin: 0 0 14px;
  color: var(--text);
  font-size: clamp(1.28rem, 2.2vw, 1.72rem);
  line-height: 1.55;
}

.policy-document p,
.policy-document li,
.policy-document address {
  color: var(--muted);
  font-size: 1rem;
  line-height: 2;
}

.policy-document p {
  margin: 0;
}

.policy-document p + p {
  margin-top: 10px;
}

.policy-document ul {
  margin: 12px 0 0;
  padding-left: 1.4em;
}

.policy-document li + li {
  margin-top: 6px;
}

.policy-document address {
  margin-top: 10px;
  font-style: normal;
}

.policy-lead {
  margin-bottom: clamp(34px, 5vw, 52px);
  padding-bottom: clamp(26px, 4vw, 40px);
  border-bottom: 1px solid var(--line);
}

.about-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 36px;
}

.about-mock::before,
.about-mock::after {
  position: fixed;
  z-index: 0;
  width: 190px;
  height: 320px;
  content: "";
  pointer-events: none;
  opacity: 0.38;
  background:
    radial-gradient(ellipse at 52% 14%, transparent 0 34px, #bfe7a8 35px 38px, transparent 39px),
    radial-gradient(ellipse at 40% 32%, transparent 0 23px, #bfe7a8 24px 27px, transparent 28px),
    radial-gradient(ellipse at 60% 50%, transparent 0 25px, #bfe7a8 26px 29px, transparent 30px);
}

.about-mock::before {
  bottom: 90px;
  left: 8px;
  transform: rotate(-12deg);
}

.about-mock::after {
  display: none;
}

.about-mock-hero,
.about-mock-section,
.about-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.about-mock-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1.14fr);
  gap: clamp(26px, 4vw, 56px);
  align-items: center;
  margin-top: 34px;
  padding: clamp(42px, 6vw, 72px) clamp(34px, 5vw, 62px);
  border: 1px solid rgba(241, 211, 176, 0.85);
  border-radius: 20px;
  background:
    radial-gradient(circle at 11% 22%, rgba(255, 220, 139, 0.45) 0 42px, transparent 43px),
    radial-gradient(circle at 78% 12%, rgba(166, 220, 142, 0.16) 0 86px, transparent 87px),
    linear-gradient(110deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 237, 0.94));
  box-shadow: 0 22px 56px rgba(96, 66, 30, 0.12);
}

.about-mock-hero::after {
  position: absolute;
  right: -20px;
  bottom: -22px;
  width: 154px;
  height: 154px;
  content: "";
  background:
    linear-gradient(35deg, transparent 42%, #7bcf66 43% 47%, transparent 48%),
    radial-gradient(ellipse at 46% 50%, #ff9f41 0 42%, transparent 43%);
  opacity: 0.55;
  transform: rotate(-24deg);
}

.about-label,
.about-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.about-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.35rem, 4.35vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.about-hero-copy > p:not(.about-label) {
  margin: clamp(18px, 3vw, 26px) 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 700;
  line-height: 2.05;
}

.about-hero-badges {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 12px;
  margin-top: 30px;
}

.about-hero-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  gap: 8px;
  padding: 9px 20px 9px 12px;
  border: 1px solid rgba(239, 220, 196, 0.9);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(96, 66, 30, 0.08);
  color: #6e625b;
  font-family: var(--font-rounded);
  font-size: 0.88rem;
  font-weight: 900;
}

.about-hero-badges img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-hero-visual {
  position: relative;
  z-index: 1;
}

.about-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 0;
  filter: drop-shadow(0 20px 30px rgba(96, 66, 30, 0.1));
}

.about-mock-section {
  padding-top: clamp(62px, 8vw, 92px);
}

.about-section-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(30px, 4vw, 42px);
  text-align: center;
}

.about-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.45;
}

.about-section-heading span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 700;
  line-height: 2;
}

.about-mock-section .about-section-heading > p {
  display: none;
}

.about-mock-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 28px);
}

.about-mock-card {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 270px;
  padding: 28px clamp(20px, 3vw, 30px) 32px;
  border: 1px solid rgba(241, 211, 176, 0.7);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(96, 66, 30, 0.08);
  text-align: center;
}

.about-mock-card img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  justify-self: center;
}

.about-mock-card h3 {
  margin: 18px 0 14px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  line-height: 1.5;
}

.about-mock-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.95;
  text-align: left;
}

.about-photo-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.about-photo-strip::before,
.about-photo-strip::after {
  position: absolute;
  z-index: 0;
  bottom: -26px;
  width: clamp(72px, 10vw, 132px);
  aspect-ratio: 0.52 / 1;
  content: "";
  pointer-events: none;
  background: center / contain no-repeat;
}

.about-photo-strip::before {
  left: clamp(-96px, -8vw, -54px);
  background-image: url("assets/about/ornament-leaf-left.png");
}

.about-photo-strip::after {
  right: clamp(-96px, -8vw, -54px);
  background-image: url("assets/about/ornament-leaf-right.png");
}

.about-photo-strip img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 2.05 / 1;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(96, 66, 30, 0.1);
}

.about-town {
  display: block;
  width: min(1120px, 100%);
  margin: 30px auto -8px;
}

.about-mock-faq {
  padding-top: clamp(54px, 8vw, 84px);
}

.about-faq-wrap {
  position: relative;
  width: min(780px, 100%);
  margin: 0 auto;
}

.about-faq-wrap .faq-list {
  width: 100%;
}

.about-faq-wrap .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.about-faq-person {
  display: none;
}

.service-family {
  position: relative;
  padding-bottom: 28px;
  overflow: hidden;
}

.service-family::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 310px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 204, 104, 0.18) 0 84px, transparent 85px),
    radial-gradient(circle at 78% 14%, rgba(255, 169, 57, 0.12) 0 150px, transparent 151px);
}

.service-family--delivery::before {
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 214, 139, 0.18) 0 92px, transparent 93px),
    radial-gradient(circle at 76% 10%, rgba(97, 173, 53, 0.12) 0 165px, transparent 166px);
}

.service-family--lunch::before {
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 202, 98, 0.18) 0 84px, transparent 85px),
    radial-gradient(circle at 72% 12%, rgba(97, 173, 53, 0.12) 0 130px, transparent 131px);
}

.service-family-hero,
.service-family-section,
.service-family-gallery,
.service-family-faq {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.service-family-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(44px, 6vw, 72px) clamp(38px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 219, 145, 0.42) 0 54px, transparent 55px),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 232, 0.95));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.service-family-hero::before,
.service-family-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.45;
}

.service-family-hero::before {
  right: 36px;
  bottom: 34px;
  width: 100px;
  height: 130px;
  border-right: 4px solid #ffb45d;
  border-left: 4px solid #ffb45d;
  border-radius: 50%;
  transform: rotate(18deg);
}

.service-family-hero::after {
  left: 48px;
  bottom: 30px;
  width: 150px;
  height: 72px;
  border-top: 3px solid #efc489;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.service-family-hero-copy,
.service-family-hero-visual,
.service-family-card > div {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.service-family-label,
.service-family-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.service-family-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.service-family-hero__note {
  display: block;
  margin-top: 0.16em;
  font-size: clamp(1.55rem, 2.4vw, 2.6rem);
  line-height: 1.2;
}

.service-family-hero-copy > p:not(.service-family-label) {
  width: min(430px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.service-family-hero-visual img {
  width: min(100%, 560px);
  aspect-ratio: 1;
  margin-left: auto;
  object-fit: cover;
  border-radius: 50%;
}

.service-family-section,
.service-family-gallery,
.service-family-gallery-divider,
.service-family-faq {
  padding-top: clamp(56px, 7vw, 86px);
}

.service-family-gallery-divider {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding-bottom: clamp(8px, 2vw, 18px);
}

.service-family-gallery-divider img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.lower-faq-divider {
  width: min(1160px, calc(100% - 48px));
  margin: clamp(44px, 6vw, 82px) auto clamp(18px, 3vw, 34px);
}

.lower-faq-divider img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.service-family-section-heading {
  width: min(760px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.service-family-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.45;
  letter-spacing: 0;
}

.service-family-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.service-family-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

/* 2枚だけのカードは、3カラム時と同じカード幅を保って中央に配置する。 */
.service-family-card-grid:has(> .service-family-card:nth-child(2):last-child) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: 66.6667%;
  margin-inline: auto;
}

.service-family-card {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  min-height: 178px;
  padding: 28px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
  text-align: center;
}

.service-family-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.service-family-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.service-family-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.service-family-gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 18px;
}

.service-family-gallery-heading span {
  height: 1px;
  border-top: 2px dotted rgba(255, 143, 36, 0.45);
}

.service-family-gallery-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.35;
}

.service-family-gallery-heading img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.service-family--bento .service-family-gallery-heading img {
  width: 54px;
  height: 54px;
}

.service-family-gallery-lead,
.service-family-gallery-note {
  width: min(760px, 100%);
  margin: 0 auto 24px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
}

.service-family-gallery-note {
  margin-top: 18px;
  margin-bottom: 0;
}

.service-family-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-family-gallery-grid img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 58, 24, 0.1);
}

.service-family-faq-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.service-family-faq-list .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.service-family-faq-list .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.bento-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.bento-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 300px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 204, 104, 0.18) 0 80px, transparent 81px),
    radial-gradient(circle at 78% 18%, rgba(255, 169, 57, 0.12) 0 150px, transparent 151px);
}

.bento-mock-hero,
.bento-mock-section,
.bento-gallery-section,
.bento-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.bento-mock-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(44px, 6vw, 72px) clamp(38px, 5vw, 70px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 219, 145, 0.42) 0 54px, transparent 55px),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 232, 0.95));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.bento-mock-hero::before,
.bento-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.45;
}

.bento-mock-hero::before {
  right: 36px;
  bottom: 34px;
  width: 100px;
  height: 130px;
  border-right: 4px solid #ffb45d;
  border-left: 4px solid #ffb45d;
  border-radius: 50%;
  transform: rotate(18deg);
}

.bento-mock-hero::after {
  left: 48px;
  bottom: 30px;
  width: 150px;
  height: 72px;
  border-top: 3px solid #efc489;
  border-radius: 50%;
  transform: rotate(-18deg);
}

.bento-hero-copy,
.bento-hero-visual {
  position: relative;
  z-index: 1;
}

.bento-label,
.bento-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.bento-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.3vw, 5.3rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.bento-hero-copy > p:not(.bento-label) {
  width: min(430px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.bento-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.bento-mock-section {
  padding-top: clamp(56px, 7vw, 82px);
}

.bento-section-heading {
  width: min(740px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.bento-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.bento-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.bento-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.bento-info-card {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 18px;
  min-height: 178px;
  padding: 28px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.bento-info-card img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.bento-info-card h3 {
  margin: 2px 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.bento-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.bento-gallery-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.bento-gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}

.bento-gallery-heading span {
  height: 1px;
  border-top: 2px dotted rgba(255, 143, 36, 0.45);
}

.bento-gallery-heading h2 {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.35;
}

.bento-gallery-heading img {
  width: 44px;
  height: 44px;
}

.bento-mock-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.bento-mock-gallery img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 58, 24, 0.1);
}

.bento-mock-gallery img:nth-child(-n + 2) {
  grid-column: auto;
  aspect-ratio: 1.45 / 1;
}

.bento-mock-faq {
  padding-top: clamp(50px, 7vw, 76px);
}

.bento-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.bento-faq-grid .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.bento-faq-grid .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.delivery-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.delivery-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 320px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 14%, rgba(255, 214, 139, 0.18) 0 92px, transparent 93px),
    radial-gradient(circle at 76% 10%, rgba(255, 167, 57, 0.12) 0 170px, transparent 171px);
}

.delivery-mock-hero,
.delivery-mock-section,
.delivery-gallery-section,
.delivery-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.delivery-mock-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(28px, 4.4vw, 66px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(42px, 5.8vw, 68px) clamp(36px, 5vw, 66px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 18%, rgba(255, 224, 152, 0.5) 0 42px, transparent 43px),
    radial-gradient(circle at 15% 16%, rgba(255, 224, 152, 0.46) 0 36px, transparent 37px),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98), rgba(255, 247, 232, 0.95));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.delivery-mock-hero::before,
.delivery-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.45;
}

.delivery-mock-hero::before {
  right: 40px;
  bottom: 42px;
  width: 120px;
  height: 92px;
  border-top: 4px solid #8bc46b;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.delivery-mock-hero::after {
  left: 52px;
  bottom: 34px;
  width: 150px;
  height: 64px;
  border-top: 3px solid #efc489;
  border-radius: 50%;
  transform: rotate(-16deg);
}

.delivery-hero-copy,
.delivery-hero-visual {
  position: relative;
  z-index: 1;
}

.delivery-label,
.delivery-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.delivery-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.1vw, 5.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.delivery-hero-copy > p:not(.delivery-label) {
  width: min(430px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.delivery-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.delivery-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 52px;
  padding: 10px 18px;
  border: 1px solid rgba(241, 211, 176, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  font-family: var(--font-rounded);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(91, 58, 24, 0.08);
}

.delivery-hero-badges img {
  width: 28px;
  height: 28px;
}

.delivery-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.delivery-mock-section {
  padding-top: clamp(56px, 7vw, 82px);
}

.delivery-section-heading {
  width: min(760px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.delivery-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.delivery-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.delivery-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.delivery-info-card {
  min-height: 230px;
  padding: 30px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.delivery-info-card img {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.delivery-info-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.delivery-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.delivery-gallery-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.delivery-mock-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.delivery-mock-gallery img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 58, 24, 0.1);
}

.delivery-mock-gallery img:nth-child(-n + 2) {
  grid-column: span 3;
  aspect-ratio: 1.72 / 1;
}

.delivery-mock-gallery img:nth-child(n + 3) {
  grid-column: span 2;
}

.delivery-gallery-note {
  width: min(720px, 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.9;
  text-align: center;
}

.delivery-mock-faq {
  padding-top: clamp(50px, 7vw, 76px);
}

.delivery-faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.delivery-faq-list .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.delivery-faq-list .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.lunch-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.lunch-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 320px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 24% 12%, rgba(255, 202, 98, 0.18) 0 84px, transparent 85px),
    radial-gradient(circle at 72% 12%, rgba(122, 190, 108, 0.12) 0 130px, transparent 131px);
}

.lunch-mock-hero,
.lunch-mock-section,
.lunch-gallery-section,
.lunch-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.lunch-mock-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(430px, 1.18fr);
  gap: clamp(28px, 4.2vw, 64px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(42px, 5.8vw, 68px) clamp(36px, 5vw, 66px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 214, 119, 0.45) 0 28px, transparent 29px),
    radial-gradient(circle at 16% 15%, rgba(131, 190, 113, 0.38) 0 24px, transparent 25px),
    linear-gradient(110deg, rgba(255, 253, 247, 0.98), rgba(255, 246, 229, 0.95));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.lunch-mock-hero::before,
.lunch-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.lunch-mock-hero::before {
  top: 42px;
  left: 46%;
  width: 86px;
  height: 86px;
  background-image: radial-gradient(circle, rgba(255, 151, 38, 0.42) 2px, transparent 3px);
  background-size: 16px 16px;
  transform: rotate(12deg);
}

.lunch-mock-hero::after {
  right: 34px;
  bottom: 36px;
  width: 110px;
  height: 130px;
  border-right: 4px solid rgba(100, 174, 92, 0.55);
  border-radius: 50%;
  transform: rotate(16deg);
}

.lunch-hero-copy,
.lunch-hero-visual {
  position: relative;
  z-index: 1;
}

.lunch-label,
.lunch-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.lunch-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5.1vw, 5.1rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.lunch-hero-copy > p:not(.lunch-label) {
  width: min(430px, 100%);
  margin: 24px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

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

.lunch-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.lunch-hero-visual span {
  position: absolute;
  right: -8px;
  bottom: 34px;
  display: grid;
  place-items: center;
  width: clamp(116px, 14vw, 156px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbd55, #ff932c);
  color: #fff;
  font-family: var(--font-rounded);
  font-size: clamp(0.92rem, 1.35vw, 1.1rem);
  font-weight: 900;
  line-height: 1.75;
  text-align: center;
  box-shadow: 0 16px 30px rgba(255, 143, 36, 0.26);
}

.lunch-mock-section {
  padding-top: clamp(56px, 7vw, 82px);
}

.lunch-section-heading {
  width: min(780px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.lunch-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.lunch-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.lunch-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.lunch-info-card {
  min-height: 220px;
  padding: 30px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.lunch-info-card img {
  display: block;
  width: 78px;
  height: 78px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.lunch-info-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.lunch-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.lunch-gallery-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.lunch-mock-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.lunch-mock-gallery img {
  width: 100%;
  aspect-ratio: 1.56 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 58, 24, 0.1);
}

.lunch-mock-gallery img:nth-child(-n + 2) {
  grid-column: span 3;
  aspect-ratio: 1.72 / 1;
}

.lunch-mock-gallery img:nth-child(n + 3) {
  grid-column: span 2;
}

.lunch-mock-faq {
  padding-top: clamp(50px, 7vw, 76px);
}

.lunch-faq-list {
  display: grid;
  gap: 12px;
  width: min(920px, 100%);
  margin: 0 auto;
}

.lunch-faq-list .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.lunch-faq-list .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.frozen-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.frozen-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 320px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 190, 72, 0.15) 0 72px, transparent 73px),
    radial-gradient(circle at 76% 12%, rgba(96, 160, 72, 0.12) 0 132px, transparent 133px);
}

.frozen-mock-hero,
.frozen-mock-section,
.frozen-gallery-section,
.frozen-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.frozen-mock-hero {
  display: grid;
  grid-template-columns: minmax(340px, 0.82fr) minmax(470px, 1.18fr);
  gap: clamp(28px, 4.4vw, 70px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(42px, 5.8vw, 70px) clamp(36px, 5vw, 70px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 9% 16%, rgba(255, 217, 148, 0.44) 0 42px, transparent 43px),
    linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 234, 0.96));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.frozen-mock-hero::before,
.frozen-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  opacity: 0.55;
}

.frozen-mock-hero::before {
  top: 82px;
  left: 66px;
  width: 54px;
  height: 54px;
  background:
    linear-gradient(#ffb44c, #ffb44c) 50% 0 / 4px 100% no-repeat,
    linear-gradient(90deg, #ffb44c, #ffb44c) 0 50% / 100% 4px no-repeat;
  transform: rotate(45deg);
}

.frozen-mock-hero::after {
  right: 42px;
  bottom: 34px;
  width: 84px;
  height: 84px;
  background-image: radial-gradient(circle, rgba(255, 151, 38, 0.5) 2px, transparent 3px);
  background-size: 16px 16px;
}

.frozen-hero-copy,
.frozen-hero-visual {
  position: relative;
  z-index: 1;
}

.frozen-label,
.frozen-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.frozen-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3.2rem, 5.2vw, 5.4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.frozen-hero-copy > p:not(.frozen-label) {
  width: min(500px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.frozen-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.frozen-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 56px;
  padding: 10px 16px;
  border: 1px solid rgba(241, 211, 176, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--muted);
  font-family: var(--font-rounded);
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.45;
  box-shadow: 0 12px 24px rgba(91, 58, 24, 0.08);
}

.frozen-hero-badges img {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.frozen-mock-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding: 16px 28px;
  border: 1px solid var(--orange);
  border-radius: 999px;
  background: linear-gradient(135deg, #ff951f, #ff7900);
  color: #fff;
  font-family: var(--font-rounded);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(255, 128, 0, 0.22);
  transition:
    color 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

.frozen-mock-cta:hover,
.frozen-mock-cta:focus-visible {
  color: var(--orange);
  background: #fff;
  border-color: var(--orange);
}

.frozen-mock-cta span {
  font-size: 1.3em;
  line-height: 1;
}

.frozen-hero-visual > img:not(.frozen-hero-badge) {
  display: block;
  width: 100%;
  border-radius: 50%;
}

.frozen-hero-badge {
  position: absolute;
  left: 34px;
  bottom: 16px;
  width: clamp(104px, 12vw, 138px);
  aspect-ratio: 1;
  border-radius: 50%;
  box-shadow: 0 16px 30px rgba(76, 145, 62, 0.25);
  object-fit: contain;
}

.frozen-mock-section {
  padding-top: clamp(56px, 7vw, 82px);
}

.frozen-section-heading {
  width: min(820px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.frozen-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.85rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.frozen-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.frozen-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.frozen-info-card {
  min-height: 206px;
  padding: 28px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  text-align: center;
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.frozen-info-card img {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  object-fit: contain;
}

.frozen-info-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.frozen-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.frozen-gallery-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.frozen-mock-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.frozen-mock-gallery img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(91, 58, 24, 0.1);
}

.frozen-gallery-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 800;
  text-align: center;
}

.frozen-mock-faq {
  padding-top: clamp(50px, 7vw, 76px);
}

.frozen-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.frozen-faq-grid .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.frozen-faq-grid .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.shokuiku-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.shokuiku-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 320px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(122, 190, 108, 0.14) 0 80px, transparent 81px),
    radial-gradient(circle at 75% 12%, rgba(255, 190, 72, 0.16) 0 138px, transparent 139px);
}

.shokuiku-mock-hero,
.shokuiku-mock-section,
.shokuiku-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.shokuiku-mock-hero {
  display: grid;
  grid-template-columns: minmax(330px, 0.82fr) minmax(440px, 1.18fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: center;
  width: min(1160px, calc(100% - 48px));
  margin-top: 32px;
  padding: clamp(42px, 5.8vw, 68px) clamp(36px, 5vw, 66px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 16%, rgba(139, 197, 113, 0.28) 0 44px, transparent 45px),
    linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 234, 0.96));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.shokuiku-mock-hero::before,
.shokuiku-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.shokuiku-mock-hero::before {
  top: 70px;
  left: 42%;
  width: 90px;
  height: 90px;
  background-image: radial-gradient(circle, rgba(255, 151, 38, 0.42) 2px, transparent 3px);
  background-size: 16px 16px;
}

.shokuiku-mock-hero::after {
  right: 34px;
  bottom: 30px;
  width: 150px;
  height: 92px;
  border-top: 4px solid rgba(123, 183, 92, 0.52);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.shokuiku-hero-copy,
.shokuiku-hero-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.shokuiku-hero-visual {
  display: grid;
  justify-items: end;
}

.shokuiku-label,
.shokuiku-section-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.shokuiku-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 5.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.shokuiku-hero-copy > p:not(.shokuiku-label) {
  width: min(500px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.shokuiku-hero-visual img {
  display: block;
  width: min(100%, 560px);
  object-fit: contain;
  border-radius: 0 !important;
  filter: drop-shadow(0 18px 34px rgba(92, 60, 26, 0.12));
}

.shokuiku-mock-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.shokuiku-section-visual {
  width: min(520px, 70%);
  margin: 0 auto -6px;
}

.shokuiku-section-visual--wide {
  width: min(1040px, 92%);
  margin-bottom: 8px;
}

.shokuiku-section-visual--tray {
  width: min(620px, 78%);
  margin-bottom: 2px;
}

.shokuiku-section-visual img {
  display: block;
  width: 100%;
  max-height: 210px;
  object-fit: contain;
}

.shokuiku-section-visual--wide img {
  max-height: 150px;
}

.shokuiku-section-visual--tray img {
  max-height: 250px;
}

.shokuiku-section-heading {
  width: min(820px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.shokuiku-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.shokuiku-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.shokuiku-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 24px);
}

.shokuiku-info-card {
  min-height: 244px;
  padding: 30px clamp(20px, 2.7vw, 30px);
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.shokuiku-info-card img {
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  object-fit: contain;
}

.shokuiku-info-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.shokuiku-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.shokuiku-mock-faq {
  padding-top: clamp(50px, 7vw, 76px);
}

.shokuiku-faq-list {
  display: grid;
  gap: 12px;
  width: min(760px, 100%);
  margin: 0 auto;
}

.shokuiku-faq-list .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.shokuiku-faq-list .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.reasons-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.reasons-mock::before {
  position: fixed;
  z-index: 0;
  inset: var(--header) 0 auto 0;
  height: 320px;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 201, 102, 0.16) 0 82px, transparent 83px),
    radial-gradient(circle at 75% 10%, rgba(255, 190, 72, 0.12) 0 140px, transparent 141px);
}

.reasons-mock-hero,
.reasons-mock-intro,
.reasons-mock-section,
.reasons-mock-faq {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.reasons-mock-hero {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 4.8vw, 78px);
  align-items: center;
  margin-top: 32px;
  padding: clamp(42px, 5.8vw, 68px) clamp(36px, 5vw, 66px);
  border: 1px solid rgba(240, 211, 176, 0.9);
  border-radius: 22px;
  background:
    radial-gradient(circle at 10% 16%, rgba(255, 219, 145, 0.48) 0 44px, transparent 45px),
    linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 234, 0.96));
  box-shadow: 0 22px 58px rgba(91, 58, 24, 0.12);
}

.reasons-mock-hero::before,
.reasons-mock-hero::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.reasons-mock-hero::before {
  top: 64px;
  left: 88px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 214, 122, 0.58);
}

.reasons-mock-hero::after {
  left: 265px;
  bottom: 42px;
  width: 220px;
  height: 100px;
  border-top: 3px solid rgba(223, 165, 73, 0.52);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.reasons-hero-copy,
.reasons-hero-visual {
  position: relative;
  z-index: 1;
}

.reasons-hero-visual {
  justify-self: end;
  width: min(100%, 440px);
}

.reasons-label,
.reasons-section-heading p,
.reasons-faq-heading p {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.reasons-hero-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(3rem, 5vw, 5.05rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.reasons-hero-copy > p:not(.reasons-label) {
  width: min(500px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.reasons-hero-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1.42 / 1;
  border-radius: 58% 42% 51% 49% / 47% 55% 45% 53%;
  object-fit: cover;
  object-position: center center;
  box-shadow: 0 18px 42px rgba(91, 58, 24, 0.12);
}

.reasons-mock-intro,
.reasons-mock-section {
  padding-top: clamp(58px, 7vw, 86px);
}

.reasons-section-heading {
  width: min(840px, 100%);
  margin: 0 auto clamp(26px, 4vw, 36px);
  text-align: center;
}

.reasons-section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.45;
}

.reasons-section-heading span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.95;
}

.reasons-intro-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 20px);
}

.reasons-intro-card,
.reasons-info-card {
  border: 1px solid rgba(241, 211, 176, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 14px 34px rgba(91, 58, 24, 0.08);
}

.reasons-intro-card {
  min-height: 230px;
  padding: 28px 20px;
  text-align: center;
}

.reasons-intro-card img {
  display: block;
  width: 92px;
  height: 92px;
  margin: 0 auto 14px;
  object-fit: contain;
}

.reasons-intro-card h3,
.reasons-info-card h3 {
  margin: 12px 0;
  color: var(--text);
  font-family: var(--font-rounded);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  line-height: 1.5;
}

.reasons-intro-card p,
.reasons-info-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.9;
}

.reasons-feature {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.reasons-feature-image {
  position: relative;
}

.reasons-feature-main {
  display: block;
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 18px 38px rgba(91, 58, 24, 0.12);
}

.reasons-feature-image--consult-photo .reasons-feature-main {
  aspect-ratio: 520 / 360;
  object-fit: cover;
  object-position: 44% center;
}

.reasons-feature-image--badge {
  padding: 0 0 clamp(26px, 4vw, 42px) clamp(20px, 3vw, 34px);
}

.reasons-feature-image--badge .reasons-feature-main {
  border: 8px solid #fff;
  border-radius: 26px;
}

.reasons-feature-badge {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: clamp(118px, 15vw, 176px);
  border: 6px solid #fff;
  border-radius: 50%;
  background: #fff;
  filter: drop-shadow(0 12px 24px rgba(91, 58, 24, 0.14));
}

.reasons-feature-image--composite {
  max-width: 540px;
  margin-inline: auto;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: 28px;
  background: rgba(255, 250, 241, 0.78);
  box-shadow: 0 18px 42px rgba(91, 58, 24, 0.1);
}

.reasons-feature-image--composite .reasons-feature-main {
  width: min(100%, 438px);
  aspect-ratio: 1.16 / 1;
  margin: 0 auto;
  border: 9px solid #fff;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 18px 36px rgba(91, 58, 24, 0.14);
  transform: rotate(2deg);
}

.reasons-feature-inset {
  position: absolute;
  left: clamp(12px, 2.2vw, 26px);
  bottom: clamp(6px, 1.5vw, 18px);
  z-index: 2;
  width: clamp(118px, 33%, 174px);
  aspect-ratio: 1.18 / 1;
  border: 7px solid #fff;
  border-radius: 22px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 14px 30px rgba(91, 58, 24, 0.18);
  transform: rotate(-4deg);
}

.reasons-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 18px);
}

.reasons-info-card {
  min-height: 184px;
  padding: 24px clamp(18px, 2.4vw, 26px);
}

.reasons-info-card img {
  display: block;
  width: 62px;
  height: 62px;
  margin: 0 auto 14px;
  object-fit: contain;
  object-position: center;
}

.reasons-mock-faq {
  padding-top: clamp(56px, 7vw, 82px);
}

.reasons-faq-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
  text-align: center;
}

.reasons-faq-heading > span {
  height: 1px;
  border-top: 2px dotted rgba(255, 143, 36, 0.45);
}

.reasons-faq-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  line-height: 1.35;
}

.reasons-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: min(980px, 100%);
  margin: 0 auto;
}

.reasons-faq-grid .faq-item {
  background: rgba(255, 255, 255, 0.98);
}

.reasons-faq-grid .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.page-grid.page-grid--reasons {
  grid-template-columns: repeat(2, minmax(320px, 1fr));
}

.page-grid--reasons .info-card {
  padding: clamp(26px, 3vw, 34px);
}

.info-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.info-card p,
.info-card li {
  color: var(--muted);
}

.info-card p + p {
  margin-top: 10px;
}

.info-card strong {
  color: var(--green-dark);
}

.info-card ul,
.content-list {
  display: grid;
  gap: 8px;
  padding-left: 1.2em;
  margin: 12px 0 0;
}

.data-table {
  overflow: hidden;
  width: min(920px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.data-table > div {
  display: grid;
  grid-template-columns: minmax(160px, 0.34fr) 1fr;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
}

.data-table > div:last-child {
  border-bottom: 0;
}

.data-table [role="rowheader"],
.data-table [role="cell"] {
  display: flex;
  align-items: center;
  padding: 18px 24px;
  line-break: strict;
  word-break: auto-phrase;
}

.data-table [role="rowheader"] {
  color: var(--orange);
  font-weight: 900;
  background: var(--orange-pale);
}

.data-table [role="cell"] {
  color: var(--muted);
  font-weight: 700;
}

.data-table--partners {
  width: min(860px, 100%);
}

.data-table--partners > div {
  grid-template-columns: 84px 1fr;
}

.data-table--partners [role="rowheader"] {
  justify-content: center;
  color: #fff;
  background: var(--orange);
}

.bento-gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.bento-gallery img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.bento-gallery img:nth-child(1),
.bento-gallery img:nth-child(2) {
  grid-column: span 3;
}

.bento-gallery img:nth-child(n + 3) {
  grid-column: span 2;
}

.story-block {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 22px rgba(80, 52, 18, 0.06);
}

.story-block img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
}

.order-cta {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 48px 210px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(100deg, #fff4df, #fff9ec);
  text-align: center;
}

.order-cta-inner {
  position: relative;
  z-index: 2;
  width: min(680px, 100%);
}

.order-cta h2 span {
  display: block;
}

.order-cta .section-label {
  margin-bottom: 8px;
}

.order-lead {
  margin: 8px 0 0;
  font-weight: 900;
}

.frozen-order-button {
  margin-top: 18px;
}

.partner-order {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px dashed rgba(255, 133, 0, 0.34);
}

.partner-order h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.partner-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}

.partner-buttons .button {
  min-width: 176px;
  background: #fff;
}

.frozen-coming-soon {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.65fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: clamp(44px, 7vw, 86px) auto;
  padding: clamp(38px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 202, 112, 0.18) 0 96px, transparent 98px),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 234, 0.96));
  box-shadow: var(--shadow);
}

.frozen-coming-soon-copy h1 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.45rem, 5vw, 4.75rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.frozen-coming-soon-copy > p:not(.section-label) {
  width: min(620px, 100%);
  margin: 22px 0 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.frozen-coming-soon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.frozen-coming-soon-note {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(231, 190, 137, 0.58);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(95, 70, 40, 0.08);
}

.frozen-coming-soon-note h2 {
  margin: 0 0 12px;
  color: var(--orange);
  font-family: var(--font-rounded);
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  line-height: 1.35;
}

.frozen-coming-soon-note p,
.frozen-coming-soon-note li {
  color: var(--muted);
  font-weight: 800;
  line-height: 1.85;
}

.frozen-coming-soon-note p {
  margin: 0 0 16px;
}

.frozen-coming-soon-note ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 1.25em;
}

.cta-chara {
  position: absolute;
  z-index: 1;
  bottom: 10px;
  width: 158px;
  filter: drop-shadow(0 12px 22px rgba(85, 55, 18, 0.14));
  animation: mascot-float 5.8s ease-in-out infinite;
  transform: translate3d(0, 0, 0) rotate(var(--mascot-rotate, 0deg));
  transform-origin: 50% 80%;
}

.cta-left {
  --mascot-rotate: -7deg;
  left: 34px;
  animation-delay: -1.5s;
}

.cta-right {
  --mascot-rotate: 7deg;
  right: 34px;
  animation-delay: -3s;
}

@keyframes mascot-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--mascot-rotate, 0deg));
  }

  45% {
    transform: translate3d(0, -9px, 0) rotate(calc(var(--mascot-rotate, 0deg) + 2deg));
  }

  70% {
    transform: translate3d(0, -4px, 0) rotate(calc(var(--mascot-rotate, 0deg) - 1deg));
  }
}

.company,
.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(320px, 1fr);
  gap: 34px;
  margin-top: 22px;
  padding: clamp(28px, 5vw, 44px);
}

.company dl {
  margin: 0;
  border-top: 1px solid var(--line);
}

.company dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.company dt {
  color: var(--orange);
  font-weight: 900;
}

.company dd {
  margin: 0;
  color: var(--muted);
}

.contact {
  margin-bottom: 36px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #fffdf9;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 133, 0, 0.12);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.6em;
  margin: 0;
  color: var(--green-dark);
  font-weight: 900;
}

.contact-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 10px;
}

.contact-consent input {
  width: auto;
  margin-top: 0.45em;
}

.contact-consent a {
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.safety-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.safety-mock::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 20% 8%, rgba(255, 199, 94, 0.18), transparent 18%),
    radial-gradient(circle at 86% 42%, rgba(255, 133, 0, 0.09), transparent 22%);
}

.safety-mock > * {
  position: relative;
  z-index: 1;
}

.safety-mock-hero,
.safety-mock-section,
.safety-mock-process,
.safety-mock-faq {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.safety-mock-hero {
  display: grid;
  grid-template-columns: minmax(500px, 1fr) minmax(340px, 0.72fr);
  gap: clamp(36px, 4.8vw, 78px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(44px, 6vw, 76px);
  border: 1px solid rgba(231, 190, 137, 0.58);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(255, 246, 231, 0.92));
  box-shadow: 0 18px 48px rgba(95, 70, 40, 0.12);
}

.safety-hero-copy {
  display: grid;
  gap: 15px;
}

.safety-hero-icon {
  width: 84px;
  height: 84px;
}

.safety-label,
.safety-section-heading p {
  margin: 0;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.safety-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 1.18;
  letter-spacing: 0;
}

.safety-hero-copy > p:last-child {
  max-width: 34em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.safety-hero-visual {
  position: relative;
  justify-self: end;
  min-width: 0;
  width: min(100%, 440px);
}

.safety-hero-visual::before {
  position: absolute;
  inset: 10% -2% -5% 3%;
  z-index: -1;
  border-radius: 999px;
  content: "";
  background: rgba(255, 230, 193, 0.82);
  transform: rotate(-5deg);
}

.safety-hero-visual img {
  width: 100%;
  display: block;
  aspect-ratio: 1.42 / 1;
  border-radius: 999px;
  object-fit: cover;
  object-position: center center;
  filter: drop-shadow(0 18px 28px rgba(100, 70, 35, 0.12));
}

.safety-mock-section,
.safety-mock-process,
.safety-mock-faq {
  padding-top: clamp(68px, 8vw, 96px);
}

.safety-section-heading {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.safety-section-heading h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.9rem, 3.1vw, 3rem);
  line-height: 1.45;
}

.safety-section-heading span {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.safety-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.safety-info-card,
.safety-step-card {
  border: 1px solid rgba(231, 190, 137, 0.52);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 32px rgba(95, 70, 40, 0.09);
}

.safety-info-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: start;
  justify-items: center;
  min-height: 178px;
  padding: 30px 26px;
}

.safety-info-card img {
  display: block;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.safety-info-card > div {
  width: 100%;
}

.safety-info-card h3,
.safety-step-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.safety-info-card p,
.safety-step-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.85;
}

.safety-step-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(231, 190, 137, 0.42);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 38px rgba(95, 70, 40, 0.08);
}

.safety-step-card {
  padding: 16px;
}

.safety-step-card h3 {
  color: var(--orange);
  font-size: 0.98rem;
}

.about-mock-card h3,
.service-family-card h3,
.bento-info-card h3,
.delivery-info-card h3,
.lunch-info-card h3,
.frozen-info-card h3,
.shokuiku-info-card h3,
.reasons-intro-card h3,
.reasons-info-card h3,
.info-card h3,
.safety-info-card h3,
.safety-step-card h3 {
  text-align: center;
}

.safety-step-card img {
  width: 100%;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  object-position: center;
  margin: 4px 0 12px;
  border-radius: 10px;
}

.safety-closing {
  display: flex;
  justify-content: center;
  gap: 16px;
  align-items: center;
  width: min(900px, calc(100% - 48px));
  margin: clamp(48px, 7vw, 78px) auto 0;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.safety-closing img {
  width: 48px;
  height: 48px;
  opacity: 0.55;
}

.safety-faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.safety-faq-grid .faq-item summary {
  min-height: 58px;
  padding-top: 14px;
  padding-bottom: 14px;
}

.company-mock {
  position: relative;
  overflow: hidden;
  padding-bottom: 28px;
}

.company-mock::before {
  position: fixed;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 196, 117, 0.18), transparent 18%),
    radial-gradient(circle at 88% 18%, rgba(147, 190, 91, 0.1), transparent 20%);
}

.company-mock > * {
  position: relative;
  z-index: 1;
}

.company-mock-hero,
.company-ceo-card,
.company-mock-section,
.company-value-strip {
  width: min(1120px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.company-mock-hero {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(30px, 5vw, 66px);
  align-items: center;
  margin-top: clamp(28px, 4vw, 42px);
  padding: clamp(44px, 6vw, 74px);
  border: 1px solid rgba(231, 190, 137, 0.58);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 252, 244, 0.96), rgba(255, 247, 232, 0.92));
  box-shadow: 0 18px 48px rgba(95, 70, 40, 0.12);
}

.company-hero-copy {
  display: grid;
  gap: 16px;
}

.company-label,
.company-section-heading p {
  margin: 0;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.company-hero-copy h1 {
  margin: 0;
  font-size: clamp(3rem, 5.2vw, 5.3rem);
  line-height: 1.28;
}

.company-hero-copy > p:last-child {
  max-width: 34em;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.company-hero-visual {
  position: relative;
}

.company-hero-visual::before {
  position: absolute;
  inset: 7% -1% -3% 2%;
  z-index: -1;
  border-radius: 999px;
  content: "";
  background: rgba(255, 236, 206, 0.9);
  transform: rotate(-4deg);
}

.company-hero-visual img {
  display: block;
  width: 100%;
  border-radius: 999px;
  filter: drop-shadow(0 18px 28px rgba(100, 70, 35, 0.12));
}

.company-ceo-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  overflow: hidden;
  margin-top: clamp(48px, 7vw, 72px);
  border: 1px solid rgba(231, 190, 137, 0.52);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 46px rgba(95, 70, 40, 0.1);
}

.company-ceo-image {
  min-height: 520px;
  background: linear-gradient(135deg, #fff, #f2fbf9);
}

.company-ceo-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.company-ceo-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 64px);
}

.company-ceo-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.company-ceo-copy p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 2;
}

.company-ceo-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 14px;
}

.company-ceo-points article {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.company-ceo-points img {
  width: 76px;
  height: 76px;
}

.company-ceo-points h3 {
  margin: 0;
  font-size: 1rem;
}

.company-ceo-points p {
  font-size: 0.84rem;
  line-height: 1.7;
}

.company-mock-section {
  padding-top: clamp(62px, 7vw, 82px);
}

.company-section-heading {
  margin-bottom: 24px;
  text-align: center;
}

.company-section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2rem, 3vw, 3rem);
}

.company-profile-table,
.company-history-list,
.company-partner-box {
  width: min(860px, 100%);
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(231, 190, 137, 0.56);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 36px rgba(95, 70, 40, 0.09);
}

.company-profile-table > div {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 56px;
  border-bottom: 1px solid rgba(231, 190, 137, 0.36);
}

.company-profile-table > div:last-child {
  border-bottom: 0;
}

.company-profile-table [role="rowheader"],
.company-profile-table [role="cell"] {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-weight: 900;
  line-height: 1.7;
}

.company-profile-table [role="rowheader"] {
  color: var(--orange);
  border-right: 1px solid rgba(231, 190, 137, 0.36);
}

.company-profile-table [role="cell"] {
  color: var(--muted);
}

.company-history-list {
  padding: 0 28px;
}

.company-history-list div {
  position: relative;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 28px;
  align-items: center;
  min-height: 64px;
  border-bottom: 1px solid rgba(231, 190, 137, 0.36);
}

.company-history-list div:last-child {
  border-bottom: 0;
}

.company-history-list div::before {
  position: absolute;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  content: "";
  background: var(--orange);
}

.company-history-list div::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  width: 2px;
  content: "";
  background: rgba(255, 133, 0, 0.25);
}

.company-history-list time {
  padding-left: 28px;
  color: var(--orange);
  font-weight: 950;
}

.company-history-list p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
  line-height: 1.8;
}

.company-partner-box {
  display: grid;
  padding: 0 32px;
}

.company-partner-box article {
  display: grid;
  grid-template-columns: 110px 170px 1fr;
  gap: 24px;
  align-items: center;
  padding: 30px 0;
  border-bottom: 1px solid rgba(231, 190, 137, 0.38);
}

.company-partner-box article:last-child {
  border-bottom: 0;
}

.company-partner-box img {
  width: 86px;
  height: 86px;
}

.company-partner-box h3 {
  margin: 0;
  color: var(--orange);
  font-size: 1.08rem;
}

.company-partner-box ul {
  margin: 0;
  padding-left: 1.2em;
  color: var(--text);
  font-weight: 850;
  line-height: 1.9;
}

.company-value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(62px, 8vw, 92px);
  padding: 24px 28px;
  border: 1px solid rgba(231, 190, 137, 0.58);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(255, 240, 212, 0.88));
  box-shadow: 0 12px 34px rgba(95, 70, 40, 0.08);
}

.company-value-strip article {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid rgba(231, 190, 137, 0.45);
}

.company-value-strip article:last-child {
  border-right: 0;
}

.company-value-strip img {
  width: 70px;
  height: 70px;
}

.company-value-strip h3 {
  margin: 0 0 5px;
  font-size: 0.95rem;
}

.company-value-strip p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.65;
}

.page-hero:not(.page-hero--plain),
.service-family-hero,
.about-mock-hero,
.bento-mock-hero,
.delivery-mock-hero,
.lunch-mock-hero,
.frozen-mock-hero,
.shokuiku-mock-hero,
.reasons-mock-hero,
.safety-mock-hero,
.company-mock-hero {
  background:
    linear-gradient(rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0.12)),
    url("assets/lower-mv-background.png") center / cover no-repeat;
  background-color: #fffaf2;
}

.service-family-hero::before,
.service-family-hero::after,
.about-mock-hero::after,
.bento-mock-hero::before,
.bento-mock-hero::after,
.delivery-mock-hero::before,
.delivery-mock-hero::after,
.lunch-mock-hero::before,
.lunch-mock-hero::after,
.frozen-mock-hero::before,
.frozen-mock-hero::after,
.shokuiku-mock-hero::before,
.shokuiku-mock-hero::after,
.reasons-mock-hero::before,
.reasons-mock-hero::after {
  display: none;
}

.site-footer {
  --footer-inner-width: min(1200px, calc(100% - 48px));
  --footer-ornament-size: clamp(92px, 10vw, 148px);
  position: relative;
  width: 100%;
  margin: clamp(52px, 7vw, 88px) 0 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
}

.footer-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  width: var(--footer-inner-width);
  margin: 0 auto;
  padding: 34px 0 44px;
}

.site-footer::before,
.site-footer::after {
  position: absolute;
  z-index: 0;
  bottom: 16px;
  width: var(--footer-ornament-size);
  aspect-ratio: 1 / 1;
  content: "";
  pointer-events: none;
  background: center / contain no-repeat;
}

.site-footer::before {
  left: max(12px, calc((100% - var(--footer-inner-width)) / 2 - var(--footer-ornament-size) - 20px));
  background-image: url("assets/footer-ornament-left.png");
}

.site-footer::after {
  right: max(12px, calc((100% - var(--footer-inner-width)) / 2 - var(--footer-ornament-size) - 20px));
  background-image: url("assets/footer-ornament-right.png");
}

.footer-brand,
.footer-nav,
.copyright {
  position: relative;
  z-index: 1;
}

.footer-brand img {
  width: 180px;
}

.footer-brand p,
.copyright {
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.footer-group {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-group h2 {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 0.92rem;
}

.footer-group a {
  color: var(--text);
  font-weight: 800;
}

.footer-group a:hover,
.footer-group a:focus-visible {
  color: var(--orange);
}

.copyright {
  grid-column: 2;
  margin: -20px 0 0;
  text-align: right;
}

@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .nav-button {
    padding-inline: 14px;
  }

  .company-value-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .company-value-strip article:nth-child(2n) {
    border-right: 0;
  }

  .company-value-strip article:nth-child(n + 3) {
    padding-top: 18px;
    border-top: 1px solid rgba(231, 190, 137, 0.45);
  }

  .about-faq-person {
    right: 12px;
    bottom: -28px;
    width: 132px;
  }
}

@media (min-width: 1180px) {
  body {
    padding-left: 196px;
  }

  .site-header {
    width: calc(100% + 196px);
    margin-left: -196px;
    padding-left: 0;
  }

  .side-order {
    display: block;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header) + 10px);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 14px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    visibility: hidden;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .site-nav a {
    justify-self: stretch;
    text-align: center;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
  }

  .nav-parent {
    justify-content: center;
  }

  .nav-submenu {
    position: static;
    display: grid;
    min-width: 0;
    padding: 8px;
    border-radius: 14px;
    background: var(--cream);
    box-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: none;
    visibility: hidden;
  }

  .nav-submenu::before {
    display: none;
  }

  .nav-dropdown:hover .nav-submenu,
  .nav-dropdown:focus-within .nav-submenu,
  .nav-open .nav-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }

  .nav-submenu a {
    min-height: 38px;
    white-space: normal;
  }

  .service-family-hero,
  .service-family-card-grid {
    grid-template-columns: 1fr;
  }

  .service-family-card-grid:has(> .service-family-card:nth-child(2):last-child) {
    width: 100%;
  }

  .service-family-hero {
    padding: 34px 22px;
  }

  .service-family-hero-copy h1 {
    font-size: clamp(2.45rem, 10vw, 3.3rem);
  }

  .service-family-hero-visual img {
    width: min(100%, 460px);
    margin: 0 auto;
  }

  .service-family-card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 0;
    text-align: center;
  }

  .service-family-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-mock-hero,
  .about-mock-card-grid,
  .about-photo-strip,
  .bento-mock-hero,
  .bento-card-grid,
  .bento-faq-grid,
  .delivery-mock-hero,
  .delivery-card-grid,
  .delivery-mock-gallery,
  .lunch-mock-hero,
  .lunch-card-grid,
  .lunch-mock-gallery,
  .frozen-mock-hero,
  .frozen-card-grid,
  .frozen-mock-gallery,
  .frozen-faq-grid,
  .shokuiku-mock-hero,
  .shokuiku-card-grid,
  .reasons-mock-hero,
  .reasons-intro-grid,
  .reasons-feature,
  .reasons-feature-grid,
  .reasons-faq-grid,
  .safety-mock-hero,
  .frozen-coming-soon,
  .safety-card-grid,
  .safety-step-grid,
  .safety-faq-grid,
  .company-mock-hero,
  .company-ceo-card,
  .company-ceo-points,
  .company-value-strip {
    grid-template-columns: 1fr;
  }

  .about-mock-hero,
  .bento-mock-hero,
  .delivery-mock-hero,
  .lunch-mock-hero,
  .frozen-mock-hero,
  .shokuiku-mock-hero,
  .reasons-mock-hero,
  .safety-mock-hero,
  .frozen-coming-soon,
  .company-mock-hero {
    padding: 34px 22px;
  }

  .frozen-coming-soon {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .reasons-hero-visual,
  .safety-hero-visual {
    justify-self: center;
    width: 100%;
  }

  .about-hero-copy h1 {
    font-size: clamp(2.15rem, 9.6vw, 2.85rem);
  }

  .bento-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .delivery-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .lunch-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .frozen-hero-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .shokuiku-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .reasons-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .safety-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .company-hero-copy h1 {
    font-size: clamp(2.55rem, 11vw, 3.3rem);
  }

  .company-ceo-image {
    min-height: 360px;
  }

  .company-value-strip article {
    border-right: 0;
    border-bottom: 1px solid rgba(231, 190, 137, 0.45);
    padding: 18px 0;
  }

  .company-value-strip article:last-child {
    border-bottom: 0;
  }

  .about-hero-badges {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .delivery-hero-badges {
    gap: 8px;
  }

  .about-photo-strip {
    gap: 10px;
  }

  .about-faq-person {
    position: static;
    display: block;
    width: 130px;
    margin: 22px auto 0;
  }

  .bento-info-card {
    grid-template-columns: 66px 1fr;
    min-height: 0;
  }

  .bento-mock-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .delivery-mock-gallery img,
  .delivery-mock-gallery img:nth-child(-n + 2),
  .delivery-mock-gallery img:nth-child(n + 3) {
    grid-column: auto;
    aspect-ratio: 1.45 / 1;
  }

  .lunch-mock-gallery img,
  .lunch-mock-gallery img:nth-child(-n + 2),
  .lunch-mock-gallery img:nth-child(n + 3) {
    grid-column: auto;
    aspect-ratio: 1.45 / 1;
  }

  .frozen-hero-badges {
    gap: 8px;
  }

  .hero,
  .split-section,
  .news-instagram,
  .trust,
  .page-hero,
  .page-grid,
  .page-grid.page-grid--reasons,
  .story-block,
  .company,
  .contact,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .mascot-teacher {
    left: auto;
    right: 134px;
    bottom: 4px;
    width: 96px;
  }

  .mascot-cook {
    right: 18px;
    bottom: 0;
    width: 104px;
  }

  .hero-copy {
    padding: 56px 24px 28px;
  }

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

  .hero-visual::before {
    display: none;
  }

  .hero-goal {
    top: auto;
    right: 20px;
    bottom: 36px;
    width: 150px;
  }

  .meal-slider {
    margin-top: -18px;
    padding: 14px 0;
  }

  .meal-slider-track {
    gap: 12px;
    animation-duration: 44s;
  }

  .meal-slider img {
    flex-basis: 180px;
    width: 180px;
    border-radius: 14px;
  }

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

  .service-grid .service-card,
  .service-grid .service-card:nth-child(4),
  .service-grid .service-card:nth-child(5) {
    grid-column: auto;
  }

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

  .bento-gallery img:nth-child(1),
  .bento-gallery img:nth-child(2),
  .bento-gallery img:nth-child(n + 3) {
    grid-column: auto;
  }

  .trust {
    padding: 0 0 28px;
  }

  .trust-copy {
    padding: 0 28px;
  }

  .haccp-certified-mark {
    margin: 0 auto;
  }

  .order-cta {
    padding: 38px 24px 190px;
  }

  .cta-left {
    left: 28px;
  }

  .cta-right {
    right: 28px;
  }

  .footer-nav,
  .copyright {
    justify-content: flex-start;
    text-align: left;
  }

  .copyright {
    grid-column: auto;
    margin: 0;
  }
}

@media (max-width: 1179px) {
  body {
    padding-bottom: 106px;
  }

  .side-order {
    left: 8px;
    right: 8px;
    top: auto;
    bottom: 8px;
    display: block;
    width: auto;
    max-height: calc(100vh - 16px);
    padding: 10px;
    border: 1px solid rgba(255, 133, 0, 0.25);
    border-radius: 16px;
    background: rgba(255, 196, 117, 0.97);
    box-shadow: 0 12px 30px rgba(105, 65, 25, 0.18);
  }

  .side-order-inner {
    grid-template-columns: auto 1fr;
    gap: 8px 12px;
    align-items: center;
  }

  .side-order-label,
  .side-order-note {
    display: none;
  }

  .side-order h2 {
    margin: 0;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .side-order-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .side-order-link {
    place-items: center;
    min-height: 46px;
    padding: 8px 6px;
    border-width: 2px;
    border-radius: 10px;
    font-size: 0.78rem;
  }

  .side-order-link::before {
    display: none;
  }

  .side-order-link::after {
    display: none;
  }
}

@media (max-width: 640px) {
  :root {
    --header: 68px;
    --mobile-gutter: 8px;
  }

  .site-header {
    padding: 10px var(--mobile-gutter);
  }

  .brand img {
    width: 148px;
  }

  .site-nav {
    left: var(--mobile-gutter);
    right: var(--mobile-gutter);
    padding: 18px;
  }

  .side-order-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .side-order h2 {
    font-size: 0.9rem;
    text-align: center;
    white-space: normal;
  }

  .side-order-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .side-order-link {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero,
  .section-panel,
  .split-section,
  .reason,
  .news-instagram,
  .trust,
  .voice,
  .order-cta,
  .faq-section,
  .frozen-coming-soon,
  .page-hero,
  .page-section,
  .page-grid,
  .company,
  .contact {
    width: calc(100% - (var(--mobile-gutter) * 2));
    margin-right: auto;
    margin-left: auto;
  }

  .footer-inner {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .hero {
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .hero-copy {
    padding: 48px var(--mobile-gutter) 28px;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.35rem);
  }

  .frozen-coming-soon {
    margin-top: 26px;
    margin-bottom: 42px;
    padding: 28px 18px;
  }

  .frozen-coming-soon-copy h1 {
    font-size: clamp(2.05rem, 11vw, 3rem);
  }

  .frozen-coming-soon-actions .button {
    width: 100%;
  }

  .faq-list {
    gap: 14px;
  }

  .faq-item summary {
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 12px;
    padding: 18px 18px;
    font-size: clamp(1.05rem, 5vw, 1.3rem);
    line-height: 1.6;
  }

  .faq-item summary::after {
    width: 30px;
    min-width: 30px;
  }

  .philosophy-photo-wrap {
    padding-bottom: 76px;
  }

  .mascot-teacher {
    right: 96px;
    width: 82px;
  }

  .mascot-cook {
    right: 10px;
    width: 90px;
  }

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

  .hero-goal {
    width: 128px;
  }

  .meal-slider {
    margin-top: 0;
    margin-bottom: 8px;
    padding: 12px 0;
  }

  .meal-slider::before,
  .meal-slider::after {
    width: 38px;
  }

  .meal-slider-track {
    gap: 10px;
    padding-inline: 8px;
  }

  .meal-slider img {
    flex-basis: 152px;
    width: 152px;
  }

  .section-panel {
    margin-top: 0;
    padding: 30px 14px;
  }

  .split-section {
    padding: 46px var(--mobile-gutter);
  }

  .reason,
  .voice {
    padding-right: 0;
    padding-left: 0;
  }

  .service-grid,
  .reason-grid,
  .voice-grid,
  .page-grid,
  .contact-form,
  .insta-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 36px 14px;
  }

  .page-section {
    padding-top: 42px;
  }

  .service-family-hero,
  .service-family-section,
  .service-family-gallery-divider,
  .service-family-gallery,
  .service-family-faq {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .service-family-hero {
    padding: 32px 16px;
    border-radius: 18px;
  }

  .service-family-hero::before,
  .service-family-hero::after {
    opacity: 0.25;
  }

  .service-family-section,
  .service-family-gallery-divider,
  .service-family-gallery,
  .service-family-faq {
    padding-top: 48px;
  }

  .service-family-gallery-divider {
    padding-bottom: 6px;
  }

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

  .service-family-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .service-family-section-heading span {
    line-height: 1.85;
  }

  .service-family-hero-copy h1,
  .service-family-section-heading h2,
  .service-family-gallery-heading h2,
  .service-family-card h3,
  .service-family-faq-list summary {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .service-family-hero-copy h1 {
    font-size: clamp(2.1rem, 10vw, 2.8rem);
  }

  .service-family-hero-copy > p:not(.service-family-label) {
    line-height: 1.85;
  }

  .service-family-card {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 16px;
    text-align: center;
  }

  .service-family-card img {
    width: 62px;
    height: 62px;
  }

  .service-family-gallery-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .service-family-gallery-heading span {
    display: none;
  }

  .service-family-gallery-heading h2 {
    justify-content: center;
  }

  .service-family-gallery-grid {
    grid-template-columns: 1fr;
  }

  .service-family-gallery-grid img {
    min-height: 210px;
  }

  .shokuiku-mock-hero {
    background:
      radial-gradient(circle at 9% 14%, rgba(139, 197, 113, 0.12) 0 42px, transparent 43px),
      linear-gradient(110deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 234, 0.96));
  }

  .safety-mock-hero {
    padding: 30px 14px;
  }

  .safety-hero-copy,
  .safety-hero-visual {
    min-width: 0;
    max-width: 100%;
  }

  .about-mock-hero,
  .about-mock-section,
  .about-mock-faq,
  .bento-mock-hero,
  .bento-mock-section,
  .bento-gallery-section,
  .bento-mock-faq,
  .delivery-mock-hero,
  .delivery-mock-section,
  .delivery-gallery-section,
  .delivery-mock-faq,
  .lunch-mock-hero,
  .lunch-mock-section,
  .lunch-gallery-section,
  .lunch-mock-faq,
  .frozen-mock-hero,
  .frozen-mock-section,
  .frozen-gallery-section,
  .frozen-mock-faq,
  .shokuiku-mock-hero,
  .shokuiku-mock-section,
  .shokuiku-mock-faq,
  .reasons-mock-hero,
  .reasons-mock-intro,
  .reasons-mock-section,
  .reasons-mock-faq,
  .safety-mock-hero,
  .safety-mock-section,
  .safety-mock-process,
  .safety-mock-faq,
  .company-mock-hero,
  .company-ceo-card,
  .company-mock-section,
  .company-value-strip {
    width: calc(100% - (var(--mobile-gutter) * 2));
  }

  .about-mock-section,
  .about-mock-faq,
  .bento-mock-section,
  .bento-gallery-section,
  .bento-mock-faq,
  .delivery-mock-section,
  .delivery-gallery-section,
  .delivery-mock-faq,
  .lunch-mock-section,
  .lunch-gallery-section,
  .lunch-mock-faq,
  .frozen-mock-section,
  .frozen-gallery-section,
  .frozen-mock-faq,
  .shokuiku-mock-section,
  .shokuiku-mock-faq,
  .reasons-mock-intro,
  .reasons-mock-section,
  .reasons-mock-faq,
  .safety-mock-section,
  .safety-mock-process,
  .safety-mock-faq,
  .company-mock-section {
    padding-top: 48px;
  }

  .about-section-heading,
  .bento-section-heading,
  .delivery-section-heading,
  .lunch-section-heading,
  .frozen-section-heading,
  .shokuiku-section-heading,
  .reasons-section-heading,
  .safety-section-heading,
  .company-section-heading {
    margin-bottom: 24px;
  }

  .about-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .bento-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .delivery-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .lunch-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .frozen-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .shokuiku-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .reasons-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .safety-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .company-section-heading h2 {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .about-section-heading span,
  .bento-section-heading span,
  .delivery-section-heading span,
  .lunch-section-heading span,
  .frozen-section-heading span,
  .shokuiku-section-heading span,
  .reasons-section-heading span,
  .safety-section-heading span {
    line-height: 1.85;
  }

  .company-ceo-copy {
    padding: 26px 18px;
  }

  .company-ceo-points article {
    grid-template-columns: 64px 1fr;
    justify-items: start;
    text-align: left;
  }

  .company-ceo-points img {
    width: 58px;
    height: 58px;
    grid-row: span 2;
  }

  .company-profile-table > div,
  .company-history-list div,
  .company-partner-box article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .company-profile-table [role="rowheader"] {
    border-right: 0;
    padding-bottom: 4px;
  }

  .company-profile-table [role="cell"] {
    padding-top: 4px;
  }

  .company-history-list {
    padding: 0 18px;
  }

  .company-history-list div {
    padding: 14px 0 14px 26px;
  }

  .company-history-list time {
    padding-left: 0;
  }

  .company-partner-box {
    padding: 0 20px;
  }

  .company-value-strip {
    padding: 12px 20px;
  }

  .about-mock-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .delivery-info-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .lunch-info-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .frozen-info-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .shokuiku-section-visual {
    width: min(420px, 88%);
  }

  .shokuiku-info-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .reasons-intro-card,
  .reasons-info-card {
    min-height: 0;
    padding: 24px 18px;
  }

  .reasons-feature-image--composite {
    max-width: min(420px, 92vw);
    padding: 18px;
  }

  .reasons-feature-image--composite .reasons-feature-main {
    width: 100%;
    border-width: 7px;
    border-radius: 22px;
  }

  .reasons-feature-inset {
    left: 10px;
    bottom: 8px;
    width: clamp(104px, 36%, 150px);
    border-width: 6px;
    border-radius: 18px;
  }

  .safety-info-card {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 18px;
  }

  .safety-info-card img {
    width: 62px;
    height: 62px;
  }

  .safety-step-grid {
    padding: 12px;
  }

  .reasons-faq-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .lunch-hero-visual {
    min-height: 260px;
  }

  .about-town {
    width: 100%;
    margin-top: 18px;
  }

  .bento-info-card {
    padding: 22px 16px;
  }

  .bento-gallery-heading {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: center;
  }

  .bento-gallery-heading span {
    display: none;
  }

  .bento-gallery-heading h2 {
    justify-content: center;
  }

  .info-card,
  .story-block {
    padding: 20px 14px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .news-box li,
  .company dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .data-table > div,
  .data-table--partners > div {
    grid-template-columns: 1fr;
  }

  .data-table [role="rowheader"],
  .data-table [role="cell"] {
    padding: 12px 14px;
  }

  .data-table > div {
    min-height: 0;
  }

  .data-table--partners [role="rowheader"] {
    justify-content: flex-start;
  }

  .bento-gallery {
    grid-template-columns: 1fr;
  }

  .bento-gallery img {
    min-height: 210px;
  }

  .news-box,
  .instagram-box,
  .company,
  .contact {
    padding: 22px 14px;
  }

  .trust-copy {
    padding: 0 14px;
  }

  .haccp-certified-mark {
    margin: 0 auto;
  }

  .voice article {
    align-items: flex-start;
    padding: 20px 14px;
  }

  .order-cta {
    padding: 34px var(--mobile-gutter) 156px;
  }

  .order-cta h2 {
    font-size: clamp(1.55rem, 7vw, 1.9rem);
  }

  .partner-order {
    margin-top: 24px;
    padding: 20px 6px 0;
  }

  .partner-buttons {
    gap: 10px;
  }

  .partner-buttons .button,
  .frozen-order-button {
    width: min(100%, 270px);
  }

  .cta-chara {
    bottom: 10px;
    width: 108px;
  }

  .cta-left {
    left: 8px;
  }

  .cta-right {
    right: 6px;
  }
}

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

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

  .section-mascot,
  .cta-chara,
  .meal-slider-track {
    animation: none;
  }
}

.page-hero:not(.page-hero--plain)::before,
.page-hero:not(.page-hero--plain)::after,
.service-family-hero::before,
.service-family-hero::after,
.about-mock-hero::before,
.about-mock-hero::after,
.bento-mock-hero::before,
.bento-mock-hero::after,
.delivery-mock-hero::before,
.delivery-mock-hero::after,
.lunch-mock-hero::before,
.lunch-mock-hero::after,
.frozen-mock-hero::before,
.frozen-mock-hero::after,
.shokuiku-mock-hero::before,
.shokuiku-mock-hero::after,
.reasons-mock-hero::before,
.reasons-mock-hero::after,
.safety-mock-hero::before,
.safety-mock-hero::after,
.company-mock-hero::before,
.company-mock-hero::after {
  display: none !important;
  content: none !important;
}

.service-family-hero-visual img,
.about-hero-visual img,
.frozen-hero-visual > img:not(.frozen-hero-badge),
.shokuiku-hero-visual img,
.safety-hero-visual img,
.company-hero-visual img {
  border-radius: 51% 49% 48% 52% / 49% 53% 47% 51% !important;
  clip-path: none;
  overflow: hidden;
}

.service-family--delivery .service-family-hero-visual img,
.about-hero-visual img,
.shokuiku-hero-visual img,
.company-hero-visual img {
  border-radius: 49% 51% 52% 48% / 52% 48% 51% 49% !important;
}

.service-family--lunch .service-family-hero-visual img,
.frozen-hero-visual > img:not(.frozen-hero-badge),
.safety-hero-visual img {
  border-radius: 52% 48% 50% 50% / 48% 52% 49% 51% !important;
}

.service-family--bento .service-family-hero-visual img {
  border-radius: 52% 48% 49% 51% / 47% 53% 48% 52% !important;
}

.service-family--delivery .service-family-hero-visual img {
  border-radius: 48% 52% 51% 49% / 53% 47% 52% 48% !important;
}

.shokuiku-hero-visual img {
  border-radius: 0 !important;
  clip-path: none;
}

.frozen-hero-badge {
  border-radius: 50% !important;
  clip-path: none !important;
}

.safety-hero-visual::before,
.company-hero-visual::before {
  border-radius: 47% 53% 56% 44% / 54% 45% 55% 46%;
}
