/* =========================================================
   パン屋 ヒネモス ── まちのパン屋の、一日時刻表
   ========================================================= */

:root {
  --paper: #f6f0e4;        /* クラフト紙のような生成り */
  --paper-deep: #ede4d2;   /* 一段濃い紙色 */
  --ink: #2b241c;          /* 焦げ茶のインク */
  --ink-soft: #6b5f4e;     /* 薄めた文字色 */
  --crust: #b4552b;        /* 焼き色（アクセント） */
  --leaf: #4c6247;         /* 深い葉の緑 */
  --butter: #e5b13a;       /* バター色 */
  --line: #c9bba1;         /* 罫線 */
  --serif: "Shippori Mincho B1", serif;
  --sans: "Zen Kaku Gothic New", sans-serif;
  --latin: "Fraunces", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.9;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

/* 紙の質感（うっすら格子） */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(43,36,28,0.025) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(43,36,28,0.02) 0 1px, transparent 1px 28px);
}

main { position: relative; z-index: 1; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

/* ---------- ローディング幕 ---------- */
.curtain {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--ink);
  display: grid;
  place-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
.curtain.is-open { opacity: 0; visibility: hidden; }
.curtain__text {
  color: var(--paper);
  font-family: var(--serif);
  font-size: clamp(14px, 2.4vw, 18px);
  letter-spacing: 0.3em;
  animation: curtainText 1.2s ease both;
}
@keyframes curtainText {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

/* ---------- 写真プレースホルダー ---------- */
.photo { position: relative; overflow: hidden; background: var(--paper-deep); }
.photo img { width: 100%; height: 100%; object-fit: cover; }
.photo figcaption {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  padding-top: 8px;
}
/* 画像がまだ無いとき：点線の額縁に説明を出す */
.photo.is-empty img { display: none; }
.photo.is-empty::after {
  content: "〔 写真が入ります 〕\A" attr(data-photo);
  white-space: pre-wrap;
  position: absolute;
  inset: 10px;
  border: 1.5px dashed var(--line);
  border-radius: 6px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px;
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  background:
    radial-gradient(circle at 30% 20%, rgba(229,177,58,0.12), transparent 55%),
    radial-gradient(circle at 75% 80%, rgba(180,85,43,0.10), transparent 55%);
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: transparent;
  border-bottom: 1px solid transparent;
  color: var(--paper);
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease;
}
.header.is-scrolled {
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
}
.header__logo-mark { color: var(--crust); font-size: 20px; }
.header__status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(246,240,228,0.9);
  border: 1px solid rgba(246,240,228,0.4);
  border-radius: 999px;
  padding: 4px 12px;
  transition: color 0.4s, border-color 0.4s;
}
.header.is-scrolled .header__status {
  color: var(--ink-soft);
  border-color: var(--line);
}
.header__status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #9a9284;
}
.header__status.is-open .header__status-dot {
  background: var(--leaf);
  box-shadow: 0 0 0 3px rgba(76,98,71,0.2);
  animation: pulse 2s infinite;
}
.header__status.is-closed .header__status-dot { background: var(--crust); }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(76,98,71,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(76,98,71,0.08); }
}

.nav { margin-left: auto; display: flex; align-items: center; gap: 28px; }
.nav__list { display: flex; gap: 22px; }
.nav__list a {
  font-size: 13px;
  letter-spacing: 0.1em;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 4px 0;
  position: relative;
}
.nav__list a em {
  font-family: var(--latin);
  font-size: 10px;
  color: var(--butter);
  transition: color 0.4s;
}
.header.is-scrolled .nav__list a em { color: var(--crust); }
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}
.nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__tel {
  text-align: center;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 18px;
  border-radius: 4px;
  transition: background 0.3s;
  line-height: 1.5;
}
.nav__tel:hover { background: var(--crust); }
.nav__tel-label { display: block; font-size: 9px; letter-spacing: 0.2em; opacity: 0.8; }
.nav__tel-number { font-family: var(--latin); font-size: 15px; letter-spacing: 0.06em; }

