/* =========================================================
   世古口商店 本制作 — Stylesheet
   配色: 松阪木綿の藍染インスパイア（世古口商店ブランドカラー）
   ========================================================= */

/* ユーティリティ */
.nowrap { white-space: nowrap; }
.br-sp-only { display: none; }
@media (max-width: 720px) {
  .br-sp-only { display: inline; }
}

:root {
  /* === Color === */
  --bg: #fafaf8;                /* warm off-white */
  --bg-alt: #f3f0e9;            /* 副背景・生成り */
  --bg-paper: #f4ecd8;          /* 紙地色（松阪木綿地色寄り）*/
  --ink: #1f2419;               /* 墨 */
  --ink-soft: #4a4f43;          /* 墨ソフト */
  --ink-mute: #8a8a82;          /* 墨ミュート */

  /* 主色: 藍（松阪木綿の藍染インスパイア）*/
  --indigo: #1a3a5c;
  --indigo-light: #2a5a8c;
  --indigo-deep: #122a44;

  /* アクセント */
  --red: #b9342a;               /* 朱 */
  --gold: #b08a4a;              /* 金茶 */
  --wood: #c9b08a;              /* 木目茶 */
  --wood-light: #e8d9be;        /* 木目ライト */

  /* 罫線 */
  --line: #e0dccf;
  --line-soft: #ecead9;

  /* === Spacing === */
  --section-gap: clamp(56px, 7vw, 96px);
  --content-padding: clamp(20px, 5vw, 48px);
  --container-max: 1180px;

  /* === Type === */
  --fs-hero-mega: clamp(34px, 5.4vw, 68px);
  --fs-h2: clamp(26px, 3.6vw, 42px);
  --fs-h3: clamp(19px, 2.2vw, 26px);
  --fs-body: 16px;
  --fs-lead: clamp(15px, 1.3vw, 17px);

  /* === Fonts === */
  --ff-serif-jp: "Noto Serif JP", "Hiragino Mincho ProN", "游明朝", serif;
  --ff-sans-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  --ff-display: "Cormorant Garamond", "Noto Serif JP", serif;

  /* === Other === */
  --radius: 4px;
  --header-h: 64px;
  --shadow-soft: 0 6px 28px rgba(26, 58, 92, 0.08);
  --shadow-card: 0 12px 38px rgba(26, 58, 92, 0.10);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  touch-action: manipulation;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-sans-jp);
  font-size: var(--fs-body);
  line-height: 1.85;
  font-feature-settings: "palt";
  word-break: keep-all;
  overflow-wrap: anywhere;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease, opacity .2s ease; }
a:hover { color: var(--red); }
button { font: inherit; cursor: pointer; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.35;
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  letter-spacing: 0.02em;
}
p { margin: 0 0 1em; }
input, textarea, select, button { font-family: inherit; }
input, textarea, select { font-size: 16px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--content-padding);
}

.section {
  padding: var(--section-gap) 0;
  position: relative;
}

.nav-anchor {
  display: block;
  height: 0;
  width: 0;
  overflow: hidden;
  scroll-margin-top: 80px;
}
/* ---------- Header ---------- */
body.menu-open {
  overflow: hidden;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: var(--indigo);
  color: #fff;
  border-bottom: 1px solid rgba(232, 217, 190, .15);
  box-shadow: 0 2px 12px rgba(18, 42, 68, .15);
  transition: background .3s ease;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
  padding-top: 4px;
}
.brand__icon {
  width: 38px;
  height: 38px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__name {
  font-family: var(--ff-serif-jp);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
}
.brand__sub {
  font-family: var(--ff-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--wood-light);
  text-align: center;
  width: 100%;
}
.nav ul { display: flex; gap: 24px; align-items: center; }
.nav a {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, .85);
  position: relative;
  padding: 4px 0;
  font-family: var(--ff-sans-jp);
}
.nav a:hover { color: #fff; }
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: rgba(255, 255, 255, .45);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .3s ease;
}
.nav .nav-cta {
  background: var(--red);
  color: #fff;
  padding: 7px 16px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--red);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.nav .nav-cta:hover {
  background: #9a2b22;
  border-color: #9a2b22;
  color: #fff;
}
.nav .nav-cta::after { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  width: 44px; height: 44px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform .25s ease, opacity .25s ease;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--header-h));
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5) 0%,
    rgba(0, 0, 0, 0.4) 35%,
    rgba(0, 0, 0, 0.1) 65%,
    rgba(0, 0, 0, 0) 100%
  );
}
.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: clamp(20px, 3vh, 36px);
  padding-bottom: clamp(40px, 6vh, 64px);
}
.hero__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: clamp(24px, 4vh, 48px);
  margin-bottom: clamp(20px, 3vh, 36px);
  width: max-content;
  max-width: 100%;
}
.hero__brand-name {
  font-family: var(--ff-serif-jp);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 700;
  letter-spacing: 0.10em;
  color: #fff;
  line-height: 1.05;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .9),
    0 4px 6px rgba(0, 0, 0, .85),
    0 8px 20px rgba(0, 0, 0, .8),
    0 12px 30px rgba(0, 0, 0, .65);
}
.hero__brand-yomi {
  font-family: var(--ff-display);
  font-size: clamp(12px, 1.2vw, 16px);
  letter-spacing: 0.40em;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow:
    0 0 6px rgba(0, 0, 0, 0.95),
    0 1px 4px rgba(0, 0, 0, 0.9),
    0 2px 12px rgba(0, 0, 0, 0.7);
  margin-top: 4px;
  text-align: center;
  width: 100%;
}
.hero__headline {
  font-family: var(--ff-serif-jp);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin: 0 0 clamp(14px, 2vh, 20px);
  color: #fff;
  max-width: 22em;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, .9),
    0 4px 6px rgba(0, 0, 0, .85),
    0 7px 18px rgba(0, 0, 0, .75),
    0 10px 26px rgba(0, 0, 0, .6);
}
.hero__line1, .hero__line2 { display: block; }
.hero__line1 {
  font-family: var(--ff-serif-jp);
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 4px;
  font-weight: 600;
}
.hero__line1-emphasis {
  font-size: 2.3em;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow:
    3px 3px 0 var(--indigo-deep),
    5px 5px 0 rgba(0, 0, 0, .9),
    0 0 18px rgba(0, 0, 0, .85),
    6px 6px 22px rgba(0, 0, 0, 0.8);
}
.hero__line2 {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.hero__lead {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.65;
  color: #fff;
  font-weight: 500;
  max-width: 32em;
  margin: clamp(20px, 3vh, 32px) 0 clamp(40px, 6vh, 64px);
  text-shadow:
    0 0 4px rgba(0, 0, 0, 1),
    0 0 8px rgba(0, 0, 0, .95),
    0 2px 6px rgba(0, 0, 0, .9),
    0 4px 14px rgba(0, 0, 0, .75),
    0 8px 20px rgba(0, 0, 0, .55);
  font-family: var(--ff-serif-jp);
}
.hero__lead-primary,
.hero__lead-secondary {
  display: block;
}
.hero__lead-primary {
  font-size: 0.95em;
  font-weight: 600;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.hero__lead-secondary {
  font-size: 0.95em;
  font-weight: 500;
  opacity: 0.95;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vh, 44px);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 60px;
  padding: 0 32px;
  font-size: 17px;
  letter-spacing: 0.08em;
  font-weight: 600;
  border-radius: 999px;
  border: 1.5px solid transparent;
  transition: all .25s ease;
  text-align: center;
  font-family: var(--ff-sans-jp);
  box-shadow:
    0 10px 28px rgba(184, 138, 74, .35),
    0 4px 10px rgba(255, 255, 255, .15) inset,
    0 -2px 6px rgba(0, 0, 0, .12) inset;
}
.btn__icon {
  width: auto;
  height: 38px;
  max-width: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--red);
  color: #fff;
  border: 3px solid #8a2419;
}
.btn--primary:hover {
  background: #9a2b22;
  color: #fff;
}
.btn--ghost {
  background: var(--indigo);
  color: #fff;
  border: 3px solid var(--indigo-deep);
}
.btn--ghost:hover {
  background: var(--indigo-deep);
  color: #fff;
}

/* ---------- Hero tags (4枠 信頼ラベル) ---------- */
.hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
}
.hero__tag {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .45);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-align: left;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #fff;
  line-height: 1.3;
  font-family: var(--ff-sans-jp);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .55);
}
.hero__tag-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.hero__tag-text {
  white-space: nowrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    left: auto;
    width: min(240px, 70vw);
    height: 100vh;
    height: 100svh;
    background: rgba(26, 58, 92, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 80px 22px 40px;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.25);
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 110;
    overflow-y: auto;
  }
  .nav ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .site-header.is-open .nav { transform: translateX(0); }
  .site-header.is-open .nav a {
    color: rgba(240, 235, 224, .9);
    font-size: 14px;
  }
  .site-header.is-open .nav a {
    display: inline-block;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    padding-bottom: 4px;
  }
  .site-header.is-open .nav .nav-cta {
    background: transparent;
    text-align: left;
    color: rgba(240, 235, 224, .9);
    padding: 0 0 4px;
    border-radius: 0;
  }
  .nav-toggle { position: relative; z-index: 120; }
  .site-header.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-header.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-header.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero__overlay {
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.22) 25%,
      rgba(0, 0, 0, 0.3) 50%,
      rgba(0, 0, 0, 0.22) 75%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .hero__bg img {
    /* dvhでヒーロー高さが変動しても背景がズームしないよう最大ビューポート高で固定 */
    height: 100lvh;
    min-height: 100%;
  }
  .hero {
    align-items: stretch;
    min-height: calc(100svh - var(--header-h));
    max-height: none;
    padding-bottom: 0;
  }
  .hero__inner {
    padding-top: 16px;
    padding-bottom: calc(64px + env(safe-area-inset-bottom, 12px));
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%;
  }
  .hero__lead {
    margin: 12px 0 28px;
  }
  .hero__actions .btn {
    min-height: 60px;
    padding: 0 36px;
    font-size: 22px;
  }
  .hero__actions .btn__icon {
    height: 32px;
    max-width: 40px;
  }
  .hero__headline {
    margin-top: 0;
    font-size: clamp(22px, 6vw, 28px);
  }
  .hero__line1-emphasis {
    font-size: 1.4em;
  }
  .hero__headline {
    margin-top: 32px;
  }
  .hero__lead {
    margin: 12px 0 28px !important;
    font-size: 19px;
    line-height: 1.75;
  }
  .hero__lead-secondary {
    display: block;
    margin-top: 4px;
  }
  .hero__actions {
    margin-top: 20px;
    margin-bottom: 0;
    gap: 10px !important;
    flex-direction: column;
    width: 100%;
  }
  .hero__actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero { min-height: calc(100svh - var(--header-h)); }
  .hero__headline { line-height: 1.2; }
  .hero__tags {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .hero__tag { font-size: 14px; padding: 16px 8px; }
  .hero__tag-icon { width: 34px; height: 34px; }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 6px;
  }
  .btn { width: 100%; max-width: none; }
}

