@charset "UTF-8";
/* ============================================================
   晴れの日褻の日 style.css
   ※ assets/scss/style.scss と同期して更新すること（ビルド環境なし）
   ============================================================ */

/* ── CSS カスタムプロパティ ── */
:root {
  --color-text: #2b241d;
  --color-text-muted: #6f6657;
  --color-bg: #f8f7e3;
  --color-surface: #f2ddb6;
  --color-primary: #475d17;
  --color-primary-dark: #34460f;
  --color-accent: #bd5919;
  --color-accent-dark: #8c3211;
  --color-dark: #2b241d;
  --color-white: #ffffff;
  --color-border: #e0e0e0;
  --font-mincho: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
  --header-h: 4rem;
  --paper-grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}

/* ── ベース ── */
html {
  scroll-behavior: smooth;
  scrollbar-width: none; /* Firefox */
}
html::-webkit-scrollbar {
  display: none; /* Chrome / Safari / Edge */
}

/* Lenis（慣性スクロール）有効時の推奨スタイル。
   JSがhtmlに .lenis クラスを付与。ネイティブの滑らかスクロールは無効化して
   Lenisに一本化する。 */
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  position: relative;
  font-family: var(--font-mincho);
  font-size: clamp(0.875rem, 2.4vw, 1rem);
  line-height: 1.9;
  color: var(--color-text);
  background-color: var(--color-bg);
  letter-spacing: 0.04em;
  overflow-x: hidden;
}
/* 基準フォントサイズ＝14px（最小）〜16px。AGENTS 5-6（base 14px / min 12px） */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: var(--paper-grain);
  background-size: 10rem 10rem;
  opacity: 0.04;
  pointer-events: none;
  mix-blend-mode: multiply;
}

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

img {
  width: 100%;
}

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

.l-inner {
  width: 100%;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 64rem) {
  .l-inner {
    padding-inline: 2.5rem;
  }
}

/* ── ボタン ── */
.button {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  color: var(--color-white);
  background-color: var(--color-accent);
  border-radius: 62.4375rem;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
.button:hover {
  background-color: var(--color-accent-dark);
  transform: translateY(-0.125rem);
}

.button__icon {
  display: inline-flex;
}

.button--accent {
  background-color: var(--color-accent);
}

/* ── ヘッダー（FVでは非表示、コンセプトを半分過ぎたらふわっと出現） ── */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  background-color: rgba(248, 247, 227, 0.9);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(6px);
  /* 既定は非表示（上へ隠す） */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.header[data-visible=true] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 64rem) {
  .header__inner {
    padding-inline: 2.5rem;
  }
}

.header__logo {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--color-text);
}

.header__nav {
  display: none;
}
@media screen and (min-width: 64rem) {
  .header__nav {
    display: block;
    margin-inline: auto;
  }
}

.header__nav-list {
  display: flex;
  gap: 2.25rem;
}

.header__nav-link {
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  letter-spacing: 0.16em;
  color: var(--color-text);
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 0;
  height: 1px;
  background-color: var(--color-accent);
  transition: width 0.3s ease;
}
.header__nav-link:hover::after {
  width: 100%;
}

.header__tools {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header__sns {
  display: inline-flex;
  color: var(--color-text);
  transition: opacity 0.3s ease;
}
.header__sns:hover {
  opacity: 0.6;
}

/* ハンバーガー：2本線は同じ太さ。開くと両線が中央でクロスして×になる */
.header__hamburger {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
  width: 1.75rem;
  height: 1.75rem;
  cursor: pointer;
}

.header__hamburger-bar {
  display: block;
  width: 1.625rem;
  height: 0.125rem;
  background-color: var(--color-text);
  transition: transform 0.35s ease, background-color 0.35s ease;
}
body.is-drawer-open .header__hamburger-bar {
  background-color: var(--color-bg);
}

body.is-drawer-open .header__hamburger-bar:nth-child(1) {
  transform: translateY(0.25rem) rotate(45deg);
}
body.is-drawer-open .header__hamburger-bar:nth-child(2) {
  transform: translateY(-0.25rem) rotate(-45deg);
}

/* ── ドロワーメニュー ── */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary-dark);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
body.is-drawer-open .drawer {
  opacity: 1;
  visibility: visible;
}

.drawer__inner {
  text-align: center;
}

