:root {
  --bg: #f6f1ea;
  --surface: rgba(255, 251, 246, 0.92);
  --surface-strong: #fffdf8;
  --ink: #1b1411;
  --soft: #6d6057;
  --line: rgba(27, 20, 17, 0.1);
  --brand: #ab1f24;
  --brand-deep: #7f171b;
  --accent: #b68a50;
  --shadow: 0 20px 48px rgba(55, 30, 18, 0.09);
  --shadow-soft: 0 10px 28px rgba(55, 30, 18, 0.06);
  --radius-xl: 0px;
  --radius-lg: 0px;
  --radius-md: 0px;
  --font-base: Meiryo, "メイリオ", "Lucida Grande", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(171, 31, 36, 0.1), transparent 20%),
    radial-gradient(circle at 85% 8%, rgba(182, 138, 80, 0.12), transparent 18%),
    linear-gradient(180deg, #fbf8f3 0%, #f1e7dd 100%);
  font-family: var(--font-base);
  padding-top: 90px;
  overflow-x: hidden;
  transition: padding-top 0.35s ease;
}

/* SP: when header is collapsed, remove the reserved top space */
body.header-collapsed {
  padding-top: 0;
}

.brand-logo .brand-ja,
.brand-logo .brand-en,
.header-social-link,
.header-social-label,
.view-toggle,
.menu-links a,
.topbar a,
.topbar span,
.site-nav a,
.eyebrow,
.hero-copy h1,
.hero-pill,
.hero-meta .stat strong,
.panel h2,
.panel h3,
.timeline-badge,
.visual-caption strong,
.link-pill,
.cta-band h3,
.index-hero h1,
.concept-body h2,
.concept-thumb .vertical-copy,
.simple-page h1,
.simple-page h2,
.simple-page h3,
.hero-vertical-note,
.hero-indicator,
.editorial-block h2,
.editorial-block h3,
.soft-card strong,
.ingredient-photo-caption strong,
.split-note strong,
.carousel-head h3,
.product-slide .product-tile,
.product-slide .price,
.quiet-block h2,
.quiet-block h3,
.quiet-mini strong,
.quote-float p,
.shop-logo-mark {
  font-family: var(--font-base);
}

body.theme-red {
  background:
    linear-gradient(180deg, #86161a 0%, #a31c21 34%, #f4ece3 34%, #f4ece3 100%);
}

body.theme-sage {
  background:
    radial-gradient(circle at top left, rgba(106, 121, 80, 0.16), transparent 20%),
    radial-gradient(circle at 90% 12%, rgba(182, 138, 80, 0.16), transparent 18%),
    linear-gradient(180deg, #ebe3d6 0%, #f6efe6 100%);
}

body.theme-soft {
  background:
    radial-gradient(circle at top left, rgba(171, 31, 36, 0.08), transparent 16%),
    radial-gradient(circle at 86% 8%, rgba(182, 138, 80, 0.12), transparent 18%),
    linear-gradient(180deg, #faf6f0 0%, #f2ebe2 100%);
}

a {
  color: inherit;
}

.page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 18px 0;
  overflow-x: hidden;
}

.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;
}

.floating-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0;
  transition: transform 0.35s ease;
}

.floating-header.is-collapsed {
  transform: translateY(calc(-100% + 26px));
}

.header-shell {
  max-width: none;
  margin: 0 auto;
  border-radius: 0;
  border-bottom: 1px solid rgba(27, 20, 17, 0.08);
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(27, 20, 17, 0.06);
  position: relative;
  overflow: hidden;
}

.header-shell::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 220px;
  background-image: url("./assets/header_02_new_long_long.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
  pointer-events: none;
  z-index: 0;
}

.header-shell > * {
  position: relative;
  z-index: 1;
}

.header-brand-sub {
  display: grid;
  gap: 4px;
  padding: 8px 20px 12px;
  border-top: 1px solid rgba(27, 20, 17, 0.06);
  background-color: #b5cf16ab;
  overflow: visible;
}

.brand-sub-ja {
  display: block;
  padding-left: 0;
  color: var(--brand);
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.7;
  white-space: normal;
  animation: none;
}

.brand-sub-extra {
  display: block;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.7;
}

.header-collapse-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 26px;
  position: absolute;
  right: 0;
  bottom: 0;
  margin-left: 0;
  border: 0;
  border-left: 1px solid rgba(27, 20, 17, 0.12);
  border-top: 1px solid rgba(27, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  box-shadow: -2px -2px 8px rgba(27, 20, 17, 0.05);
  color: var(--soft);
  font-size: 14px;
  cursor: pointer;
  transition: transform 0.3s ease;
  z-index: 2;
}

.header-collapse-toggle.is-collapsed {
  transform: rotate(180deg);
}

@keyframes brand-sub-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}



.header-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 20px 0;
}

.header-brand-group {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
  flex: 1 1 auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  border: none;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
  min-width: 0;
}