/* 中間幅 481-720px：2ボタン横並び+全体コンパクト化（ヒーロー内に収める） */
@media (min-width: 481px) and (max-width: 720px) {
  /* ボタン共通：中間幅サイズ（ヒーロー基準52/16）に統一 */
  .btn {
    min-height: 52px !important;
    padding: 0 18px !important;
    font-size: 16px !important;
  }
  .btn__icon {
    height: 26px !important;
    max-width: 32px !important;
  }
  .products__cta .btn {
    max-width: 300px !important;
  }
  .access__cta {
    max-width: 300px !important;
  }
  .hero__inner {
    padding-top: 56px !important;
    padding-bottom: 14px !important;
  }
  .hero__brand {
    margin-top: 16px !important;
    margin-bottom: 14px !important;
  }
  .hero__brand-name {
    font-size: clamp(36px, 5.5vw, 46px) !important;
  }
  .hero__headline {
    margin-top: 16px !important;
    margin-bottom: 10px !important;
  }
  .hero__lead {
    margin: 12px 0 16px !important;
    font-size: 17px !important;
    line-height: 1.75 !important;
  }
  .hero__actions {
    flex-direction: row !important;
    gap: 12px !important;
    max-width: 480px;
    align-self: flex-start;
    margin-top: 10px !important;
  }
  .hero__actions .btn {
    flex: 1 1 0;
    width: auto !important;
    max-width: none !important;
    min-height: 52px;
    font-size: 16px;
    padding: 0 12px;
  }
  .hero__actions .btn__icon {
    height: 24px;
    max-width: 30px;
  }
  .hero__tags {
    margin-top: 14px !important;
  }
  .hero__tag {
    padding: 8px 6px !important;
    font-size: 13px !important;
  }
  .hero__tag-icon {
    width: 30px !important;
    height: 30px !important;
  }
}

/* ---------- Tokowaka section ---------- */
.tokowaka {
  background: var(--bg-alt);
  padding: var(--section-gap) 0;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 80px;
}
.tokowaka__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.tokowaka__text {
  max-width: 560px;
}
.tokowaka__heading-group {
  display: block;
  width: fit-content;
  text-align: center;
  margin-bottom: 16px;
}
.tokowaka__kanji {
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  color: var(--indigo);
  letter-spacing: 0.05em;
  margin: 0;
  opacity: .95;
}
.tokowaka__yomi {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.18em;
  color: var(--ink-soft);
  margin: 6px 0 0;
  text-align: center;
}
.tokowaka__subtitle {
  font-family: var(--ff-serif-jp);
  font-size: clamp(20px, 2.4vw, 28px);
  color: var(--ink);
  margin-bottom: 18px;
  font-weight: 500;
  line-height: 1.5;
}
.tokowaka__body {
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.tokowaka__body p {
  margin-bottom: 1em;
}
.tokowaka__body p:last-child { margin-bottom: 0; }
.tokowaka__emphasis {
  font-family: var(--ff-serif-jp);
  font-size: clamp(17px, 1.8vw, 20px);
  color: var(--indigo);
  background: var(--bg-paper);
  padding: 16px 22px;
  border-left: 3px solid var(--gold);
  margin: 0 0 22px;
  line-height: 1.65;
  font-weight: 500;
}
@media (min-width: 961px) {
  .tokowaka__emphasis {
    width: fit-content;
    max-width: 100%;
  }
}
.tokowaka__emphasis-accent {
  color: var(--gold);
}
.tokowaka__closing {
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink-soft);
  font-family: var(--ff-serif-jp);
  margin: 0;
}
.tokowaka__photo {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-card);
}
.tokowaka__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.tokowaka__photo--sp { display: none; }

@media (max-width: 960px) {
  .tokowaka__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .tokowaka__photo--pc { display: none; }
  .tokowaka__photo--sp {
    display: block;
    aspect-ratio: 4 / 3;
    max-height: 420px;
    margin: 16px 0 24px;
  }
}

/* ---------- Products section ---------- */
.products {
  background: var(--bg);
  padding: var(--section-gap) 0;
  scroll-margin-top: 80px;
}
.products__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.products__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 16px;
  letter-spacing: 0.08em;
}
.products__sub {
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
}
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid var(--line);
  padding: clamp(16px, 1.6vw, 22px);
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}
.product-card__photo {
  position: relative;
  margin: 0 0 20px;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 6 / 5;
  box-shadow: var(--shadow-card);
}
.product-card__photo img {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
}
.product-card--saikamai .product-card__photo {
  background: var(--bg-paper); /* 紙地色: 縦長の米袋の左右余白を意匠として見せる */
  /* aspect-ratio 6/5 維持（他カードと統一） */
}
.product-card--saikamai .product-card__photo img {
  object-fit: contain; /* 米袋全体を切らずに表示 */
  object-position: center;
  padding: 10px;
  box-sizing: border-box;
}
.product-card__badge {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--indigo);
  color: #fff;
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.1;
  text-align: center;
  font-weight: 600;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.4) inset, 0 3px 8px rgba(0,0,0,0.18);
  padding: 0;
}
.product-card__badge--coming {
  background: var(--red);
}
.product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__sub {
  font-family: var(--ff-serif-jp);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin: 0 0 8px;
}
.product-card__name {
  font-family: var(--ff-serif-jp);
  font-size: clamp(19px, 2vw, 23px);
  color: var(--ink);
  margin: 0 0 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
.product-card__desc {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.product-card__spec {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6px 16px;
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.product-card__spec > div {
  display: contents;
}
.product-card__spec dt {
  font-family: var(--ff-serif-jp);
  color: var(--ink-mute);
  font-size: 12px;
  letter-spacing: 0.1em;
  align-self: center;
}
.product-card__spec dd {
  margin: 0;
  color: var(--ink);
  font-family: var(--ff-serif-jp);
  font-weight: 500;
}
.product-card__tax {
  font-size: 10px;
  color: var(--ink-mute);
  margin-left: 6px;
  letter-spacing: 0.08em;
  font-weight: 400;
}
.product-card--coming .product-card__photo {
  opacity: 0.92;
}
.products__note {
  text-align: center;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  margin: clamp(32px, 4vw, 48px) 0 0;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.products__cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 48px);
}
.products__cta .btn {
  max-width: 300px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 960px) {
  .products__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ---------- Reasons + Stats wrap（1枚背景で連続表示） ---------- */
.reasons-stats-wrap {
  background:
    url('../images/bg-reasons.png') center -35px / 100% 1400px no-repeat,
    #0a2843;
  position: relative;
  overflow: hidden;
}
.reasons {
  background: transparent;
  padding: 70px 0 80px;
  scroll-margin-top: 80px;
  position: relative;
  overflow: hidden;
}
.reasons__header {
  text-align: center;
  margin-bottom: 40px;
}
.reasons__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 28px;
  letter-spacing: 0.08em;
}
.reasons__sub {
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  letter-spacing: 0.04em;
}
.reasons__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 24px;
  row-gap: 0;
  max-width: 960px;
  margin: -40px auto 0;
}
/* 全タグ統一サイズ・統一padding */
.reasons__grid > .reason {
  min-width: 0;
  width: 92%;
}
.reasons__grid > .reason:nth-child(1),
.reasons__grid > .reason:nth-child(3) {
  justify-self: end;
}
.reasons__grid > .reason:nth-child(2),
.reasons__grid > .reason:nth-child(4) {
  justify-self: start;
}
.reasons__grid > .reason:nth-child(3),
.reasons__grid > .reason:nth-child(4) {
  margin-top: -10%;
}
.reason {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 2vw, 24px);
  align-items: end;
  aspect-ratio: 1448 / 800;
  min-height: 275px;
  padding: 7% 12% 10% 12%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  transition: transform 0.25s;
}
.reason--1 { background-image: url('../images/reason-tag-1.png'); }
.reason--2 { background-image: url('../images/reason-tag-2.png'); }
.reason--3 { background-image: url('../images/reason-tag-3.png'); }
.reason--4 { background-image: url('../images/reason-tag-4.png'); }
.reason:hover {
  transform: translateY(-2px);
}
.reason__icon {
  width: 92px;
  height: 92px;
  display: block;
  object-fit: contain;
  align-self: end;
  transform: translateY(-18px);
}
.reason__body {
  display: flex;
  flex-direction: column;
  align-self: start;
}
.reason__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--indigo);
  margin: 22px 0 4px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.4;
  min-height: calc(19px * 1.4 * 2);
  display: flex;
  align-items: flex-start;
}
.reason__desc {
  font-size: 13px;
  line-height: 1.85;
  color: var(--ink-soft);
  margin: 0;
  line-break: strict;
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .reasons__grid {
    grid-template-columns: 1fr;
    margin: 0 auto;
    gap: 18px;
    max-width: 480px;
  }
  .reasons__grid > .reason {
    width: 100%;
    justify-self: stretch;
    margin-top: 0;
  }
  .reasons__grid > .reason:nth-child(1),
  .reasons__grid > .reason:nth-child(2),
  .reasons__grid > .reason:nth-child(3),
  .reasons__grid > .reason:nth-child(4) {
    justify-self: stretch;
    margin-top: 0;
  }
  .reason {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    aspect-ratio: auto;
    min-height: 0;
    padding: 28px 22px 24px;
    background-image: none !important;
    background-color: #fbf7ee;
    border: 2px solid rgba(201, 163, 97, 0.7);
    border-radius: 4px;
    align-items: center;
    text-align: center;
    box-shadow: 0 6px 16px rgba(10, 40, 67, 0.10);
  }
  .reason__icon,
  .reason--3 .reason__icon,
  .reason--4 .reason__icon {
    position: static;
    transform: none;
    align-self: center;
    margin: 0 auto 4px;
    width: 72px;
    height: 72px;
  }
  .reason__body {
    align-self: auto;
  }
  .reason__title {
    display: block;
    min-height: 0;
    margin: 6px 0 4px;
    text-align: center;
    justify-content: center;
  }
  .reason__desc {
    text-align: center;
  }
}