.header__burger { display: none; }

/* ---------- ヒーロー（全画面写真） ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
/* 複数枚をゆっくりクロスフェード */
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero__bg img.is-active {
  opacity: 1;
  animation: heroZoom 9s ease-out both;
}
.hero__bg img.is-broken { display: none; }
@keyframes heroZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}
.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24,15,8,0.5) 0%,
    rgba(24,15,8,0.28) 42%,
    rgba(24,15,8,0.58) 100%
  );
}
/* 写真がまだ無いときは影を消して、置き場の案内を見せる */
.hero:has(.hero__bg.is-empty) .hero__shade { display: none; }
.hero:has(.hero__bg.is-empty) .hero__inner,
.hero:has(.hero__bg.is-empty) .hero__scroll,
.hero:has(.hero__bg.is-empty) .hero__vertical { color: var(--ink); text-shadow: none; }

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--paper);
  text-shadow: 0 1px 18px rgba(0,0,0,0.35);
  padding: 120px 20px 100px;
}
.hero__eyebrow {
  font-family: var(--latin);
  font-size: clamp(11px, 1.2vw, 13px);
  letter-spacing: 0.42em;
  color: rgba(246,240,228,0.85);
  margin-bottom: 26px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(40px, 6.8vw, 84px);
  line-height: 1.3;
  letter-spacing: 0.08em;
}
.hero__title-row { display: block; }
.hero__title em {
  font-family: var(--latin);
  font-weight: 300;
  color: var(--butter);
  font-size: 1.12em;
  padding: 0 0.06em;
}
.hero__lead {
  margin-top: 34px;
  font-size: clamp(13px, 1.5vw, 15px);
  color: rgba(246,240,228,0.88);
}
.hero__date-line {
  margin-top: 34px;
  font-size: 12px;
  letter-spacing: 0.22em;
  color: rgba(246,240,228,0.75);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.hero__date-sep { color: var(--butter); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--paper);
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.34em;
}
.hero__scroll i {
  width: 1px;
  height: 48px;
  overflow: hidden;
  position: relative;
  background: rgba(246,240,228,0.25);
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 50%;
  background: var(--paper);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  from { transform: translateY(-100%); }
  to   { transform: translateY(300%); }
}