.brand-logo-mark {
  width: 200px;
  height: 200px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-logo-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-logo .brand-ja {
  color: var(--brand);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.brand-logo .brand-en {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.header-social-link,
.header-social-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 14px;
  border: none;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

.header-social-link svg,
.header-social-label svg,
.menu-social-link svg {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.header-social-link.is-instagram {
  color: var(--brand);
}

.header-social-link.is-facebook,
.menu-social-link.is-facebook {
  color: #1877f2;
}

.header-social-label {
  opacity: 0.58;
}

.menu-socials {
  display: none;
  gap: 8px;
  padding: 12px 16px 0;
}

.menu-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
}

.menu-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
}

.view-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  cursor: pointer;
}

.view-toggle svg {
  width: 32px;
  height: 32px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.menu-drawer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.menu-drawer.is-open {
  grid-template-rows: 1fr;
}

.menu-drawer-inner {
  overflow: hidden;
}

.menu-links {
  display: grid;
  gap: 0;
  padding: 0 16px 16px;
}

.menu-links a {
  display: block;
  padding: 12px 18px;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  border: 1px solid rgba(27, 20, 17, 0.08);
}

.menu-links a:last-child {
  border-bottom: 0;
}

.menu-links a.is-current {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.legacy-nav {
  display: none !important;
}

.topbar a,
.topbar span {
  font: 700 12px/1 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.topbar a {
  color: inherit;
  opacity: 0.9;
}

.topbar .brand-mark {
  color: var(--brand);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 6px;
  background: rgba(255, 250, 244, 0.86);
  border: 0;
  box-shadow: 0 18px 34px rgba(55, 30, 18, 0.12);
  color: var(--ink);
  font: 700 12px/1 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 0;
  background: rgba(171, 31, 36, 0.07);
  border: 1px solid rgba(171, 31, 36, 0.1);
  color: var(--brand);
  font: 700 11px/1 "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-shell,
.panel,
.tile,
.cta-band,
.footer-note {
  background: var(--surface);
  border: 1px solid rgba(27, 20, 17, 0.08);
  box-shadow: var(--shadow);
}

.hero-shell {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 510px) minmax(0, 1fr);
  min-height: 760px;
}

.hero-grid-wide {
  display: none;
}

.hero-visual {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  touch-action: pan-y;
}

.hero-slideshow {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 1.2s ease, transform 6s ease;
}

.hero-slide-media,
.hero-slide-media img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide-media img {
  object-fit: cover;
}

.hero-slide-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-image-desktop-only {
  display: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide-label {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  max-width: calc(100% - 56px);
  padding: 10px 14px;
  background: rgba(255, 248, 240, 0.82);
  color: var(--brand);
  font-family: var(--font-base);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.hero-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: rgba(27, 20, 17, 0.4);
  color: #fff7f0;
  font-family: var(--font-base);
  cursor: pointer;
  box-shadow: none;
}

.hero-toggle-icon {
  display: block;
  position: relative;
}

.hero-toggle .icon-pause {
  width: 12px;
  height: 14px;
}

.hero-toggle .icon-pause::before,
.hero-toggle .icon-pause::after {
  content: "";
  position: absolute;
  top: 0;
  width: 4px;
  height: 14px;
  background: currentColor;
}

.hero-toggle .icon-pause::before {
  left: 0;
}

.hero-toggle .icon-pause::after {
  right: 0;
}

.hero-toggle .icon-play {
  display: none;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid currentColor;
  margin-left: 2px;
}

.hero-toggle.is-paused .icon-pause {
  display: none;
}

.hero-toggle.is-paused .icon-play {
  display: block;
}

.hero-copy-wide {
  display: none;
}

.hero-motion-strip {
  margin: 0;
  overflow: hidden;
}

.hero-motion-strip img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-visual::after {
  content: none;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  padding: 62px 56px 60px 48px;
}

.hero-copy h1 {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.hero-copy p {
  margin: 0;
  max-width: 560px;
  color: var(--soft);
  font-size: 15px;
  line-height: 2.05;
}

.hero-copy-body {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-copy-body.is-expanded {
  display: block;
  overflow: visible;
}

.hero-copy-toggle {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font: 700 13px/1 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  cursor: pointer;
}

.hero-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 0;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: none;
  font: 700 12px/1 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-meta .stat {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 20, 17, 0.08);
  box-shadow: none;
}

.hero-meta .stat strong {
  display: block;
  margin-bottom: 6px;
  font: 700 11px/1.4 "Montserrat", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-meta .stat span {
  color: var(--soft);
  font-size: 12px;
  line-height: 1.8;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  margin-top: 22px;
  min-width: 0;
}

.stack {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.stack > section {
  min-width: 0;
  max-width: 100%;
}

.panel {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.panel h2,
.panel h3 {
  margin: 0 0 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: 30px;
  line-height: 1.28;
}

.panel p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.95;
}

.cards-two,
.cards-three,
.links-grid {
  display: grid;
  gap: 12px;
}

.cards-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cards-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tile {
  padding: 18px;
  border-radius: var(--radius-md);
}

.tile strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.tile p,
.tile span {
  color: var(--soft);
  font-size: 13px;
  line-height: 1.85;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-row {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 20, 17, 0.08);
}

.timeline-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-badge {
  display: inline-flex;
  justify-content: center;
  padding: 9px 10px;
  border-radius: 4px;
  background: rgba(182, 138, 80, 0.16);
  color: #7a521c;
  font: 700 10px/1 "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visual-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 6, 6, 0.02), rgba(10, 6, 6, 0.3));
}

.visual-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  color: #fff8f0;
}

.visual-caption strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 1.24;
}

.visual-caption span {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255, 248, 240, 0.84);
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.link-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 10px 16px;
  border-radius: 0;
  border: 1px solid rgba(27, 20, 17, 0.08);
  cursor: pointer;
  text-decoration: none;
  font: 700 12px/1 "Montserrat", sans-serif;
  letter-spacing: 0.04em;
}

.link-pill svg {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

.link-pill.dark {
  background: #221815;
  color: #fff;
  box-shadow: none;
}

.link-pill.red {
  background: var(--brand);
  color: #fff;
  box-shadow: none;
}

.link-pill.light {
  background: rgba(27, 20, 17, 0.07);
  color: var(--ink);
  box-shadow: none;
}

.link-pill.pending {
  cursor: default;
  opacity: 0.72;
}

.cta-band {
  margin-top: 22px;
  padding: 26px 28px;
  border-radius: 0;
}

.cta-band h3 {
  margin: 0 0 10px;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 1.3;
}

.cta-band p {
  margin: 0 0 16px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.95;
}

.footer-note {
  margin-top: 26px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  color: var(--soft);
  font-size: 12px;
  line-height: 1.8;
}

.site-footer {
  margin-top: 0;
  padding: 26px 28px;
  border-radius: 0;
  background: #d2de8a;
  border: 1px solid rgba(27, 20, 17, 0.08);
  box-shadow: var(--shadow);
  text-align: center;
}

.site-footer .footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 12px;
  justify-content: center;
}

.site-footer .footer-links a {
  display: inline-flex;
  align-items: center;
  color: var(--brand);
  font-size: 13px;
  text-decoration: none;
}

.site-footer .footer-links a:not(:last-child)::after {
  content: "|";
  margin: 0 10px;
  color: var(--soft);
}

.site-footer p {
  margin: 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.8;
}

.index-hero {
  padding: 34px 36px;
  border-radius: var(--radius-xl);
}

.index-hero h1 {
  margin: 14px 0 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.14;
}

.index-hero p {
  max-width: 840px;
  margin: 0;
  color: var(--soft);
  font-size: 15px;
  line-height: 1.95;
}

.concept-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 24px;
}

.concept-card {
  overflow: hidden;
  border-radius: 0;
  text-decoration: none;
}

.concept-thumb {
  position: relative;
  height: 340px;
}

.concept-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.28));
}

.concept-thumb.red {
  background:
    linear-gradient(180deg, rgba(129, 20, 24, 0.12), rgba(129, 20, 24, 0.46)),
    url("./assets/キムチ_カクテキ_化粧箱_vertical.jpg") center/cover;
}

.concept-thumb.sage {
  background:
    linear-gradient(180deg, rgba(18, 12, 10, 0.12), rgba(18, 12, 10, 0.34)),
    url("./assets/farm_vertical.jpg") center/cover;
}

.concept-thumb.soft {
  background:
    linear-gradient(180deg, rgba(18, 12, 10, 0.08), rgba(18, 12, 10, 0.36)),
    url("./assets/gem_ingredients_vertical.jpg") center/cover;
}

.concept-thumb .vertical-copy {
  position: absolute;
  top: 26px;
  right: 20px;
  z-index: 1;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: #fff8f0;
  font-family: "Zen Old Mincho", serif;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0.06em;
}

.concept-body {
  padding: 26px 24px 24px;
}

.concept-body h2 {
  margin: 8px 0 10px;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 1.3;
}

.concept-body p {
  margin: 0 0 12px;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.9;
}

.concept-body .go {
  color: var(--brand);
  font: 700 12px/1 "Montserrat", sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-page {
  padding: 34px 34px 38px;
  border-radius: var(--radius-xl);
}

.simple-page h1 {
  margin: 16px 0 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.14;
}

.simple-page p,
.simple-page li {
  color: var(--soft);
  font-size: 14px;
  line-height: 1.95;
}

.simple-page .lead {
  max-width: 820px;
}

.info-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 12px 18px;
  margin-top: 22px;
}

.info-grid dt {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 20, 17, 0.08);
  color: var(--ink);
  font-weight: 700;
}

.info-grid dd {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid rgba(27, 20, 17, 0.08);
  color: var(--soft);
}

.content-section {
  margin-top: 24px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  border: 0;
  box-shadow: 0 20px 44px rgba(44, 26, 17, 0.08);
}

.content-section h2 {
  margin: 0 0 10px;
  font-family: "Zen Old Mincho", serif;
  font-size: 28px;
  line-height: 1.28;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 13px;
}

.price-table th,
.price-table td {
  padding: 12px 10px;
  border: 1px solid rgba(27, 20, 17, 0.06);
  text-align: left;
  vertical-align: top;
}

.price-table th {
  background: rgba(171, 31, 36, 0.06);
  color: var(--ink);
}

