/* ==========================================================
   Cafe Hidamari / ひだまり珈琲店 — 統合スタイルシート
   （旧 style.css / index.css / menu.css / access.css / story.css を統合）
   ========================================================== */

/* ---- CSS変数 ---- */
:root {
  --color-main: #5C7A5A;       /* モスグリーン */
  --color-main-dark: #4A6249;
  --color-sub: #C1714F;        /* テラコッタ */
  --color-sub-dark: #A85E3E;
  --color-base: #FAF6EE;       /* ベージュ */
  --color-section: #F2EDE3;    /* セクション背景 */
  --color-wood: #B8956A;       /* ウッドトーン */
  --color-text: #2D2118;
  --color-text-sub: #7A6F66;

  --font-display: 'Noto Serif JP', serif;          /* 明朝 */
  --font-base: 'Noto Sans JP', sans-serif;         /* 本文 */
  --font-accent: 'Caveat', cursive;                /* 手書き風 */

  --section-padding: 96px 0;
  --section-padding-sp: 64px 0;
  --container-width: 1100px;
  --container-padding: 0 24px;

  --radius-btn: 6px;
  --radius-card: 10px;

  --shadow-soft: 0 4px 20px rgba(45, 33, 24, 0.08);
  --shadow-card: 0 6px 24px rgba(45, 33, 24, 0.10);
  --shadow-hover: 0 12px 36px rgba(45, 33, 24, 0.16);
}

/* ---- リセット ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-base);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
}

/* ---- コンテナ ---- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ---- セクション共通 ---- */
.section {
  padding: var(--section-padding);
  position: relative;
}

.section--bg {
  background-color: var(--color-section);
}

.section--cream {
  background-color: #F8F2E5;
}

.section__label {
  font-family: var(--font-accent);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--color-sub);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.section__label-en {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: var(--color-main);
  text-transform: uppercase;
  display: block;
  margin-bottom: 14px;
}

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.section__lead {
  font-size: 16px;
  color: var(--color-text-sub);
  line-height: 2;
  margin-bottom: 48px;
}

.section__header {
  margin-bottom: 56px;
}

.section__header--centered {
  text-align: center;
}

.section__header--centered .divider {
  margin: 18px auto 0;
}

.btn--mt {
  margin-top: 24px;
}

/* ---- CTAボタン ---- */
.btn--primary {
  display: inline-block;
  background-color: var(--color-sub);
  color: #FFFFFF;
  padding: 15px 36px;
  border-radius: var(--radius-btn);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
  cursor: pointer;
  border: none;
  box-shadow: 0 4px 14px rgba(193, 113, 79, 0.25);
}

.btn--primary:hover {
  background-color: var(--color-sub-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(193, 113, 79, 0.35);
}

.btn--outline {
  display: inline-block;
  background-color: transparent;
  color: #FFFFFF;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.18);
}

.btn--secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--color-sub);
  padding: 13px 30px;
  border-radius: var(--radius-btn);
  border: 1.5px solid var(--color-sub);
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  transition: background-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}

.btn--secondary:hover {
  background-color: var(--color-sub);
  color: #FFFFFF;
}

/* ---- スクロールアニメーション ---- */
.js-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.js-fade--left {
  transform: translateX(-32px);
}

.js-fade--left.is-visible {
  transform: translateX(0);
}

.js-fade--right {
  transform: translateX(32px);
}

.js-fade--right.is-visible {
  transform: translateX(0);
}

.js-fade--scale {
  transform: scale(0.94);
}

.js-fade--scale.is-visible {
  transform: scale(1);
}