.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.drawer__link {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
  color: var(--color-bg);
  transition: opacity 0.3s ease;
}
.drawer__link:hover {
  opacity: 0.6;
}

.drawer__en {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  letter-spacing: 0.2em;
}

.drawer__ja {
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: rgba(248, 247, 227, 0.7);
}

.drawer__sns {
  display: inline-block;
  margin-top: 3rem;
  font-family: var(--font-serif);
  font-size: 0.9375rem;
  letter-spacing: 0.2em;
  color: var(--color-surface);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
}

/* ── ファーストビュー ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 35rem;
  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, transform 7s ease;
}
.hero__slide[data-tone=sepia] {
  filter: sepia(0.65) saturate(0.85) contrast(0.95) brightness(0.92);
}
.hero__slide[data-tone=color] {
  filter: saturate(0.92) contrast(0.97);
}
.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__filter {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(60, 58, 54, 0) 0%, rgba(54, 52, 48, 0.5) 50%, rgba(60, 58, 54, 0) 100%), rgba(58, 55, 50, 0.18);
  pointer-events: none;
}

.hero__grain {
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  background-size: 11.25rem 11.25rem;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.hero__title {
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(2.125rem, 9vw, 4rem);
  letter-spacing: 0.22em;
  line-height: 1.1;
  color: var(--color-white);
  text-shadow: 0 0 1rem rgba(0, 0, 0, 0.35);
}

.hero__lead {
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: clamp(0.8125rem, 3.4vw, 1rem);
  letter-spacing: 0.32em;
  line-height: 1.8;
  color: var(--color-white);
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.45);
}

/* hero__scroll は削除済み（PC・SP共通） */

