﻿@charset "UTF-8";
/* ==========================================================================
   TORA DEPARTMENT ／ style.css
   --------------------------------------------------------------------------
   目次
   00. DESIGN TOKENS（カラー・タイポ・余白の変数）
   01. RESET / BASE
   02. LAYOUT UTILITY（container / section / reveal）
   03. COMPONENTS（ボタン・見出し・アイコン）
   04. OPENING ANIMATION
   05. HEADER / GNAV
   06. DRAWER（SPメニュー）
   07. SEARCH OVERLAY
   08. HERO
   09.（NEWSティッカーは廃止）
   10. RUNNING TIGER
   11. NEW ARRIVALS（商品グリッド）
   12. BRAND STORY
   13. TEASER / ITEM一覧バー / NEWSリスト / BRAND INFORMATION
   14. NEWSLETTER
   15. FOOTER
   16. SCROLL TOP BUTTON
   17. PRODUCT DETAIL（product.html）
   18. RESPONSIVE
   19. ACCESSIBILITY（reduced motion 他）
   ========================================================================== */


/* ==========================================================================
   00. DESIGN TOKENS
   ========================================================================== */
:root {
  /* --- Color ------------------------------------------------------------ */
  --c-white:      #ffffff;
  --c-black:      #0a0a0a;      /* 純黒より少し柔らかい黒（高級感） */
  --c-ink:        #141414;
  --c-gray-900:   #4a4a4a;
  --c-gray-600:   #8a8a8a;
  --c-gray-300:   #d8d8d8;
  --c-gray-100:   #f2f1ef;      /* ほんのり温かみのあるオフホワイト */
  --c-orange:     #fcb813;      /* 虎カラー（アクセント） */

  /* --- Typography ------------------------------------------------------- */
  /* 英字：ジオメトリック系サンセリフを優先。
     ※ 総称名（sans-serif）より前に日本語フォントを置くのが重要。
       総称名は全ての文字にマッチしてしまうため、先に書くと日本語や「¥」が
       そこで止まり、意図した日本語フォントまで到達しません。 */
  --font-en: "Futura", "Avenir Next", "Century Gothic", "Helvetica Neue",
             Helvetica, Arial,
             "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium",
             "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;

  /* 日本語：可読性の高いゴシック */
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium",
             "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;

  /* 英字と日本語が混在する箇所（本文・価格など）用 */
  --font-base: var(--font-en);

  /* --- Spacing ---------------------------------------------------------- */
  --pad-x:        6vw;           /* 画面左右の基準余白 */
  --sec-pad:      clamp(90px, 13vw, 200px);   /* セクション上下の大きな余白 */
  --header-h:     178px;         /* ロゴ（上段）＋ナビ（下段）の2段構成 */

  /* --- Motion ----------------------------------------------------------- */
  --ease-out:     cubic-bezier(0.16, 1, 0.30, 1);   /* 上品な減速 */
  --ease-inout:   cubic-bezier(0.65, 0, 0.35, 1);

  /* --- Misc ------------------------------------------------------------- */
  --hairline:     1px solid var(--c-gray-300);
  --maxw:         1560px;
}


/* --------------------------------------------------------------------------
   円記号（¥）専用のフォント指定
   --------------------------------------------------------------------------
   Futura など一部の英字フォントは「¥」の字形を持たない（あるいは幅ゼロの
   空グリフを持つ）ため、価格が「18,700」と表示されてしまうことがあります。
   ブラウザの自動フォールバックは「字形が無い場合」しか働かないので、
   unicode-range で ¥ だけを確実に字形を持つフォントへ差し替えます。
   -------------------------------------------------------------------------- */
@font-face {
  font-family: "YenGlyph";
  src: local("Hiragino Kaku Gothic ProN"), local("Yu Gothic"),
       local("Noto Sans JP"), local("Meiryo"), local("Arial");
  unicode-range: U+00A5, U+FFE5;   /* ¥ / ￥ */
  font-display: swap;
}


/* ==========================================================================
   01. RESET / BASE
   ========================================================================== */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* 固定ヘッダー分だけアンカー位置をずらす */
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  padding-top: var(--header-h);          /* 固定ヘッダー分 */
  background: var(--c-white);
  color: var(--c-black);
  font-family: var(--font-base);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";          /* 日本語の詰め */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* オープニング表示中はスクロールをロック */
body.is-loading,
body.is-locked { overflow: hidden; }