.hero__vertical {
  position: absolute;
  right: clamp(10px, 1.8vw, 26px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: rgba(246,240,228,0.85);
}

/* ---------- マーキー帯 ---------- */
.marquee {
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  padding: clamp(16px, 1.6vw, 24px) 0;
  font-family: var(--serif);
  font-size: clamp(15px, 1.15vw, 20px);
  letter-spacing: 0.14em;
}
/* トラックは「同じ内容のグループ2つ」で構成し、-50%（＝グループ1つぶん）
   動かすことで継ぎ目なくループする。グループの中身はJSが画面幅に合わせて
   必要な数だけ複製するので、どんな画面幅でも右側に空白ができない。 */
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee var(--marquee-duration, 30s) linear infinite;
}
.marquee__group { display: flex; }
.marquee__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
/* 言葉は白でくっきり、区切りは控えめに ─ 文字が主役になるように */
.marquee__word { padding: 0 0.15em; }
.marquee__sep {
  margin: 0 1.6em;
  font-size: 0.62em;
  color: var(--butter);
  opacity: 0.6;
  letter-spacing: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee:hover .marquee__track { animation-play-state: paused; }

/* ---------- セクション共通 ---------- */
.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 6vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
}
.section__head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
  margin-bottom: clamp(36px, 5vw, 60px);
  flex-wrap: wrap;
}
.section__num {
  font-family: var(--latin);
  font-weight: 300;
  font-size: clamp(28px, 3.6vw, 44px);
  color: var(--crust);
}
.section__title {
  font-family: var(--serif);
  font-size: clamp(24px, 3.4vw, 38px);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.section__sub {
  margin-left: auto;
  font-family: var(--latin);
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* スクロールで浮かび上がる */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- 01 新着ニュース ---------- */
.news { padding-bottom: 0; }
.news__list { max-width: 920px; }
.news__item {
  display: grid;
  grid-template-columns: 110px 92px 1fr;
  align-items: baseline;
  gap: 18px;
  padding: 18px 6px;
  border-bottom: 1px dashed var(--line);
  transition: background 0.3s;
}
.news__item:first-child { border-top: 1px dashed var(--line); }
.news__item:hover { background: rgba(43,36,28,0.03); }
.news__date {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}
.news__tag {
  justify-self: start;
  width: 88px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 0;
  white-space: nowrap;
}
.news__tag--menu { color: #fff; background: var(--crust); border-color: var(--crust); }
.news__tag--event { color: #fff; background: var(--leaf); border-color: var(--leaf); }
.news__tag--media { color: var(--ink); background: var(--butter); border-color: var(--butter); }
.news__text {
  font-size: 14px;
  line-height: 1.9;
}

/* ---------- 02 時刻表 ---------- */
.timetable__note {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 36px;
}
.timetable__now {
  display: inline-flex;
  align-items: baseline;
  gap: 16px;
  background: var(--ink);
  color: var(--paper);
  padding: 12px 24px;
  border-radius: 4px;
  margin-bottom: 44px;
}
.timetable__now-label { font-size: 10px; letter-spacing: 0.2em; opacity: 0.75; }
.timetable__now-time {
  font-family: var(--latin);
  font-weight: 300;
  font-size: 30px;
  letter-spacing: 0.04em;
}
.timetable__now-msg { font-size: 12px; letter-spacing: 0.1em; color: var(--butter); }

.timetable__list {
  position: relative;
  max-width: 760px;
}
.timetable__list::before {
  content: "";
  position: absolute;
  left: 104px;
  top: 8px; bottom: 8px;
  border-left: 1.5px dashed var(--line);
}
.timetable__item {
  position: relative;
  display: grid;
  grid-template-columns: 84px 60px 1fr;
  align-items: start;
  padding: 22px 0;
  transition: opacity 0.4s;
}
.timetable__item::before {
  content: "";
  grid-column: 2;
  justify-self: center;
  margin-top: 14px;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--ink-soft);
  z-index: 1;
}
.timetable__time {
  font-family: var(--latin);
  font-weight: 300;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--ink);
  line-height: 1.3;
  grid-column: 1;
  grid-row: 1;
}
.timetable__body { grid-column: 3; grid-row: 1; padding-left: 4px; }
.timetable__body h3 {
  font-family: var(--serif);
  font-size: clamp(17px, 2vw, 21px);
  letter-spacing: 0.08em;
}
.timetable__body p { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

/* 過去の窯：うすく */
.timetable__item.is-past { opacity: 0.42; }
.timetable__item.is-past::before { background: var(--ink-soft); border-color: var(--ink-soft); }

/* いま焼きたて */
.timetable__item.is-now::before {
  background: var(--crust);
  border-color: var(--crust);
  box-shadow: 0 0 0 4px rgba(180,85,43,0.18);
  animation: pulse-now 1.8s infinite;
}
@keyframes pulse-now {
  0%, 100% { box-shadow: 0 0 0 4px rgba(180,85,43,0.18); }
  50% { box-shadow: 0 0 0 9px rgba(180,85,43,0.06); }
}
.timetable__item.is-now .timetable__time { color: var(--crust); }
.timetable__item.is-now .timetable__body h3::after {
  content: "いま焼きたて";
  display: inline-block;
  margin-left: 12px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--crust);
  border-radius: 999px;
  padding: 3px 12px;
  vertical-align: 3px;
  animation: badge-in 0.5s ease both;
}
@keyframes badge-in {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
.timetable__caption { font-size: 11px; color: var(--ink-soft); margin-top: 28px; letter-spacing: 0.1em; }

/* ---------- 02 旬のパン ---------- */
.shun {
  background: var(--ink);
  color: var(--paper);
  max-width: none;
}
.shun > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.section__head--light { border-color: var(--paper); }
.section__head--light .section__sub { color: rgba(246,240,228,0.6); }
.shun__lead {
  font-size: 14px;
  color: rgba(246,240,228,0.75);
  margin-bottom: 48px;
}
.shun__badge-sample {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--ink);
  background: var(--butter);
  border-radius: 999px;
  padding: 2px 10px;
  vertical-align: 2px;
}
.shun__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.4vw, 28px);
  align-items: start;
}
.shun__card {
  position: relative;
  border: 1px solid rgba(246,240,228,0.25);
  border-radius: 8px;
  padding: 0;
  transition: transform 0.4s ease, border-color 0.4s;
}
.shun__card:hover { transform: translateY(-6px); border-color: rgba(246,240,228,0.6); }
.shun__season {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.2em;
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 16px 18px 12px;
}
.shun__season em {
  font-family: var(--latin);
  font-size: 11px;
  color: rgba(246,240,228,0.55);
  letter-spacing: 0.1em;
}
/* 写真はカードの端までフルで見せる */
.shun__card .photo { aspect-ratio: 4 / 3; border-radius: 0; background: rgba(246,240,228,0.08); }
.shun__card .photo.is-empty::after { font-size: 11px; color: rgba(246,240,228,0.7); border-color: rgba(246,240,228,0.35); background: none; }
.shun__card h3 {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  margin-top: 16px;
  line-height: 1.6;
  padding: 0 18px;
}
.shun__card p { font-size: 12px; color: rgba(246,240,228,0.65); margin-top: 6px; padding: 0 18px 18px; }