/* ---------- Stats section（帯状・縦並び3要素+縦罫線） ---------- */
.stats {
  background: transparent;
  color: #fff;
  padding: 100px 0 80px;
  scroll-margin-top: 80px;
  position: relative;
}
.stats__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: 2px auto auto auto 2px;
  gap: 0;
  max-width: 960px;
  margin: 0 auto;
  border: 3px solid #d4ae6a;
  padding: 32px 28px;
  background: #0a2843;
}
.stats__title {
  grid-row: 1 / -1;
  font-family: var(--ff-serif-jp);
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.4;
  margin: 0;
  letter-spacing: 0.02em;
  font-weight: 700;
  padding: 0 clamp(4px, 0.6vw, 10px);
  border-right: 2px solid rgba(255, 255, 255, 0.3);
  white-space: normal;
  word-break: keep-all;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  padding-left: 0;
  transform: translateX(-10px);
  background: linear-gradient(180deg, #e3c179 0%, #c9a361 35%, #b08a4a 60%, #8c6a32 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
.stats__grid {
  display: contents;
}
.stat {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 1 / -1;
  justify-items: center;
  text-align: center;
  padding: 0 6px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}
.stat:last-child {
  border-right: none;
}
.stat__label {
  grid-row: 2;
  align-self: end;
  font-family: var(--ff-serif-jp);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: #fff;
  margin: 0 0 4px;
  line-height: 1.35;
  font-weight: 700;
}
.stat__number {
  grid-row: 3;
  align-self: center;
  font-family: var(--ff-serif-jp);
  font-size: 42px;
  margin: 0;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  background: linear-gradient(180deg, #e3c179 0%, #c9a361 35%, #b08a4a 60%, #8c6a32 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
          color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08),
    0 2px 4px rgba(0, 0, 0, 0.35);
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
.stat__number--text {
  font-size: 24px;
  line-height: 1.15;
}
.stat__unit {
  font-size: 0.6em;
  margin: 0 3px;
  letter-spacing: 0.06em;
  font-weight: 600;
}
.stat__icon {
  grid-row: 4;
  align-self: end;
  justify-self: center;
  width: 52px;
  height: 52px;
  display: block;
  margin-top: 8px;
  background: linear-gradient(180deg, #e3c179 0%, #c9a361 35%, #b08a4a 60%, #8c6a32 100%);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
          mask-repeat: no-repeat;
          mask-position: center;
          mask-size: contain;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}
.stat__icon--founded { -webkit-mask-image: url('../images/stat-icon-founded.png'); mask-image: url('../images/stat-icon-founded.png'); }
.stat__icon--rice { -webkit-mask-image: url('../images/stat-icon-rice.png'); mask-image: url('../images/stat-icon-rice.png'); }
.stat__icon--farmer { -webkit-mask-image: url('../images/stat-icon-farmer.png'); mask-image: url('../images/stat-icon-farmer.png'); }
.stat__icon--sameday { -webkit-mask-image: url('../images/stat-icon-sameday.png'); mask-image: url('../images/stat-icon-sameday.png'); }
.stat__icon--flower { -webkit-mask-image: url('../images/stat-icon-flower.png'); mask-image: url('../images/stat-icon-flower.png'); }
.stat--rice .stat__icon {
  width: 72px;
  height: 44px;
}
.stats__grid .stat:last-child .stat__icon {
  width: 72px;
  height: 42px;
}
/* ---------- 世古口商店の実績（見出し＋4カード並列）---------- */
.company-stats {
  background: var(--bg-paper);
  padding: clamp(56px, 7vw, 96px) 0;
}
.company-stats__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 clamp(10px, 1.2vw, 14px);
}
.company-section-lead {
  font-family: var(--ff-serif-jp);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  color: var(--gold);
  text-align: center;
  letter-spacing: 0.08em;
  line-height: 1.7;
  margin: 0 0 clamp(34px, 4vw, 52px);
}
.company-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 2.4vw, 32px);
  list-style: none;
  margin: 0 auto;
  padding: 0;
}
.company-stat {
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
  padding: clamp(14px, 1.6vw, 20px) clamp(10px, 1.2vw, 16px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2px;
}
.company-stat__icon {
  width: 96px;
  height: 96px;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #d9b25f 0%, #b08a4a 55%, #8c6a32 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.company-stat__icon--founded { -webkit-mask-image: url('../images/stat-icon-founded.png'); mask-image: url('../images/stat-icon-founded.png'); }
.company-stat__icon--rice { -webkit-mask-image: url('../images/stat-icon-rice.png'); mask-image: url('../images/stat-icon-rice.png'); -webkit-mask-position: bottom; mask-position: bottom; }
.company-stat__icon--farmer { -webkit-mask-image: url('../images/stat-icon-farmer.png'); mask-image: url('../images/stat-icon-farmer.png'); }
.company-stat__icon--flower { -webkit-mask-image: url('../images/stat-icon-flower.png'); mask-image: url('../images/stat-icon-flower.png'); }
.company-stat__label {
  font-family: var(--ff-serif-jp);
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  line-height: 1.4;
  min-height: 2.8em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  word-break: auto-phrase;
  line-break: strict;
}
.company-stat__value {
  font-family: var(--ff-serif-jp);
  font-size: clamp(32px, 3.6vw, 44px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.25;
  margin: 0;
}
.company-stat__value--text {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.25;
}
.company-stat__unit {
  font-size: 0.55em;
  margin: 0 2px;
  font-weight: 600;
}
@media (max-width: 1100px) {
  .company-stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 460px;
  }
  .company-stat {
    padding: 10px 6px 12px;
  }
  .company-stat__icon {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }
  .company-stat__label {
    font-size: 16px;
    min-height: 2em;
    margin: 0 0 4px;
  }
  .company-stat__value {
    font-size: clamp(24px, 5vw, 32px);
  }
  .company-stat__value--text {
    font-size: clamp(20px, 4vw, 26px);
  }
}

/* ---------- 世古口商店の強み（6アイコングリッド）---------- */
.company-strength {
  background: var(--bg);
  padding: clamp(56px, 7vw, 96px) 0;
}
.company-strength__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 clamp(10px, 1.2vw, 14px);
}
.company-strength__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.strength-item {
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(10px, 1.2vw, 16px);
  padding: clamp(2px, 0.3vw, 4px) clamp(12px, 1.4vw, 16px) clamp(2px, 0.3vw, 4px) clamp(6px, 0.8vw, 10px);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  background: #fff;
}
.strength-item__icon {
  width: clamp(82px, 8.8vw, 100px);
  height: clamp(82px, 8.8vw, 100px);
  object-fit: contain;
  flex-shrink: 0;
  margin-bottom: 0;
}
.strength-item__label {
  font-family: var(--ff-serif-jp);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  line-height: 1.5;
  margin: 0;
  text-align: left;
  word-break: auto-phrase;
  line-break: strict;
}
@media (max-width: 880px) {
  .company-strength__grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .strength-item {
    gap: 8px;
    padding: 4px 10px 4px 6px;
  }
  .strength-item__icon {
    width: 56px;
    height: 56px;
  }
  .strength-item__label {
    font-size: 13px;
    line-height: 1.45;
  }
}

/* ---------- 多様な食の現場へ（取引先）---------- */
.company-clients {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  background: var(--bg-paper);
}
.company-clients__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 4vw, 64px);
}
.company-clients__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.company-clients__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 881px) {
  .company-clients__photo img {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 18%);
    mask-image: linear-gradient(to right, transparent, #000 18%);
  }
}
@media (max-width: 880px) {
  .company-clients {
    display: block;
    background-image:
      linear-gradient(rgba(248, 244, 232, 0.85), rgba(248, 244, 232, 0.85)),
      url('../images/company-genba.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .company-clients__photo { display: none; }
  .company-clients__text {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(56px, 9vw, 96px) 24px;
  }
}
.company-clients__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  margin: 0 0 16px;
}
.company-clients__lead {
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 1.95;
  margin: 0 0 28px;
}
.company-clients__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.company-clients__list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.company-clients__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}
.company-clients__list-wide {
  grid-column: 1 / -1;
}
@media (min-width: 881px) {
  .company-clients__photo img {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 18%);
    mask-image: linear-gradient(to right, transparent, #000 18%);
  }
}
@media (max-width: 880px) {
  .company-clients {
    grid-template-columns: 1fr;
  }
  .company-clients__photo { min-height: 240px; order: -1; }
  .company-clients__photo img { -webkit-mask-image: none; mask-image: none; }
  .company-clients__text { padding: clamp(44px, 9vw, 64px) 24px; }
}

.company-overview {
  background: var(--bg);
  padding: clamp(36px, 4.5vw, 60px) 0;
}
.company-overview__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 0 clamp(20px, 2.6vw, 32px);
}
.company-overview__list {
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.company-overview__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  border-bottom: 1px solid var(--line);
}
.company-overview__row:last-child {
  border-bottom: none;
}
.company-overview__list dt {
  font-family: var(--ff-serif-jp);
  font-weight: 600;
  color: var(--ink);
  font-size: 16px;
  letter-spacing: 0.06em;
  border-right: 1px solid var(--line);
  padding: 14px 22px;
  display: flex;
  align-items: center;
}
.company-overview__list dd {
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  padding: 14px 22px;
  display: flex;
  align-items: center;
}
@media (max-width: 600px) {
  .company-overview__row {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }
  .company-overview__list dt {
    border-right: none;
    border-bottom: none;
    padding: 14px 18px 4px;
    font-size: 14px;
    font-weight: 400;
    color: #8a7e6f;
    letter-spacing: 0.12em;
  }
  .company-overview__list dd {
    padding: 0 18px 14px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
  }
}

@media (max-width: 960px) {
  .stats {
    padding-bottom: 0 !important;
  }
  .stats__inner {
    display: block;
    padding: 28px 22px;
  }
  .stats__title {
    grid-row: auto;
    display: block;
    border-right: none;
    border-bottom: 3px solid #d4ae6a;
    padding: 0 16px 16px;
    margin: 0 -16px 20px;
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    transform: none;
    font-size: 28px;
    line-height: 1.5;
  }
  .stats__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }
  .stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 8px;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    grid-row: auto;
  }
  .stat:nth-child(2n) {
    border-right: none;
  }
  .stat:nth-last-child(-n+2):not(:nth-child(odd):last-child) {
    border-bottom: none;
  }
  .stat:last-child {
    border-bottom: none;
  }
  .stat__label {
    grid-row: auto;
    align-self: auto;
    font-size: 17px;
    margin: 0;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .stat__number {
    grid-row: auto;
    align-self: auto;
    font-size: 40px;
    margin: 0;
  }
  .stat__icon {
    grid-row: auto;
    align-self: auto;
    margin-top: auto;
    width: 58px;
    height: 58px;
  }
  .stat--rice .stat__icon {
    width: 80px;
    height: 58px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
  .stats__grid .stat:last-child .stat__icon {
    width: 80px;
    height: 58px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
}
@media (max-width: 480px) {
  .stats__inner {
    padding: 22px 16px;
  }
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 8px;
  }
  .stat {
    padding: 16px 6px;
    gap: 8px;
  }
  .stat__number {
    font-size: 40px;
  }
  .stat__label {
    font-size: 17px;
    min-height: 2.4em;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .stat__icon {
    width: 58px;
    height: 58px;
    margin-top: auto;
  }
  .stat--rice .stat__icon {
    width: 80px;
    height: 58px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
  .stats__grid .stat:last-child .stat__icon {
    width: 80px;
    height: 58px;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
}

/* ---------- Locale section（伊勢に住む方へ／伊勢志摩を、訪れる方へ） ---------- */
.locale {
  min-height: 100svh;
  padding: 70px 0 24px;
  background: #f4efe3;
  color: var(--indigo);
  display: flex;
  align-items: flex-start;
  box-sizing: border-box;
}
.locale > .container {
  width: 100%;
}
.locale__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(28px, 3.8vw, 42px);
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin: 0 0 52px;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
}
.locale__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: stretch;
}
.locale__photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(10, 40, 67, 0.22), 0 4px 10px rgba(10, 40, 67, 0.10);
}
.locale__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.locale__cards {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.locale-card {
  background: #fbf7ee;
  border: 1px solid rgba(201, 163, 97, 0.4);
  padding: 22px 24px 22px 60px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 14px 32px rgba(10, 40, 67, 0.18), 0 4px 10px rgba(10, 40, 67, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.locale-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 38px rgba(10, 40, 67, 0.22), 0 6px 12px rgba(10, 40, 67, 0.10);
}
.locale-card__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(17px, 1.8vw, 20px);
  margin: 0 0 10px;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1.5;
}
.locale-card--local .locale-card__title {
  color: #4a6b3a;
}
.locale-card--tourist .locale-card__title {
  color: #b9342a;
}
.locale-card__body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink);
  margin: 0;
  word-break: auto-phrase;
  line-break: strict;
}

@media (max-width: 820px) {
  .locale {
    min-height: auto;
    padding: 60px 0;
    display: block;
  }
  .locale__title {
    margin-bottom: 28px;
  }
  .locale__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .locale__photo {
    aspect-ratio: 16 / 10;
    max-height: none;
  }
  .locale-card {
    padding: 20px 20px;
  }
}