h1, h2, h3, h4, p, figure, dl, dd { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

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

/* --------------------------------------------------------------------------
   画像の保護（ドラッグ／長押し／選択の抑止）
   --------------------------------------------------------------------------
   デスクトップでのドラッグ＆ドロップ保存、スマホの長押しメニュー、
   画像の範囲選択を抑止します。右クリックの抑止は js/main.js 側で行います。

   ※ あくまで「簡単には持ち出せない」レベルの抑止です。
     開発者ツールやページのソース表示、通信の記録からは取得できるため、
     完全な保護にはなりません（詳しくは main.js のコメントを参照）。
   -------------------------------------------------------------------------- */
img {
  -webkit-user-drag: none;      /* Safari / Chrome */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;  /* iOS の長押しメニューを抑止 */
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

input { font: inherit; color: inherit; }

::selection { background: var(--c-orange); color: var(--c-black); }

/* フォーカスリング（キーボード操作時のみ・上品な細枠） */
:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
}


/* ==========================================================================
   02. LAYOUT UTILITY
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.section { padding-block: var(--sec-pad); }

/* ページ見出しのすぐ下に続くセクションは上余白を詰める */
.section--top-tight { padding-top: clamp(20px, 3vw, 40px); }

/* --- ビュー（HOME / ITEM / ABOUT / NEWS の表示切り替え） ------------------
   クリックで .is-active を JS が付け替える。表示中のビューだけを描画する。
   display の切り替えなので、非表示ビューはレイアウト計算にも乗らず軽い。 */
.view { display: none; }
.view.is-active {
  display: block;
  /* 切り替わった瞬間に、ふわっと入る */
  animation: view-in 0.7s var(--ease-out) both;
}
@keyframes view-in {
  from { opacity: 0; transform: translate3d(0, 12px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* --- 下層ビューのページ見出し -------------------------------------------- */
.page-head {
  padding-block: clamp(56px, 8vw, 120px) clamp(40px, 5vw, 70px);
  border-bottom: 1px solid var(--c-gray-300);
}

.page-head__label {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-gray-600);
  margin-bottom: 20px;
}
.page-head__label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--c-orange);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-1px);
}

.page-head__title {
  font-family: var(--font-en);
  font-size: clamp(46px, 9vw, 140px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.page-head__lead {
  margin-top: 26px;
  max-width: 44em;
  font-family: var(--font-jp);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--c-gray-900);
}

/* --- スクロール連動フェードイン（IntersectionObserver で is-visible 付与） -- */
.reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition:
    opacity   1s var(--ease-out),
    transform 1.1s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}
/* グリッド内の連続要素は少しずつ遅らせて上品に */
.reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal:nth-child(3) { transition-delay: 0.20s; }


/* ==========================================================================
   03. COMPONENTS
   ========================================================================== */

/* --- セクション見出し ---------------------------------------------------- */
.sec-head { margin-bottom: clamp(48px, 6vw, 90px); }
.sec-head--center { text-align: center; }

.sec-head__label {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--c-gray-600);
  margin-bottom: 18px;
}
.sec-head__label::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--c-orange);
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-1px);
}
.sec-head--center .sec-head__label::before { display: none; }

.sec-head__title {
  font-family: var(--font-en);
  font-size: clamp(34px, 5.4vw, 76px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.sec-head__lead {
  margin-top: 22px;
  max-width: 46em;
  font-family: var(--font-jp);
  font-size: 14px;
  color: var(--c-gray-900);
  letter-spacing: 0.06em;
}
.sec-head--center .sec-head__lead { margin-inline: auto; }

/* --- 罫線ボタン ---------------------------------------------------------- */
.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 20px 46px;
  border: 1px solid var(--c-black);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* 背景が下からせり上がるホバー */
.btn-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-black);
  transform: translate3d(0, 101%, 0);
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.btn-line::after {
  content: "→";
  font-size: 13px;
  transition: transform 0.45s var(--ease-out);
}
.btn-line:hover { color: var(--c-white); }
.btn-line:hover::before { transform: translate3d(0, 0, 0); }
.btn-line:hover::after  { transform: translate3d(5px, 0, 0); }

/* 濃い背景の上に置く白バージョン */
.btn-line--light { border-color: var(--c-white); color: var(--c-white); }
.btn-line--light::before { background: var(--c-white); }
.btn-line--light:hover { color: var(--c-black); }

/* --- アイコンボタン ------------------------------------------------------ */
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background-color 0.35s var(--ease-out);
}
.icon-btn:hover { background: var(--c-gray-100); }

.cart-badge {
  position: absolute;
  top: 4px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-black);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0;
}


/* ==========================================================================
   04. OPENING ANIMATION（①）
   オレンジ全面 → ロゴフェードイン → 1.5秒後にフェードアウト
   ========================================================================== */
.opening {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  background: var(--c-orange);
  /* フェードアウトは .is-hide 付与時 */
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}
.opening.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/* 完全終了後は DOM 上の描画コストをゼロに */
.opening.is-done { display: none; }

.opening__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  transform: translateY(-2vh);
}

.opening__logo {
  width: min(46vw, 300px);
  height: auto;
  opacity: 0;
  transform: scale(0.94);
  animation: opening-logo 1.5s var(--ease-out) forwards;
}
/* 黒ロゴ（背景透過PNG）を白抜きにする場合に付与 */
.opening__logo.is-invert { filter: invert(1) brightness(2); }