/* いまの季節のカード：横いっぱいの大型フィーチャーカード */
.shun__card.is-in-season {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  grid-column: 1 / -1;
  order: -1;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  grid-template-rows: 1fr auto auto 1fr;
}
.shun__card.is-in-season:hover { transform: translateY(-6px); }
.shun__card.is-in-season .photo {
  grid-column: 1;
  grid-row: 1 / 5;
  aspect-ratio: auto;
  height: 100%;
  min-height: 420px;
  border-radius: 8px 0 0 8px;
  background: var(--paper-deep);
}
.shun__card.is-in-season .shun__season {
  grid-column: 2;
  grid-row: 2;
  font-size: 26px;
  padding: 0 clamp(24px, 3vw, 48px) 8px;
}
.shun__card.is-in-season h3 {
  grid-column: 2;
  grid-row: 3;
  font-size: clamp(22px, 2.4vw, 30px);
  margin-top: 0;
  padding: 0 clamp(24px, 3vw, 48px);
}
.shun__card.is-in-season p {
  grid-column: 2;
  grid-row: 4;
  align-self: start;
  font-size: 14px;
  margin-top: 12px;
  padding: 0 clamp(24px, 3vw, 48px) 0;
}
.shun__card.is-in-season .shun__season em,
.shun__card.is-in-season p { color: var(--ink-soft); }
.shun__card.is-in-season .photo.is-empty::after { color: var(--ink-soft); border-color: var(--line); }
.shun__card.is-in-season::before {
  content: "いまが旬";
  position: absolute;
  top: -14px; right: 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--ink);
  background: var(--butter);
  border-radius: 999px;
  padding: 5px 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* ---------- 03 パンの図鑑 ---------- */