/* stagger 用 */
.js-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.js-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.js-stagger.is-visible > *:nth-child(2) { transition-delay: 0.15s; }
.js-stagger.is-visible > *:nth-child(3) { transition-delay: 0.25s; }
.js-stagger.is-visible > *:nth-child(4) { transition-delay: 0.35s; }
.js-stagger.is-visible > *:nth-child(5) { transition-delay: 0.45s; }
.js-stagger.is-visible > *:nth-child(6) { transition-delay: 0.55s; }

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js-fade, .js-fade--left, .js-fade--right, .js-fade--scale,
  .js-stagger > * {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 246, 238, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 122, 90, 0.10);
  transition: box-shadow 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 2px 16px rgba(45, 33, 24, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.header__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-main);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.header__logo span {
  display: block;
  font-family: var(--font-accent);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-sub);
  letter-spacing: 0.03em;
  margin-top: 2px;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 36px;
}

.header__nav-item a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
  position: relative;
}

.header__nav-item a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-main);
  transition: width 0.25s ease;
}

.header__nav-item a:hover {
  color: var(--color-main);
}

.header__nav-item a:hover::after {
  width: 100%;
}

.header__nav-item a.is-current {
  color: var(--color-main);
}

.header__nav-item a.is-current::after {
  width: 100%;
}

.header__nav-cta {
  background-color: var(--color-sub);
  color: #FFFFFF !important;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.header__nav-cta:hover {
  background-color: var(--color-sub-dark);
  color: #FFFFFF !important;
  transform: translateY(-1px);
}

.header__nav-cta::after {
  display: none;
}

/* ハンバーガーボタン */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 4px;
  z-index: 110;
  position: relative;
}

.header__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-open .header__hamburger-line:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-open .header__hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* スマホナビオーバーレイ */
.header__mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-base);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.header__mobile-nav.is-open {
  opacity: 1;
  pointer-events: all;
}

.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 40px 24px;
}

.header__mobile-nav-item a {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.06em;
  padding: 16px 0;
  text-align: center;
  border-bottom: 1px solid rgba(92, 122, 90, 0.18);
  width: 220px;
  transition: color 0.2s ease;
}

.header__mobile-nav-item a:hover {
  color: var(--color-main);
}

.header__mobile-nav-cta {
  margin-top: 32px;
}

/* ---- FOOTER ---- */
.footer {
  background-color: #2D2118;
  color: rgba(250, 246, 238, 0.8);
  padding: 64px 0 32px;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-main), transparent);
}

.footer__inner {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-base);
  letter-spacing: 0.06em;
}

.footer__logo-sub {
  font-family: var(--font-accent);
  font-size: 18px;
  color: var(--color-sub);
  letter-spacing: 0.03em;
  margin-top: 4px;
}

.footer__catch {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.55);
  margin-top: 12px;
  line-height: 1.7;
}

.footer__nav-list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer__nav-item a {
  font-size: 13px;
  color: rgba(250, 246, 238, 0.7);
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer__nav-item a:hover {
  color: var(--color-base);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 246, 238, 0.12);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.footer__portfolio-note {
  font-size: 11px;
  color: rgba(250, 246, 238, 0.45);
  letter-spacing: 0.03em;
  text-align: center;
}

.footer__copy {
  font-size: 12px;
  color: rgba(250, 246, 238, 0.4);
  letter-spacing: 0.05em;
}

/* ---- ページヘッダー（各ページ共通） ---- */
.page-header {
  position: relative;
  height: 360px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 56px;
  overflow: hidden;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
  transform: scale(1.05);
  animation: slowZoom 12s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.08); }
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,33,24,0.1) 0%, rgba(45,33,24,0.5) 100%);
}

.page-header__content {
  position: relative;
  z-index: 1;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
}

.page-header__en {
  font-family: var(--font-accent);
  font-size: 28px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.page-header__ja {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

/* ---- テクスチャオーバーレイ（紙っぽさ） ---- */
.texture-overlay {
  position: relative;
}

.texture-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.04;
  z-index: 0;
}

/* ---- 区切り装飾ライン ---- */
.divider {
  width: 56px;
  height: 2px;
  background-color: var(--color-main);
  margin: 18px 0 24px;
  position: relative;
}

.divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background-color: var(--color-sub);
  border-radius: 50%;
}