.concept-shell {
  overflow: visible;
  background: rgba(255, 248, 242, 0.38);
  box-shadow: 0 32px 80px rgba(49, 26, 18, 0.14);
  backdrop-filter: blur(10px);
}

.floating-nav a {
  background: rgba(255, 249, 243, 0.64);
  box-shadow: 0 20px 40px rgba(45, 25, 16, 0.08);
  backdrop-filter: blur(10px);
}

.glow-copy {
  background: transparent;
  color: var(--ink);
}

.glow-copy p {
  color: var(--ink) !important;
}

.light-copy {
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(180deg, rgba(255, 251, 246, 0.9), rgba(255, 245, 236, 0.82));
}

.has-vertical-note {
  position: relative;
}

.hero-vertical-note {
  position: absolute;
  top: 34px;
  right: 24px;
  z-index: 1;
  padding-top: 1em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: rgba(255, 248, 240, 0.92);
  font-family: "Zen Old Mincho", serif;
  font-size: 26px;
  line-height: 1.3;
  letter-spacing: 0.14em;
  text-shadow: -2px 1px 9px rgb(10 7 6);
}

.hero-indicators {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-indicator {
  width: 14px;
  height: 14px;
  padding: 0;
  margin-top: auto;
  margin-bottom: auto;
  border: 1px solid rgba(255, 248, 240, 0.9);
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.18);
  box-shadow: 0 8px 18px rgba(18, 12, 10, 0.18);
  color: transparent;
  font-size: 0;
  cursor: pointer;
}

.hero-indicator.is-active {
  background: rgba(255, 247, 240, 0.98);
  border-color: rgba(255, 247, 240, 0.98);
}

.editorial-block {
  padding: 34px 34px 36px;
  border-radius: 10px;
  background: rgba(255, 249, 242, 0.74);
  box-shadow: 0 28px 56px rgba(44, 26, 17, 0.08);
  backdrop-filter: blur(12px);
}

.editorial-block h2,
.editorial-block h3 {
  margin: 0 0 14px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.32;
}

.editorial-block p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 2;
}

.feature-cloud {
  display: grid;
  gap: 14px;
}

.soft-card {
  padding: 20px 22px;
  border-radius: 8px;
  background: rgba(255, 251, 246, 0.78);
  box-shadow: 0 18px 40px rgba(44, 26, 17, 0.08);
}

.soft-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.soft-card p,
.soft-card span {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.85;
}

.feature-cloud.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ingredient-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  min-width: 0;
}

.ingredient-photo {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  background-position: center;
  background-size: cover;
  box-shadow: 0 22px 48px rgba(43, 22, 14, 0.1);
}

.ingredient-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 12, 10, 0.04), rgba(18, 12, 10, 0.22));
}

.ingredient-photo-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: #fff8f1;
}

.ingredient-photo-caption strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  line-height: 1.3;
}

.ingredient-photo-caption span {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 248, 241, 0.84);
}

.ingredient-list {
  display: grid;
  gap: 12px;
}

.ingredient-item {
  padding: 18px 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 34px rgba(43, 22, 14, 0.08);
}

.ingredient-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.ingredient-item p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.85;
}

.quote-float {
  position: relative;
  margin-top: -86px;
  margin-left: auto;
  width: min(86%, 420px);
  padding: 24px 26px;
  border-radius: 8px;
  background: rgba(255, 249, 243, 0.9);
  box-shadow: 0 30px 60px rgba(43, 22, 14, 0.14);
}

.quote-float p {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  line-height: 1.6;
}

.story-stack {
  display: grid;
  gap: 18px;
}

.split-view {
  display: none !important;
}

.split-note {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 18px;
  align-items: start;
  min-width: 0;
}

.section-media {
  margin: auto;
  overflow: hidden;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 36px rgba(43, 22, 14, 0.08);
}

.section-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-media-history {
  max-height: 320px;
}

.section-media-haccp {
  padding: 12px;
}

.section-media-haccp img {
  object-fit: contain;
}

.section-koma-jinja {
  text-align: center;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding-top: 0;
  padding-bottom: 0;
}

.section-media-koma-jinja {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.section-media-koma-jinja img {
  object-fit: contain;
}

.section-haccp-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.section-haccp-layout .section-media-haccp {
  width: 100%;
  max-width: 500px;
  max-height: none;
  justify-self: start;
}

.section-haccp-layout .section-media-haccp img {
  height: auto;
  max-height: none;
}

.section-haccp-copy {
  display: block;
  align-items: start;
}

.section-haccp-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.split-note strong {
  color: var(--brand);
  font: 700 11px/1.4 "Montserrat", sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.stat-strip .soft-card {
  min-height: 120px;
}

.floating-links {
  padding: 28px 28px 30px;
  border-radius: 10px;
  background: rgba(255, 250, 245, 0.84);
  box-shadow: 0 24px 52px rgba(43, 22, 14, 0.1);
}

.floating-links p {
  margin: 14px 0 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.9;
}

.price-pair {
  display: grid;
  gap: 14px;
}

.price-card {
  padding: 22px 24px;
  border-radius: 8px;
  background: rgba(255, 251, 246, 0.86);
  box-shadow: 0 18px 42px rgba(43, 22, 14, 0.08);
}

.price-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

.price-card p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.85;
}

.price-card .price {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font: 700 22px/1.2 "Montserrat", sans-serif;
}

.carousel-block {
  padding: 30px 30px 34px;
  border-radius: 10px;
  background: rgba(255, 249, 243, 0.8);
  box-shadow: 0 26px 54px rgba(43, 22, 14, 0.1);
}

.carousel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  min-width: 0;
}

.carousel-head h3 {
  margin: 0;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.34;
}

.carousel-head p {
  margin: 8px 0 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.9;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-button {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 34px rgba(43, 22, 14, 0.14);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 420px);
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  min-width: 0;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-slide {
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  padding: 24px 22px 26px;
  border-radius: 8px;
  border: solid 1px #efefef;
  background: #ffeddd;
  box-shadow: 0 22px 44px rgba(43, 22, 14, 0.08);
}

.product-photo {
    position: relative;
    aspect-ratio: 1 / 1;
    width: 100%;
    margin-bottom: 18px;
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 32px rgba(43, 22, 14, 0.12);
  }

.product-card-overlay {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: calc(100% - 24px);
    pointer-events: none;
  }

.product-card-overlay-box {
    flex: 0 0 auto;
    padding: 6px 10px;
    border: 2px solid #d86b00;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 8px 18px rgba(216, 107, 0, 0.18);
    color: #d86b00;
    font: 800 15px/1.15 "Montserrat", sans-serif;
    white-space: nowrap;
  }

.product-card-overlay-text {
    color: #101010;
    font: 800 15px/1.15 "Montserrat", sans-serif;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.82);
  }

.product-slide .product-tile {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 45px;
    margin: 14px 0 10px;
    font-family: "Zen Old Mincho", serif;
    font-size: 20px;
    font-weight: bolder;
    line-height: 1.24;
  }

.product-tile-icon {
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    object-fit: contain;
  }

.product-slide p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.9;
}