@keyframes scroll-line {
  0% { transform: scaleY(0); }
  40% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── コンセプト（全画面・1段落・句読点でのみ改行） ── */
.concept {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: calc(var(--header-h) + 2rem);
  background-color: var(--color-surface);
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  background-size: 12.5rem 12.5rem;
  opacity: 0.12;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.concept__inner {
  position: relative;
  z-index: 1;
}

.concept__text {
  writing-mode: vertical-rl;
  height: min(64svh, 30rem);
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(1.25rem, 5vw, 1.75rem);
  letter-spacing: 0.18em;
  line-height: 3.6;
  color: var(--color-text);
}
/* 句読点（、。）以外の位置で改行させないため、節ごとに分割不可のかたまりにする。
   表示は JS（conceptReveal）が右の行から1行ずつふわっと制御する。 */
.concept__clause {
  display: inline-block;
}

/* ── 装飾（草花・葉）：余白にランダム配置。±45度以内。まずアニメなし ── */
.deco-field {
  position: absolute;
  inset: 0;
  z-index: 8; /* スタッキングのセクション(最大7)より手前に保つ */
  pointer-events: none;
  overflow: hidden;
}
.deco-field--sp {
  display: none;
}
@media screen and (max-width: 47.99rem) {
  /* SPは装飾を置くスペースがないため、散らした装飾は非表示。
     フッター真上の並び装飾（.shop__footer-deco）のみ残す。 */
  .deco-field--pc,
  .deco-field--sp {
    display: none;
  }
}
.deco-item {
  position: absolute;
  transform: rotate(var(--r, 0deg));
}
.deco-item img {
  display: block;
  width: 100%;
  height: auto;
}

/* SHOP下端：フッターから生えるように葉を等間隔で並べる */
.shop__footer-deco {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1%;
  padding-inline: 1.5rem;
  pointer-events: none;
}
.shop__footer-deco-item {
  flex: 1 1 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  transform: rotate(var(--r, 0deg));
  transform-origin: bottom center;
}
.shop__footer-deco-item img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 9.5rem;
  height: auto;
}
@media screen and (max-width: 47.99rem) {
  /* SPは本数を減らす */
  .shop__footer-deco-item:nth-child(even) {
    display: none;
  }
}

/* ── 共通セクション見出し（英字→縦書き→縦線、左上揃え） ── */
.sec-head {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}
.sec-head__en {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.sec-head__ja {
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  letter-spacing: 0.14em;
  line-height: 1.35;
  color: var(--color-primary);
}
.sec-head__line {
  width: 1px;
  height: 4.5rem;
  /* 縦書き見出し（ja列）の中央に揃える＝ja幅(=font-size)の半分 */
  margin-left: clamp(0.75rem, 2.5vw, 1.25rem);
  background-color: var(--color-accent);
}
/* 本文はたっぷり余白を空けて始める */
.sec-body {
  margin-top: 3rem;
}

/* Instagram は全幅で「見出しの右に本文」を配置 */
.insta__inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.insta__inner .sec-body {
  flex: 1;
  min-width: 0;
  margin-top: 1.25rem;
}
.insta__cta {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

@media screen and (min-width: 64rem) {
  .sec-body {
    margin-top: 4rem;
  }
  .insta__inner {
    column-gap: 4.5rem;
    row-gap: 4rem;
    flex-wrap: wrap;        /* ボタンを本文の下の行へ送る */
    align-items: center;    /* 本文を縦書き見出しに対して上下中央＝位置を下げる */
  }
  .insta__inner .sec-body {
    margin-top: 0;          /* 上揃えをやめ、中央配置に任せる */
  }
  .insta__cta {
    flex: 0 0 100%;         /* 独立した行（フル幅）で本文の下に配置 */
    justify-content: center;/* 下部・中央寄せ */
    margin-top: 0;
  }
}

/* ── 区切り写真バンド ── */
.band {
  height: 56svh;
  min-height: 17.5rem;
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}
@media screen and (min-width: 48rem) {
  .band {
    height: 64svh;
  }
}

/* ── スタッキング演出のレイヤー順（後のセクションほど手前） ──
   GSAP pin（script.js の stackSections）で前のセクションを画面上部に固定し、
   次のセクションが下から重なって積み上がる。その重なり順を z-index で固定する。 */
.band {
  position: relative; /* z-index 適用のため */
}
.hero {
  z-index: 1;
}
.concept {
  z-index: 2;
}
.concept + .band { /* Works前の写真 */
  z-index: 3;
}
.works {
  z-index: 4;
}
.works + .band { /* Instagram前の写真 */
  z-index: 5;
}
.insta {
  z-index: 6;
}
.shop {
  z-index: 7;
}

/* ── Works ── */
.works {
  position: relative;
  padding-block: 6rem;
  background-color: var(--color-bg); /* スタッキングで前の写真を覆うため不透明に */
}

.works__inner {
  position: relative;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
  /* 見出し左／本文を見出し右／カードは下（モバイル全幅・PCは見出し右） */
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 1.5rem;
  row-gap: 2rem;
  grid-template-areas:
    "head text"
    "cards cards";
}
.works__inner .sec-head {
  grid-area: head;
}
@media screen and (min-width: 64rem) {
  .works__inner {
    padding-inline: 2.5rem;
    column-gap: 4.5rem;
    grid-template-areas:
      "head text"
      "head cards";
  }
}

.works__text {
  grid-area: text;
  align-self: start;
  max-width: 35rem;
  margin-top: 1.25rem;
  font-size: 0.9375rem;
  line-height: 2;
  color: var(--color-text-muted);
}

.works__viewport {
  grid-area: cards;
  min-width: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.works__viewport::-webkit-scrollbar {
  display: none;
}

.works__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding-bottom: 0.5rem;
}

.work-card {
  scroll-snap-align: center;
  flex: 0 0 auto;
  width: min(78vw, 21.25rem);
}
@media screen and (min-width: 48rem) {
  .work-card {
    width: 22.5rem;
  }
}

.work-card__image {
  overflow: hidden;
  aspect-ratio: 3/4;
  margin-bottom: 1.25rem;
  border-radius: 8.75rem 8.75rem 0.5rem 0.5rem;
}
.work-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}
.work-card__image:hover img {
  transform: scale(1.05);
}

.work-card__no {
  display: none;
}

.work-card__title {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-block: 0.375rem 0.625rem;
}

.work-card__text {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--color-text-muted);
}

/* SP専用見出しパネル（PCでは非表示） */
.works__panel-head {
  display: none;
}

/* PC：横スクロール中はセクションを画面に固定（GSAP pin が制御。is-pinned付与時のみ） */
@media screen and (min-width: 64rem) {
  .works.is-pinned {
    height: 100svh;
    padding-block: 0;
    overflow: hidden;
  }
  .works.is-pinned .works__inner {
    height: 100svh;
    align-content: center;
  }
  .works.is-pinned .works__viewport {
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
  }
  .works.is-pinned .works__track {
    will-change: transform;
    padding-inline: 7.5rem;
    gap: 3rem;
  }
  .works.is-pinned .work-card {
    width: 28rem;
  }
}

/* ── Instagram ── */
.insta {
  position: relative;
  padding-block: 7.5rem;
  background-color: var(--color-bg); /* スタッキングで前の写真を覆うため不透明に */
}

.insta__inner {
  position: relative;
  z-index: 1;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 64rem) {
  .insta__inner {
    padding-inline: 2.5rem;
  }
}

.insta__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.25rem;
  max-width: 50rem; /* ギャラリーを少し広く取る（本文は別途制限） */
}