/* ---------- Access section（TOP ダイジェスト） ---------- */
.access {
  padding: 70px 0 100px;
  background: #fafaf8;
}
.access__header {
  text-align: center;
  margin-bottom: 48px;
}
.access__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(28px, 3.8vw, 42px);
  color: var(--ink);
  margin: 0;
  letter-spacing: 0.06em;
}
.access__sub {
  margin: 14px 0 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.85;
}
.access__inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.access__map {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(10, 40, 67, 0.10);
  background: #eee;
  aspect-ratio: 16 / 11;
  width: 100%;
  min-width: 0;
}
.access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.access__info {
  background: #fff;
  border: 1px solid rgba(201, 163, 97, 0.45);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
.access__list {
  margin: 0 0 26px;
}
.access__row {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(10, 40, 67, 0.08);
  align-items: start;
}
.access__row:last-child {
  border-bottom: none;
}
.access__row dt {
  font-family: var(--ff-serif-jp);
  color: var(--indigo);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.access__row dd {
  margin: 0;
  font-size: 15px;
  color: var(--ink);
  line-height: 1.7;
}
.access__row dd a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 40, 67, 0.25);
}
.access__cta {
  margin-top: auto;
  align-self: center;
  max-width: 320px;
  width: 100%;
}

@media (max-width: 820px) {
  .access {
    padding: 70px 0;
  }
  .access__inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }
  .access__map {
    aspect-ratio: 16 / 10;
  }
  .access__info {
    padding: 26px 22px;
  }
  .access__cta {
    align-self: center;
    max-width: 360px;
    width: 100%;
  }
}

/* ---------- Contact section（TOP CTA・中央パネル型） ---------- */
.contact {
  padding: 90px 0 100px;
  background:
    linear-gradient(rgba(8, 24, 50, 0.45), rgba(8, 24, 50, 0.45)),
    url('../images/contact-bg.jpg') center / cover no-repeat,
    #1a3a5c;
  color: #fff;
}
.contact__panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.contact__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3.4vw, 36px);
  color: #fff;
  margin: 0 0 18px;
  letter-spacing: 0.06em;
  line-height: 1.55;
  font-weight: 600;
}
.contact__lead {
  margin: 0 0 60px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.85;
}
.contact__tel {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}
.contact__tel:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  color: #fff;
}
.contact__actions {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact__phone-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
}
.contact__tel {
  letter-spacing: 0.06em;
}
.contact__hours {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.08em;
  text-align: center;
}

@media (max-width: 720px) {
  .contact {
    padding: 60px 0 70px;
  }
  .contact__actions {
    flex-direction: column;
    align-items: center;
  }
  .contact__tel,
  .contact__form {
    width: 100%;
    max-width: 320px;
  }

  /* Products: 横並び維持。画像縦長、料金スペース狭く、文字サイズはそのまま */
  .products__grid {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 480px;
    margin: 0 auto;
  }
  .product-card {
    flex-direction: row;
    align-items: stretch;
    padding: 14px;
    gap: 14px;
  }
  .product-card__photo {
    flex: 0 0 140px;
    margin: 0;
    aspect-ratio: 3 / 4;
  }
  .product-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }
  .product-card__sub {
    font-size: 11px;
    margin: 0 0 3px;
  }
  .product-card__name {
    font-size: 14.5px;
    margin: 0 0 6px;
  }
  .product-card__desc {
    font-size: 12.5px;
    line-height: 1.75;
    margin: 0 0 14px;
    flex: 1;
    text-align: left;
    word-break: auto-phrase;
    line-break: strict;
    overflow-wrap: anywhere;
  }
  .product-card__spec {
    font-size: 12.5px;
    gap: 1px 12px;
    padding-top: 6px;
    margin-top: 0;
  }
  .product-card__spec dt,
  .product-card__spec dd {
    font-size: 12.5px;
  }
  .product-card__tax {
    font-size: 11px;
  }
  .product-card__badge {
    width: 46px;
    height: 46px;
    font-size: 13px;
    top: -8px;
    left: -8px;
  }
  .product-card__badge {
    top: -6px;
    left: -6px;
    font-size: 11px;
    padding: 4px 8px;
  }

  /* ボタン全体スマホ：ヒーロー基準（60px/22px/padding36）に統一 */
  .btn {
    min-height: 60px;
    padding: 0 36px;
    font-size: 22px;
    gap: 8px;
    width: 100%;
    max-width: none;
    white-space: nowrap;
  }
  .btn__icon {
    height: 32px;
    max-width: 40px;
  }
  .hero__actions {
    align-items: center;
  }
  .access__cta {
    align-self: center;
    max-width: 360px;
    width: 100%;
  }
  .contact .btn {
    min-height: 60px;
    padding: 0 28px;
    font-size: 22px;
    max-width: 360px;
  }
  .products__cta .btn {
    max-width: 300px;
    min-height: 60px;
    font-size: 22px;
    padding: 0 36px;
  }
  .products__cta .btn__icon {
    height: 32px;
    max-width: 40px;
  }

  /* Hero タグ 2x2 grid */
  .hero__tags {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: none;
    margin: 16px 0 0;
  }
  .hero__tag {
    justify-content: center;
    font-size: 16px;
    padding: 10px 8px;
  }
  .hero__tag-icon {
    width: 38px;
    height: 38px;
  }
}

/* ---------- Site Footer ---------- */
.site-footer {
  background: url('../images/footer-bg.jpg') center / 100% 100% no-repeat, #f4efe3;
  color: var(--ink);
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, transparent 0%, #c9a361 25%, #8c6a32 50%, #c9a361 75%, transparent 100%) 1;
  padding: 18px 0 10px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  padding: 0 80px 12px;
  border-bottom: 1px solid rgba(10, 40, 67, 0.1);
}
.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.site-footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.site-footer__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.site-footer__logo-name {
  font-family: var(--ff-serif-jp);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.site-footer__logo-name small {
  font-family: var(--ff-sans-jp);
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin-top: 2px;
}
.site-footer__info {
  margin: 0;
}
.site-footer__info-row {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  padding: 6px 0;
  font-size: 14px;
  line-height: 1.7;
}
.site-footer__info-row dt {
  font-family: var(--ff-serif-jp);
  color: var(--indigo);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.site-footer__info-row dd {
  margin: 0;
  color: var(--ink);
}
.site-footer__info-row dd a {
  color: inherit;
  text-decoration: none;
}
.site-footer__nav {
  justify-self: end;
  padding-left: 48px;
}
.site-footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}
.site-footer__nav a {
  font-family: var(--ff-serif-jp);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid rgba(10, 40, 67, 0.4);
  padding-bottom: 3px;
  transition: border-color .2s;
}
.site-footer__nav a:hover {
  border-bottom-color: #c9a361;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 80px 0;
  flex-wrap: wrap;
  gap: 8px;
}
.site-footer__copy,
.site-footer__powered {
  margin: 0;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
}
.site-footer__powered a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 40, 67, 0.15);
}

@media (max-width: 720px) {
  .site-footer {
    padding: 24px 0 14px;
  }
  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 20px 14px;
  }
  .site-footer__nav {
    justify-self: stretch;
    padding-left: 0;
  }
  .site-footer__nav ul {
    gap: 10px;
  }
  .site-footer__bottom {
    justify-content: center;
    text-align: center;
    padding: 10px 20px 0;
  }
}

/* =========================================================
   ACCESS PAGE (access.html)
   ========================================================= */

/* ---------- Common ---------- */
.section-title {
  font-family: var(--ff-serif-jp);
  font-size: var(--fs-h2);
  font-weight: 600;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--indigo-deep);
}

/* ---------- 1. Page intro (hero with integrated background) ---------- */
.page-intro {
  padding: calc(var(--header-h) + 36px) 0 96px;
  background-color: #ede5d0;
  background-image:
    linear-gradient(rgba(248, 244, 232, 0.45), rgba(248, 244, 232, 0.45)),
    url('../images/access-hero-bg.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-bottom: 1px solid var(--line-soft);
  min-height: calc(100svh - var(--header-h));
}
.page-intro__inner {
  display: grid;
  grid-template-columns: minmax(0, 700px);
  align-items: center;
}
.page-intro__text {
  position: relative;
  padding-left: 24px;
}
.page-intro__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 130px;
  color: var(--indigo-deep);
  line-height: 1.4;
}
.page-intro__lead {
  position: relative;
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 2.1;
  margin: 0;
  padding: 4px 0 4px 24px;
  max-width: 560px;
  border-left: 2px solid var(--gold);
}
/* access.html のみ：説明文を太く・少し大きく・和の明朝に */
.page-intro:not(.page-intro--products) .page-intro__lead {
  font-family: var(--ff-serif-jp);
  font-weight: 600;
  font-size: clamp(16px, 1.4vw, 18px);
}
.page-intro__photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.page-intro__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* products.html ヒーロー：背景画像＋eyebrow/sub追加、縦長短く */
.page-intro--products {
  min-height: calc(100svh - var(--header-h));
  padding: 0;
  background-color: #ede5d0;
  background-image:
    linear-gradient(rgba(248, 244, 232, 0.45), rgba(248, 244, 232, 0.45)),
    url('../images/products-hero-bg.png');
}
.page-intro--products .page-intro__inner {
  align-items: stretch;
  min-height: calc(100svh - var(--header-h));
}
.page-intro--products .page-intro__text {
  display: flex;
  flex-direction: column;
  padding-top: calc(var(--header-h) + 2px);
  padding-bottom: 32px;
}
.page-intro--products .page-intro__title {
  margin-bottom: 0;
}
.page-intro--products .page-intro__catch,
.page-intro--products .page-intro__cta-link {
  display: none;
}
.page-intro__eyebrow {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--ff-serif-jp);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin: 0 0 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--gold);
}
.page-intro__sub {
  font-family: var(--ff-serif-jp);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1.85;
  margin: 70px 0 32px;
}

/* ---------- products.html 商品3カード ---------- */
.products-list {
  padding: var(--section-gap) 0;
  background: var(--bg);
}
.products-list__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.products-list .product-card {
  position: relative;
  background: #fbf8f1;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  align-items: stretch;
}
.products-list .product-card--featured {
  border-color: var(--gold);
}
.products-list .product-card__media {
  overflow: hidden;
  min-height: 0;
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  background: #f5efe2;
}
.products-list .product-card__image {
  width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
}
/* 米袋（contain表示）— 竹（彩華米）/ 梅（いろどり） */
.products-list .product-card--bag .product-card__media {
  background: #ffffff;
}
.products-list .product-card--bag .product-card__image {
  object-fit: cover;
  object-position: center;
  padding: 0;
}

/* PC/SP共通 — 各画像の実比率に合わせた aspect-ratio（cover で切り取りなし） */
.products-list .product-card__media:has(img[src*="koshihikari"]) {
  aspect-ratio: 1 / 1;
}
.products-list .product-card__media:has(img[src*="saikamai"]),
.products-list .product-card__media:has(img[src*="irodori"]) {
  aspect-ratio: 1 / 1; /* 竹・梅とも松と同じ正方形枠に統一 */
  background: var(--bg-paper);
}
.products-list .product-card--sub .product-card__media:has(img[src*="saikamai"]) {
  aspect-ratio: 3 / 5;
  max-height: 300px; /* 180px × 5/3 = 300（PC用 width 180固定での高さ） */
}

