:root {
  --color-bg: #fffaf3;
  --color-surface: #ffffff;
  --color-text: #3a2a20;
  --color-muted: #78685e;
  --color-primary: #b6422b;
  --color-primary-dark: #8f2f1e;
  --color-accent: #f4b35d;
  --color-border: #ead8c5;
  --color-heading: #5a3528;
  --color-subheading: #6a574c;
  --color-soft-bg: #fff7f4;
  --color-soft-surface: #fffaf7;
  --color-soft-border: #efcfc0;
  --color-pink-border: #f0c9bf;
  --shadow: 0 14px 34px rgba(91, 52, 28, 0.12);
  --radius: 22px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic, Meiryo, sans-serif;
  background: var(--color-bg);
  line-height: 1.75;
}

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

img {
  max-width: 100%;
  height: auto;
}

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

/* =========================================================
   Header
========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 243, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(234, 216, 197, 0.8);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-width: 170px;
}

.site-logo img {
  display: block;
  width: 150px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex: 1;
  font-size: 0.95rem;
  font-weight: 700;
}

.desktop-nav a {
  padding: 8px 0;
  border-bottom: 2px solid transparent;
}

.desktop-nav a:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.25;
  min-width: 150px;
}

.contact-label,
.contact-time {
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 700;
}

.contact-tel {
  color: var(--color-primary);
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  width: 19px;
  height: 2px;
  background: var(--color-text);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 16px;
}

.mobile-nav a {
  display: block;
  padding: 12px 8px;
  border-bottom: 1px solid var(--color-border);
  font-weight: 800;
}

/* =========================================================
   Common components
========================================================= */

.section {
  padding: 84px 20px;
}

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

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

.section-heading.left {
  text-align: left;
  margin: 0;
}

.section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.eyebrow,
.section-kicker {
  color: #b25a36;
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}

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

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

.btn-primary {
  color: #fff;
  background: var(--color-primary);
}

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

.btn-secondary {
  color: var(--color-primary);
  background: #fff;
  border-color: var(--color-primary);
}

.btn-phone {
  color: #fff;
  background: #4b3427;
}

.guide-block,
.trial-block,
.shop-block,
.business-block {
  padding: 34px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.trial-title-box,
.trial-sub-heading,
.shop-heading-box,
.business-heading-box {
  margin-bottom: 18px;
  padding: 14px 18px;
  background: var(--color-soft-bg);
  border: 1px solid var(--color-pink-border);
  border-radius: 12px;
}

.trial-title-box h2,
.trial-sub-heading h2,
.shop-heading-box h2,
.business-heading-box h2 {
  margin: 0;
  color: var(--color-subheading);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
  line-height: 1.35;
  font-weight: 900;
}

.guide-section,
.trial-section,
.shop-section,
.business-section {
  background: var(--color-bg);
}

.guide-inner,
.trial-inner,
.shop-inner,
.business-inner {
  max-width: 980px;
}

/* =========================================================
   TOP page
========================================================= */

.hero {
  position: relative;
  min-height: 660px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fff5e8;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero-meal-delivery.png");
  background-size: cover;
  background-position: center right;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 250, 243, 0.98) 0%,
    rgba(255, 250, 243, 0.9) 34%,
    rgba(255, 250, 243, 0.34) 54%,
    rgba(255, 250, 243, 0.02) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 80px 20px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.9rem, 4.1vw, 3.25rem);
  line-height: 1.28;
  letter-spacing: 0.015em;
  font-weight: 850;
}

.hero-lead {
  max-width: 590px;
  margin: 22px 0 0;
  color: #5f4a3d;
  font-size: 1rem;
  font-weight: 600;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-phone-box {
  display: inline-flex;
  flex-direction: column;
  margin-top: 24px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(91, 52, 28, 0.08);
}

.hero-phone-box span,
.hero-phone-box small {
  color: var(--color-muted);
  font-weight: 800;
}

.hero-phone-box a {
  color: var(--color-primary);
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card,
.link-card,
.stats-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-card {
  padding: 30px;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: #fff1df;
  font-size: 1.8rem;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 600;
}

.history {
  background: #fff3e4;
}

.history-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.8fr;
  gap: 42px;
  align-items: center;
}

.history-text p:not(.section-kicker) {
  color: var(--color-muted);
  font-weight: 600;
}

.stats-card {
  padding: 26px;
}

.stat-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--color-border);
}

