/* ==========================================================
   kinari coffee — style.css
   design-guideline.md のトークン定義に従う
   ========================================================== */

/* ---------- 1. デザイントークン ---------- */
:root {
  /* レイアウト */
  --container-max: 1300px;
  --container-pad: 70px;
  --section-gap: 150px;
  --block-gap-lg: 56px;
  --block-gap-md: 32px;
  --block-gap-sm: 16px;
  --card-gap: 24px;

  /* カラー */
  --color-bg: #f6f2e2;
  --color-card: #e8e4d3;
  --color-beige-deep: #dcd3be;
  --color-ink: #1e1c18;
  --color-muted: #6b6457;
  --color-dark: #5a5142;
  --color-footer: #222222;
  --color-white: #ffffff;
  --color-disabled: #8a857b;
  --color-img-fallback: #e5e0cf;

  /* タイポグラフィ */
  --fs-hero-en: 84px;
  --fs-hero-ja: 14px;
  --fs-heading-en: 60px;
  --fs-heading-label: 13px;
  --fs-lead: 28px;
  --fs-body: 15px;
  --fs-card-title: 15px;
  --fs-card-sub: 12px;
  --fs-price: 15px;
  --fs-price-tax: 11px;
  --fs-cat-nav: 15px;
  --fs-meta: 13px;
  --fs-button: 14px;
  --fs-copyright: 12px;

  /* フォント */
  --font-en: "Cormorant Garamond", serif;
  --font-ja: "Zen Kaku Gothic New", sans-serif;

  /* アニメーション */
  --hover-duration: 0.3s;

  --radius-img: 16px;
}

@media (max-width: 1024px) {
  :root {
    --container-pad: 40px;
    --section-gap: 120px;
    --fs-hero-en: 60px;
    --fs-heading-en: 46px;
  }
}

@media (max-width: 767px) {
  :root {
    --container-pad: 24px;
    --section-gap: 96px;
    --fs-hero-en: 40px;
    --fs-hero-ja: 13px;
    --fs-heading-en: 40px;
    --fs-heading-label: 12px;
    --fs-lead: 24px;
  }
}

/* ---------- 2. ベース ---------- */
html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-ja);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

figure {
  overflow: hidden;
  background-color: var(--color-img-fallback);
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.sp-only {
  display: none;
}

/* ---------- 3. 共通コンポーネント ---------- */

/* 見出し（EN大＋JP小ラベル・縦積み） */
.c-heading {
  display: flex;
  flex-direction: column;
  gap: var(--block-gap-sm);
  line-height: 1;
}

.c-heading .en {
  font-family: var(--font-en);
  font-size: var(--fs-heading-en);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
}

.c-heading .en.--italic {
  font-style: italic;
}

.c-heading .label {
  font-size: var(--fs-heading-label);
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--color-muted);
}

/* 黒ピルボタン（主要CTA） */
.c-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--block-gap-sm);
  padding: 10px 12px 10px 28px;
  background-color: var(--color-ink);
  color: var(--color-white);
  border-radius: 9999px;
  font-size: var(--fs-button);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: background-color var(--hover-duration) ease;
}

.c-pill__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-ink);
  font-size: 14px;
  line-height: 1;
  transition: transform var(--hover-duration) ease;
}

.c-pill__icon--ext {
  background-color: transparent;
  color: var(--color-white);
  width: auto;
  height: auto;
}

.c-pill:hover {
  background-color: #2c2a25;
}

.c-pill:hover .c-pill__icon:not(.c-pill__icon--ext) {
  transform: translateX(3px);
}

.c-pill.is-disabled {
  background-color: var(--color-disabled);
  cursor: default;
  pointer-events: none;
}

/* ヒーロー等のテキストリンク（下線＋丸囲み矢印） */
.c-link {
  display: inline-flex;
  align-items: center;
  gap: var(--block-gap-sm);
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: var(--fs-button);
  letter-spacing: 0.04em;
  line-height: 1;
}

.c-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 13px;
  transition: transform var(--hover-duration) ease;
}

.c-link:hover .c-link__arrow {
  transform: translateX(3px);
}

/* 追従の丸ボタン */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--color-white);
  color: var(--color-ink);
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: transform var(--hover-duration) ease;
}

.fab:hover {
  transform: translateY(-3px);
}

/* プリローダー（JS有効時のみ表示） */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg);
  opacity: 0;
  visibility: hidden;
}

html.js .preloader {
  opacity: 1;
  visibility: visible;
}

.preloader__logo {
  display: flex;
  font-family: var(--font-en);
  font-size: clamp(52px, 11vw, 104px);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-ink);
}