@keyframes opening-logo {
  0%   { opacity: 0; transform: scale(0.94); }
  38%  { opacity: 1; transform: scale(1); }
  100% { opacity: 1; transform: scale(1); }
}

.opening__tagline {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--c-white);
  opacity: 0;
  animation: opening-fade 1.1s var(--ease-out) 0.45s forwards;
}
@keyframes opening-fade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 0.9; transform: translateY(0); }
}

/* 下部のローディングバー（1.5秒で伸びきる） */
.opening__bar {
  position: absolute;
  left: 50%;
  bottom: 14vh;
  transform: translateX(-50%);
  width: min(220px, 46vw);
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
  overflow: hidden;
}
.opening__bar span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--c-white);
  transform-origin: left center;
  transform: scaleX(0);
  animation: opening-bar 1.5s var(--ease-inout) forwards;
}
@keyframes opening-bar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}


/* ==========================================================================
   05. HEADER / GNAV（②）
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
/* スクロール後にだけ極細の境界線を出す */
.header.is-scrolled {
  border-bottom-color: var(--c-gray-300);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.03);
}

/* 中央上部にロゴ、その下にナビ。アイコン類は右上に絶対配置。 */
.header__inner {
  position: relative;
  height: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* ロゴの上下にゆとりをとる（詰めすぎない見え方に）
   ここを増減する場合は --header-h も合わせて調整してください */
.header__brand {
  display: flex;
  justify-content: center;
  padding-block: 26px;
}

/* --------------------------------------------------------------------------
   ロゴの余白詰め
   --------------------------------------------------------------------------
   toradepartment_logo.gif は 1000×1000 の正方形で、
   文字が写っているのは上下方向の約35%だけ（上下に大きな透明余白がある）。
   そのまま height を指定すると文字が小さく見えてしまうため、
   画像自体は大きく表示し、上下の透明余白ぶんを負のマージンで詰めています。

   各ブレークポイントでは --logo-h（画像の表示高さ）だけを変えれば、
   詰める量は比率で自動追従します。
   ロゴ画像を余白の少ないものに差し替える場合は、
   --logo-crop-top / --logo-crop-bottom を 0 にしてください。
   -------------------------------------------------------------------------- */
.header__logo {
  --logo-h: 130px;                                     /* 画像の実表示高さ */
  --logo-crop-top: calc(var(--logo-h) * 0.34);         /* 上の透明余白ぶん */
  --logo-crop-bottom: calc(var(--logo-h) * 0.26);      /* 下の透明余白ぶん */
  display: block;
  overflow: hidden;            /* 詰めた余白がナビへかぶらないように */
}
.header__logo img {
  width: auto;
  height: var(--logo-h);
  margin-top: calc(var(--logo-crop-top) * -1);
  margin-bottom: calc(var(--logo-crop-bottom) * -1);
  transition: opacity 0.35s var(--ease-out);
}
.header__logo:hover img { opacity: 0.55; }

/* --- グローバルナビ ------------------------------------------------------ */

.gnav__list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 46px);
}

.gnav__link {
  position: relative;
  display: block;
  padding: 6px 0;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
/* ホバーで下線が左から伸びる */
.gnav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--c-black);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.45s var(--ease-out);
}
.gnav__link:hover::after { transform: scaleX(1); transform-origin: left center; }

/* 現在地はオレンジのドットで表現 */
.gnav__link.is-current span { position: relative; }
.gnav__link.is-current span::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--c-orange);
}

/* --- ヘッダー右側（右上に固定配置） -------------------------------------- */
.header__right {
  position: absolute;
  top: 50%;
  right: var(--pad-x);
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* --- ハンバーガー（SPのみ表示） ------------------------------------------ */
.hamburger {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 20px;
  height: 1.5px;
  background: var(--c-black);
  transition: transform 0.45s var(--ease-out), opacity 0.3s;
}
.hamburger span:nth-child(1) { top: 18px; }
.hamburger span:nth-child(2) { top: 24px; }
/* 開いているときは × に */
.hamburger.is-active span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }


/* ==========================================================================
   06. DRAWER（SPメニュー）
   ========================================================================== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--c-white);
  padding: calc(var(--header-h) + 40px) var(--pad-x) 40px;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, -12px, 0);
  transition: opacity 0.5s var(--ease-out), transform 0.6s var(--ease-out), visibility 0.5s;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.drawer__nav {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.drawer__list li + li { border-top: 1px solid var(--c-gray-300); }

.drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 22px 0;
  font-family: var(--font-en);
  font-size: clamp(26px, 8vw, 40px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.drawer__list i {
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.2em;
  color: var(--c-orange);
}
.drawer__list a:active { opacity: 0.5; }

.drawer__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  padding-top: 32px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-gray-600);
}


/* ==========================================================================
   07. SEARCH OVERLAY
   ========================================================================== */