/* ============================================================
   トップページ（index）固有スタイル
   ============================================================ */

/* ---- ヒーロースライドショー ---- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease-in-out, transform 6s ease-out;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1.0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(45, 33, 24, 0.6) 0%,
    rgba(45, 33, 24, 0.25) 60%,
    transparent 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--container-padding);
  padding-left: 56px;
}

.hero__en {
  font-family: var(--font-accent);
  font-size: 32px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1;
  transition-delay: 0.15s;
}

.hero__divider {
  width: 56px;
  height: 1px;
  background-color: rgba(255,255,255,0.55);
  margin: 18px 0;
  transition-delay: 0.25s;
}

.hero__catchcopy {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  color: #FFFFFF;
  line-height: 1.45;
  margin-bottom: 24px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 16px rgba(45,33,24,0.25);
  transition-delay: 0.35s;
}

.hero__sub {
  font-family: var(--font-base);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 2.0;
  margin-bottom: 44px;
  letter-spacing: 0.06em;
  text-shadow: 0 2px 8px rgba(45,33,24,0.3);
  transition-delay: 0.45s;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  transition-delay: 0.55s;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-accent);
  font-size: 16px;
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.8), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 1px;
  height: 16px;
  background: rgba(255,255,255,0.9);
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { top: -16px; }
  100% { top: 40px; }
}

/* ---- こだわり3点 ---- */
.features__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: center;
}

.features__item {
  padding: 48px 28px 40px;
  background-color: rgba(255,255,255,0.6);
  border-radius: var(--radius-card);
  border: 1px solid rgba(92, 122, 90, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
}

.features__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  background-color: rgba(255,255,255,0.85);
}

.features__item-num {
  font-family: var(--font-accent);
  font-size: 38px;
  color: var(--color-sub);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.features__item-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-text);
  margin-bottom: 18px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.features__item-text {
  font-size: 14.5px;
  color: var(--color-text-sub);
  line-height: 1.95;
}

/* ---- メニュー抜粋 ---- */
.menu-preview__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.menu-preview__item {
  border-radius: var(--radius-card);
  overflow: hidden;
  background-color: #FFFFFF;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-preview__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.menu-preview__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.menu-preview__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.menu-preview__item:hover .menu-preview__img {
  transform: scale(1.06);
}

.menu-preview__body {
  padding: 18px 18px 20px;
  text-align: center;
}

.menu-preview__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}

.menu-preview__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-sub);
}

.menu-preview__cta {
  text-align: center;
}

/* ---- ストーリー（左右交互セクション/トップ用） ---- */
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.story-row__img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  position: relative;
}

.story-row__img-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 1.5px solid var(--color-main);
  border-radius: var(--radius-card);
  z-index: -1;
  opacity: 0.4;
}

.story-row__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.story-row__img-wrap:hover .story-row__img {
  transform: scale(1.04);
}

.story-row__body {
  padding: 16px 0;
}

.story-row__num {
  font-family: var(--font-accent);
  font-size: 36px;
  color: var(--color-sub);
  line-height: 1;
  margin-bottom: 8px;
}

.story-row__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 0;
}

.story-row__text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 2.0;
  margin-bottom: 14px;
}

/* ---- 世界観バナー ---- */
.banner {
  position: relative;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.7);
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

.banner.is-visible .banner__bg {
  transform: scale(1);
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(45, 33, 24, 0.35);
}

.banner__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--container-padding);
}

.banner__text {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 36px;
  color: #FFFFFF;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-shadow: 0 2px 16px rgba(45,33,24,0.4);
}

.banner__sub {
  font-family: var(--font-accent);
  font-size: 22px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.03em;
  margin-top: 12px;
}

/* ---- NEWS ---- */
.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 800px;
  margin: 0 auto;
}