.stat-item:last-child {
  border-bottom: none;
}

.stat-item span {
  color: var(--color-muted);
  font-weight: 800;
}

.stat-item strong {
  color: var(--color-primary);
  font-size: 1.45rem;
  font-weight: 900;
  text-align: right;
}

.target-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding: 18px 18px 18px 54px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(91, 52, 28, 0.07);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.9rem;
}

.page-links {
  background: #fff;
}

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

.link-card {
  padding: 24px;
  min-height: 154px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(91, 52, 28, 0.16);
}

.link-card span {
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.link-card strong {
  font-size: 1.08rem;
  line-height: 1.5;
}

.business-link {
  margin-top: 24px;
  text-align: center;
}

.business-link a {
  color: var(--color-primary);
  font-weight: 900;
  border-bottom: 2px solid var(--color-primary);
}

/* =========================================================
   Lower CTA
========================================================= */

.cta {
  padding: 78px 20px;
  background: linear-gradient(135deg, #b6422b 0%, #8f2f1e 100%);
  color: #fff;
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.cta h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.3;
}

.cta p {
  margin: 0;
  font-weight: 700;
}

.cta-actions {
  justify-content: center;
}

.cta .btn-primary {
  background: #fff;
  color: var(--color-primary);
}

.cta .btn-phone {
  background: #3a2a20;
}

.cta-phone {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.cta-phone a {
  font-size: 2rem;
  font-weight: 900;
}

.cta-phone span {
  font-weight: 800;
  opacity: 0.9;
}

/* =========================================================
   Footer
========================================================= */

.site-footer {
  padding: 54px 20px 28px;
  background: #3a2a20;
  color: #fff;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 36px;
}

.footer-logo {
  margin: 0 0 12px;
  font-size: 1.25rem;
  font-weight: 900;
}

.footer-info p {
  margin: 0 0 10px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 10px 20px;
  align-content: start;
}

.footer-nav a {
  opacity: 0.9;
  font-weight: 800;
}

.footer-nav a:hover {
  opacity: 1;
  color: #ffd8a8;
}

.copyright {
  max-width: var(--max-width);
  margin: 34px auto 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.85rem;
}

.mobile-fixed-cta {
  display: none;
}

/* =========================================================
   Common lower page hero
========================================================= */

.page-hero {
  padding: 64px 20px 56px;
  background: #fffaf3;
  border-bottom: 1px solid var(--color-border);
}

.page-hero-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.page-kicker {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.page-hero h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.page-hero p:not(.page-kicker) {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--color-muted);
  font-size: 1.02rem;
  font-weight: 700;
}

/* =========================================================
   MENU page
========================================================= */

.menu-pdf-section {
  padding: 56px 20px 36px;
  background: #fffaf3;
}

.menu-pdf-box {
  max-width: 960px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.menu-pdf-heading {
  text-align: center;
}

.menu-pdf-box h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.3;
}

.menu-pdf-box p:not(.section-kicker) {
  margin: 10px auto 0;
  color: var(--color-muted);
  font-weight: 700;
}

.pdf-buttons {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--color-soft-border);
  border-radius: 16px;
  overflow: hidden;
  background: var(--color-soft-surface);
}

.pdf-button {
  display: flex;
  min-height: 112px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 18px;
  color: var(--color-heading);
  background: var(--color-soft-surface);
  border-right: 1px solid var(--color-soft-border);
  font-weight: 900;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.pdf-button:last-child {
  border-right: none;
}

.pdf-button:hover {
  color: #fff;
  background: var(--color-primary);
}

.pdf-button strong {
  font-size: 1.15rem;
}

.pdf-button span {
  display: inline-flex;
  margin-top: 10px;
  padding: 7px 18px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 900;
}

.pdf-button:hover span {
  color: var(--color-primary);
  background: #fff;
}

.menu-list-section {
  padding: 56px 20px 84px;
  background: #fffaf3;
}

.bento-menu-list {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 34px;
}

.bento-card {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 34px;
  align-items: center;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.bento-image {
  overflow: hidden;
  border-radius: 20px;
  background: #fff7ee;
  border: 1px solid var(--color-border);
}

.bento-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.bento-content {
  min-width: 0;
}

.bento-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.bento-title-row h3 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.55rem, 2.6vw, 2.2rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
}

.bento-title-row span {
  display: inline-flex;
  padding: 5px 13px;
  color: var(--color-primary);
  background: #fff1df;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.bento-content p {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--color-muted);
  font-weight: 700;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 220px));
  gap: 14px;
  margin-top: 24px;
}

.price-item {
  padding: 14px 18px 15px;
  background: #fffaf3;
  border: 3px solid #e7531e;
  border-radius: 14px;
  text-align: center;
}

.price-item.single {
  grid-column: auto;
  max-width: 240px;
}

.price-item span {
  display: block;
  color: #e7531e;
  font-size: 0.92rem;
  font-weight: 900;
}

.price-item strong {
  display: inline-block;
  margin-top: 5px;
  color: #e7531e;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0.06em;
}

.price-item small {
  margin-left: 4px;
  color: var(--color-text);
  font-size: 0.82rem;
  font-weight: 900;
}

.nutrition-table-wrap,
.option-table-wrap {
  width: 100%;
  margin-top: 20px;
  overflow-x: auto;
}

.nutrition-table,
.option-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 0.9rem;
}

