: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 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

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

.feature-card,
.link-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;
}

.support {
  background: #fff;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 42px;
  align-items: start;
}

.support-text {
  min-width: 0;
}

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

.support-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 24px;
  background: var(--color-soft-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
}

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

.support-links > .section-kicker,
.support-links > h2,
.support-links > .business-link {
  grid-column: 1 / -1;
}

.support-links > .section-kicker {
  margin: 0;
}

.support-links > h2 {
  margin: -4px 0 8px;
  color: var(--color-heading);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.35;
}

.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 {
  color: var(--color-primary);
  font-weight: 900;
  border-bottom: 2px solid var(--color-primary);
}

.support-links > .business-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
}

/* =========================================================
   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;
}

/* =========================================================
   PDF viewer
========================================================= */

.pdf-viewer-page {
  min-height: 100vh;
  background: #f2eee8;
}

.pdf-viewer-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px 20px;
  background: rgba(255, 250, 243, 0.96);
  border-bottom: 1px solid var(--color-border);
}

.pdf-viewer-header h1 {
  margin: 0;
  color: var(--color-heading);
  font-size: 1rem;
  line-height: 1.4;
  text-align: center;
}

.pdf-viewer-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
}

.pdf-viewer-back {
  color: #fff;
  background: var(--color-primary);
}

.pdf-viewer-main {
  padding: 16px;
}

.pdf-viewer-container {
  --pdf-zoom: 1;
  max-width: 1100px;
  margin: 0 auto;
}

.pdf-viewer-container.is-frame {
  height: calc(100vh - 92px);
  background: #8a8782;
  border-radius: 12px;
  overflow: hidden;
}

.pdf-viewer-pages {
  display: grid;
  gap: 16px;
}

.pdf-viewer-tools {
  display: none;
}

.pdf-viewer-page-panel {
  overflow: visible;
}

.pdf-viewer-page-image {
  display: block;
  width: 100%;
  height: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(91, 52, 28, 0.12);
}

.pdf-viewer-frame {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #8a8782;
}

.pdf-viewer-loading,
.pdf-viewer-error {
  margin: 0;
  padding: 28px 18px;
  color: #fff;
  font-weight: 900;
  text-align: center;
}

/* =========================================================
   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: 320px 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;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
}

.bento-image img {
  display: block;
  width: min(100%, 290px);
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.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;
  white-space: normal;
  overflow-wrap: anywhere;
}

.option-table td {
  color: var(--color-text);
  font-weight: 800;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.6;
}

.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;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  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;
  min-width: 0;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
}

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

.guide-contact-box a {
  color: var(--color-primary);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  font-weight: 950;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

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

.guide-info-card,
.guide-panel,
.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,
.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,
.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;
}

.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,
  .support-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .support-layout {
    display: grid;
    gap: 28px;
  }

  .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-two-column,
  .guide-contact-box,
  .payment-grid,
  .bank-layout {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .hero-bg {
    height: 230px;
  }

  .hero h1 {
    font-size: 1.72rem;
    line-height: 1.32;
  }

  .hero-lead {
    margin-top: 18px;
    font-size: 0.96rem;
  }

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

  .btn {
    width: 100%;
  }

  .section {
    padding: 58px 16px;
  }

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

  .feature-card {
    padding: 24px;
  }

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

  .payment-grid {
    grid-template-columns: 1fr;
  }

  .guide-contact-box {
    padding: 18px;
    grid-template-columns: 1fr;
  }

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

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

  .pdf-viewer-header {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px 12px;
  }

  .pdf-viewer-header h1 {
    order: -1;
    font-size: 0.9rem;
  }

  .pdf-viewer-back {
    width: 100%;
    min-height: 36px;
    padding: 7px 12px;
  }

  .pdf-viewer-main {
    padding: 6px;
    height: calc(100dvh - 108px);
    overflow: auto;
  }

  .pdf-viewer-container {
    height: 100%;
    border-radius: 8px;
  }

  .pdf-viewer-container.is-frame {
    height: calc(100vh - 160px);
  }

  .pdf-viewer-tools {
    position: sticky;
    top: 0;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 0 0 6px;
  }

  .pdf-viewer-tools button {
    min-width: 54px;
    min-height: 34px;
    padding: 5px 12px;
    border: 1px solid rgba(91, 52, 28, 0.18);
    border-radius: 999px;
    color: var(--color-heading);
    background: rgba(255, 255, 255, 0.92);
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(91, 52, 28, 0.08);
  }

  .pdf-viewer-pages {
    grid-auto-columns: 100%;
    grid-auto-flow: column;
    max-height: calc(100% - 40px);
    gap: 8px;
    overflow-x: auto;
    overflow-y: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y pinch-zoom;
  }

  .pdf-viewer-page-panel {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-width: 100%;
    padding: 6px;
    overflow: visible;
    background: #fff;
    border-radius: 8px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .pdf-viewer-page-image {
    width: calc(100% * var(--pdf-zoom));
    min-width: calc(100% * var(--pdf-zoom));
    max-width: none;
    height: auto;
    border-radius: 6px;
    box-shadow: none;
  }
}
/* =========================================================
   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-top: 28px;
    padding-bottom: 26px;
  }

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

  .support {
    padding-top: 44px;
    padding-bottom: 44px;
  }

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

  .section h2 {
    font-size: clamp(1.38rem, 7vw, 1.82rem);
    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: 16px;
  }

  .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.92rem;
    line-height: 1.7;
  }

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

  .support-links {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 16px;
    border-radius: 16px;
  }

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