/* PC/SP共通 — 米袋は正方形枠内に全体表示（紙地色の余白付き） */
.products-list .product-card__media:has(img[src*="saikamai"]) .product-card__image,
.products-list .product-card__media:has(img[src*="irodori"]) .product-card__image {
  object-fit: contain;
  padding: 12px;
  box-sizing: border-box;
}
.products-list .product-card--sub .product-card__media:has(img[src*="saikamai"]) .product-card__image {
  padding: 8px;
  box-sizing: border-box;
}
.products-list .product-card__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  min-height: 70px;
  padding: 10px 4px 18px;
  font-family: var(--ff-serif-jp);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  z-index: 2;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 12px), 50% 100%, 0 calc(100% - 12px));
}
.products-list .product-card--sub .product-card__label {
  width: 32px;
  min-height: 54px;
  padding: 8px 3px 14px;
  font-size: 16px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), 50% 100%, 0 calc(100% - 10px));
}
.products-list .product-card__label--gold {
  background: var(--gold);
  outline: 2px solid #7a5e2e;
  outline-offset: -4px;
}
.products-list .product-card__label--indigo {
  background: var(--indigo);
  outline: 2px solid var(--indigo-deep);
  outline-offset: -4px;
}
.products-list .product-card__body {
  padding: 14px 20px 16px;
  display: flex;
  flex-direction: column;
}
.products-list .product-card__name {
  font-family: var(--ff-serif-jp);
  font-size: clamp(18px, 1.8vw, 21px);
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.06em;
  margin: 0 0 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}
.products-list .product-card__price {
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--indigo-deep);
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.products-list .product-card__price em {
  font-style: normal;
  font-size: 20px;
  font-weight: 700;
  color: var(--indigo-deep);
  margin-left: 6px;
}
.products-list .product-card__desc {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.85;
  margin: 0 0 20px;
  flex: 1;
}
.products-list .product-card__tax {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.products-list .product-card__lead {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.75;
  margin: 0 0 14px;
}
.products-list .product-card__spec {
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
}
@media (max-width: 1200px) {
  .products-list .product-card__spec {
    grid-template-columns: 1fr;
  }
}
.products-list .product-card__spec > div {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.products-list .product-card__spec dt {
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  color: var(--indigo);
  letter-spacing: 0.08em;
}
.products-list .product-card__spec dd {
  margin: 0;
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1.55;
  word-break: auto-phrase;
}
/* モバイルはスペック表を1列にして dd幅を確保（産地の文字割れ・左右ズレ解消） */
@media (max-width: 600px) {
  .products-list .product-card__spec {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.products-list .product-card__features-title {
  font-family: var(--ff-serif-jp);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  margin: 0 0 4px;
}
.products-list .product-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.products-list .product-card__features li {
  position: relative;
  padding: 2px 0 2px 16px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink-soft);
}
.products-list .product-card__features li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--gold);
  font-weight: 700;
}
.products-list .product-card__recommend {
  margin: 0;
  padding: 8px 10px;
  background: var(--bg-paper);
  border-left: 3px solid var(--gold);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.65;
  color: var(--ink-soft);
}
.products-list .product-card__recommend strong {
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.06em;
}
.products-list .product-card__tax {
  margin-left: 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.products-list .product-card__btn {
  align-self: flex-start;
  font-family: var(--ff-serif-jp);
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
  padding: 6px 0;
  border-bottom: 1px solid var(--gold);
  transition: color 0.2s ease, border-color 0.2s ease;
}
.products-list .product-card__btn:hover {
  color: var(--indigo-deep);
  border-color: var(--indigo-deep);
}
.products-list .product-card__btn span {
  margin-left: 6px;
  font-family: var(--ff-display);
}

/* Responsive */
@media (max-width: 720px) {
  .products-list__grid {
    gap: 22px;
  }
  .products-list .product-card {
    grid-template-columns: 1fr;
  }
  .products-list .product-card__image {
    aspect-ratio: 16 / 10;
    min-height: auto;
  }
  .products-list .product-card__body { padding: 22px 20px; }
  .products-list .product-card__name { font-size: 18px; }
  .products-list .product-card__price em { font-size: 18px; }
}

/* ---------- products.html 世古口商店の強み 6項目 ---------- */
.products-strength {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}
.products-strength__title {
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 14px;
}
.products-strength__sub {
  text-align: center;
  font-family: var(--ff-serif-jp);
  font-size: clamp(17px, 1.9vw, 22px);
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0 0 8px;
}
.products-strength__note {
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin: 0 0 44px;
}
.products-strength__grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.strength-card {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  padding: 22px 12px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.strength-card__icon {
  width: 84px;
  height: 84px;
  object-fit: contain;
  margin: 0 auto 14px;
  display: block;
}
.strength-card__label {
  font-family: var(--ff-serif-jp);
  font-size: 13px;
  font-weight: 700;
  color: var(--indigo-deep);
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin: 0;
  word-break: auto-phrase;
  line-break: strict;
}
@media (max-width: 720px) {
  .products-strength__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .strength-card { padding: 18px 10px 16px; }
  .strength-card__icon { width: 72px; height: 72px; margin-bottom: 10px; }
  .strength-card__label { font-size: 12.5px; }
}

/* ---------- 2. Access info panel + Google Map (combined) ---------- */
.access-info {
  padding: var(--section-gap) 0;
  background-color: var(--bg);
}
.access-info__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: stretch;
}
.access-info__primary {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 58px;
}
.access-info__note {
  margin: 0;
  padding: 32px 36px;
  background: #eef2f8;
  border: 1px solid #d0dae6;
  border-radius: var(--radius);
  font-family: var(--ff-sans-jp);
  font-size: 17px;
  font-weight: 500;
  line-height: 2.05;
  color: var(--ink);
  letter-spacing: 0.04em;
}
/* スマホ版用：ヒーロー内補足カード（PC版では非表示） */
.page-intro__note {
  display: none;
}
.access-info__list {
  margin: 0;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 32px;
}
.access-info__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.access-info__row:last-child { border-bottom: none; padding-bottom: 0; }
.access-info__row:first-child { padding-top: 0; }
.access-info__row dt {
  font-family: var(--ff-serif-jp);
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  font-size: 15px;
}
.access-info__row dd {
  margin: 0;
  color: var(--ink);
  line-height: 1.75;
  font-size: 15px;
}
.access-info__row dd a {
  color: var(--red);
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}
.access-info__sub {
  margin-left: 8px;
  font-size: 13px;
  color: var(--ink-mute);
}
.access-info__map {
  display: block;
  text-align: center;
}
.access-info__map-frame {
  text-align: left;
}
.access-info__map-heading {
  display: inline-block;
  margin: 0 0 12px;
  padding: 8px 56px;
  font-family: var(--ff-sans-jp);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--indigo-deep);
  letter-spacing: 0.12em;
  border-radius: 3px;
}
.access-info__map-illust {
  margin: 0 0 16px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(20, 30, 60, 0.15);
}
.access-info__map-illust img {
  width: 100%;
  height: auto;
  display: block;
}
.access-info__map-googleframe {
  width: 100%;
  aspect-ratio: 8 / 5;
  height: auto;
  min-height: 280px;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 6px 20px rgba(20, 30, 60, 0.15);
}
.access-info__map-link {
  margin: 18px 0 0;
  font-size: 13px;
  color: var(--ink-mute);
  text-align: right;
}
.access-info__map-link a {
  color: var(--indigo);
  border-bottom: 1px solid currentColor;
}

/* ---------- 4. Photo gallery (3-column grid, with captions) ---------- */
.access-gallery {
  padding: 0 0 56px;
  background: var(--bg);
}
.access-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.access-gallery__item {
  margin: 0;
}
.access-gallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.access-gallery__item figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--indigo-deep);
}

/* Accessibility helper */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  clip: rect(0,0,0,0);
  overflow: hidden;
  white-space: nowrap;
}

/* ---------- 5. Directions (3 cards: car / train / pilgrims) ---------- */
.access-directions {
  padding: var(--section-gap) 0;
  background: var(--bg);
}
.access-directions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.direction-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
}
.direction-card--tourists {
  background: var(--bg-paper);
}
.direction-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-serif-jp);
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo-deep);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 0.06em;
}
.direction-card__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  object-fit: contain;
}
.direction-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.direction-card__list li {
  position: relative;
  padding: 12px 0 12px 18px;
  border-bottom: 1px dashed var(--line);
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.direction-card__list li::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 12px;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.85;
}
.direction-card__list li:last-child { border-bottom: none; }
.direction-card__list strong {
  color: var(--indigo-deep);
  font-weight: 600;
}
.direction-card__list em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
  font-size: 1.05em;
}

/* Tourist card extras */
.direction-card__lead {
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  color: var(--indigo-deep);
  font-weight: 600;
  margin: 0 0 14px;
}
.direction-card__lead em {
  font-style: normal;
  color: var(--red);
  font-weight: 700;
  font-size: 1.15em;
}
.direction-card__text {
  font-size: 13.5px;
  line-height: 1.95;
  color: var(--ink-soft);
  margin: 0 0 18px;
  flex: 1;
}
.direction-card__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  margin-top: auto;
}

/* (removed: .access-tourists section was merged into .direction-card--tourists) */

/* ---------- 7. Simple map (旧HP構図継承) ---------- */
.access-simplemap {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}
.access-simplemap__lead {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0 0 24px;
}
.access-simplemap__figure {
  margin: 0;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
.access-simplemap__figure img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.access-simplemap__figure figcaption {
  margin: 18px 0 0;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

/* ---------- 8. Store info (直売所のご案内: left text + right 3 photos) ---------- */
.access-store {
  padding: var(--section-gap) 0;
  background: var(--bg-alt);
}
.access-store__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 56px;
  align-items: center;
}
.access-store__text {
  align-self: center;
}
.access-store__items {
  align-self: center;
}
.access-store__features {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
}
.access-store__features li {
  position: relative;
  padding: 4px 0 4px 32px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.85;
  word-break: auto-phrase;
  line-break: strict;
}
.access-store__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 18px;
  height: 10px;
  border-left: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
  transform: rotate(-45deg);
}
.access-store__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.access-store__item {
  margin: 0;
}
.access-store__item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-soft);
}
.access-store__item figcaption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.06em;
  line-height: 1.6;
  word-break: auto-phrase;
  line-break: strict;
}

/* ---------- 9. CTA panel (HOMEのお問い合わせと同じ背景・横並びコンパクト) ---------- */
.access-cta {
  padding: 70px 0 80px;
  background:
    linear-gradient(rgba(8, 24, 50, 0.55), rgba(8, 24, 50, 0.55)),
    url('../images/contact-bg.jpg') center / cover no-repeat,
    #1a3a5c;
  color: #fff;
}
.access-cta__title {
  text-align: center;
  margin: 0 0 32px;
  padding-bottom: 0;
  border-bottom: none;
  color: #fff;
}
.access-cta__lead {
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.4vw, 16px);
  margin: -18px 0 36px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.access-cta__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.05fr;
  gap: 14px;
  align-items: stretch;
  max-width: 1080px;
  margin: 0 auto;
}
.access-cta__card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 18px 18px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  position: relative;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.access-cta__card:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
/* 営業時間・直売所カードはボタンではない（情報表示のみ）→ hover効果オフ */
.access-cta__card--hours,
.access-cta__card--hours:hover,
.access-cta__card--store,
.access-cta__card--store:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.25);
  cursor: default;
}
.access-cta__icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  color: rgba(255, 255, 255, 0.9);
  align-self: center;
}
.access-cta__card-body {
  flex: 1;
  min-width: 0;
  text-align: left;
  line-height: 1.25;
}
/* 営業時間カード: 時間ブロックを「基準」にして、その中心軸に「営業時間」「定休日」を揃える
   構造: <body> > <hours-stack inline-flex column align-items:center> > <label / hours / sub>
   時間ブロックの内部は元の左寄せ維持（平日は左、時間2行は右で縦揃え） */