.nutrition-table th,
.nutrition-table td,
.option-table th,
.option-table td {
  padding: 10px 12px;
  border: 1px solid var(--color-border);
  text-align: center;
  white-space: nowrap;
}

.nutrition-table th {
  color: #245a8d;
  background: #eaf5ff;
  font-weight: 900;
}

.nutrition-table td {
  font-weight: 800;
}

.option-box {
  max-width: 900px;
  margin: 46px auto 0;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.option-box h2 {
  margin: 0 0 10px;
  color: var(--color-heading);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.option-box p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

.option-table th {
  width: 40%;
  color: var(--color-primary);
  background: #fff3e4;
  font-weight: 900;
}

.option-table td {
  color: var(--color-text);
  font-weight: 800;
}

.container-fee {
  margin-top: 20px !important;
  color: var(--color-text) !important;
  font-size: 1.05rem;
}

.container-fee strong {
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* =========================================================
   GUIDE page
========================================================= */

.guide-heading {
  margin-bottom: 18px;
}

.guide-heading h2 {
  margin: 0;
  color: var(--color-heading);
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.35;
}

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

.guide-contact-box {
  margin-top: 22px;
  padding: 22px;
  background: #fff7ee;
  border: 1px solid var(--color-soft-border);
  border-radius: 18px;
}

.guide-contact-box div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.guide-contact-box span {
  color: var(--color-muted);
  font-weight: 900;
}

.guide-contact-box a {
  color: var(--color-primary);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 950;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

.guide-contact-box small {
  color: var(--color-muted);
  font-weight: 800;
}

.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guide-info-card,
.guide-panel,
.adjustment-card,
.payment-card,
.faq-item {
  background: var(--color-soft-surface);
  border: 1px solid var(--color-soft-border);
  border-radius: 18px;
}

.guide-info-card {
  padding: 22px;
}

.guide-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 13px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.guide-info-card h3,
.guide-panel h3,
.adjustment-card h3,
.payment-card h3,
.faq-item h3,
.bank-text h3 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 1.15rem;
  line-height: 1.45;
}

.guide-info-card p,
.guide-panel p,
.adjustment-card p,
.payment-card p,
.faq-item p,
.bank-text p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 700;
}

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

.guide-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--color-subheading);
  background: #fff7ee;
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

.guide-important {
  margin: 18px 0 0;
  padding: 16px 18px;
  color: #8f2f1e;
  background: #fff0ea;
  border: 1px solid #f0b7a5;
  border-radius: 14px;
  font-weight: 900;
}

.guide-two-column {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.guide-panel {
  padding: 22px;
}

.guide-list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.guide-list li {
  position: relative;
  padding-left: 24px;
  color: var(--color-muted);
  font-weight: 800;
}

.guide-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: 950;
}

.adjustment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 22px;
}

.adjustment-card {
  padding: 20px;
}