.zukan { max-width: none; padding-right: 0; }
.zukan .section__head, .zukan__lead { max-width: 1120px; margin-left: auto; margin-right: auto; }
.zukan .section__head { margin-bottom: 20px; }
.zukan__lead { font-size: 14px; color: var(--ink-soft); margin-bottom: 40px; }
.zukan__stage { position: relative; }
.zukan__scroller {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  padding: 10px calc(max((100vw - 1120px) / 2, 20px)) 26px;
  scrollbar-width: none;
}
.zukan__scroller::-webkit-scrollbar { display: none; }
.zukan__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: color-mix(in srgb, #fffdf8 92%, transparent);
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(43,36,28,0.18);
  transition: background 0.3s, color 0.3s, transform 0.3s;
  display: grid;
  place-items: center;
}
.zukan__btn:hover {
  background: var(--crust);
  color: #fff;
  border-color: var(--crust);
}
.zukan__btn--prev { left: clamp(10px, 2.4vw, 32px); }
.zukan__btn--next { right: clamp(10px, 2.4vw, 32px); }
.zukan__btn:active { transform: translateY(-50%) scale(0.92); }
.zukan__card {
  flex: 0 0 clamp(220px, 24vw, 280px);
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px 16px 20px;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.zukan__card:hover {
  transform: translateY(-6px) rotate(-0.6deg);
  box-shadow: 0 16px 34px rgba(43,36,28,0.14);
}
.zukan__no {
  font-family: var(--latin);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--crust);
}
.zukan__card .photo { aspect-ratio: 1; border-radius: 4px; margin-top: 10px; }
.zukan__card h3 {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.08em;
  margin-top: 14px;
}
.zukan__desc { font-size: 12px; color: var(--ink-soft); margin-top: 4px; min-height: 3.4em; }
.zukan__price {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--latin);
  font-size: 18px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
  width: 100%;
}
.zukan__price small { font-family: var(--sans); font-size: 11px; color: var(--ink-soft); margin-left: 4px; }

/* ---------- 04 店のこと ---------- */
.about { background: var(--paper-deep); max-width: none; }
.about > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.photo--tall { aspect-ratio: 3 / 4; border-radius: 6px; }
.photo--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; border-radius: 6px; margin-top: 8px; }
.about__catch {
  font-family: var(--serif);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.about__text p { font-size: 14px; margin-bottom: 20px; }
.about__sign {
  font-family: var(--serif);
  letter-spacing: 0.2em;
  text-align: right;
  color: var(--ink-soft);
}

/* ---------- 05 きょうの窯場から（Instagram） ---------- */
.insta__lead {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.insta__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.8vw, 22px);
}
.insta__item {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fffdf8;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insta__item .photo { aspect-ratio: 1; }
.insta__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 34px rgba(43,36,28,0.14);
}
.insta__overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 30px 14px 12px;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--paper);
  background: linear-gradient(to top, rgba(43,36,28,0.75), transparent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s, transform 0.35s;
  text-align: right;
  pointer-events: none;
}
.insta__item:hover .insta__overlay { opacity: 1; transform: none; }
.insta__foot { text-align: center; margin-top: 44px; }
.insta__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.12em;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  padding: 14px 34px;
  transition: background 0.3s, transform 0.3s;
}
.insta__btn:hover { background: var(--crust); transform: translateY(-3px); }
.insta__btn-icon { color: var(--butter); font-size: 18px; }
.insta__note { font-size: 11px; color: var(--ink-soft); margin-top: 14px; letter-spacing: 0.1em; }

/* ---------- 06 取り置き・ご案内 ---------- */
.info { background: var(--leaf); color: var(--paper); max-width: none; }
.info > * { max-width: 1120px; margin-left: auto; margin-right: auto; }
.info .section__head--light .section__sub { color: rgba(246,240,228,0.6); }
.info__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  margin-bottom: 48px;
}
.info__reserve h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 30px);
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}
.info__reserve p { font-size: 14px; color: rgba(246,240,228,0.85); }
.info__tel {
  display: inline-block;
  margin-top: 24px;
  background: var(--paper);
  color: var(--ink);
  border-radius: 6px;
  padding: 14px 32px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.info__tel:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(0,0,0,0.25); }
.info__tel-label { display: block; font-size: 10px; letter-spacing: 0.2em; color: var(--ink-soft); }
.info__tel-number { font-family: var(--latin); font-size: 26px; letter-spacing: 0.04em; }
.info__reserve-note { font-size: 11px; margin-top: 16px; color: rgba(246,240,228,0.6); }

.info__table div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(246,240,228,0.35);
  font-size: 13px;
}
.info__table dt { letter-spacing: 0.14em; color: rgba(246,240,228,0.7); }
.info__map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 8px;
  filter: sepia(0.35) saturate(0.7);
}