.product-description {
  display: -webkit-box;
  min-height: calc(1.9em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-description.is-expanded {
  display: block;
  overflow: visible;
}

.product-description-toggle {
  display: inline-block;
  margin-top: 6px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
}

.product-specs {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.product-specs span {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.75;
}

.product-slide .price {
  display: block;
  margin-top: 16px;
  color: var(--brand);
  font: 700 28px/1.18 "Montserrat", sans-serif;
}

.buy-btn {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  border: none;
  border-radius: 2px;
  background: var(--brand);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
}

.buy-btn[disabled] {
  opacity: 0.55;
  pointer-events: none;
}

.buy-btn[disabled]::after {
  content: "（準備中）";
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-left: 6px;
}

.cart-inline-btn {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 0;
  border: 1px solid var(--brand);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
}

.cart-view-btn {
  display: flex;
  width: 100%;
  margin-top: 8px;
}

.product-detail-cart-view {
  min-height: 46px;
}

.detail-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 8px 0;
  border: 1px solid var(--brand);
  border-radius: 2px;
  background: transparent;
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.product-order-note {
  margin-top: 16px;
  padding: 12px 16px;
  background: rgba(27, 20, 17, 0.04);
  border-left: 3px solid var(--brand);
  font-size: 13px;
  line-height: 1.8;
  color: var(--soft);
}

.product-order-note p {
  margin: 0 0 4px;
  font-size: 13px;
}

.product-order-note p:last-child {
  margin-bottom: 0;
}

.product-order-note a {
  color: var(--brand);
  text-decoration: underline;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.shop-links-section {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 20, 17, 0.1);
}

.shop-links-title {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(237, 113, 0);
}

.shop-links-subsection {
  margin-top: 22px;
}

.shop-links-description {
  margin: -4px 0 14px;
  color: var(--soft);
}

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

.shop-logo-grid-single {
  grid-template-columns: minmax(0, 1fr);
}

.shop-logo-link {
  display: grid;
  place-items: center;
  min-height: 90px;
  padding: 12px;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  text-decoration: none;
  text-align: center;
}

.shop-logo-mark {
  display: block;
  width: 110px;
  height: 34px;
  max-width: 100%;
  object-fit: contain;
}

.shop-logo-sub {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--soft);
}

.shop-logo-link.furusato .shop-logo-mark {
  width: 120px;
  height: 40px;
}

.shop-logo-link.giftmall .shop-logo-mark {
  width: 170px;
  height: 52px;
}

.quiet-layout {
  display: grid;
  gap: 22px;
}

.quiet-block {
  padding: 32px 32px 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 251, 246, 0.82);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.quiet-block h2,
.quiet-block h3 {
  margin: 0 0 12px;
  font-family: "Zen Old Mincho", serif;
  font-size: clamp(28px, 3.8vw, 42px);
  line-height: 1.34;
}

.quiet-block p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.95;
}

.quiet-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.quiet-mini {
  padding: 20px 22px;
  border-radius: 0;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.quiet-mini strong {
  display: block;
  margin-bottom: 8px;
  font-size: 15px;
}

.quiet-mini p {
  margin: 0;
  color: var(--soft);
  font-size: 13px;
  line-height: 1.8;
}

.hero-copy.light-copy .hero-pill {
  background: rgba(255, 255, 255, 0.76);
}

.hero-copy.light-copy .hero-meta .stat {
  background: rgba(255, 255, 255, 0.68);
}

@media (max-width: 1080px) {
  .hero-grid,
  .content-grid,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .header-socials {
    display: none;
  }

  .menu-socials {
    display: flex;
    flex-wrap: wrap;
  }

  .hero-copy {
    padding: 32px 26px 34px;
  }

  .cards-three {
    grid-template-columns: 1fr;
  }

  .feature-cloud.two-up,
  .quiet-columns,
  .stat-strip,
  .ingredient-showcase {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-shell::before {
    content: none;
  }

  /* ロゴと三本線を同じ行に維持 */
  .header-bar {
    flex-wrap: nowrap;
    align-items: center;
    padding-top: 0;
    overflow: hidden;
  }

  .header-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("./assets/header_02_new_long_long.webp");
    background-repeat: no-repeat;
    background-position: right top;
    background-size: auto 100%;
    pointer-events: none;
    z-index: -1;
  }

  .header-brand-group {
    flex: 1 1 auto;
    width: auto;
  }

  .page {
    padding: 16px 0 0;
  }

  body {
    padding-top: 92px;
  }

  .hero-copy h1,
  .index-hero h1 {
    font-size: clamp(34px, 11vw, 54px);
  }

  .hero-meta,
  .cards-two,
  .concept-grid {
    grid-template-columns: 1fr;
  }

  .panel,
  .cta-band,
  .index-hero {
    padding: 22px 18px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 420px;
  }

  .timeline-row {
    grid-template-columns: 1fr;
  }

  .info-grid {
    grid-template-columns: 1fr;
  }

  .simple-page {
    padding: 24px 18px 28px;
  }

  .product-detail-page #main-content.page {
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .product-detail-page .editorial-block.simple-page {
    max-width: 800px;
    padding: 32px 1px;
    margin: auto;
  }

  .product-detail-hero {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .editorial-block,
  .quiet-block,
  .floating-links,
  .carousel-block {
    padding: 22px 18px 24px;
  }

  .quote-float {
    width: 100%;
    margin-top: -48px;
    padding: 20px 18px;
  }

  .split-note {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-vertical-note {
    top: 22px;
    right: 14px;
    font-size: 20px;
  }

  .brand-logo-mark {
    width: 80px;
    height: 80px;
  }

  /* SP: show brand sub row below header */
  .header-brand-sub {
    display: flex;
    align-items: center;
    padding: 2px 0 4px;
    overflow: hidden;
  }

  .brand-sub-ja {
    display: inline-block;
    flex: 0 0 auto;
    padding-left: 100%;
    font-size: 10px;
    line-height: 1.5;
    white-space: nowrap;
    animation: brand-sub-marquee 18s linear infinite;
  }

  .brand-sub-extra {
    display: none;
  }

  /* SP: hide hero pills and stat blocks (now removed from HTML, but keep guard) */
  .hero-list,
  .hero-meta {
    display: none !important;
  }

  .header-bar {
    padding: 6px 12px;
  }

  .header-collapse-toggle {
    right: 0;
    bottom: 0;
  }

  .header-brand-group,
  .menu-socials {
    width: 100%;
  }

  .header-actions {
    margin-left: auto;
  }

  .carousel-head {
    align-items: start;
    flex-direction: column;
  }

  .carousel-track {
    grid-auto-columns: 88%;
  }

  .section-media-history {
    max-height: 220px;
  }

  .section-media-haccp {
    padding: 8px;
  }

  .section-haccp-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-haccp-layout .section-media-haccp {
    max-width: none;
  }

  .section-haccp-copy p {
    font-size: 16px;
  }

  .shop-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-shell,
  .panel,
  .tile,
  .cta-band,
  .footer-note,
  .site-footer,
  .editorial-block,
  .quiet-block,
  .floating-links,
  .carousel-block,
  .simple-page,
  .soft-card,
  .price-card,
  .product-slide,
  .ingredient-item,
  .ingredient-photo,
  .quote-float,
  .visual-card {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .mobile-order-products {
    order: 1;
  }

  .mobile-order-materials {
    order: 2;
  }

  .mobile-order-history {
    order: 3;
  }

  .mobile-order-haccp {
    order: 4;
  }
}

body.force-mobile .header-shell,
body.force-mobile .page {
  max-width: 430px;
}

body.force-mobile .header-bar {
  padding: 6px 12px !important;
  overflow: hidden;
}

body.force-mobile .header-shell::before {
  content: none !important;
}

body.force-mobile .header-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("./assets/header_02_new_long_long.webp");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: auto 100%;
  pointer-events: none;
  z-index: -1;
}

body.force-mobile .hero-grid {
  display: grid !important;
}

body.force-mobile .hero-grid-wide,
body.force-mobile .hero-copy-wide {
  display: none !important;
}

body.force-mobile .hero-slide-image-mobile-only {
  display: block !important;
}

body.force-mobile .hero-slide-image-desktop-only,
body.force-mobile .history-image-desktop {
  display: none !important;
}

body.force-mobile .history-image-mobile {
  display: block !important;
}

body.force-desktop .header-shell,
body.force-desktop .page {
  max-width: 1280px;
}

body.force-desktop .hero-grid {
  display: none !important;
}

body.force-desktop .hero-grid-wide {
  display: grid !important;
  grid-template-columns: 1fr !important;
  min-height: auto !important;
}

body.force-desktop .hero-copy-wide {
  display: grid !important;
}

body.force-desktop .hero-vertical-note {
  display: none !important;
}

body.force-desktop .hero-slide-image-mobile-only,
body.force-desktop .history-image-mobile {
  display: none !important;
}

body.force-desktop .hero-slide-image-desktop-only,
body.force-desktop .history-image-desktop {
  display: block !important;
}

body.force-desktop .content-grid {
  grid-template-columns: 1fr !important;
}

body.force-desktop .concept-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.force-desktop .hero-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.force-desktop .cards-two,
body.force-desktop .feature-cloud.two-up,
body.force-desktop .quiet-columns,
body.force-desktop .ingredient-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

body.force-desktop .stat-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

body.force-desktop .info-grid {
  grid-template-columns: 240px 1fr !important;
}

body.force-desktop .timeline-row,
body.force-desktop .split-note {
  grid-template-columns: 92px 1fr !important;
}

body.force-desktop .hero-copy h1,
body.force-desktop .index-hero h1 {
  font-size: clamp(40px, 6vw, 80px) !important;
}

body.force-desktop .hero-copy {
  padding: 54px 50px 54px 44px !important;
}

body.force-desktop .hero-visual {
  min-height: 680px !important;
}

body.force-desktop .hero-grid-wide .hero-visual {
  min-height: auto !important;
}

body.force-desktop .panel,
body.force-desktop .cta-band,
body.force-desktop .index-hero,
body.force-desktop .editorial-block,
body.force-desktop .quiet-block,
body.force-desktop .floating-links,
body.force-desktop .carousel-block,
body.force-desktop .simple-page {
  padding: 28px 28px 30px !important;
}

body.force-desktop .quote-float {
  width: min(86%, 420px) !important;
  margin-top: -86px !important;
  padding: 24px 26px !important;
}

body.force-desktop .hero-vertical-note {
  top: 34px !important;
  right: 24px !important;
  font-size: 26px !important;
}

body.force-desktop .carousel-head {
  align-items: end !important;
  flex-direction: row !important;
}

body.force-desktop .carousel-track {
  grid-auto-columns: minmax(280px, 420px) !important;
}

body.force-mobile .page {
  padding: 0px;
}

body[data-page="concept-1"] #main-content.page {
  padding: 0px;
}

body.force-mobile .hero-grid,
body.force-mobile .content-grid,
body.force-mobile .concept-grid,
body.force-mobile .hero-meta,
body.force-mobile .cards-two,
body.force-mobile .cards-three,
body.force-mobile .feature-cloud.two-up,
body.force-mobile .quiet-columns,
body.force-mobile .stat-strip,
body.force-mobile .ingredient-showcase,
body.force-mobile .info-grid {
  grid-template-columns: 1fr !important;
}

body.force-mobile .hero-copy h1,
body.force-mobile .index-hero h1 {
  font-size: clamp(34px, 11vw, 54px);
}

body.force-mobile .panel,
body.force-mobile .cta-band,
body.force-mobile .index-hero,
body.force-mobile .editorial-block,
body.force-mobile .quiet-block,
body.force-mobile .floating-links,
body.force-mobile .carousel-block,
body.force-mobile .simple-page {
  padding: 22px 18px 24px;
}

body.force-mobile .product-detail-page #main-content.page {
  margin-bottom: 0;
  padding-bottom: 0;
}

body.force-mobile .product-detail-page .editorial-block.simple-page {
  max-width: 800px;
  padding: 32px 1px;
  margin: auto;
}

body.force-mobile .product-detail-hero {
  grid-template-columns: 1fr;
}

body.force-mobile .hero-grid {
  min-height: auto;
}

body.force-mobile .hero-copy {
  padding: 32px 26px 34px;
}

body.force-mobile .hero-visual {
  min-height: 420px;
}

body.force-mobile .timeline-row,
body.force-mobile .split-note {
  grid-template-columns: 1fr;
}

body.force-mobile .quote-float {
  width: 100%;
  margin-top: -48px;
  padding: 20px 18px;
}

body.force-mobile .hero-vertical-note {
  top: 22px;
  right: 14px;
  font-size: 20px;
}

body.force-mobile .carousel-head {
  align-items: start;
  flex-direction: column;
}

body.force-mobile .carousel-track {
  grid-auto-columns: 88%;
}

body.force-mobile .header-socials {
  display: none !important;
}

body.force-mobile .menu-socials {
  display: flex !important;
}

.carousel-track {
  scrollbar-width: auto;
  scrollbar-color: rgba(113, 56, 36, 0.45) rgba(113, 56, 36, 0.12);
}

.carousel-track::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.carousel-track::-webkit-scrollbar-track {
  background: rgba(113, 56, 36, 0.12);
  border-radius: 999px;
}

.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(113, 56, 36, 0.45);
  border-radius: 999px;
}

.section-history-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.section-history-layout .section-media-history {
  width: 100%;
  max-width: 500px;
  max-height: none;
  justify-self: start;
}

.history-image-mobile,
.history-image-desktop {
  display: block;
  width: 100%;
  height: auto;
}

.history-image-desktop {
  display: none;
}

.section-history-copy {
  align-items: start;
}

.section-history-copy p {
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

.haccp-note-heading {
  margin-top: 16px !important;
}

@media (min-width: 721px) {
  .header-bar {
    padding: 20px 20px 0;
  }

  .brand-logo {
    padding-top: 20px;
  }

  .hero-grid {
    display: none;
  }

  .hero-grid-wide {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
    width: 100%;
    max-width: none;
  }

  .hero-grid-wide .hero-visual {
    min-height: auto !important;
    aspect-ratio: 12 / 5;
    width: 100%;
    max-width: none;
  }

  .hero-grid-wide .hero-slide-media,
  .hero-grid-wide .hero-slide-media img {
    width: 100%;
    max-width: none;
  }

  .hero-grid-wide .hero-slide-media {
    background: #fff;
  }

  .hero-grid-wide .hero-slide-media img {
    object-fit: contain;
  }

  .hero-copy-wide {
    display: grid;
    margin-top: 24px;
  }

  .hero-slide-image-mobile-only {
    display: none;
  }

  .hero-vertical-note {
    display: none;
  }

  .hero-slide-image-desktop-only,
  .history-image-desktop {
    display: block;
  }

  .history-image-mobile {
    display: none;
  }

  .carousel-track,
  body.force-desktop .carousel-track {
    grid-auto-columns: calc((100% - 32px) / 3) !important;
  }

  .product-order-note,
  .product-order-note p {
    font-size: 15px;
  }

  .shop-logo-sub {
    font-size: 13px;
  }

  .shop-links-title {
    font-size: 20px;
  }

  .section-history-copy p {
    font-size: 20px !important;
  }
}

@media (max-width: 720px) {
  .section-history-layout {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .section-history-layout .section-media-history {
    max-width: none;
    max-height: 220px;
  }

  .section-history-copy p {
    font-size: 18px !important;
  }
}

body.force-mobile .hero-shell,
body.force-mobile .panel,
body.force-mobile .tile,
body.force-mobile .cta-band,
body.force-mobile .footer-note,
body.force-mobile .site-footer,
body.force-mobile .editorial-block,
body.force-mobile .quiet-block,
body.force-mobile .floating-links,
body.force-mobile .carousel-block,
body.force-mobile .simple-page,
body.force-mobile .soft-card,
body.force-mobile .price-card,
body.force-mobile .product-slide,
body.force-mobile .ingredient-item,
body.force-mobile .ingredient-photo,
body.force-mobile .quote-float,
body.force-mobile .visual-card {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

body.force-mobile .mobile-order-products {
  order: 1;
}

body.force-mobile .mobile-order-materials {
  order: 2;
}

body.force-mobile .mobile-order-history {
  order: 3;
}

body.force-desktop .menu-socials {
  display: none !important;
}

body.force-mobile .mobile-order-information {
  order: 4;
}

body.force-mobile .mobile-order-haccp {
  order: 5;
}

body.force-mobile .mobile-order-koma-jinja {
  order: 6;
}

@media (min-width: 721px) {
  body {
    padding-top: 0;
  }

  .page {
    padding: 0px;
  }

  .section-media {
    max-width: 400px;
    max-height: 400px;
  }

  .floating-header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
  }

  .floating-header.is-collapsed {
    transform: none;
  }

  .header-bar {
    padding: 0 20px;
  }

  .header-social-link svg,
  .header-social-label svg {
    width: 44px !important;
    height: 44px !important;
  }

  .header-brand-sub {
    display: flex;
    align-items: center;
    padding: 8px 0 10px;
    overflow: hidden;
  }

  .brand-sub-ja {
    display: inline-block;
    flex: 0 0 auto;
    padding-left: 100%;
    font-size: 14px;
    line-height: 1.7;
    white-space: nowrap;
    animation: brand-sub-marquee 35s linear infinite;
  }

  .header-socials {
    margin-left: auto;
    justify-content: flex-end;
  }

  .brand-sub-extra {
    display: none;
  }

  .header-collapse-toggle {
    display: none;
    position: absolute;
    right: 20px;
    bottom: -26px;
    margin-left: 0;
  }

  .panel p,
  .tile p,
  .tile span,
  .visual-caption span,
  .cta-band p,
  .index-hero p,
  .concept-body p,
  .simple-page p,
  .simple-page li,
  .editorial-block p,
  .soft-card p,
  .soft-card span,
  .ingredient-item p,
  .floating-links p,
  .price-card p,
  .carousel-head p,
  .product-slide p,
  .product-specs,
  .quiet-block p,
  .quiet-mini p {
    font-size: 20px;
  }
}

/* 2026-06-27 follow-up: tighten social styling and lift body copy sizes */
.menu-drawer-inner {
  display: flex;
  flex-direction: column;
}

.header-social-link,
.header-social-label {
  min-height: auto;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0;
}

.header-social-link svg,
.header-social-label svg {
  width: 22px;
  height: 22px;
}

.hero-copy p,
.section-haccp-copy p,
.simple-page p,
.simple-page li,
/* .editorial-block p, */
.product-slide p,
.product-specs,
.quiet-block p,
.quiet-mini p,
.carousel-head p,
.floating-links p,
.concept-body p,
.menu-links a {
  font-size: 15px !important;
}

.site-footer p {
  margin: 0;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.8;
}

.panel h2,
.panel h3,
.editorial-block h2,
.editorial-block h3,
.carousel-head h3,
.quiet-block h2,
.quiet-block h3,
.simple-page h1,
.simple-page h2,
.simple-page h3,
.concept-body h2,
.product-slide .product-tile {
  color: rgb(237, 113, 0) !important;
  font-family: var(--font-base) !important;
}

.product-detail-page .view-toggle,
.product-detail-page .menu-toggle {
  background: transparent;
}

.section-history-copy {
  display: block;
}

@media (max-width: 720px) {
  .hero-slide-label {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 8px 12px;
    font-size: 16px;
  }

  /* SP: view-toggle & menu-toggle — no border, 2/3 size */
  .view-toggle {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    box-shadow: none;
  }

  .view-toggle svg {
    width: 22px;
    height: 22px;
  }

  .hero-slide-image-mobile-only {
    display: block;
  }

  .hero-slide-image-desktop-only,
  .history-image-desktop {
    display: none;
  }

  .menu-toggle {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    box-shadow: none;
    gap: 4px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .menu-socials {
    order: -1;
    width: 100%;
    padding: 12px 16px;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 14px;
  }

  .menu-social-link {
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0;
    gap: 0;
  }

  .menu-social-link svg {
    width: 24px;
    height: 24px;
  }

  /* SP: font sizes — readable but not oversized */
  .hero-copy p,
  .section-history-copy p,
  .section-haccp-copy p,
  .simple-page p,
  .simple-page li,
  .editorial-block p,
  .product-slide p,
  .product-specs,
  .quiet-block p,
  .quiet-mini p,
  .carousel-head p,
  .floating-links p,
  .concept-body p,
  .menu-links a {
    font-size: 15px !important;
  }

  .hero-copy h1,
  .index-hero h1 {
    font-size: clamp(28px, 9vw, 44px);
  }

  h2, h3 {
    font-size: clamp(18px, 5vw, 26px);
  }
}

.hero-vertical-note {
  font-weight: 700 !important;
  white-space: pre-line;
  pointer-events: none;
}

.product-detail-shell {
  display: grid;
  gap: 32px;
}

.product-detail-hero {
  display: grid;
  gap: 32px;
  align-items: start;
}

.product-detail-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-summary {
  display: grid;
  gap: 16px;
}

.product-detail-summary h1 {
  margin: 0;
  color: var(--ink) !important;
  font-size: clamp(20px, 4vw, 30px) !important;
}

.product-detail-price {
  margin: 0 !important;
  font-size: 28px !important;
}

.product-detail-specs {
  display: grid;
  gap: 8px;
}

.product-detail-specs span {
  display: block;
}

.product-detail-buy {
  max-width: 280px;
}

.product-detail-actions {
  display: grid;
  gap: 10px;
  max-width: 280px;
}

.product-detail-cart {
  margin-top: 0;
}

@media (max-width: 720px) {
  .product-detail-actions {
    width: min(100%, 280px);
    margin-inline: auto;
  }

  .product-detail-buy,
  .product-detail-cart {
    margin-inline: auto;
  }
}

.product-detail-copy {
  display: grid;
  gap: 16px;
}

.product-detail-copy h2 {
  margin: 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--brand);
  color: var(--ink) !important;
  font-size: 18px !important;
}

.product-detail-copy p {
  margin: 0;
  line-height: 1.9;
}

.api-docs-shell {
  display: grid;
  gap: 24px;
}

.api-docs-intro {
  display: grid;
  gap: 12px;
}

.api-docs-auth-card,
.api-docs-viewer-shell {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 32px);
  border: 1px solid rgba(143, 29, 29, 0.14);
  border-radius: 24px;
  background: rgba(255, 252, 248, 0.92);
  box-shadow: 0 20px 44px rgba(56, 35, 26, 0.08);
}

.api-docs-auth-card h2,
.api-docs-intro h1 {
  margin: 0;
}

.api-docs-auth-form {
  display: grid;
  gap: 14px;
  max-width: 320px;
}

.api-docs-auth-form label {
  display: grid;
  gap: 8px;
  font: 600 14px/1.5 "Montserrat", sans-serif;
  color: var(--ink);
}

.api-docs-auth-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(143, 29, 29, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  font: 500 16px/1.4 "Montserrat", sans-serif;
}

.api-docs-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.api-docs-toolbar-copy,
.api-docs-toolbar-actions {
  display: grid;
  gap: 10px;
}

.api-docs-toggle {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.api-docs-toggle-button {
  min-width: 124px;
  padding: 10px 16px;
  border: 1px solid rgba(143, 29, 29, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: 700 13px/1 "Montserrat", sans-serif;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.api-docs-toggle-button.is-active {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
}

.api-docs-viewer-meta {
  margin: 0;
  color: rgba(58, 47, 40, 0.7);
  font: 500 13px/1.6 "Montserrat", sans-serif;
}

.api-docs-viewer {
  min-height: 70vh;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  padding: 18px;
}

#swagger-ui-container {
  min-height: 70vh;
}

#swagger-ui-container .swagger-ui .topbar {
  display: none;
}

#swagger-ui-container .swagger-ui .scheme-container {
  box-shadow: none;
  background: rgba(143, 29, 29, 0.04);
}

#swagger-ui-container .swagger-ui .info .title,
#swagger-ui-container .swagger-ui .opblock-tag {
  font-family: "Zen Old Mincho", serif;
}

#swagger-ui-container .swagger-ui .btn.authorize {
  border-color: #8f1d1d;
  color: #8f1d1d;
}