.preloader__letter {
  display: inline-block;
}

/* ---------- 4. ヘッダー / ドロワー ---------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px var(--container-pad);
  color: var(--color-white);
}

.header.is-fixed {
  position: fixed;
  background-color: var(--color-bg);
  color: var(--color-ink);
  padding-block: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  animation: header-drop 0.4s ease;
}

@keyframes header-drop {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header__nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.header__nav a:hover,
.header__actions a:hover {
  color: var(--color-muted);
}

.header__burger {
  font-size: 13px;
  letter-spacing: 0.08em;
}

.drawer {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 0 var(--container-pad);
  background-color: var(--color-bg);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer a {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 600;
  padding-block: 12px;
  border-bottom: 1px solid var(--color-beige-deep);
}

.drawer a span {
  font-family: var(--font-ja);
  font-size: 12px;
  color: var(--color-muted);
  margin-left: 12px;
  letter-spacing: 0.06em;
}

/* ---------- 5. ヒーロー ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
}

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

.hero__slide {
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}

.hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__copy {
  position: absolute;
  right: var(--container-pad);
  bottom: 120px;
  color: var(--color-white);
  text-align: right;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
}

.hero__ja {
  font-size: var(--fs-hero-ja);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.hero__en {
  font-family: var(--font-en);
  font-size: var(--fs-hero-en);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
}

.hero__more {
  margin-top: var(--block-gap-md);
}

.hero__dots {
  position: absolute;
  right: var(--container-pad);
  bottom: 88px;
  display: flex;
  gap: 10px;
}

.hero__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(30, 28, 24, 0.3);
}

.hero__dots button.is-active {
  background-color: var(--color-ink);
}

/* 下辺の曲線ブロブ */
.hero__blob {
  position: absolute;
  left: -5%;
  bottom: -60px;
  width: 110%;
  height: 160px;
  background-color: var(--color-bg);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* ---------- 6. ブランド紹介 ---------- */
.brand {
  padding-block: var(--section-gap);
}

.brand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap-lg);
  align-items: center;
}

.brand__images {
  position: relative;
  order: 2;
}

.brand__img-main {
  border-radius: var(--radius-img);
  aspect-ratio: 6 / 5;
}

.brand__img-sub {
  position: absolute;
  width: 38%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.brand__img-sub--1 {
  top: -36px;
  left: -36px;
}

.brand__img-sub--2 {
  bottom: -36px;
  right: -28px;
}

.brand__text {
  order: 1;
}

.brand__lead {
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: var(--block-gap-md);
}

.brand__body {
  color: var(--color-muted);
  line-height: 2;
}

/* ---------- 7. PRODUCTS ---------- */
.products {
  padding-block: var(--section-gap);
}

.products__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--block-gap-md);
  flex-wrap: wrap;
  margin-bottom: var(--block-gap-lg);
}

.products__nav {
  display: flex;
  gap: 28px;
}

.products__nav button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-cat-nav);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  transition: color var(--hover-duration) ease;
}

.products__nav button span {
  color: var(--color-beige-deep);
}

.products__nav button.is-active,
.products__nav button:hover {
  color: var(--color-ink);
}

/* 横スクロールカルーセル */
.products__viewport {
  position: relative;
}

.products__grid {
  display: none;
  gap: var(--card-gap);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}

.products__grid::-webkit-scrollbar {
  display: none;
}

.products__grid.is-active {
  display: flex;
}

.products__grid .p-card {
  flex: 0 0 auto;
  width: clamp(240px, 30%, 320px);
  scroll-snap-align: start;
}

/* カルーセル操作（矢印＋ドット） */
.products__ctrl {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: var(--block-gap-md);
}

.products__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--color-ink);
  color: var(--color-white);
  font-size: 16px;
  transition: background-color var(--hover-duration) ease, opacity var(--hover-duration) ease;
}

.products__arrow:hover {
  background-color: #2c2a25;
}

.products__arrow:disabled {
  opacity: 0.25;
  cursor: default;
}

.products__dots {
  display: flex;
  align-items: center;
  gap: 16px;
}

.products__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-beige-deep);
  transition: background-color var(--hover-duration) ease;
}

.products__dots button.is-active {
  background-color: var(--color-ink);
  outline: 1px solid var(--color-ink);
  outline-offset: 3px;
}

/* 商品カード */
.p-card figure {
  background-color: var(--color-card);
  border-radius: var(--radius-img);
  aspect-ratio: 1 / 1;
  margin-bottom: var(--block-gap-sm);
}