.news__item {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(92, 122, 90, 0.14);
}

.news__item:first-child {
  border-top: 1px solid rgba(92, 122, 90, 0.14);
}

.news__date {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news__cat {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: var(--color-main);
  background-color: rgba(92, 122, 90, 0.12);
  padding: 2px 10px;
  border-radius: 999px;
  margin-right: 12px;
  letter-spacing: 0.05em;
}

.news__link {
  font-size: 16px;
  color: var(--color-text);
  transition: color 0.2s ease;
  flex: 1;
}

.news__link:hover {
  color: var(--color-main);
}

/* ---- ACCESS簡易 ---- */
.access-brief__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.access-brief__map {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.access-brief__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.access-brief__dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 24px;
  align-items: start;
}

.access-brief__dt {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-main);
  letter-spacing: 0.1em;
  padding-top: 4px;
  white-space: nowrap;
}

.access-brief__dd {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.85;
}

/* ============================================================
   メニューページ
   ============================================================ */

.menu-tabs {
  position: sticky;
  top: 72px;
  z-index: 50;
  background-color: rgba(250, 246, 238, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(92, 122, 90, 0.18);
  padding: 0;
}

.menu-tabs .container {
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.menu-tabs__list {
  display: flex;
  gap: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.menu-tabs__btn {
  background: none;
  border: none;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-sub);
  padding: 18px 32px;
  cursor: pointer;
  letter-spacing: 0.08em;
  position: relative;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.menu-tabs__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.menu-tabs__btn.is-active {
  color: var(--color-main);
}

.menu-tabs__btn.is-active::after {
  transform: scaleX(1);
}

.menu-tabs__btn:hover {
  color: var(--color-main);
}

/* ---- メニューセクション ---- */
.menu-section__title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin-bottom: 44px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgba(92, 122, 90, 0.15);
}

.menu-section__title-en {
  font-family: var(--font-accent);
  font-size: 38px;
  color: var(--color-sub);
  line-height: 1;
}

.menu-section__title-ja {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: 0.08em;
}

/* ---- カテゴリー小見出し ---- */
.menu-category {
  margin-bottom: 56px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-main);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(92, 122, 90, 0.22);
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.menu-category__name-jp {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--color-sub);
  text-transform: none;
  letter-spacing: 0.03em;
}

/* ---- メニューカード（4:3グリッド） ---- */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.menu-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  background-color: rgba(255,255,255,0.7);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(92, 122, 90, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.menu-card__img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.menu-card:hover .menu-card__img {
  transform: scale(1.06);
}

.menu-card__body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
  gap: 12px;
}

.menu-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text);
  letter-spacing: 0.03em;
}

.menu-card__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-sub);
  white-space: nowrap;
  flex-shrink: 0;
}

.menu-card__desc {
  font-size: 13.5px;
  color: var(--color-text-sub);
  line-height: 1.85;
}

/* ---- スイーツグリッド（縦長アスペクト） ---- */
.sweets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.sweets-card {
  background-color: rgba(255,255,255,0.75);
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(92, 122, 90, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.sweets-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.sweets-card__img-wrap {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.sweets-card__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.sweets-card:hover .sweets-card__img {
  transform: scale(1.06);
}

.sweets-card__body {
  padding: 24px 22px 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.sweets-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

.sweets-card__desc {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.85;
  margin-bottom: 16px;
  flex: 1;
}

.sweets-card__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-sub);
}

/* ---- メニュー注意書き ---- */
.menu-note__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
}

.menu-note__item {
  font-size: 14px;
  color: var(--color-text-sub);
  padding-left: 18px;
  position: relative;
  line-height: 1.8;
}

.menu-note__item::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--color-main);
}

/* ============================================================
   こだわりページ（story.html）
   ============================================================ */