.search {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease-out), visibility 0.45s;
}
.search.is-open { opacity: 1; visibility: visible; }

.search__inner {
  width: min(760px, 88vw);
  text-align: center;
  transform: translateY(10px);
  transition: transform 0.6s var(--ease-out);
}
.search.is-open .search__inner { transform: translateY(0); }

.search__label {
  display: block;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  color: var(--c-gray-600);
  margin-bottom: 24px;
}

.search__input {
  width: 100%;
  padding: 14px 4px;
  border: 0;
  border-bottom: 1px solid var(--c-gray-300);
  background: transparent;
  font-family: var(--font-base);
  font-size: clamp(20px, 3.4vw, 32px);
  text-align: center;
  letter-spacing: 0.04em;
  transition: border-color 0.4s var(--ease-out);
}
.search__input::placeholder { color: var(--c-gray-300); }
.search__input:focus {
  outline: none;
  border-bottom-color: var(--c-orange);
}

.search__keywords {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 12px;
  margin-top: 34px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
}
.search__keywords span { color: var(--c-gray-600); padding-right: 6px; }
.search__keywords a {
  display: block;
  padding: 8px 18px;
  border: 1px solid var(--c-gray-300);
  border-radius: 999px;
}
.search__keywords a:hover { border-color: var(--c-black); background: var(--c-black); color: var(--c-white); }

.search__close {
  margin-top: 52px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-gray-600);
}
.search__close:hover { color: var(--c-black); }


/* ==========================================================================
   08. HERO（③）
   ========================================================================== */
.hero {
  position: relative;
  height: 90vh;
  min-height: 520px;
  overflow: hidden;
  background: var(--c-gray-100);
  isolation: isolate;
}

.hero__media { position: absolute; inset: 0; z-index: -2; }

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ロード時にゆっくり引きの絵になる（GPU） */
  transform: scale(1.08);
  animation: hero-zoom 2.6s var(--ease-out) 0.2s forwards;
  will-change: transform;
}
@keyframes hero-zoom { to { transform: scale(1); } }

/* 文字の可読性を確保する控えめなグラデーション */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 42%, rgba(0,0,0,0.16) 100%);
}

.hero__copy {
  position: absolute;
  left: var(--pad-x);
  right: var(--pad-x);
  bottom: clamp(90px, 14vh, 150px);
  color: var(--c-white);
  /* 見出しは非常に大きいため幅を制限しない（.hero__line が overflow:hidden のため
     幅を絞ると文字が見切れる）。読み物としての幅制御はリード文側で行う。 */
}

.hero__label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.36em;
  margin-bottom: 22px;
  opacity: 0;
  animation: hero-up 1s var(--ease-out) 0.5s forwards;
}

.hero__title {
  font-family: var(--font-en);
  font-size: clamp(46px, 9.4vw, 158px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}
/* 行ごとにマスクから立ち上がる演出 */
.hero__line {
  display: block;
  overflow: hidden;
}
.hero__line > span {
  display: block;
  transform: translate3d(0, 105%, 0);
  animation: hero-line 1.2s var(--ease-out) forwards;
  will-change: transform;
}
.hero__line:nth-child(1) > span { animation-delay: 0.55s; }
.hero__line:nth-child(2) > span { animation-delay: 0.68s; }
@keyframes hero-line { to { transform: translate3d(0, 0, 0); } }

.hero__lead {
  margin-top: 26px;
  max-width: 34em;
  font-family: var(--font-jp);
  font-size: 13px;
  line-height: 2.1;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: hero-up 1s var(--ease-out) 1s forwards;
}

@keyframes hero-up {
  from { opacity: 0; transform: translate3d(0, 14px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}

/* --- スクロールを促すアイコン -------------------------------------------- */
.scroll-cue {
  position: absolute;
  right: var(--pad-x);
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  color: var(--c-white);
  opacity: 0;
  animation: hero-up 1s var(--ease-out) 1.3s forwards;
}
.scroll-cue__text {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
}
/* 細い縦線が上から下へ流れ続ける */
.scroll-cue__line {
  position: relative;
  width: 1px;
  height: 76px;
  background: rgba(255, 255, 255, 0.28);
  overflow: hidden;
}
.scroll-cue__line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--c-white);
  transform: translate3d(0, -100%, 0);
  animation: cue-line 2.2s var(--ease-inout) infinite;
}
@keyframes cue-line {
  0%   { transform: translate3d(0, -100%, 0); }
  55%  { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(0, 100%, 0); }
}


/* ==========================================================================
   09.（NEWSティッカーは廃止しました）
   ========================================================================== */


/* ==========================================================================
   10. RUNNING TIGER（⑤）※最重要ギミック
   左外 → 右へ走り去る。待機時間の制御は JS（5〜10秒ランダム）
   ========================================================================== */
/* 画面全体に重なる固定レイヤー。
   画面外へはみ出す虎を隠して、横スクロールが出ないようにする。 */
.tiger-cutin {
  position: fixed;
  inset: 0;
  z-index: 30;                /* ヘッダー(100)より下＝ヘッダーの手前は通らない */
  overflow: hidden;
  pointer-events: none;       /* 下のコンテンツを操作できるように */
}

.tiger-runner {
  position: absolute;
  left: 0;
  bottom: clamp(24px, 7vh, 72px);   /* 画面下寄りを走らせる */
  pointer-events: none;
  /* 初期位置は画面左の外（待機中はここで静止） */
  transform: translate3d(-260px, 0, 0);
  will-change: transform;
}

/* JS が .is-running を付けた瞬間に横断開始（linear / 約5秒） */
.tiger-runner.is-running {
  animation: tiger-run 5s linear forwards;
}
@keyframes tiger-run {
  from { transform: translate3d(-260px, 0, 0); }
  to   { transform: translate3d(calc(100vw + 260px), 0, 0); }
}

/* 上下 4px の自然なバウンド（走行アニメGIFに重ねる） */
.tiger-runner__img {
  width: 160px;               /* PC */
  height: auto;
  animation: tiger-bounce 0.34s var(--ease-inout) infinite alternate;
  will-change: transform;
}
@keyframes tiger-bounce {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(0, -4px, 0); }
}