/* ---------- フッター ---------- */
.footer {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 56px 20px 40px;
}
.footer__logo {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 0.24em;
}
.footer__word {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(246,240,228,0.6);
  margin-top: 12px;
}
.footer__copy {
  font-family: var(--latin);
  font-size: 11px;
  color: rgba(246,240,228,0.45);
  margin-top: 28px;
  letter-spacing: 0.1em;
}
.footer__copy span { font-family: var(--sans); }

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 900px) {
  html { scroll-padding-top: 70px; }

  .header { padding: 12px 16px; gap: 12px; }
  /* backdrop-filterがあるとfixedのナビがヘッダー内に閉じ込められるため外す */
  .header.is-scrolled { backdrop-filter: none; background: var(--paper); }
  .header__status { margin-left: auto; }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--paper);
    color: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.6, 0, 0.2, 1);
    z-index: 60;
  }
  .nav.is-open { transform: none; }
  .nav__list { flex-direction: column; gap: 22px; text-align: center; }
  .nav__list a { font-size: 17px; font-family: var(--serif); }
  .nav__list a em { color: var(--crust); }

  .header__burger {
    display: grid;
    gap: 6px;
    place-content: center;
    width: 44px; height: 44px;
    background: none;
    border: 1px solid currentColor;
    border-radius: 4px;
    cursor: pointer;
    color: inherit;
    z-index: 70;
  }
  .header__burger.is-open { color: var(--ink); }
  .header__burger span {
    width: 20px; height: 1.5px;
    background: currentColor;
    transition: transform 0.35s, opacity 0.35s;
  }
  .header__burger.is-open span:nth-child(1) { transform: translateY(3.75px) rotate(45deg); }
  .header__burger.is-open span:nth-child(2) { transform: translateY(-3.75px) rotate(-45deg); }

  .hero__vertical { display: none; }
  .hero__inner { padding: 100px 24px 90px; }
  .hero__lead br { display: none; }
  .hero__lead { max-width: 30em; }

  .news__item {
    grid-template-columns: auto auto;
    justify-content: start;
    gap: 6px 14px;
    padding: 16px 4px;
  }
  .news__text { grid-column: 1 / -1; }

  .timetable__list::before { left: 74px; }
  .timetable__item { grid-template-columns: 60px 28px 1fr; padding: 18px 0; }

  .shun__grid { grid-template-columns: repeat(2, 1fr); }
  /* スマホでは大型カードも通常の縦積みに戻す */
  .shun__card.is-in-season { display: block; }
  .shun__card.is-in-season .photo {
    aspect-ratio: 4 / 3;
    height: auto;
    min-height: 0;
    border-radius: 0;
  }
  .shun__card.is-in-season .shun__season { font-size: 20px; padding: 16px 18px 12px; }
  .shun__card.is-in-season h3 { font-size: 20px; margin-top: 16px; padding: 0 18px; }
  .shun__card.is-in-season p { margin-top: 6px; padding: 0 18px 18px; }

  .about__grid { grid-template-columns: 1fr; }
  .photo--tall { aspect-ratio: 4 / 3; }
  .photo--wide { aspect-ratio: 16 / 9; }

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

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

  .zukan__btn { width: 42px; height: 42px; font-size: 16px; }
}

@media (max-width: 540px) {
  .header { gap: 8px; }
  .header__logo { gap: 6px; }
  .header__logo-text { font-size: 13px; letter-spacing: 0.06em; white-space: nowrap; }
  .header__status { font-size: 9px; padding: 3px 8px; letter-spacing: 0.06em; }
  .header__status-text { white-space: nowrap; }
  .shun__grid { grid-template-columns: 1fr; }
  .section__sub { display: none; }
  .timetable__now { display: flex; flex-wrap: wrap; gap: 8px 16px; }
}

/* 動きを減らす設定の人向け */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg img.is-active { animation: none; }
  .hero__scroll i::after { animation: none; }
}