.insta__text {
  max-width: 38rem; /* 本文は読みやすい行長に制限 */
  font-size: 0.9375rem;
  line-height: 2.1;
  color: var(--color-text-muted);
}

/* Instagram 最新投稿（3枚の正方形サムネイル） */
.insta__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
}
.insta__post {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 0.5rem;
  background-color: var(--color-surface);
}
.insta__post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.insta__post:hover img {
  transform: scale(1.06);
}

/* ── Shop ── */
.shop {
  padding-block: 6rem 10rem;
  background-color: var(--color-surface);
  position: relative;
  overflow: hidden;
}
.shop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--paper-grain);
  background-size: 12.5rem 12.5rem;
  opacity: 0.1;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.shop__inner {
  position: relative;
  z-index: 2;
  max-width: 75rem;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media screen and (min-width: 64rem) {
  .shop__inner {
    padding-inline: 2.5rem;
  }
}

/* Shop 見出し＋写真の横並び */
.shop__head-row {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  overflow: hidden;
}

.shop__photo {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  /* 既定（SP）：左端2箇所を大Rに（上2箇所→左2箇所へ変更） */
  border-radius: 8.75rem 0.5rem 0.5rem 8.75rem;
  margin-top: 4rem; /* 写真の開始位置を下方へ */
}
.shop__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

@media screen and (max-width: 47.99rem) {
  .shop__head-row {
    overflow: visible;
    margin-right: -1.5rem;
  }
  .shop__photo {
    overflow: hidden;
  }
}

@media screen and (min-width: 48rem) {
  .shop__head-row {
    gap: 3rem;
  }
  .shop__photo {
    max-width: 44rem;       /* 横長に大きく */
    margin-top: 3rem;       /* 見出し横の開始位置を下げる */
    border-radius: 3.5rem;  /* 4隅を大Rに */
  }
  .shop__photo img {
    aspect-ratio: 16/9;     /* 横長にトリミング */
  }
  .shop__body {
    margin-top: 4.5rem;     /* 写真が大きくなった分、ショップ情報を下方へ */
  }
}

.shop__intro {
  font-family: var(--font-mincho);
  font-size: clamp(1.125rem, 3.4vw, 1.5rem);
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 2.5rem;
}

.shop__cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 48rem) {
  .shop__cols {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 3.5rem;
  }
}

.shop__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shop__row {
  display: flex;
  gap: 1.25rem;
  padding-block: 1.25rem;
  border-bottom: 1px solid var(--color-border);
}
.shop__row:first-child {
  border-top: 1px solid var(--color-border);
}

.shop__dt {
  flex: 0 0 5.5rem;
  font-family: var(--font-serif);
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  color: var(--color-primary);
}

.shop__dd {
  font-size: 0.9375rem;
  line-height: 1.8;
}

.shop__note {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.shop__link {
  color: var(--color-accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.125rem;
  transition: color 0.3s ease;
}
.shop__link:hover {
  color: var(--color-accent-dark);
}

.shop__qr {
  flex: 0 0 auto;
}

.shop__qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 10rem;
  padding: 1.25rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
}

.shop__qr-caption {
  font-family: var(--font-serif);
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
}

.shop__qr-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 7.5rem;
  height: 7.5rem;
  font-size: 0.8125rem;
  text-align: center;
  color: var(--color-text-muted);
  background-color: var(--color-bg);
  border: 1px dashed var(--color-border);
}

.shop__map {
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.shop__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}
/* PC：住所リストの右隣に配置し、リストの高さに合わせて伸縮 */
@media screen and (min-width: 48rem) {
  .shop__info {
    flex: 1 1 0;
  }
  .shop__map {
    flex: 0 0 48%;
    aspect-ratio: auto;
    min-height: 16rem;
  }
}