/* ==========================================================================
   11. NEW ARRIVALS（⑥）
   ========================================================================== */
.arrivals { padding-top: clamp(30px, 4vw, 60px); }

/* PC：4列（トップページは5行＝20点まで並ぶ）
   Tablet：3列 ／ Mobile：2列（10行＝20点） */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(30px, 3vw, 52px) clamp(16px, 1.8vw, 30px);
}

.product-card__link { display: block; }

.product-card__media {
  position: relative;
  overflow: hidden;
  background: var(--c-gray-100);
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  transition: box-shadow 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.9s var(--ease-out);
  will-change: transform;
}

/* ホバー：わずかな拡大＋上品なドロップシャドウ＋カードの浮き上がり */
.product-card__link:hover .product-card__img { transform: scale(1.055); }
.product-card__link:hover .product-card__media {
  transform: translate3d(0, -6px, 0);
  box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.30);
}

/* NEW / LIMITED タグ */
.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--c-orange);
  color: var(--c-black);
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
}

.product-card__body { padding-top: 20px; }

/* ※ 一覧カードのカテゴリー表記（.product-card__cat）は廃止しました */

.product-card__name {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
/* 商品名は下線がスッと引かれる */
.product-card__link:hover .product-card__name {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.product-card__price {
  margin-top: 8px;
  /* 先頭の "YenGlyph" が ¥ だけを担当する（@font-face の unicode-range 参照） */
  font-family: "YenGlyph", var(--font-en);
  font-size: 13px;
  letter-spacing: 0.06em;
}
.product-card__price i {
  font-style: normal;
  font-size: 10px;
  color: var(--c-gray-600);
  margin-left: 4px;
}

.arrivals__more {
  margin-top: clamp(56px, 6vw, 96px);
  text-align: center;
}


/* ==========================================================================
   12. BRAND STORY（⑦）
   非常に大きな余白／左右交互（ジグザグ）
   ========================================================================== */
.story {
  padding-block: var(--sec-pad);
  background: var(--c-white);
}

.story__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 7vw, 120px);
  /* 行間にたっぷりの余白 */
  margin-bottom: clamp(100px, 14vw, 220px);
}
.story__row:last-child { margin-bottom: 0; }

/* ジグザグ：偶数行は画像を右へ */
.story__row--reverse .story__media { order: 2; }
.story__row--reverse .story__body  { order: 1; }

.story__media {
  overflow: hidden;
  background: var(--c-gray-100);
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}
.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 1.4s var(--ease-out);
}
.story__row:hover .story__media img { transform: scale(1.06); }

.story__body { padding-block: clamp(0px, 2vw, 40px); }

.story__num {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--c-orange);
  margin-bottom: 26px;
}

.story__title {
  font-family: var(--font-jp);
  font-size: clamp(24px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}

.story__text {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.08em;
  color: var(--c-gray-900);
  max-width: 34em;
}


/* ==========================================================================
   13.（トップのABOUT抜粋ブロックは廃止しました）
   ========================================================================== */


/* ==========================================================================
   13-b. ITEM ビューの一覧バー
   ========================================================================== */
.list-bar {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-bottom: 22px;
  margin-bottom: clamp(34px, 4vw, 56px);
  border-bottom: 1px solid var(--c-gray-300);
}

.list-bar__count {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
}
.list-bar__count em {
  font-style: normal;
  margin-left: 8px;
  color: var(--c-orange);
}

.list-bar__note {
  font-family: var(--font-jp);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--c-gray-600);
}


/* ==========================================================================
   13-c. NEWS リスト（HOMEの抜粋 / NEWSビューの一覧で共通）
   ========================================================================== */