/* ---- オーナーメッセージ ---- */
.owner-message__inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.owner-message__blockquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-text);
  line-height: 2.0;
  letter-spacing: 0.06em;
  margin-bottom: 44px;
  position: relative;
  padding: 36px 48px;
}

.owner-message__blockquote::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 96px;
  color: rgba(92, 122, 90, 0.18);
  position: absolute;
  top: -8px;
  left: 0;
  line-height: 1;
}

.owner-message__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 44px;
}

.owner-message__avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  border: 3px solid rgba(92, 122, 90, 0.25);
  background-size: cover;
  background-position: center;
}

.owner-message__name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text-sub);
  letter-spacing: 0.1em;
}

.owner-message__body {
  text-align: left;
  padding: 36px 44px;
  background-color: rgba(255,255,255,0.6);
  border-radius: var(--radius-card);
  border: 1px solid rgba(92, 122, 90, 0.10);
}

.owner-message__text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2.0;
  margin-bottom: 18px;
}

.owner-message__text:last-child {
  margin-bottom: 0;
}

/* ---- こだわりセクション（交互） ---- */
.story-section__inner {
  display: grid;
  gap: 72px;
  align-items: center;
  grid-template-columns: 1fr 1fr;
}

.story-section__img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  position: relative;
}

.story-section__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}

.story-section__img-wrap:hover .story-section__img {
  transform: scale(1.04);
}

.story-section__number {
  font-family: var(--font-accent);
  font-size: 64px;
  color: var(--color-sub);
  opacity: 0.45;
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.story-section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 30px;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

.story-section__text {
  font-size: 16px;
  color: var(--color-text);
  line-height: 2.0;
  margin-bottom: 18px;
}

.story-section__text:last-child {
  margin-bottom: 0;
}

/* ---- ギャラリー（ライトボックス対応） ---- */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gallery__item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

.gallery__img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.06);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(45,33,24,0);
  transition: background-color 0.3s ease;
  pointer-events: none;
}

.gallery__item:hover::after {
  background-color: rgba(45,33,24,0.18);
}

.gallery__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.85);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.gallery__icon::before,
.gallery__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-main);
}

.gallery__icon::before {
  width: 14px;
  height: 2px;
}

.gallery__icon::after {
  width: 2px;
  height: 14px;
}

.gallery__item:hover .gallery__icon {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

/* ライトボックス */
.lightbox {
  position: fixed;
  inset: 0;
  background-color: rgba(20, 14, 8, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 32px;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: all;
}

.lightbox__img {
  max-width: 92vw;
  max-height: 88vh;
  border-radius: var(--radius-card);
  box-shadow: 0 12px 48px rgba(0,0,0,0.5);
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  transition: background-color 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox__nav--prev { left: 24px; }
.lightbox__nav--next { right: 24px; }

/* ---- CTAセクション ---- */
.story-cta__inner {
  text-align: center;
  padding: 32px 0;
}

.story-cta__sub {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--color-sub);
  margin-bottom: 4px;
}

.story-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 34px;
  color: var(--color-text);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}

.story-cta__text {
  font-size: 15px;
  color: var(--color-text-sub);
  line-height: 1.9;
  margin-bottom: 36px;
}

.story-cta__btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   アクセスページ
   ============================================================ */

.access-map__embed {
  width: 100%;
}

.access-map__embed iframe {
  width: 100%;
  height: 440px;
  border: 0;
  display: block;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
}

.access-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.access-info__card {
  padding: 36px 30px;
  background-color: rgba(255,255,255,0.7);
  border-radius: var(--radius-card);
  border: 1px solid rgba(92, 122, 90, 0.10);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.access-info__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.access-info__card-title {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 0.04em;
}

.access-info__card-icon {
  flex-shrink: 0;
}

.access-info__address {
  font-style: normal;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.85;
  margin-bottom: 12px;
}

.access-info__sub {
  font-size: 13px;
  color: var(--color-text-sub);
  line-height: 1.75;
}

.access-info__sub-text {
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.75;
  margin-bottom: 16px;
}

.access-info__hours {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.access-info__hours-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.access-info__hours-day {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-main);
  min-width: 64px;
  letter-spacing: 0.05em;
}

.access-info__hours-time {
  font-size: 15px;
  color: var(--color-text);
}

.access-info__sns {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access-info__sns-item {
  font-size: 14px;
  color: var(--color-text-sub);
  letter-spacing: 0.03em;
}

/* ---- お問い合わせフォーム ---- */
.contact-form {
  max-width: 680px;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.78);
  border-radius: var(--radius-card);
  padding: 56px 60px;
  border: 1px solid rgba(92, 122, 90, 0.10);
  box-shadow: var(--shadow-soft);
}

.contact-form__field {
  margin-bottom: 28px;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.contact-form__required {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #FFFFFF;
  background-color: var(--color-sub);
  padding: 2px 8px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  font-family: var(--font-base);
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-base);
  border: 1px solid rgba(92, 122, 90, 0.28);
  border-radius: var(--radius-btn);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  line-height: 1.6;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--color-main);
  box-shadow: 0 0 0 3px rgba(92, 122, 90, 0.12);
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: rgba(122, 111, 102, 0.45);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form__privacy {
  margin-bottom: 28px;
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-text-sub);
  line-height: 1.65;
}

.contact-form__checkbox {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--color-main);
  cursor: pointer;
}