#swagger-ui-container .swagger-ui .opblock.opblock-post {
  border-color: rgba(143, 29, 29, 0.24);
  background: rgba(143, 29, 29, 0.03);
}

.api-docs-code {
  margin: 0;
  min-height: 60vh;
  overflow: auto;
  white-space: pre;
  font: 500 13px/1.7 "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  color: #2f241f;
}

.checkout-status.is-error {
  color: #8f1d1d;
}

.product-detail-back {
  text-align: center;
}

.buy-more-section {
  overflow: hidden;
}

.buy-more-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 12px) / 2);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: auto;
  scrollbar-color: rgba(113, 56, 36, 0.45) rgba(113, 56, 36, 0.12);
}

.buy-more-track::-webkit-scrollbar {
  display: block;
  height: 10px;
}

.buy-more-track::-webkit-scrollbar-track {
  background: rgba(113, 56, 36, 0.12);
  border-radius: 999px;
}

.buy-more-track::-webkit-scrollbar-thumb {
  background: rgba(113, 56, 36, 0.45);
  border-radius: 999px;
}

.buy-more-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  scroll-snap-align: start;
}

.buy-more-photo {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.buy-more-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-more-title {
  display: block;
  margin: 0;
  color: rgb(237, 113, 0);
  font-size: 16px;
  line-height: 1.5;
  text-decoration: none;
}

.buy-more-button {
  margin-top: auto;
}

.product-list-shell {
  max-width: 1120px;
}

.product-list-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.product-list-card {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(27, 20, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 250, 244, 0.9);
  box-shadow: 0 18px 34px rgba(27, 20, 17, 0.06);
}

.product-list-photo {
  display: block;
  align-self: start;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
}

.product-list-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-list-body {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.product-list-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.product-list-title {
  color: rgb(237, 113, 0);
  font-family: var(--font-base);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.product-list-price {
  margin: 0;
  color: var(--brand);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.product-list-description {
  display: none;
  margin: 0;
  color: var(--soft);
}

.product-list-actions {
  display: grid;
  gap: 8px;
}

.product-list-actions .link-pill,
.product-list-actions .cart-inline-btn,
.product-list-actions .buy-btn {
  width: 100%;
}

.hero-slide-label {
  display: none !important;
}

.section-information {
  border-radius: 0 !important;
}

.info-social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 0 0 20px;
}

.info-social-link {
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  line-height: 1.5;
}

.info-social-link svg {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
}

.header-social-link,
.menu-social-link,
.info-social-link {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.header-social-link:hover,
.menu-social-link:hover,
.info-social-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.header-social-link.is-instagram,
.menu-social-link.is-instagram,
.info-social-link.is-instagram {
  color: #e4405f !important;
}

.header-social-link.is-facebook,
.menu-social-link.is-facebook,
.info-social-link.is-facebook {
  color: #1877f2 !important;
}

.header-social-link.is-tiktok,
.menu-social-link.is-tiktok,
.info-social-link.is-tiktok {
  color: #111111 !important;
  filter: drop-shadow(1px 0 0 #25f4ee) drop-shadow(-1px 0 0 #fe2c55);
}

.header-social-link svg,
.menu-social-link svg,
.info-social-link svg {
  display: block;
}

.information-lead,
.information-sub {
  margin: 0;
}

.information-sub {
  margin-top: 8px;
}

.information-archive-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 50%;
  gap: 0;
  margin-top: 22px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.information-archive-card {
  min-height: 100%;
  padding: 24px 22px 26px;
  border-right: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.84);
  scroll-snap-align: start;
}

.information-archive-card:last-child {
  border-right: 0;
}

.information-archive-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.5;
}

.carousel-block,
.editorial-block,
.floating-links,
.panel,
.price-card,
.quiet-block,
.soft-card {
  border-radius: 0 !important;
}

@media (max-width: 720px) {
  .info-social-links {
    gap: 14px;
  }

  .info-social-link {
    font-size: 18px;
  }

  .information-archive-track {
    grid-auto-columns: 88%;
  }

  .panel h3,
  .editorial-block h3,
  .carousel-head h3,
  .quiet-block h3,
  .simple-page h3 {
    font-size: clamp(16px, 4.6vw, 22px) !important;
  }
}

@media (min-width: 721px) {
  .hero-copy p {
    max-width: none;
    font-size: 20px !important;
    line-height: 1.7;
  }

  .buy-more-track {
    grid-auto-columns: calc((100% - 36px) / 4);
  }

  .product-list-shell {
    margin-inline: auto;
    padding: 32px 1px 36px;
  }

  .product-list-card {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
    padding: 24px;
    align-items: start;
  }

  .product-list-body {
    gap: 16px;
  }

  .product-list-title {
    font-size: 24px;
  }

  .product-list-price {
    font-size: 28px;
  }

  .product-list-description {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.85;
    font-size: 16px;
  }

  .product-list-actions {
    grid-template-columns: repeat(3, minmax(0, max-content));
    align-items: end;
    justify-content: start;
  }

  .product-list-actions .link-pill,
  .product-list-actions .cart-inline-btn,
  .product-list-actions .buy-btn {
    width: auto;
  }
}

.mobile-order-information {
  order: 4;
}

.mobile-order-haccp {
  order: 5;
}

.mobile-order-koma-jinja {
  order: 6;
}

@media (min-width: 721px) {
  .shop-logo-link {
    min-height: 140px;
    gap: 12px;
  }

  .shop-logo-mark {
    width: 220px;
    height: 68px;
  }

  .shop-logo-link.furusato .shop-logo-mark {
    width: 240px;
    height: 80px;
  }

  .shop-logo-link.giftmall .shop-logo-mark {
    width: 240px;
    height: 74px;
  }

  .shop-links-description {
    font-size: 15px;
  }

  .section-haccp-copy p {
    font-size: 20px !important;
    line-height: 1.9;
  }
}

.cart-builder-status,
.cart-warning,
.cart-message,
.checkout-status {
  margin: 0;
  color: var(--soft);
  font-size: 18px;
  line-height: 1.7;
}

.checkout-status a,
.cart-warning a {
  color: var(--brand);
  text-decoration: underline;
}

.order-lookup-shell {
  display: grid;
  gap: 22px;
}

.order-lookup-card {
  display: grid;
  gap: 18px;
  padding: 24px 26px;
  border: 1px solid rgba(27, 20, 17, 0.08);
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.92);
}

.order-lookup-card h2,
.order-lookup-head h2 {
  margin: 0;
}

.order-lookup-form {
  display: grid;
  gap: 14px;
}

.order-lookup-form label,
.order-cancel-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 14px;
}

.order-lookup-form input,
.order-cancel-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(27, 20, 17, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--ink);
  font: inherit;
}