.access-cta__hours-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.access-cta__card-label {
  font-family: var(--ff-serif-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 2px;
  line-height: 1.25;
}
.access-cta__card-number {
  font-family: var(--ff-serif-jp);
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
  white-space: nowrap;
}
.access-cta__card-hours {
  font-family: var(--ff-serif-jp);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.35;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.access-cta__hours-weekday {
  flex: 0 0 auto;
}
.access-cta__hours-times {
  display: inline;
  white-space: nowrap;
}
.access-cta__hours-times > span:first-child::after {
  content: " / ";
}
.access-cta__card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.25;
}
/* 中央フォームカード：メイン文言を強調 */
.access-cta__card--form .access-cta__card-label {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.access-cta__card--form .access-cta__card-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}
/* Center CTA: HOMEのbtn--primaryと同じ赤 */
.access-cta__card--form {
  background: var(--red);
  border-color: var(--red);
}
.access-cta__card--form:hover {
  background: #a02d24;
  border-color: #a02d24;
  color: #fff;
}
.access-cta__card--form .access-cta__icon { color: #fff; }
.access-cta__card--form .access-cta__card-label { color: rgba(255,255,255,0.92); }
.access-cta__card--form .access-cta__card-sub { color: rgba(255,255,255,0.85); }
.access-cta__card-arrow {
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
  font-family: var(--ff-display);
  margin-left: 4px;
}
.access-cta__note {
  margin: 28px auto 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.85;
  max-width: 720px;
  word-break: auto-phrase;
}

/* 全CTAカード: アイコン+文字をカード中央に配置（電話/フォーム/営業時間/直売所） */
.access-cta__card {
  justify-content: center !important;
}
.access-cta__card .access-cta__card-body {
  flex: 0 0 auto !important;
  text-align: center !important;
}
.access-cta__card--hours .access-cta__hours-stack,
.access-cta__card--store .access-cta__hours-stack {
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.access-cta__card--hours .access-cta__card-label,
.access-cta__card--store .access-cta__card-label,
.access-cta__card--hours .access-cta__card-sub,
.access-cta__card--store .access-cta__card-sub {
  white-space: nowrap;
}

/* ---------- access-cta は 1080px 以下で1カラム化（直売所のはみ出し回避） ---------- */
@media (max-width: 1080px) {
  .access-cta__grid {
    grid-template-columns: 1fr !important;
    max-width: 560px;
    margin: 0 auto;
  }
  .access-cta__card {
    justify-content: center;
  }
  .access-cta__card .access-cta__card-body {
    flex: 0 0 auto;
    text-align: center;
  }
}
/* hours-stack は全画面サイズで縦並び（メイン定義で対応済み） */

/* ---------- 920px 以下で本社・直売所を1カラム化（直売所のご案内は2カラム維持） ---------- */
@media (max-width: 920px) {
  .access-info__grid {
    grid-template-columns: 1fr !important;
    gap: 36px;
  }
  /* アクセス方法は3カラム維持＋改行を自然に */
  .access-directions__grid {
    gap: 14px;
  }
  .direction-card { padding: 18px 14px; }
  .direction-card__title { font-size: 15px; white-space: nowrap; }
  .direction-card__icon { width: 28px; height: 28px; }
  .direction-card__list li { font-size: 13px; padding: 10px 0 10px 14px; word-break: keep-all; line-height: 1.7; }
  .direction-card__list strong { font-size: 13.5px; }
  .direction-card__lead { font-size: 13.5px; word-break: keep-all; }
  .direction-card__text { font-size: 13px; word-break: keep-all; }
}

/* ---------- Responsive (≤ 880px) タブレット〜小型ウィンドウ ---------- */
@media (max-width: 880px) {
  .products-list .product-card {
    grid-template-columns: 1fr;
  }
  /* 松竹梅 各画像の実比率に合わせて枠サイズ調整（cover で切り取りなし） */
  .products-list .product-card__media {
    aspect-ratio: 4 / 5;
    max-height: 360px;
    min-height: 0;
    width: 100%;
    max-width: 288px;
    margin: 0 auto;
  }
  /* 松（コシヒカリ）画像 1254x1254 = 1:1 正方形 */
  .products-list .product-card__media:has(img[src*="koshihikari"]) {
    aspect-ratio: 1 / 1;
  }
  /* 竹（彩華米）・梅（いろどり）: 松と同じ正方形枠に統一（袋全体表示は共通エリアで指定） */
  .products-list .product-card__media:has(img[src*="saikamai"]),
  .products-list .product-card__media:has(img[src*="irodori"]) {
    aspect-ratio: 1 / 1;
    max-width: 288px;
  }
  .products-list .product-card__media:has(img[src*="saikamai"]) .product-card__image,
  .products-list .product-card__media:has(img[src*="irodori"]) .product-card__image {
    padding: 8px;
  }
  .products-list .product-card__image {
    height: 100%;
    width: 100%;
  }
  /* 竹梅（袋写真）は枠いっぱいに広げて表示（横余白なし） */
  .products-list .product-card--bag .product-card__media {
    background: #fff;
  }
  .products-list .product-card--bag .product-card__image {
    object-fit: cover;
    padding: 0;
  }
  /* その他の取り扱いカードのplaceholder（新商品 開発中）が縦書きにならないよう調整 */
  .products-list .product-card--sub .product-card__media--placeholder {
    aspect-ratio: auto;
    min-height: 120px;
    max-height: 160px;
  }
  .products-list .product-card--sub .product-card__coming {
    font-size: clamp(20px, 4vw, 28px);
  }
  .products-strength__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .strength-card { padding: 16px 10px 14px; }
  .strength-card__icon { width: 64px; height: 64px; margin-bottom: 8px; }
  .access-cta__grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 380px;
    margin: 0 auto;
  }
  .access-cta__card {
    padding: 16px 18px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: left;
    gap: 14px;
  }
  .access-cta__card-body {
    flex: 0 0 auto;
  }
  .access-cta__card--tel .access-cta__card-body,
  .access-cta__card--form .access-cta__card-body {
    text-align: center;
  }
}

/* ---------- Responsive (≤ 720px) ---------- */
@media (max-width: 720px) {
  .page-intro {
    min-height: calc(100svh - var(--header-h));
    padding: calc(var(--header-h) + 24px) 0 calc(24px + env(safe-area-inset-bottom, 12px));
    background-image:
      linear-gradient(rgba(248, 244, 232, 0.45), rgba(248, 244, 232, 0.45)),
      url('../images/access-hero-bg.png');
    background-position: 80% 30%;
    background-size: cover;
  }
  .page-intro:not(.page-intro--products) .page-intro__lead {
    margin-top: 4px;
    text-shadow: 0 0 10px rgba(248, 244, 232, 0.95), 0 0 4px rgba(248, 244, 232, 0.85);
    word-break: auto-phrase;
    line-break: strict;
  }
  .page-intro--products {
    min-height: calc(100svh - var(--header-h));
    background-image:
      linear-gradient(rgba(248, 244, 232, 0.45), rgba(248, 244, 232, 0.45)),
      url('../images/products-hero-bg.png');
    background-position: center 70%;
  }
  .page-intro--products .page-intro__inner {
    min-height: auto;
  }
  .page-intro__inner {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .page-intro--products .page-intro__text {
    padding-top: 0;
  }
  .page-intro--products .page-intro__eyebrow {
    display: none;
  }
  .page-intro--products .page-intro__sub {
    font-size: 19px;
    line-height: 1.85;
    font-weight: 700;
    color: #8a6b39;
    margin: 48px 0 20px;
  }
  .page-intro--products .page-intro__lead {
    font-size: 16px;
    line-height: 1.9;
    word-break: auto-phrase;
    line-break: strict;
  }
  .page-intro--products .page-intro__catch {
    display: block;
    font-family: var(--ff-serif-jp);
    font-size: 22px;
    font-weight: 500;
    color: var(--indigo-deep);
    line-height: 1.7;
    letter-spacing: 0.1em;
    margin: 24px 0 24px;
    text-align: center;
  }
  .page-intro--products .page-intro__cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: calc(100% - 24px);
    max-width: 360px;
    margin: 0 auto;
    padding: 16px 32px;
    background: var(--indigo-deep);
    color: #fff;
    text-decoration: none;
    font-family: var(--ff-serif-jp);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.14em;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 22px rgba(20, 30, 60, 0.35), 0 2px 6px rgba(20, 30, 60, 0.2);
  }
  .page-intro--products .page-intro__cta-link::after {
    content: "↓";
    font-size: 20px;
    font-weight: 700;
  }
  .page-intro__text { padding-left: 24px; }
  .page-intro:not(.page-intro--products) .page-intro__text { padding-top: 0; }
  .page-intro__title { margin-bottom: 40px; }
  .page-intro:not(.page-intro--products) .page-intro__title { margin-bottom: 28px; }
  .page-intro__sub { margin: 36px 0 24px; font-size: clamp(15px, 4vw, 17px); }
  .page-intro__lead { font-size: 14px; line-height: 2; }

  .access-info__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .access-info__primary {
    padding-top: 0;
  }
  /* スマホ版：補足カードはヒーローに表示、住所dl下は非表示 */
  .access-info__note {
    display: none;
  }
  .page-intro__note {
    display: block;
    margin: 234px 0 0;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.55);
    border: none;
    font-family: var(--ff-serif-jp);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.95;
    word-break: auto-phrase;
    line-break: strict;
    color: var(--ink);
    max-width: 560px;
    letter-spacing: 0.06em;
    text-align: center;
  }
  .access-info__list {
    padding: 22px 22px;
  }
  .access-info__row {
    grid-template-columns: 80px 1fr;
    gap: 10px;
    padding: 12px 0;
  }
  .access-info__row dd { font-size: 14px; }
  .access-info__map {
    min-height: 320px;
  }
  .access-info__map iframe { min-height: 320px; }
  /* イラスト地図をモバイルで画面いっぱいに拡大（container余白を相殺） */
  .access-info__map-illust {
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
  }

  .access-gallery__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .access-gallery__item img { aspect-ratio: 16 / 10; }
  .access-gallery__item figcaption { font-size: 17px; font-weight: 700; margin-top: 12px; }

  .access-directions__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .direction-card { padding: 22px 20px 20px; }
  .direction-card__title { font-size: 17px; }
  .direction-card__icon { width: 32px; height: 32px; }
  .direction-card__list li { font-size: 14px; padding: 11px 0 11px 16px; color: var(--ink); }
  .direction-card__text { font-size: 16px; font-weight: 400; color: var(--ink-soft); line-height: 2.05; }
  .direction-card__thumb { aspect-ratio: 16 / 10; }

  .access-simplemap__figure { padding: 14px; }

  .access-store__grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  .access-store__features li { font-size: 16px; font-weight: 600; padding: 6px 0 6px 32px; line-height: 1.6; min-height: 28px; word-break: auto-phrase; line-break: strict; }
  .access-store__features li:first-child::before { top: 50%; transform: translateY(-50%) rotate(-45deg); }
  .access-store__features li:not(:first-child)::before { top: auto; bottom: 14px; transform: rotate(-45deg); }
  .access-store__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .access-store__item figcaption { font-family: var(--ff-sans-jp); font-size: 16px; font-weight: 700; margin-top: 12px; line-height: 1.5; min-height: 2.8em; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--indigo-deep); }

  .access-cta__title { font-size: 24px; margin-bottom: 26px; }
  .access-cta__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-cta__card { padding: 22px 18px; }
  .access-cta__icon { width: 40px; height: 40px; margin-bottom: 0; align-self: center; }
  .access-cta__card--tel .access-cta__icon { width: 34px; height: 34px; }
  .access-cta__card-arrow { right: 14px; bottom: 10px; font-size: 18px; }
  .access-cta__note { font-size: 12.5px; margin-top: 26px; }

  /* company-hero: products と同じ高さ・配置に */
  .company-hero {
    min-height: calc(100svh - var(--header-h));
  }
  .company-hero__inner {
    min-height: calc(100svh - var(--header-h));
    padding-top: 0;
    padding-bottom: env(safe-area-inset-bottom, 12px);
  }
  .company-hero__text {
    padding-top: 0;
  }
  .company-hero__sub {
    font-size: 26px;
    line-height: 1.8;
    font-weight: 700;
    color: #8a6b39;
    margin: 48px 0 20px;
    text-shadow: none;
  }
  .company-hero__lead {
    font-size: 21px;
    line-height: 2.05;
    margin-top: 24px;
  }
}