.news-list { border-top: 1px solid var(--c-gray-300); }

.news-item { border-bottom: 1px solid var(--c-gray-300); }

.news-item__link {
  display: grid;
  grid-template-columns: 9em 6em 1fr;
  align-items: baseline;
  gap: 8px 24px;
  padding: clamp(22px, 2.6vw, 34px) 4px;
  transition: background-color 0.45s var(--ease-out), padding-left 0.45s var(--ease-out);
}
/* ホバーで少しだけ引き込まれる（跳ねない上品な動き） */
.news-item__link:hover {
  background: var(--c-gray-100);
  padding-left: 18px;
}

.news-item__date {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--c-gray-600);
}

.news-item__cat {
  justify-self: start;
  padding: 5px 12px;
  border: 1px solid var(--c-gray-300);
  border-radius: 999px;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  white-space: nowrap;
}

.news-item__title {
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.06em;
}

/* NEWSビューの一覧はトップページより少し余白を大きく */
.news-list--full .news-item__link { padding-block: clamp(26px, 3vw, 40px); }



/* ==========================================================================
   13-d. BRAND INFORMATION（ABOUTビュー）
   ========================================================================== */
.info {
  max-width: 900px;
  margin-inline: auto;
  padding-top: clamp(40px, 5vw, 70px);
  border-top: 1px solid var(--c-gray-300);
}

.info__title {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-bottom: 36px;
}

.info__list {
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 0;
}
.info__list dt,
.info__list dd {
  padding: 20px 0;
  border-top: 1px solid var(--c-gray-300);
  margin: 0;
}
.info__list dt {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--c-gray-600);
  padding-top: 23px;
}
.info__list dd {
  font-family: var(--font-jp);
  font-size: 13.5px;
  letter-spacing: 0.06em;
}


/* ==========================================================================
   14. NEWSLETTER
   ========================================================================== */
.newsletter { background: var(--c-gray-100); }

.newsletter__inner { text-align: center; }

.newsletter__title {
  font-family: var(--font-en);
  font-size: clamp(28px, 4.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.newsletter__text {
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--c-gray-900);
  margin: 20px 0 44px;
  letter-spacing: 0.08em;
}

.newsletter__form {
  display: flex;
  gap: 0;
  width: min(560px, 100%);
  margin-inline: auto;
  border-bottom: 1px solid var(--c-black);
}

.newsletter__input {
  flex: 1;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.14em;
}
.newsletter__input::placeholder { color: var(--c-gray-600); }
.newsletter__input:focus { outline: none; }

.newsletter__btn {
  padding: 16px 6px 16px 20px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  white-space: nowrap;
  transition: opacity 0.35s var(--ease-out);
}
.newsletter__btn:hover { opacity: 0.55; }


/* ==========================================================================
   15. FOOTER（⑧）
   ========================================================================== */
.footer {
  padding-block: clamp(70px, 9vw, 130px) 46px;
  border-top: 1px solid var(--c-gray-300);
  text-align: center;
}

/* 中央上部のキャラクターアイコン */
.footer__mark img {
  width: clamp(44px, 5vw, 58px);
  height: auto;
  margin-inline: auto;
  transition: transform 0.6s var(--ease-out);
}
.footer__mark:hover img { transform: rotate(-6deg) scale(1.06); }

.footer__nav { margin-top: 46px; }

.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px clamp(20px, 3vw, 42px);
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.footer__list a:hover { opacity: 0.5; }

.footer__list--sub {
  margin-top: 26px;
  font-family: var(--font-jp);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--c-gray-600);
}

.sns {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 44px;
}
.sns a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--c-gray-300);
  border-radius: 50%;
  transition: background-color 0.4s var(--ease-out), color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
/* アイコン本体（HTML側の width/height 属性より優先させる） */
.sns svg { width: 14px; height: 14px; }
.sns a:hover {
  background: var(--c-black);
  border-color: var(--c-black);
  color: var(--c-white);
}

.copyright {
  margin-top: 54px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-gray-600);
}


/* ==========================================================================
   16. SCROLL TOP BUTTON（⑨）
   テキスト「TOP」＋「↑」／跳ねる動きなし・透過で応答
   ========================================================================== */
.to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px;
  color: var(--c-black);
  font-family: var(--font-en);
  /* 初期状態は非表示（JSが .is-visible を付与） */
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity 0.5s var(--ease-out),
    visibility 0.5s,
    transform 0.5s var(--ease-out);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}
/* ホバー：透過ぎみに（跳ねるアニメーションは使用しない） */
.to-top:hover { opacity: 0.7; }

.to-top__arrow {
  font-size: 16px;
  line-height: 1;
}
.to-top__text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}


/* ==========================================================================
   17. PRODUCT DETAIL（⑩ product.html）
   ========================================================================== */
.detail-main { padding-block: clamp(30px, 5vw, 70px) var(--sec-pad); }