.order-lookup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.order-list-shell {
  display: grid;
  gap: 18px;
}

.order-session-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--soft);
  font-size: 14px;
}

.order-session-meta p {
  margin: 0;
}

.order-list {
  display: grid;
  gap: 16px;
}

.order-card {
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(27, 20, 17, 0.08);
  box-shadow: 0 18px 34px rgba(70, 44, 32, 0.08);
}

.order-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
}

.order-number,
.order-date {
  margin: 0;
}

.order-number {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand);
}

.order-date {
  margin-top: 6px;
  color: var(--soft);
  font-size: 14px;
}

.order-status-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 102px;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.order-status-chip.is-paid {
  background: rgba(177, 33, 48, 0.08);
  color: var(--brand);
}

.order-status-chip.is-cancelled {
  background: rgba(50, 45, 42, 0.12);
  color: var(--soft);
}

.order-card-body {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.order-item-list {
  display: grid;
  gap: 10px;
}

.order-item-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(27, 20, 17, 0.08);
}

.order-item-row strong,
.order-item-row span {
  display: block;
}

.order-item-row span {
  margin-top: 4px;
  color: var(--soft);
  font-size: 13px;
}

.order-summary-grid {
  display: grid;
  gap: 10px;
}

.order-summary-grid p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  color: var(--soft);
}