/* =========================================================
   products.html「品質へのこだわり」セクション
   写真2枚 + 中央テキスト + 写真2枚 の横並びコラージュ
   ========================================================= */
.products-quality {
  background: var(--bg);
  padding: clamp(80px, 10vw, 120px) 0;
}
.products-quality__inner {
  display: grid;
  grid-template-columns: 1.3fr 1.3fr 1.4fr 1.3fr 1.3fr;
  gap: 3px;
  max-width: none;
  margin: 0;
  padding: 0;
  align-items: stretch;
}
.products-quality__photo {
  position: relative;
  overflow: hidden;
  min-width: 0;
}
.products-quality__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products-quality__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px 18px;
  background: #ffffff;
}
.products-quality__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(22px, 2.4vw, 27px);
  font-weight: 700;
  color: var(--indigo);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.products-quality__body {
  font-family: var(--ff-serif-jp);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.9;
  color: var(--ink);
  margin-bottom: 16px;
  font-weight: 700;
  word-break: auto-phrase;
  line-break: strict;
}
.products-quality__lead {
  font-family: var(--ff-serif-jp);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.75;
  color: var(--indigo);
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* tablet */
@media (max-width: 980px) {
  .products-quality__inner {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "text text"
      "p1 p2"
      "p3 p4";
    gap: 12px;
  }
  .products-quality__text { grid-area: text; padding: 10px 0 24px; }
  .products-quality__photo--1 { grid-area: p1; }
  .products-quality__photo--2 { grid-area: p2; }
  .products-quality__photo--3 { grid-area: p3; }
  .products-quality__photo--4 { grid-area: p4; }
  .products-quality__photo { aspect-ratio: 4 / 3; }
}

/* mobile */
@media (max-width: 640px) {
  .products-quality { padding: 60px 0; }
  .products-quality__inner { gap: 8px; }
  .products-quality__title { font-size: 22px; margin-bottom: 18px; }
  .products-quality__body { font-size: 14px; line-height: 1.9; margin-bottom: 18px; }
  .products-quality__lead { font-size: 13px; }
}

/* =========================================================
   company.html「世古口商店について」
   ========================================================= */

/* ---------- Hero (背景画像 + テキストオーバーレイ) ---------- */
.company-hero {
  background-color: var(--bg-paper);
  background-image:
    linear-gradient(rgba(248, 244, 232, 0.62), rgba(248, 244, 232, 0.78)),
    url('../images/company-hero.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  min-height: calc(100svh - var(--header-h));
}
.company-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  min-height: calc(100svh - var(--header-h));
  padding-top: calc(var(--header-h) + 35px);
  padding-bottom: 32px;
}
.company-hero__text {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.company-hero__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--indigo-deep);
  line-height: 1.4;
  margin: 0;
}
.company-hero__sub {
  font-family: var(--ff-serif-jp);
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  color: var(--indigo-deep);
  line-height: 2.05;
  margin: 80px 0 44px;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.85);
}
.company-hero__lead {
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 2.3;
  margin: 0;
  padding: 8px 0 8px 24px;
  max-width: 560px;
  border-left: 2px solid var(--gold);
}
.company-hero__photo {
  display: none;
}
@media (min-width: 921px) {
  .company-hero__photo img {
    border-radius: 0;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 20%);
    mask-image: linear-gradient(to right, transparent 0, #000 20%);
  }
}
@media (max-width: 920px) {
  .company-hero {
    min-height: calc(100svh - var(--header-h));
    padding-top: calc(var(--header-h) + 24px);
    padding-bottom: 28px;
    background-size: cover, auto 135lvh;
    background-position: center, 68% top;
  }
  .company-hero__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 0;
    padding-bottom: 0;
    min-height: auto;
    align-items: start;
  }
  .company-hero__text { max-width: none; padding-top: 0; padding-bottom: 0; }
  .company-hero__sub {
    font-size: 19px;
    line-height: 1.85;
    font-weight: 700;
    color: #8a6b39;
    margin: 56px 0 32px;
    text-shadow: none;
  }
  .company-hero__lead {
    font-size: 16px;
    line-height: 2.1;
    margin-top: 80px;
  }

  /* 4セクションを600前後に揃える */
  .company-tokowaka {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .company-greeting {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .company-strength {
    padding-top: 122px;
    padding-bottom: 122px;
  }
  .company-clients {
    padding-top: 120px;
    padding-bottom: 120px;
  }

  /* 5. 常若のこころ：見出しと文章間を開け、文章を大きく */
  .company-tokowaka__sub {
    margin: 0 0 40px;
  }
  .company-tokowaka__body p {
    font-size: 19px;
    line-height: 2.1;
  }

  /* 4. ご挨拶：見出しと文章間をさらに開ける */
  .company-greeting__title {
    margin-bottom: 60px !important;
  }

  /* 1. 歴史：700pxに広げ、文字サイズ大きく */
  .company-history {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .company-history__title {
    font-size: 30px;
  }
  .company-history__sub {
    font-size: 16px;
  }
  .company-history__year {
    font-size: 22px;
  }
  .company-history__event {
    font-size: 18px;
    line-height: 1.85;
  }

  /* 2. 数字：600px近く */
  .company-stats {
    padding-top: 67px;
    padding-bottom: 67px;
  }

  /* 3. 取扱店：見出し下を開け、文章大きく */
  .company-clients__title {
    margin: 0 0 56px !important;
  }
  .company-clients__lead {
    margin: 0 0 40px;
    font-size: 17px;
    line-height: 2.1;
  }
  .company-clients__list {
    gap: 16px 24px;
  }
  .company-clients__list li {
    font-size: 17px;
    line-height: 1.8;
  }

  /* 強みのタグ：縦一列、枠サイズはそのまま、中のアイコン・文字を大きく */
  .company-strength__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .strength-item {
    gap: 12px;
    padding: 4px 10px 4px 6px;
  }
  .strength-item__icon {
    width: 80px;
    height: 80px;
  }
  .strength-item__label {
    font-size: 19px;
    line-height: 1.55;
  }
}

/* ---------- company-hero スマホ上書き（920px以下の後に置いて優先させる） ---------- */
@media (max-width: 720px) {
  .company-hero__sub {
    margin: 48px 0 20px;
  }
  .company-hero__lead {
    margin-top: 200px;
  }
}

/* ---------- 常若のこころ（左米 / 中央理念 / 右神社の3分割）---------- */
.company-tokowaka {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  align-items: stretch;
  background: var(--bg);
}
.company-tokowaka__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.company-tokowaka__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% center;
  display: block;
}
.company-tokowaka__photo--rice img {
  -webkit-mask-image: linear-gradient(to right, #000 66%, transparent);
  mask-image: linear-gradient(to right, #000 66%, transparent);
}
.company-tokowaka__photo--shrine img {
  -webkit-mask-image: linear-gradient(to left, #000 66%, transparent);
  mask-image: linear-gradient(to left, #000 66%, transparent);
}
.company-tokowaka__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 6vw, 88px) clamp(18px, 2vw, 36px);
}
@media (max-width: 880px) {
  .company-tokowaka {
    display: block;
    border-top: 2px solid var(--indigo);
    background-image:
      linear-gradient(rgba(250, 250, 248, 0.82), rgba(250, 250, 248, 0.82)),
      url('../images/access-tourists-thumb.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .company-tokowaka__photo { display: none; }
  .company-tokowaka__text {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(56px, 9vw, 96px) 24px;
  }
}
.company-tokowaka__heading { margin-bottom: 18px; }
.company-tokowaka__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(28px, 3.2vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.14em;
  margin: 0;
}
.company-tokowaka__yomi {
  font-family: var(--ff-display);
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.3em;
  margin: 10px 0 0;
}
.company-tokowaka__sub {
  font-family: var(--ff-serif-jp);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: 0.08em;
  margin: 0 0 24px;
}
.company-tokowaka__body p {
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 2.15;
  margin: 0 0 1.1em;
  text-align: left;
}
.company-tokowaka__body p:last-child { margin-bottom: 0; }

@media (max-width: 880px) {
  .company-tokowaka {
    grid-template-columns: 1fr;
  }
  .company-tokowaka__photo {
    min-height: 220px;
    order: 1;
  }
  .company-tokowaka__photo--rice img,
  .company-tokowaka__photo--shrine img {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .company-tokowaka__text {
    order: 0;
    padding: clamp(72px, 12vw, 100px) 24px;
  }
}

/* ---------- 世古口商店の歩み（沿革・左年表 / 右写真）---------- */
.company-history {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: stretch;
  background: var(--bg-paper);
}
.company-history__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 100px) clamp(28px, 4vw, 64px);
}
@media (max-width: 880px) {
  .company-history {
    display: block;
    border-top: 2px solid var(--indigo);
    background-image:
      linear-gradient(rgba(248, 244, 232, 0.85), rgba(248, 244, 232, 0.85)),
      url('../images/company-history.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .company-history__photo { display: none; }
  .company-history__text {
    max-width: 760px;
    margin: 0 auto;
    padding: clamp(48px, 8vw, 80px) 24px;
  }
}
.company-history__heading { margin-bottom: clamp(28px, 3vw, 44px); }
.company-history__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  margin: 0 0 12px;
}
.company-history__sub {
  font-family: var(--ff-serif-jp);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--gold);
  letter-spacing: 0.08em;
  margin: 0;
}
.company-history__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}
.company-history__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  padding: 0 0 26px 26px;
  border-left: 2px solid var(--gold);
}
.company-history__item:last-child { padding-bottom: 0; }
.company-history__item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.company-history__year {
  font-family: var(--ff-serif-jp);
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 600;
  color: var(--indigo);
  line-height: 1.45;
}
.company-history__event {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.company-history__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.company-history__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 881px) {
  .company-history__photo img {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 18%);
    mask-image: linear-gradient(to right, transparent, #000 18%);
  }
}
@media (max-width: 880px) {
  .company-history {
    grid-template-columns: 1fr;
  }
  .company-history__photo { min-height: 240px; order: -1; }
  .company-history__photo img { -webkit-mask-image: none; mask-image: none; }
  .company-history__text { padding: clamp(44px, 9vw, 64px) 24px; }
}

/* ---------- ごあいさつ（左 精米工場写真 / 右 あいさつ文）---------- */
.company-greeting {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
  background: var(--bg);
}
.company-greeting__photo {
  margin: 0;
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.company-greeting__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (min-width: 881px) {
  .company-greeting__photo img {
    -webkit-mask-image: linear-gradient(to right, #000 82%, transparent);
    mask-image: linear-gradient(to right, #000 82%, transparent);
  }
}
@media (max-width: 880px) {
  .company-greeting {
    grid-template-columns: 1fr;
  }
  .company-greeting__photo {
    display: none;
  }
}
.company-greeting__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 7vw, 100px) clamp(28px, 4vw, 64px);
}
.company-greeting__title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  color: var(--indigo-deep);
  letter-spacing: 0.1em;
  margin: 0 0 clamp(24px, 3vw, 36px);
}
.company-greeting__body p {
  font-size: var(--fs-lead);
  color: var(--ink);
  line-height: 2.15;
  margin: 0 0 1.2em;
  word-break: auto-phrase;
  line-break: strict;
}
.company-greeting__name {
  font-family: var(--ff-serif-jp);
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--indigo);
  margin: clamp(16px, 2vw, 28px) 0 0;
  letter-spacing: 0.06em;
}
.company-greeting__name strong {
  font-size: 1.25em;
  font-weight: 600;
}
@media (max-width: 880px) {
  .company-greeting {
    grid-template-columns: 1fr;
  }
  .company-greeting__photo { min-height: 240px; order: -1; }
  .company-greeting__photo img { -webkit-mask-image: none; mask-image: none; }
  .company-greeting__text { padding: clamp(44px, 9vw, 64px) 24px; }
}

/* === 新商品 開発中プレースホルダー（はさかけ米 非表示対応 2026-06-09） === */
.product-card__photo--placeholder,
.products-list .product-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--bg-alt);
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(176, 138, 74, 0.06) 0,
    rgba(176, 138, 74, 0.06) 10px,
    transparent 10px,
    transparent 20px
  );
}
.products-list .product-card__media--placeholder {
  min-height: 240px;
}
.product-card__coming {
  font-family: var(--ff-serif-jp);
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 52px);
  letter-spacing: 0.16em;
  line-height: 1.7;
  color: var(--indigo);
}
.product-card__coming::before,
.product-card__coming::after {
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  margin: 0 auto;
  background: var(--gold);
}
.product-card__coming::before { margin-bottom: 14px; }
.product-card__coming::after { margin-top: 14px; }