/* --- パンくず ------------------------------------------------------------ */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--c-gray-600);
  margin-bottom: clamp(36px, 5vw, 70px);
}
.breadcrumb a:hover { color: var(--c-black); }
.breadcrumb em { font-style: normal; color: var(--c-black); }

/* --- 2カラム（左：画像／右：情報） --------------------------------------- */
.detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 110px);
  align-items: start;
}

.detail__figure {
  overflow: hidden;
  background: var(--c-gray-100);
  aspect-ratio: 4 / 5;
  border-radius: 2px;
}
.detail__img { width: 100%; height: 100%; object-fit: cover; }

.detail__note {
  margin-top: 16px;
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--c-gray-600);
  letter-spacing: 0.06em;
}

/* --- 右カラム：情報 ------------------------------------------------------ */
.detail__info {
  /* PCではスクロール時に情報が追従する */
  position: sticky;
  top: calc(var(--header-h) + 40px);
  padding-block: clamp(0px, 2vw, 30px);
}

.detail__cat {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--c-gray-600);
  margin-bottom: 20px;
}

.detail__name {
  font-family: var(--font-en);
  font-size: clamp(26px, 3.4vw, 46px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}

.detail__price {
  margin-top: 22px;
  /* 先頭の "YenGlyph" が ¥ だけを担当する（@font-face の unicode-range 参照） */
  font-family: "YenGlyph", var(--font-en);
  font-size: 20px;
  letter-spacing: 0.06em;
}
.detail__price i {
  font-style: normal;
  font-size: 11px;
  color: var(--c-gray-600);
  margin-left: 8px;
}

.detail__desc {
  margin-top: 34px;
  padding-top: 34px;
  border-top: var(--hairline);
  font-family: var(--font-jp);
  font-size: 14px;
  line-height: 2.25;
  letter-spacing: 0.08em;
  color: var(--c-gray-900);
}
.detail__desc p + p { margin-top: 1.6em; }

/* スペック表 */
.detail__spec {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 7em 1fr;
  gap: 12px 20px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
}
.detail__spec dt {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--c-gray-600);
  padding-top: 3px;
}
.detail__spec dd { font-family: var(--font-jp); margin: 0; }

/* --- カートエリア（STORESボタン） ---------------------------------------- */
.detail__cart {
  margin-top: 46px;
  padding-top: 40px;
  border-top: var(--hairline);
}

/* STORES 側のボタンが挿入されるコンテナ。
   ボタンの見た目を当サイトのトーンに寄せるための最低限の指定。 */
.stores-button { width: 100%; }
.stores-button iframe { max-width: 100%; }

/* STORES スクリプト未読込時に表示されるフォールバックボタン */
.stores-button__fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  padding: 24px 30px;
  background: var(--c-black);
  color: var(--c-white);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}
.stores-button__fallback:hover { opacity: 0.82; transform: translate3d(0, -2px, 0); }

.detail__cart-note {
  margin-top: 16px;
  font-family: var(--font-jp);
  font-size: 11px;
  color: var(--c-gray-600);
  text-align: center;
  letter-spacing: 0.06em;
}

/* --- アコーディオン ------------------------------------------------------ */
.acc { margin-top: 46px; border-top: var(--hairline); }

.acc__item { border-bottom: var(--hairline); }

.acc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 2px;
  font-family: var(--font-jp);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  list-style: none;
}
.acc__head::-webkit-details-marker { display: none; }

/* ＋ / − アイコン */
.acc__head span {
  position: relative;
  width: 12px;
  height: 12px;
  flex: none;
}
.acc__head span::before,
.acc__head span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 12px;
  height: 1px;
  background: var(--c-black);
  transition: transform 0.4s var(--ease-out);
}
.acc__head span::after { transform: rotate(90deg); }
.acc__item[open] .acc__head span::after { transform: rotate(0deg); }

.acc__body {
  padding: 0 2px 24px;
  font-family: var(--font-jp);
  font-size: 12.5px;
  line-height: 2.1;
  color: var(--c-gray-900);
  letter-spacing: 0.06em;
}