.order-summary-grid strong {
  color: var(--ink);
  text-align: right;
}

.order-summary-grid .is-total {
  padding-top: 8px;
  border-top: 1px solid rgba(27, 20, 17, 0.08);
}

.order-cancel-form {
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.cart-builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 24px;
  margin-top: 22px;
}

.cart-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.cart-product-grid.is-empty {
  grid-template-columns: 1fr;
}

.cart-product-card,
.cart-summary-card {
  padding: 22px;
  border: 1px solid rgba(27, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.cart-product-card h3,
.cart-summary-card h3 {
  margin: 0 0 10px;
}

.cart-product-card p,
.cart-summary-card p {
  margin: 0;
}

.cart-product-card p {
  display: -webkit-box;
  min-height: calc(1.9em * 3);
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cart-product-photo {
  aspect-ratio: 1 / 1;
  margin-bottom: 16px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cart-product-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  min-width: 38px;
  height: 46px;
  padding: 0;
  border: none;
  background: #111;
  color: #fff;
  cursor: pointer;
}

.cart-product-delete-button svg {
  width: 18px;
  height: 18px;
}

.cart-product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  gap: 12px;
}

.cart-product-meta strong {
  color: var(--brand);
  font-size: 22px;
}

.cart-product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.cart-product-actions label,
.cart-region-field {
  display: grid;
  gap: 8px;
  color: var(--ink);
}

.cart-product-actions label {
  flex: 0 0 84px;
}

.cart-product-actions input,
.cart-region-field select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  border: 1px solid rgba(27, 20, 17, 0.14);
  background: #fff;
  font: inherit;
}

.cart-region-field.is-required select,
.cart-product-actions input.is-required {
  border-color: rgba(188, 62, 62, 0.45);
  background: rgba(255, 236, 236, 0.72);
}

.cart-product-actions .link-pill {
  flex: 0 0 auto;
  align-self: end;
  justify-content: center;
  min-height: 46px;
  white-space: nowrap;
  word-break: keep-all;
  writing-mode: horizontal-tb;
}

.cart-product-card-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
}