/* ── フッター ── */
.footer {
  padding-block: 3.5rem;
  background-color: var(--color-primary-dark);
  color: var(--color-bg);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  font-family: var(--font-mincho);
  font-size: 1.125rem;
  letter-spacing: 0.16em;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.7;
}

.footer__sns {
  display: inline-flex;
  color: var(--color-bg);
  transition: opacity 0.3s ease;
}
.footer__sns:hover {
  opacity: 0.6;
}

.footer__copy {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(248, 247, 227, 0.7);
}

/* ── 最新情報ポップアップ（右下固定） ── */
.news-pop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 80;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.75rem 1rem;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 62.4375rem;
  box-shadow: 0 0.375rem 1.25rem rgba(43, 36, 29, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(0.75rem);
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s ease;
}
.news-pop.is-shown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.news-pop:hover {
  border-color: var(--color-accent);
}

.news-pop__label {
  font-family: var(--font-sans);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--color-white);
  background-color: var(--color-accent);
  padding: 0.1875rem 0.5rem;
  border-radius: 62.4375rem;
}

.news-pop__text {
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--color-text);
}
@media screen and (max-width: 26.25rem) {
  .news-pop__text {
    display: none;
  }
}

.news-pop__icon {
  display: inline-flex;
  color: var(--color-accent);
}

/* ── SP専用モバイル修正 ── */
@media screen and (max-width: 47.99rem) {

  .insta__inner .sec-body {
    flex: 0 0 100%;
  }

  /* Works・Instagram に背景色を付けてheroが透けないようにする */
  .works,
  .insta {
    background-color: var(--color-bg);
  }
  /* band（区切り写真）は写真があるので背景が隠れる */

  /* Works（SP）デフォルト：縦積み。JS無効・アニメ無効設定でも全パネルを閲覧可能 */
  .works__track {
    flex-direction: column;
    width: 100%;
    gap: 2.5rem;
    padding-bottom: 0;
  }
  .work-card {
    width: 100%;
    scroll-snap-align: none;
  }

  /* Works（SP）横スクロール有効時：全画面4パネルを画面固定で横送り（GSAP pin が制御） */
  .works.is-pinned {
    height: 100svh;
    padding-block: 0;
    overflow: hidden;
  }
  .works.is-pinned .works__inner {
    height: 100svh;
    overflow: hidden;
    display: block;
    max-width: none;
    padding-inline: 0;
  }
  .works.is-pinned .works__inner > .sec-head,
  .works.is-pinned .works__inner > .works__text {
    display: none;
  }
  .works.is-pinned .works__viewport {
    height: 100%;
    overflow: hidden;
  }
  .works.is-pinned .works__track {
    flex-direction: row;
    width: calc(4 * 100vw);
    height: 100%;
    gap: 0;
    will-change: transform;
  }
  /* 見出しパネル（SP・横スクロール時のみ表示） */
  .works.is-pinned .works__panel-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    padding: calc(var(--header-h) + 2rem) 2rem 3rem;
    box-sizing: border-box;
    background-color: var(--color-bg);
    gap: 1.5rem;
  }
  .works.is-pinned .works__panel-head__text {
    font-size: 0.9375rem;
    line-height: 2;
    color: var(--color-text-muted);
  }
  /* work-card：店舗写真を窓枠形に切り抜き、均等な余白で中央配置
     （横スクロールで窓が1つずつ流れて見える） */
  .works.is-pinned .work-card {
    width: 100vw;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: calc(var(--header-h) + 1.5rem) 1.5rem 2rem;
    box-sizing: border-box;
    background-color: var(--color-bg);
  }
  .works.is-pinned .work-card__image {
    width: min(72vw, 18rem);
    aspect-ratio: 3/4;
    margin-bottom: 0;
    border-radius: 8.75rem 8.75rem 0.5rem 0.5rem; /* 上部アーチの窓枠 */
    overflow: hidden;
  }
  .works.is-pinned .work-card__title {
    padding-inline: 0;
    padding-top: 0;
    margin-block: 0;
    text-align: center;
  }
  .works.is-pinned .work-card__text {
    padding-inline: 0;
    padding-bottom: 0;
    max-width: 22rem;
    text-align: center;
  }

  /* Newポップアップの右余白を確保 */
  .news-pop {
    right: 1.5rem;
  }
}

/* ── モーション配慮 ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