/* --- 商品が見つからない場合 ---------------------------------------------- */
.detail-empty {
  text-align: center;
  padding-block: clamp(60px, 12vw, 160px);
}
.detail-empty__code {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--c-orange);
  margin-bottom: 20px;
}
.detail-empty__title {
  font-family: var(--font-en);
  font-size: clamp(30px, 5vw, 62px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.detail-empty__text {
  margin: 24px 0 46px;
  font-family: var(--font-jp);
  font-size: 13px;
  color: var(--c-gray-900);
}

/* --- 関連アイテム -------------------------------------------------------- */
.related {
  margin-top: clamp(80px, 12vw, 170px);
  border-top: 1px solid var(--c-gray-300);
}


/* ==========================================================================
   18. RESPONSIVE
   ========================================================================== */

/* --- Tablet（〜1024px） --------------------------------------------------- */
@media screen and (max-width: 1024px) {
  :root {
    --pad-x: 5vw;
    --header-h: 164px;
  }

  .header__logo { --logo-h: 112px; }

  /* 商品グリッド：3カラム（4列と2列の中間） */
  .product-grid { grid-template-columns: repeat(3, 1fr); }

  /* Running Tiger：140px */
  .tiger-runner__img { width: 140px; }

  /* 商品詳細：情報の追従を解除（縦に長くなりすぎるため） */
  .detail { grid-template-columns: 1fr 1fr; gap: 40px; }
  .detail__info { position: static; }
}

/* --- ハンバーガー切替（〜900px）------------------------------------------- */
@media screen and (max-width: 900px) {
  /* 中央ナビを隠し、ハンバーガーを表示。ヘッダーはロゴ1段のみになる */
  :root { --header-h: 118px; }

  .gnav { display: none; }
  .hamburger { display: block; }

  .header__inner { gap: 0; }
  .header__logo { --logo-h: 104px; }
}

/* --- Mobile（〜767px） ---------------------------------------------------- */
@media screen and (max-width: 767px) {
  :root {
    --pad-x: 6vw;
    --header-h: 108px;
    --sec-pad: clamp(72px, 16vw, 110px);
  }

  body { font-size: 14px; }

  /* 中央ロゴと右上アイコンがぶつからないよう、画面幅に追従させる */
  .header__logo { --logo-h: clamp(64px, 19vw, 96px); }
  .icon-btn { width: 38px; height: 38px; }

  /* Hero */
  .hero { height: 90vh; min-height: 460px; }
  .hero__copy { bottom: 124px; }
  .hero__lead { font-size: 12px; line-height: 2; }
  .scroll-cue { right: auto; left: 50%; transform: translateX(-50%); }
  .scroll-cue__line { height: 56px; }

  /* Running Tiger：120px */
  .tiger-runner__img { width: 120px; }
  @keyframes tiger-run {
    from { transform: translate3d(-200px, 0, 0); }
    to   { transform: translate3d(calc(100vw + 200px), 0, 0); }
  }

  /* 商品グリッド：2カラム（10行＝20点） */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 14px;
  }
  .product-card__body { padding-top: 14px; }
  .product-card__name { font-size: 12.5px; }
  .product-card__price { font-size: 12px; }

  /* ブランドストーリー：1カラム（ジグザグ解除） */
  .story__row {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 90px;
  }
  .story__row--reverse .story__media { order: 0; }
  .story__row--reverse .story__body  { order: 0; }
  .story__media { aspect-ratio: 3 / 4; }

  /* NEWSリスト：日付＋カテゴリを1段目、タイトルを2段目に */
  .news-item__link {
    grid-template-columns: auto 1fr;
    gap: 10px 16px;
    padding-block: 22px;
  }
  .news-item__title { grid-column: 1 / -1; font-size: 13px; }
  .news-item__link:hover { padding-left: 10px; }

  /* ブランド概要：1カラム */
  .info__list { grid-template-columns: 1fr; }
  .info__list dt { padding-bottom: 0; border-top: 1px solid var(--c-gray-300); }
  .info__list dd { padding-top: 8px; border-top: 0; }

  /* Newsletter */
  .newsletter__btn { padding-left: 14px; letter-spacing: 0.14em; }

  /* Footer */
  .footer__list { gap: 12px 20px; }

  /* Scroll top button */
  .to-top { bottom: 20px; right: 16px; }

  /* 商品詳細：1カラム */
  .detail { grid-template-columns: 1fr; gap: 36px; }
  .detail__spec { grid-template-columns: 6em 1fr; }
  .detail__cart { margin-top: 36px; padding-top: 32px; }
}

/* --- 小型端末（〜390px） -------------------------------------------------- */
@media screen and (max-width: 390px) {
  .header__right { gap: 0; }
  .product-grid { gap: 28px 12px; }

  /* アイコンを一回り小さくして、中央ロゴのスペースを確保する */
  .icon-btn  { width: 34px; height: 34px; }
  .hamburger { width: 34px; }
}


/* ==========================================================================
   19. ACCESSIBILITY
   動きを減らす設定のユーザーには、装飾アニメーションを停止
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  /* 初期状態が非表示のままにならないよう強制表示 */
  .reveal { opacity: 1; transform: none; }
  .hero__line > span { transform: none; }
  .hero__label,
  .hero__lead,
  .scroll-cue { opacity: 1; }
  .opening__logo { opacity: 1; }

  /* 走る虎は待機位置（画面外）で静止 */
  .tiger-runner.is-running { animation: none; }
}

/* --- 印刷時 --------------------------------------------------------------- */
@media print {
  .opening, .header, .drawer, .search, .to-top, .tiger-cutin { display: none !important; }
  body { padding-top: 0; }
}