.contact-form__checkbox-text {
  font-size: 14px;
}

.contact-form__link {
  color: var(--color-main);
  text-decoration: underline;
  transition: opacity 0.2s ease;
}

.contact-form__link:hover {
  opacity: 0.75;
}

.contact-form__submit {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form__submit .btn--primary {
  padding: 16px 64px;
  font-size: 16px;
}

.contact-form__note {
  font-size: 12px;
  color: var(--color-text-sub);
  text-align: center;
  opacity: 0.7;
}

/* ============================================================
   レスポンシブ（タブレット）
   ============================================================ */
@media (max-width: 1023px) {
  .section__title { font-size: 26px; }
  .page-header__ja { font-size: 28px; }
  .page-header__en { font-size: 22px; }

  .hero__catchcopy { font-size: 42px; }
  .hero__content { padding-left: 32px; }

  .features__list { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; gap: 24px; }
  .menu-preview__list { grid-template-columns: repeat(2, 1fr); }

  .story-row { grid-template-columns: 1fr; gap: 36px; }
  .story-row__img-wrap::before { display: none; }

  .access-brief__inner { grid-template-columns: 1fr; gap: 36px; }

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

  .story-section__inner { grid-template-columns: 1fr; gap: 36px; }
  .gallery__grid { grid-template-columns: repeat(3, 1fr); }

  .access-info__grid { grid-template-columns: 1fr 1fr; }
  .access-info__card:last-child { grid-column: 1 / -1; }

  .contact-form { padding: 44px 40px; }
}

/* ============================================================
   レスポンシブ（スマホ）
   ============================================================ */
@media (max-width: 767px) {
  :root { --section-padding: var(--section-padding-sp); }

  .section__title { font-size: 22px; }
  .section__lead { font-size: 14.5px; margin-bottom: 32px; }
  .section__header { margin-bottom: 36px; }
  .page-header { height: 240px; padding-bottom: 36px; }
  .page-header__ja { font-size: 22px; }
  .page-header__en { font-size: 20px; }

  .header__inner { height: 60px; }
  .header__logo { font-size: 19px; }
  .header__logo span { font-size: 12px; }
  .header__nav { display: none; }
  .header__hamburger { display: flex; }
  .header__mobile-nav { display: flex; }

  .menu-tabs { top: 60px; }

  .hero__content { padding-left: 24px; padding-right: 24px; }
  .hero__en { font-size: 24px; }
  .hero__catchcopy { font-size: 30px; }
  .hero__sub { font-size: 14px; margin-bottom: 32px; }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero__cta .btn--primary,
  .hero__cta .btn--outline { text-align: center; width: 100%; }
  .hero__scroll { display: none; }

  .features__list { grid-template-columns: 1fr; gap: 20px; }
  .features__item { padding: 36px 24px 32px; }

  .menu-preview__list { grid-template-columns: 1fr; gap: 16px; }
  .menu-preview__item { display: flex; align-items: stretch; }
  .menu-preview__img-wrap { width: 130px; flex-shrink: 0; aspect-ratio: 1; }
  .menu-preview__body { flex: 1; padding: 14px; text-align: left; display: flex; flex-direction: column; justify-content: center; }

  .banner { height: 280px; }
  .banner__text { font-size: 22px; letter-spacing: 0.08em; }
  .banner__sub { font-size: 18px; }

  .news__item { flex-direction: column; gap: 6px; padding: 16px 0; }
  .news__cat { margin-right: 0; }

  .access-brief__inner { gap: 28px; }
  .access-brief__map iframe { height: 240px; }

  .footer__top { flex-direction: column; gap: 24px; margin-bottom: 32px; }
  .footer__nav-list { gap: 18px; }

  /* メニューページ */
  .menu-tabs__btn { padding: 14px 18px; font-size: 13px; }
  .menu-section__title { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 28px; }
  .menu-section__title-en { font-size: 30px; }
  .menu-section__title-ja { font-size: 16px; }

  .menu-card { grid-template-columns: 110px 1fr; }
  .menu-card__img { min-height: 110px; }
  .menu-card__body { padding: 14px 14px 14px 16px; }
  .menu-card__top { flex-direction: column; gap: 4px; align-items: flex-start; }
  .menu-card__name { font-size: 15px; }
  .menu-card__price { font-size: 15px; }
  .menu-card__desc { font-size: 12.5px; }

  .sweets-grid { grid-template-columns: 1fr; gap: 20px; }
  .sweets-card__body { padding: 18px 18px 22px; }

  /* こだわりページ */
  .story-section__inner { gap: 28px; }
  .story-section__inner--img-right .story-section__img-wrap { order: -1; }
  .story-section__number { font-size: 44px; }
  .story-section__title { font-size: 22px; }
  .story-section__text { font-size: 14.5px; }

  .owner-message__body { padding: 26px 22px; }
  .owner-message__blockquote { font-size: 18px; padding: 22px 18px; }
  .owner-message__blockquote::before { font-size: 60px; }

  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  .story-cta__title { font-size: 24px; }
  .story-cta__btns { flex-direction: column; align-items: stretch; }

  /* アクセスページ */
  .access-map__embed iframe { height: 280px; }
  .access-info__grid { grid-template-columns: 1fr; gap: 16px; }
  .access-info__card:last-child { grid-column: auto; }
  .access-info__card { padding: 26px 22px; }

  .contact-form { padding: 28px 20px; }
  .contact-form__submit .btn--primary { width: 100%; padding: 16px; }
}

/* ============================================================
   プライバシーポリシー
   ============================================================ */
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 24px 88px;
}
.privacy-content h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 32px;
  color: var(--color-main);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.privacy-content .privacy-date {
  font-size: 13px;
  color: var(--color-text-sub);
  margin-bottom: 48px;
}
.privacy-content h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
  margin: 36px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(92, 122, 90, 0.22);
  letter-spacing: 0.04em;
}
.privacy-content p,
.privacy-content li {
  font-size: 15px;
  line-height: 1.95;
  color: var(--color-text-sub);
}
.privacy-content ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-top: 8px;
}
.privacy-content li {
  margin-bottom: 4px;
}
.privacy-content a {
  color: var(--color-main);
  text-decoration: underline;
}
.privacy-back {
  margin-top: 56px;
  text-align: center;
}