.p-card img {
  transition: transform 0.5s ease;
}

.p-card a:hover img {
  transform: scale(1.04);
}

/* hover時の黒オーバーレイ＋「詳しく見る」（PRODUCTS / GIFT / NEWS 共通） */
.p-card figure,
.news__thumb {
  position: relative;
}

.p-card figure::after,
.news__thumb::after {
  content: "詳しく見る";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(30, 28, 24, 0.45);
  color: var(--color-white);
  font-size: 14px;
  letter-spacing: 0.08em;
  opacity: 0;
  transition: opacity var(--hover-duration) ease;
  pointer-events: none;
}

.news__thumb::after {
  font-size: 11px;
}

.p-card a:hover figure::after,
.news__list a:hover .news__thumb::after {
  opacity: 1;
}

.p-card__name {
  font-size: var(--fs-card-title);
  font-weight: 500;
  line-height: 1.6;
}

.p-card__sub {
  font-size: var(--fs-card-sub);
  color: var(--color-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.p-card__price {
  font-size: var(--fs-price);
  font-weight: 500;
}

.p-card__price span {
  font-size: var(--fs-price-tax);
  font-weight: 400;
  color: var(--color-muted);
}

.products__foot,
.gift__foot,
.news__foot {
  display: flex;
  justify-content: center;
  margin-top: var(--block-gap-lg);
}

/* ---------- 8. GIFT ---------- */
.gift {
  padding-block: var(--section-gap);
}

.gift__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap-lg);
  align-items: start;
}

/* 左写真は固定・右カラムのみスクロール */
.gift__left {
  position: sticky;
  top: 100px;
}

.gift__photo {
  border-radius: var(--radius-img);
  aspect-ratio: 3 / 4;
}

.gift__en,
.journal__en,
.news__en {
  font-style: italic;
}

.gift__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--card-gap);
  margin-top: var(--block-gap-md);
}

.gift__foot {
  justify-content: flex-start;
  margin-top: var(--block-gap-md);
}

/* ---------- 9. MOBILE COFFEE STAND ---------- */
.stand {
  padding-block: var(--section-gap);
}

.stand__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap-lg);
  align-items: center;
}

.stand__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: var(--fs-heading-en);
  font-weight: 600;
  line-height: 1.05;
  margin-bottom: var(--block-gap-sm);
}

.stand__label {
  font-size: var(--fs-heading-label);
  letter-spacing: 0.08em;
  color: var(--color-muted);
  margin-bottom: var(--block-gap-md);
}

.stand__lead {
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: var(--block-gap-md);
}

.stand__body {
  color: var(--color-muted);
  line-height: 2;
  margin-bottom: var(--block-gap-md);
}

.stand__photo {
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 3;
}

/* ---------- 10. JOURNAL ---------- */
.journal {
  padding-block: var(--section-gap);
}

.journal__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--block-gap-lg);
  align-items: center;
}

.journal__photo {
  border-radius: var(--radius-img);
  aspect-ratio: 4 / 3;
}

.journal__lead {
  font-size: var(--fs-lead);
  font-weight: 700;
  line-height: 1.6;
  margin-block: var(--block-gap-md);
}

.journal__article {
  padding-top: var(--block-gap-md);
  border-top: 1px solid var(--color-beige-deep);
  margin-bottom: var(--block-gap-md);
}

.journal__meta {
  font-size: var(--fs-meta);
  color: var(--color-muted);
  margin-bottom: 8px;
}

.journal__title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  margin-bottom: 12px;
}

.journal__excerpt {
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.9;
}

/* ---------- 11. NEWS ---------- */
.news {
  padding-block: var(--section-gap);
}

.news__list {
  margin-top: var(--block-gap-lg);
  border-top: 1px solid var(--color-beige-deep);
}

.news__list a {
  display: flex;
  align-items: center;
  gap: var(--block-gap-md);
  padding-block: 24px;
  border-bottom: 1px solid var(--color-beige-deep);
  transition: opacity var(--hover-duration) ease;
}

.news__list a:hover {
  opacity: 0.7;
}

.news__thumb {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 12px;
}

.news__meta {
  font-size: var(--fs-meta);
  color: var(--color-muted);
  margin-bottom: 6px;
}

.news__title {
  font-size: var(--fs-card-title);
  line-height: 1.7;
}

/* ---------- 12. INSTAGRAM ---------- */
.insta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: clamp(600px, 82vh, 820px);
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* 下から上へ流れる縦マーキー */
.insta__photos {
  height: 100%;
  overflow: hidden;
}