.cart-product-card-empty p {
  color: var(--soft);
  text-align: center;
}

.cart-product-card-empty a {
  color: var(--brand);
}

.cart-summary-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.cart-summary-list {
  display: grid;
  gap: 12px;
}

.cart-summary-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(27, 20, 17, 0.08);
}

.cart-summary-item strong,
.cart-summary-item span,
.cart-summary-totals strong,
.cart-summary-totals span,
.cart-rule-note {
  display: block;
}

.cart-summary-controls {
  display: grid;
  justify-items: end;
  gap: 8px;
}

.cart-summary-controls button {
  border: 0;
  background: transparent;
  color: var(--brand);
  font-size: 24px;
  cursor: pointer;
}

.cart-summary-totals {
  display: grid;
  gap: 10px;
}

.cart-summary-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary-totals .is-total {
  padding-top: 12px;
  border-top: 1px solid rgba(27, 20, 17, 0.1);
}

.cart-summary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cart-summary-actions .link-pill[disabled] {
  opacity: 0.45;
  cursor: default;
  pointer-events: none;
}

.cart-checkout-reason {
  padding: 12px 14px;
  border: 1px solid rgba(188, 62, 62, 0.28);
  background: rgba(255, 236, 236, 0.88);
  color: #8f3a3a;
}

.checkout-page {
  max-width: 960px;
}

.checkout-shell {
  display: grid;
  gap: 18px;
}

.checkout-container {
  min-height: 540px;
}

.cart-floating-link,
.cart-header-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cart-header-link {
  width: 42px;
  height: 42px;
  color: var(--ink);
}

.mail-order-accordion {
  border: 1px solid rgba(27, 20, 17, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.mail-order-accordion summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 14px 52px 14px 16px;
  font-weight: 700;
  list-style: none;
}

.mail-order-accordion summary::-webkit-details-marker {
  display: none;
}

.mail-order-accordion summary span {
  min-width: 0;
}

.mail-order-accordion summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-size: 20px;
  line-height: 1;
}

.mail-order-accordion[open] summary::after {
  content: "-";
}

.mail-order-accordion-body {
  padding: 0 16px 16px;
  border-top: 1px solid rgba(27, 20, 17, 0.08);
}

.mail-order-copy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(27, 20, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.mail-order-copy-button:hover,
.mail-order-copy-button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  outline: none;
}

.mail-order-copy-button svg {
  width: 16px;
  height: 16px;
}

.mail-order-copy-button.is-copied {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.mail-order-fields {
  margin: 12px 0 0;
  padding-left: 1.2em;
  color: var(--soft);
  line-height: 1.9;
}

.cart-header-link svg,
.cart-floating-link svg {
  width: 24px;
  height: 24px;
}

.cart-header-link svg {
  width: 22px;
  height: 22px;
}

.cart-floating-link {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 68px;
  height: 68px;
  border: 1px solid rgba(27, 20, 17, 0.1);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 36px rgba(25, 13, 8, 0.16);
  color: var(--brand);
}

.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
}

.cart-header-link .cart-count-badge {
  top: 2px;
  right: -2px;
}

.cart-floating-link .cart-count-badge {
  top: 10px;
  right: 10px;
}

@media (max-width: 900px) {
  .cart-builder-layout {
    grid-template-columns: 1fr;
  }

  .cart-product-grid {
    grid-template-columns: 1fr;
  }

  .order-lookup-card {
    padding: 20px 18px;
  }

  .order-card {
    padding: 18px;
  }

  .order-card-head,
  .order-summary-grid p,
  .order-item-row,
  .order-lookup-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .order-status-chip {
    min-width: 0;
  }
}

@media (max-width: 720px) {
  .cart-floating-link {
    display: none;
  }

  .cart-builder-section .cart-product-card:not(.cart-product-card-empty) > p {
    display: none;
  }

  .cart-product-actions {
    align-items: stretch;
  }

  .cart-product-actions label {
    flex-basis: 72px;
  }

  .cart-product-actions .link-pill {
    padding-inline: 10px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .cart-product-delete-button {
    width: 100%;
  }
}

@media (min-width: 721px) {
  .cart-header-link {
    display: none;
  }
}