/* ---------- アクセス地図 ライトボックス（クリックで拡大）---------- */
.access-info__map-illust.is-zoomable {
  cursor: zoom-in;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.access-info__map-illust.is-zoomable:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.access-info__map-illust.is-zoomable::after {
  content: "クリックで拡大";
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 11px;
  font-family: var(--ff-serif-jp);
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  pointer-events: none;
}
.map-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.map-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}
.map-lightbox__image {
  width: 95vw;
  max-height: 90vh;
  height: auto;
  object-fit: contain;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 12px 60px rgba(0,0,0,0.5);
}
.map-lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  border: 0;
  color: #222;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 300;
  transition: background 0.15s ease;
}
.map-lightbox__close:hover {
  background: #fff;
}
@media (hover: none) {
  .access-info__map-illust.is-zoomable::after {
    content: "タップで拡大";
  }
}

/* ---------- products.html その他の取り扱いセクション（中サイズ2カード） ---------- */
.products-list__sub {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px dashed var(--line);
}
.products-list__sub-title {
  font-family: var(--ff-serif-jp);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 700;
  color: var(--indigo-deep);
  letter-spacing: 0.12em;
  text-align: center;
  margin: 0 0 12px;
}
.products-list__sub-lead {
  text-align: center;
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1.85;
  margin: 0 auto 32px;
  max-width: 640px;
}
.products-list__sub-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.products-list .product-card--sub {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
}
.products-list .product-card--sub .product-card__media {
  flex: 0 0 180px;
  /* aspect-ratio は各画像個別に設定（saikamai → 3/5、 placeholder → 4/5） */
  max-height: 260px;
  height: auto;
  min-height: 0;
  overflow: hidden;
}
/* 新商品 開発中プレースホルダーは 4/5 維持 */
.products-list .product-card--sub .product-card__media--placeholder {
  aspect-ratio: 4 / 5;
}
.products-list .product-card--sub .product-card__image {
  height: 100%;
  width: 100%;
  min-height: 0;
  object-fit: contain;
}
.products-list .product-card--sub .product-card__name {
  font-size: clamp(16px, 1.6vw, 19px);
  margin-bottom: 6px;
  padding-bottom: 6px;
}
.products-list .product-card--sub .product-card__lead {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 10px;
}
.products-list .product-card--sub .product-card__body {
  flex: 1;
  padding: 12px 16px 14px 36px;
}
.products-list .product-card--sub .product-card__recommend {
  font-size: 12.5px;
  margin-top: auto;
}
.products-list .product-card--sub .product-card__media--placeholder {
  min-height: 160px;
}
.products-list .product-card--sub .product-card__coming {
  font-size: clamp(18px, 2.4vw, 24px);
}
.products-list .product-card--sub .product-card__lead,
.products-list .product-card--sub .product-card__recommend {
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}
@media (max-width: 1024px) {
  .products-list__sub-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 880px) {
  .products-list .product-card--sub .product-card__media {
    flex: 0 0 160px;
  }
}

/* ========================================================
   スマホ最終調整（2026-06-25 修正スクショ0625 対応）
   ======================================================== */

/* PC専用改行（スマホでは非表示にして自然改行）*/
.br-pc-only {
  display: none;
}
@media (min-width: 720px) {
  .br-pc-only {
    display: inline;
  }
}

/* スマホでリード文を自然改行（文節区切り＋句読点制御）*/
@media (max-width: 720px) {
  .products-list .product-card__lead,
  .products-list .product-card__recommend {
    word-break: auto-phrase;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }
}

/* こだわり項目を768px以下で1列化＋単語途中改行防止 */
@media (max-width: 768px) {
  .products-list .product-card__features {
    grid-template-columns: 1fr !important;
  }
  .products-list .product-card__features li {
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
}

/* その他取り扱いカード：スマホ幅(600px以下)で縦並び（画像上→テキスト下）*/
@media (max-width: 600px) {
  .products-list .product-card--sub {
    flex-direction: column !important;
    align-items: stretch !important;
  }
  .products-list .product-card--sub .product-card__media {
    flex: 0 0 auto !important;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 240px;
  }
  .products-list .product-card--sub .product-card__body {
    padding: 14px 18px 16px;
  }
}

/* index.html プレースホルダーカード（新商品 開発中）：商品名と説明文の間を広げ、下を狭く */
@media (max-width: 880px) {
  .product-card--coming .product-card__body {
    padding-top: 24px;
    padding-bottom: 10px;
  }
  .product-card--coming .product-card__name {
    margin-bottom: 16px;
  }
  .product-card--coming .product-card__sub {
    margin-bottom: 8px;
  }
}

/* スマホで地図ライトボックスを無効化（720px以下、クリック不可＋「クリックで拡大」非表示）*/
@media (max-width: 720px) {
  .access-info__map-illust.is-zoomable {
    cursor: default !important;
    pointer-events: none !important;
  }
  .access-info__map-illust.is-zoomable::after {
    display: none !important;
  }
}

/* CTA営業時間カード：480px以下の時間2行化CSS削除（指示外の改悪を取り消し）*/

/* ===== A: 3カード全体（access-cta__grid）を画面中央に強制配置 ===== */
@media (max-width: 720px) {
  section.access-cta .container .access-cta__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    margin-left: auto !important;
    margin-right: auto !important;
    max-width: min(380px, 92vw) !important;
    width: 100% !important;
  }
  /* カードを viewport幅以下に強制（min-width:auto による内部追従を遮断） */
  .access-cta__card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }
  .access-cta__card-body,
  .access-cta__hours-stack {
    min-width: 0 !important;
    max-width: 100% !important;
  }
  /* 時間ブロック：folding allowed＆font縮小で viewport内に収める */
  .access-cta__card-hours,
  .access-cta__hours-times {
    white-space: normal !important;
    word-break: break-word !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }
  .access-cta__card-hours {
    font-size: 14px !important;
    gap: 6px !important;
  }
  .access-cta__hours-weekday {
    font-size: 14px !important;
  }
}

/* ===== B: index.html お米カード（コシヒカリ・彩華米・新商品）の余白を統一 ===== */
@media (max-width: 880px) {
  .products .product-card .product-card__body {
    padding-top: 24px;
    padding-bottom: 14px;
  }
  .products .product-card .product-card__sub {
    margin-bottom: 8px;
  }
  .products .product-card .product-card__name {
    margin-bottom: 16px;
  }
}

/* ===== C, G: 営業時間 dd の構造化（PC1行/スマホ2行＋8:00と13:00縦揃え） ===== */
.hours-row {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}
.hours-row .hours-times {
  display: inline;
}
.hours-row .hours-sep {
  display: inline;
}
@media (max-width: 720px) {
  .hours-row .hours-times {
    display: inline-flex;
    flex-direction: column;
  }
  .hours-row .hours-sep {
    display: none;
  }
}

/* ===== D: その他取り扱いリード文「松竹梅のほかにも〜」の改行バランス改善 ===== */
.products-list__sub-lead {
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

/* ===== E: その他取り扱い 中サイズ「新商品 開発中」の文字を大きく ===== */
.products-list .product-card--sub .product-card__coming {
  font-size: clamp(24px, 3vw, 32px) !important;
}

/* ===== G: その他取り扱い 彩華米画像の左右余白解消（cover強制） ===== */
.products-list .product-card--sub.product-card--bag .product-card__image {
  object-fit: cover !important;
  padding: 0 !important;
}

/* ===== B: その他取り扱い 2カード（彩華米/新商品開発中）画像枠を統一 ===== */
@media (max-width: 600px) {
  .products-list .product-card--sub .product-card__media {
    aspect-ratio: 3 / 4 !important;
    max-height: 240px !important;
    max-width: 180px !important;
    margin: 0 auto !important;
  }
  /* 彩華米画像 963x1600 ≈ 3:5 縦長 */
  .products-list .product-card--sub .product-card__media:has(img[src*="saikamai"]) {
    aspect-ratio: 3 / 5 !important;
    max-width: 144px !important; /* 240 × 3/5 = 144（高さ240基準で幅算出） */
  }
  /* 彩華米画像の周りに少し白余白 */
  .products-list .product-card--sub .product-card__media:has(img[src*="saikamai"]) .product-card__image {
    padding: 6px !important;
    box-sizing: border-box !important;
  }
  .products-list .product-card--sub.product-card--bag .product-card__media {
    background: #fff;
  }
  .products-list .product-card--sub.product-card--bag .product-card__image {
    object-fit: cover !important;
    padding: 0 !important;
  }
  /* 新商品開発中プレースホルダーの文字サイズも枠に合わせて調整 */
  .products-list .product-card--sub .product-card__coming {
    font-size: clamp(20px, 3.5vw, 28px) !important;
  }
}

/* ===== E: 中サイズ「新商品 開発中」文字をさらに大きく ===== */
.products-list .product-card--sub .product-card__coming {
  font-size: clamp(36px, 5vw, 48px) !important;
}

/* ===== F: 商品カード商品名上げる＋説明文との間広げる（スマホ） ===== */
@media (max-width: 880px) {
  .products .product-card .product-card__body {
    padding-top: 16px !important;
  }
  .products .product-card .product-card__sub {
    margin-bottom: 4px !important;
  }
  .products .product-card .product-card__name {
    margin-bottom: 28px !important;
  }
  .products .product-card .product-card__desc {
    margin-bottom: 8px !important;
  }
}

/* ===== D: 「選ばれる理由」4カード説明文の改行制御（文節区切り） ===== */
.reason__desc,
.reason__title {
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}

/* ===== H: 「地元の食卓に」「伊勢志摩のお土産に」説明文改行制御 ===== */
.locale-card__body {
  word-break: auto-phrase;
  text-wrap: pretty;
  overflow-wrap: anywhere;
}


/* ===== その他の取り扱い（1枚構成）: カードを中央寄せ ===== */
@media (min-width: 1025px) {
  .products-list__sub-grid {
    grid-template-columns: minmax(0, 706px);
    justify-content: center;
  }
}