.insta__marquee {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  animation: insta-scroll 42s linear infinite;
  will-change: transform;
}

.insta__marquee figure {
  aspect-ratio: 1 / 1;
  background-color: transparent;
}

.insta__photos:hover .insta__marquee {
  animation-play-state: paused;
}

@keyframes insta-scroll {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

.insta__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--block-gap-lg) var(--container-pad);
}

.insta__en {
  font-family: var(--font-en);
  font-style: italic;
  font-size: var(--fs-heading-en);
  font-weight: 600;
  line-height: 1;
}

.insta__label {
  font-size: var(--fs-heading-label);
  letter-spacing: 0.08em;
  margin-top: var(--block-gap-sm);
  opacity: 0.85;
}

.insta__lead {
  line-height: 1.9;
  margin-block: var(--block-gap-md);
  opacity: 0.9;
}

.insta__text .c-pill {
  align-self: flex-start;
  background-color: rgba(0, 0, 0, 0.35);
}

.insta__text .c-pill:hover {
  background-color: rgba(0, 0, 0, 0.55);
}

/* ---------- 13. フッター ---------- */
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--block-gap-md);
  padding-block: var(--section-gap) var(--block-gap-lg);
}

.footer__logo {
  font-family: var(--font-en);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--block-gap-sm);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.footer__nav-main,
.footer__nav-sub {
  display: flex;
  gap: 28px;
}

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

.footer__ig i {
  width: 22px;
  height: 22px;
}

.footer__bottom {
  background-color: var(--color-footer);
  color: rgba(255, 255, 255, 0.8);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--block-gap-md);
  padding-block: 20px;
  font-size: var(--fs-copyright);
  letter-spacing: 0.04em;
}

.footer__policy {
  display: flex;
  gap: 24px;
}

.footer__policy a:hover,
.footer__copy:hover {
  color: var(--color-white);
}

/* ==========================================================
   レスポンシブ
   ========================================================== */

@media (max-width: 1024px) {
  .products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  body {
    line-height: 1.9;
  }

  /* ヘッダー */
  .header {
    padding: 18px var(--container-pad);
  }

  .header__nav {
    display: none;
  }

  .header__logo {
    position: static;
    transform: none;
    font-size: 26px;
    margin-right: auto;
  }

  .header__actions {
    gap: 16px;
    font-size: 12px;
  }

  /* ヒーロー */
  .hero__copy {
    right: auto;
    left: var(--container-pad);
    bottom: 96px;
    text-align: left;
  }

  .hero__dots {
    left: var(--container-pad);
    right: auto;
    bottom: 64px;
  }

  /* 2カラム → 縦積み */
  .brand__inner,
  .gift__inner,
  .stand__inner,
  .journal__inner {
    grid-template-columns: 1fr;
    gap: var(--block-gap-lg);
  }

  .brand__images,
  .brand__text {
    order: 0;
  }

  .brand__img-sub {
    width: 32%;
  }

  .brand__img-sub--1 {
    top: -20px;
    left: -12px;
  }

  .brand__img-sub--2 {
    bottom: -20px;
    right: -12px;
  }

  /* STAND: 写真を上に */
  .stand__inner {
    display: flex;
    flex-direction: column-reverse;
  }

  /* JOURNAL: 写真を上に */
  .journal__inner {
    display: flex;
    flex-direction: column;
  }

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

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

  .products__nav {
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
  }

  /* NEWS */
  .news__thumb {
    width: 108px;
    height: 108px;
  }

  .news__list a {
    gap: 16px;
  }

  /* INSTAGRAM: 縦積み（見出し→写真ストリップ・マーキー停止） */
  .insta {
    grid-template-columns: 1fr;
    height: auto;
  }

  .insta__text {
    order: 1;
    padding: var(--block-gap-lg) var(--container-pad);
    text-align: center;
    align-items: center;
  }

  .insta__text .c-pill {
    align-self: center;
  }

  .insta__photos {
    order: 2;
    height: auto;
  }

  .insta__marquee {
    grid-template-columns: repeat(3, 1fr);
    animation: none;
  }

  .insta__marquee figure:nth-child(n + 4) {
    display: none;
  }

  /* GIFT: モバイルでは固定を解除 */
  .gift__left {
    position: static;
  }

  /* フッター */
  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
  }

  .footer__policy {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 20px;
  }

  .fab {
    right: 16px;
    bottom: 16px;
    width: 48px;
    height: 48px;
    font-size: 13px;
  }
}

/* アクセシビリティ: モーション低減 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