.payment-caution {
  margin: 8px 0 0;
  color: var(--color-text);
  font-size: 0.92rem;
  font-weight: 900;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.payment-card {
  position: relative;
  padding: 34px 20px 22px;
  min-width: 0;
}

.payment-card span {
  position: absolute;
  top: -18px;
  left: 18px;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-weight: 950;
  font-size: 1.05rem;
}

.payment-card h3 {
  font-size: 1.08rem;
}

.payment-card p {
  line-height: 1.65;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.payment-bank-list {
  margin-top: 12px;
  display: grid;
  gap: 2px;
}

.payment-bank-list p {
  color: var(--color-text);
  font-weight: 900;
  line-height: 1.55;
}

.bank-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 28px;
  align-items: start;
  margin-top: 22px;
}

.bank-text {
  padding: 22px;
  background: var(--color-soft-surface);
  border: 1px solid var(--color-soft-border);
  border-radius: 18px;
}

.bank-pdf-actions {
  margin-top: 22px;
}

.bank-pdf-button {
  width: 100%;
  text-align: center;
}

.bank-image {
  margin: 0;
  text-align: center;
}

.bank-image a {
  display: block;
}

.bank-image img {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(91, 52, 28, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.bank-image a:hover img {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(91, 52, 28, 0.16);
}

.bank-image figcaption,
.delivery-area-image figcaption {
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.85rem;
  font-weight: 800;
}

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

.faq-item {
  padding: 20px 22px;
}

.faq-item h3 {
  position: relative;
  padding-left: 34px;
}

.faq-item h3::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.faq-item p {
  position: relative;
  padding-left: 34px;
}

.faq-item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 1px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: #fff;
  border: 1px solid var(--color-primary);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 950;
}

.delivery-area-image {
  margin: 24px 0 0;
  text-align: center;
}

.delivery-area-image img {
  display: block;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(91, 52, 28, 0.1);
}

/* =========================================================
   TRIAL page
========================================================= */

.trial-lead {
  margin: 0;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.9;
}

.trial-free-box {
  margin-top: 24px;
  overflow: hidden;
  text-align: center;
  border: 1px solid var(--color-pink-border);
  border-radius: 14px;
  background: #fff;
}

.trial-free-box h3 {
  margin: 0;
  padding: 14px 18px;
  color: #e84132;
  background: #fff0ee;
  border-bottom: 1px solid var(--color-pink-border);
  font-size: clamp(1.55rem, 3vw, 2rem);
  line-height: 1.3;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.trial-free-box p {
  margin: 0;
  padding: 18px 20px 20px;
  color: #5f4a3d;
  font-weight: 800;
  line-height: 1.75;
}

.trial-free-box strong {
  color: #2450a4;
  font-size: 1.08rem;
  font-weight: 950;
}

.trial-contact-table-wrap,
.trial-required-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.trial-contact-table,
.trial-required-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.trial-contact-table th,
.trial-contact-table td,
.trial-required-table th,
.trial-required-table td {
  border: 1px solid var(--color-pink-border);
}

.trial-contact-table th {
  width: 220px;
  padding: 20px 18px;
  color: #e06c85;
  background: #fff0f0;
  font-size: 1.3rem;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.04em;
}

.trial-contact-table td {
  padding: 16px 20px;
}

.trial-contact-table td a {
  display: inline-block;
  color: #123f9a;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 950;
  line-height: 1.2;
}

.trial-contact-table td span {
  display: block;
  margin-top: 2px;
  color: var(--color-subheading);
  font-weight: 900;
  line-height: 1.35;
}

.trial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.trial-required-table {
  min-width: 760px;
  font-size: 0.96rem;
}

.trial-required-table thead th {
  padding: 12px 14px;
  color: #e06c85;
  background: #fff0f0;
  font-weight: 950;
  text-align: center;
}

.trial-required-table tbody td {
  padding: 12px 14px;
  color: #5f4a3d;
  font-weight: 800;
  vertical-align: middle;
}

.trial-required-table tbody td:nth-child(1) {
  width: 86px;
  text-align: center;
  font-size: 1.08rem;
}

.trial-required-table tbody td:nth-child(2) {
  width: 210px;
  text-align: center;
  font-weight: 900;
}

.trial-required-table tbody td:nth-child(3) {
  min-width: 420px;
}

.trial-note {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: var(--color-subheading);
  background: #fff7ee;
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 800;
}

/* =========================================================
   Responsive
========================================================= */

@media (max-width: 980px) {
  .desktop-nav,
  .header-contact {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

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

  .mobile-nav.is-open {
    display: block;
  }

  .hero {
    min-height: auto;
    display: block;
  }

  .hero-bg {
    position: relative;
    height: 310px;
    background-size: cover;
    background-position: center right;
  }

  .hero::after {
    display: none;
  }

  .hero-content {
    padding: 34px 20px 44px;
    background: var(--color-bg);
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .feature-grid,
  .history-layout,
  .target-layout,
  .link-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .history-layout,
  .target-layout {
    display: grid;
    gap: 28px;
  }

  .link-grid {
    display: grid;
  }

  .footer-inner {
    display: grid;
  }

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

  .bento-image {
    max-width: 560px;
  }

  .price-list {
    grid-template-columns: repeat(2, minmax(160px, 1fr));
  }

  .guide-card-grid,
  .guide-two-column,
  .payment-grid,
  .bank-layout {
    grid-template-columns: 1fr;
  }

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

  .bank-image img {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  .header-inner {
    padding: 12px 16px;
  }

  .site-logo {
    min-width: auto;
  }

  .site-logo img {
    width: 124px;
  }

  .hero-bg {
    height: 250px;
  }

  .hero h1 {
    font-size: 1.85rem;
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-phone-box {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

  .feature-card,
  .link-card,
  .stats-card {
    border-radius: 18px;
  }

  .feature-card {
    padding: 24px;
  }

  .stat-item {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .stat-item strong {
    text-align: left;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 48px 16px 42px;
  }

  .menu-pdf-section,
  .menu-list-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .menu-pdf-box,
  .bento-card,
  .option-box {
    padding: 20px;
    border-radius: 18px;
  }

  .pdf-buttons {
    grid-template-columns: 1fr;
  }

  .pdf-button {
    border-right: none;
    border-bottom: 1px solid var(--color-soft-border);
  }

  .pdf-button:last-child {
    border-bottom: none;
  }

  .bento-image img {
    aspect-ratio: 4 / 3;
  }

  .price-list {
    grid-template-columns: 1fr;
  }

  .price-item,
  .price-item.single {
    width: 100%;
    max-width: none;
  }

  .guide-block {
    padding: 22px;
    border-radius: 18px;
  }

  .guide-card-grid,
  .adjustment-grid,
  .payment-grid {
    grid-template-columns: 1fr;
  }

  .guide-contact-box {
    padding: 18px;
  }

  .guide-contact-box a {
    font-size: 1.75rem;
  }

  .bank-image img {
    max-width: 100%;
  }

  .delivery-area-image img {
    border-radius: 12px;
  }

  .trial-block {
    padding: 22px;
    border-radius: 18px;
  }

  .trial-title-box,
  .trial-sub-heading {
    padding: 12px 14px;
  }

  .trial-contact-table th,
  .trial-contact-table td {
    display: block;
    width: 100%;
  }

  .trial-contact-table th {
    padding: 12px 14px;
    font-size: 1.05rem;
    text-align: left;
  }

  .trial-contact-table td {
    padding: 14px;
  }

  .trial-contact-table td a {
    font-size: 1.32rem;
  }

  .trial-actions {
    flex-direction: column;
  }

  .trial-required-table {
    min-width: 720px;
    font-size: 0.9rem;
  }

  .mobile-fixed-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #fff;
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -8px 22px rgba(91, 52, 28, 0.12);
  }

  .mobile-fixed-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    font-weight: 900;
  }

  .mobile-fixed-cta a:first-child {
    background: #4b3427;
    color: #fff;
  }

  .mobile-fixed-cta a:last-child {
    background: var(--color-primary);
    color: #fff;
  }
}
/* =========================================================
   SHOP page
========================================================= */

.shop-greeting p {
  margin: 0 0 18px;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.9;
}

.shop-greeting p:last-child {
  margin-bottom: 0;
}

.shop-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.shop-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.shop-table th,
.shop-table td {
  border: 1px solid var(--color-pink-border);
  vertical-align: middle;
}

.shop-table th {
  width: 140px;
  padding: 16px 14px;
  color: #5f4a3d;
  background: #fff0f0;
  font-weight: 900;
  text-align: left;
  white-space: nowrap;
}

.shop-table td {
  padding: 16px 18px;
  color: #5f4a3d;
  font-weight: 800;
  line-height: 1.65;
}

.shop-table td a {
  color: var(--color-primary);
  font-weight: 950;
  border-bottom: 1px solid currentColor;
}

.shop-table td span {
  display: block;
  color: var(--color-muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.shop-name-kana {
  display: block;
  margin-bottom: 2px;
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 800;
}

.shop-map {
  width: 100%;
  max-width: 760px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: #fff7ee;
}

.shop-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.shop-map-note {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.shop-franchise p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.85;
}

.shop-franchise strong {
  color: #e84132;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 950;
  letter-spacing: 0.04em;
}

.shop-franchise-info {
  margin-top: 18px;
  padding: 18px 20px;
  background: #fff7ee;
  border: 1px solid var(--color-soft-border);
  border-radius: 16px;
}

.shop-franchise-label {
  color: #2450a4 !important;
  font-weight: 950 !important;
}

.shop-franchise a {
  color: var(--color-primary);
  font-weight: 950;
  border-bottom: 1px solid currentColor;
}

@media (max-width: 640px) {
  .shop-block {
    padding: 22px;
    border-radius: 18px;
  }

  .shop-heading-box {
    padding: 12px 14px;
  }

  .shop-table th,
  .shop-table td {
    display: block;
    width: 100%;
  }

  .shop-table th {
    padding: 12px 14px;
  }

  .shop-table td {
    padding: 14px;
  }

  .shop-map iframe {
    height: 280px;
  }
}
/* Googleマップで開くボタン調整 */
.shop-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.shop-map-actions .btn {
  width: auto;
  min-width: auto;
  min-height: 40px;
  padding: 8px 18px;
  font-size: 0.9rem;
  line-height: 1.2;
  border-radius: 999px;
}

.shop-map-actions .btn-primary {
  color: #fff;
  background: var(--color-primary);
  border: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
}

.shop-map-actions .btn-primary:hover {
  color: #fff;
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
}

@media (max-width: 640px) {
  .shop-map-actions .btn {
    width: auto;
    min-height: 38px;
    padding: 8px 16px;
    font-size: 0.86rem;
  }
}
/* =========================================================
   BUSINESS page
========================================================= */

.business-intro p {
  margin: 0 0 16px;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.9;
}

.business-intro p:last-child {
  margin-bottom: 0;
}

.business-intro strong {
  color: var(--color-primary);
  font-weight: 950;
}

.business-app-card {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: stretch;
  padding: 30px;
  margin-bottom: 32px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.business-app-content {
  min-width: 0;
}

.business-app-icon {
  width: 72px;
  height: 72px;
  padding: 6px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(17, 24, 39, 0.1);
}

.business-app-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.business-app-category {
  margin: 16px 0 4px;
  color: #6b7280;
  font-size: 0.9rem;
  font-weight: 900;
}

.business-app-content h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  line-height: 1.25;
  font-weight: 950;
}

.business-app-lead {
  margin: 14px 0 0;
  color: #6b7280;
  font-weight: 800;
  line-height: 1.75;
}

.business-app-point {
  margin-top: 18px;
  padding: 18px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
}

.business-app-point h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 1.05rem;
  font-weight: 950;
}

.business-app-point p {
  margin: 0;
  color: #6b7280;
  font-weight: 800;
  line-height: 1.75;
}

.business-app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.business-qr-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 22px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  text-align: center;
}

.business-qr-card p {
  margin: 0 0 12px;
  color: #111827;
  font-weight: 950;
}

.business-qr-image {
  width: min(100%, 220px);
  aspect-ratio: 1 / 1;
  padding: 10px;
  background: #fff;
  border-radius: 14px;
}

.business-qr-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.business-qr-card small {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.5;
}

.business-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.business-feature-card {
  position: relative;
  padding: 24px 22px 22px;
  background: var(--color-soft-surface);
  border: 1px solid var(--color-soft-border);
  border-radius: 18px;
}

.business-feature-card span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 5px 12px;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 950;
}

.business-feature-card h3 {
  margin: 0 0 8px;
  color: var(--color-heading);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 950;
}

.business-feature-card p {
  margin: 0;
  color: var(--color-muted);
  font-weight: 800;
  line-height: 1.75;
}

.business-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.business-check-list li {
  position: relative;
  padding: 16px 16px 16px 50px;
  color: var(--color-muted);
  background: var(--color-soft-surface);
  border: 1px solid var(--color-soft-border);
  border-radius: 16px;
  font-weight: 850;
  line-height: 1.65;
}

.business-check-list li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  top: 17px;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 950;
}

@media (max-width: 980px) {
  .business-app-card {
    grid-template-columns: 1fr;
  }

  .business-qr-card {
    max-width: 420px;
    width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .business-block,
  .business-app-card {
    padding: 22px;
    border-radius: 18px;
  }

  .business-heading-box {
    padding: 12px 14px;
  }

  .business-feature-grid {
    grid-template-columns: 1fr;
  }

  .business-app-icon {
    width: 64px;
    height: 64px;
  }

  .business-qr-image {
    width: min(100%, 190px);
  }
}
/* =========================================================
   Lower page spacing adjustments
========================================================= */

.menu-page-hero,
.guide-page-hero,
.trial-page-hero,
.shop-page-hero,
.business-page-hero {
  padding: 34px 20px 30px;
}

.menu-page-hero .page-kicker,
.guide-page-hero .page-kicker,
.trial-page-hero .page-kicker,
.shop-page-hero .page-kicker,
.business-page-hero .page-kicker {
  margin-bottom: 8px;
}

.menu-page-hero h1,
.guide-page-hero h1,
.trial-page-hero h1,
.shop-page-hero h1,
.business-page-hero h1 {
  margin-bottom: 12px;
}

.menu-page-hero p:not(.page-kicker),
.guide-page-hero p:not(.page-kicker),
.trial-page-hero p:not(.page-kicker),
.shop-page-hero p:not(.page-kicker),
.business-page-hero p:not(.page-kicker) {
  margin-top: 10px;
}

.menu-pdf-section,
.guide-section,
.trial-section,
.shop-section,
.business-section {
  padding-top: 28px;
}

@media (max-width: 640px) {
  .menu-page-hero,
  .guide-page-hero,
  .trial-page-hero,
  .shop-page-hero,
  .business-page-hero {
    padding: 28px 16px 26px;
  }

  .menu-pdf-section,
  .guide-section,
  .trial-section,
  .shop-section,
  .business-section {
    padding-top: 22px;
  }
}
/* =========================================================
   TOP page mobile hero message
   スマホ時のみ、ヒーロー画像の空きスペースを訴求エリアとして活用
========================================================= */

.mobile-hero-message {
  display: none;
}

@media (max-width: 640px) {
  .hero-bg {
    position: relative;
    height: 250px;
    background-position: center right;
  }

  .mobile-hero-message {
    position: absolute;
    left: 16px;
    bottom: 46px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    width: min(44%, 168px);
    padding: 10px 12px 11px;
    background: rgba(255, 250, 243, 0.92);
    border: 1px solid rgba(180, 66, 43, 0.24);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(91, 52, 28, 0.16);
    backdrop-filter: blur(6px);
  }

  .mobile-hero-message span {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 5px;
    padding: 3px 8px;
    color: #fff;
    background: var(--color-primary);
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1.3;
    font-weight: 900;
  }

  .mobile-hero-message strong {
    color: var(--color-heading);
    font-size: 0.98rem;
    line-height: 1.35;
    font-weight: 950;
    letter-spacing: 0.02em;
  }

  .mobile-hero-message small {
    margin-top: 3px;
    color: var(--color-muted);
    font-size: 0.72rem;
    line-height: 1.45;
    font-weight: 800;
  }
}

/* =========================================================
   TOP page mobile density adjustments
========================================================= */

@media (max-width: 640px) {
  .hero-content {
    padding-bottom: 28px;
  }

  .features {
    padding-top: 30px;
    padding-bottom: 42px;
  }

  .history,
  .target,
  .page-links {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .features .section-heading,
  .page-links .section-heading {
    margin-bottom: 22px;
  }

  .section h2 {
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.32;
  }

  .section-kicker {
    margin-bottom: 8px;
  }

  .feature-grid {
    gap: 14px;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 8px 14px;
    align-items: center;
    padding: 18px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0;
    border-radius: 14px;
    font-size: 1.45rem;
  }

  .feature-card h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
  }

  .feature-card p {
    grid-column: 1 / -1;
    font-size: 0.94rem;
    line-height: 1.75;
  }

  .history .stats-card {
    padding: 18px 20px;
  }

  .history .stat-item {
    padding: 12px 0;
  }

  .history .stat-item strong {
    font-size: 1.32rem;
  }

  .check-list {
    gap: 10px;
  }

  .check-list li {
    padding: 14px 14px 14px 46px;
    border-radius: 14px;
  }

  .check-list li::before {
    left: 14px;
    width: 24px;
    height: 24px;
  }

  .link-grid {
    gap: 10px;
  }

  .link-card {
    min-height: 0;
    padding: 16px 18px;
    gap: 5px;
    border-radius: 14px;
    justify-content: flex-start;
  }

  .link-card span {
    font-size: 0.8rem;
  }

  .link-card strong {
    font-size: 1rem;
    line-height: 1.45;
  }
}
