@charset "UTF-8";
/* ==========================================================================
   男性着物レンタル 総合ページ  (plan/mens.html 専用)
   デザイン出典：design_handoff_mens_kimono_page（2026-08-31 受領）
   トークンはデザインシステム「Classical」に準拠。色・余白は変数から取る。
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600&family=Zen+Old+Mincho:wght@400;500;700&display=swap');

/* --------------------------------------------------------------------------
   1. デザイントークン（Classical）
   -------------------------------------------------------------------------- */
:root {
  --color-bg: #f3f2f2;
  --color-surface: #eae9e9;
  --color-text: #201f1d;
  --color-accent: #b68235;
  --color-divider: color-mix(in srgb, #201f1d 16%, transparent);

  --color-neutral-100: #f8f4f4;
  --color-neutral-200: #eae7e7;
  --color-neutral-300: #d7d3d3;
  --color-neutral-400: #bab6b6;
  --color-neutral-500: #9b9797;
  --color-neutral-600: #7d7979;
  --color-neutral-700: #605d5d;
  --color-neutral-800: #444141;
  --color-neutral-900: #2d2b2b;

  --color-accent-100: #fff3e4;
  --color-accent-200: #ffe3bf;
  --color-accent-300: #facb8d;
  --color-accent-400: #e1ad66;
  --color-accent-600: #a06f24;
  --color-accent-700: #7d5411;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;
  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);
  --shadow-md: 0 3px 10px color-mix(in srgb, #2d2b2b 16%, transparent);

  /* このページ固有 */
  --font-head: "Shippori Mincho B1", "Hiragino Mincho ProN", serif;
  --font-body: "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --wrap: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --bar-h: 76px;      /* 固定フッターバーの高さ */
  --hero-duration: 20s;
}

/* --------------------------------------------------------------------------
   2. ベース
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.95;
  text-wrap: pretty;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  padding-bottom: var(--bar-h);
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; margin: 0; }
p { margin: 0; }
img { display: block; max-width: 100%; }
figure { margin: 0; }

a { color: var(--color-accent-700); text-underline-offset: 3px; }
a:hover { color: var(--color-accent-600); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }

/* 価格・項番はタブラー数字で桁を揃える */
.tnum { font-feature-settings: 'tnum' 1; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--pad); }
.hr {
  height: 1px; border: 0; margin: 0;
  background: var(--color-divider);
}

/* --------------------------------------------------------------------------
   3. コンポーネント（Classical準拠）
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-head); font-weight: 500;
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid var(--color-divider);
  padding: 11px 20px; border-radius: var(--radius-md);
  min-height: 44px;
}
.btn-primary { color: var(--color-accent); border-color: var(--color-accent); }
.btn-primary:hover {
  background: color-mix(in srgb, var(--color-accent) 12%, transparent);
  color: var(--color-accent);
}
.btn-secondary:hover { background: color-mix(in srgb, var(--color-text) 7%, transparent); }

.card {
  display: flex; flex-direction: column;
  border: 1px solid var(--color-divider); border-radius: var(--radius-md);
  background: transparent;
}
.card-kicker {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--color-accent);
}
.card-title { font-family: var(--font-head); font-weight: 500; line-height: 1.4; }
.card-body { color: var(--color-neutral-800); }

/* 写真の額装 */
.plate {
  display: block; overflow: hidden;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
}
.plate img { width: 100%; height: 100%; object-fit: cover; }

/* --------------------------------------------------------------------------
   4. ヘッダー
   -------------------------------------------------------------------------- */
.lp-nav {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: clamp(12px, 3vw, 28px);
  padding: 18px 0;
  border-bottom: 1px solid var(--color-divider);
}
.lp-nav__brand {
  font-family: var(--font-head); font-weight: 500;
  font-size: 19px; letter-spacing: 0.04em;
}
.lp-nav__spacer { flex: 1; }
.lp-nav__tel { font-size: 14px; letter-spacing: 0.04em; text-decoration: none; }

/* --------------------------------------------------------------------------
   5. ヒーロー（4枚クロスフェード・CSSのみ）
   -------------------------------------------------------------------------- */
@keyframes heroFade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  25%  { opacity: 1; }
  33%  { opacity: 0; }
  100% { opacity: 0; }
}

.hero {
  position: relative;
  width: 100vw; margin-left: calc(50% - 50vw);
  height: min(88vh, 860px); min-height: 460px;
  overflow: hidden;
  background: var(--color-neutral-800);
}
.hero__slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
}
/* アニメーション未対応・無効時は1枚目を表示したままにする（消えない） */
.hero__slide--1 { opacity: 1; }

@media (prefers-reduced-motion: no-preference) {
  .hero__slide {
    animation: heroFade var(--hero-duration) infinite;
  }
  .hero__slide--1 { animation-delay: calc(var(--hero-duration) / 4 * 0); }
  .hero__slide--2 { animation-delay: calc(var(--hero-duration) / 4 * 1); }
  .hero__slide--3 { animation-delay: calc(var(--hero-duration) / 4 * 2); }
  .hero__slide--4 { animation-delay: calc(var(--hero-duration) / 4 * 3); }
}

.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg,
    rgba(20,17,14,0.18) 0%, rgba(20,17,14,0.34) 45%, rgba(18,15,12,0.80) 100%);
}
.hero__inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  max-width: var(--wrap); margin: 0 auto;
  padding: clamp(28px, 6vw, 72px) clamp(20px, 6vw, 72px);
  color: #f6f3ee;
}
.hero__kicker {
  display: block; font-size: 13px; letter-spacing: 0.22em;
  color: var(--color-accent-300);
}
.hero__title {
  text-shadow: 0 2px 10px rgba(0,0,0,0.45);
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.35; letter-spacing: 0.02em;
  font-weight: 400; margin: 18px 0 0; color: #f6f3ee;
}
.hero__title span { display: block; }
.hero__title-sub {
  font-size: 0.4em; letter-spacing: 0.1em;
  margin-top: 16px; color: #ece7dd;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero__lead {
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  max-width: 32em; font-size: 16px;
  margin: clamp(22px, 3vw, 32px) 0 0; color: #e7e2d8;
}
.hero__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero__btns .btn { color: #e7e2d8; border-color: rgba(246,243,238,0.5); }
.hero__btns .btn-primary { color: #f6f3ee; border-color: #f6f3ee; }
.hero__btns .btn-primary:hover { background: rgba(246,243,238,0.14); color: #fff; }
.hero__note { margin: 16px 0 0; font-size: 13px; color: #cfc8bb; }

/* --------------------------------------------------------------------------
   6. 汎用セクション
   -------------------------------------------------------------------------- */
.sec { padding: clamp(44px, 6vw, 80px) 0; }
.sec--tight { padding: clamp(44px, 6vw, 80px) 0 clamp(20px, 3vw, 36px); }

.sec__eyebrow {
  display: block; font-size: 13px; letter-spacing: 0.2em;
  color: var(--color-accent-700);
}
.sec__h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.45; font-weight: 400;
}
.sec__h2--sm { font-size: clamp(26px, 3vw, 36px); line-height: 1.5; }
.sec__lead { max-width: 38em; margin: 18px 0 0; }

/* サムライ導入（写真6 : テキスト5） */
.intro-split {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 56px); align-items: center;
}
.intro-split__media img { width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; }
.intro-split__body p + p { margin-top: 1em; }

/* 課題提起（2カラム） */
.problem {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(24px, 4vw, 56px);
}
.problem p + p { margin-top: 1em; }

/* --------------------------------------------------------------------------
   7. シーン × 装い（このページの核）
   -------------------------------------------------------------------------- */
.scenes { display: grid; gap: clamp(56px, 7vw, 88px); margin-top: clamp(40px, 5vw, 64px); }

.scene-row {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(28px, 4vw, 56px); align-items: center;
}

/* 横スクロールギャラリー（スワイプ送り） */
.gallery {
  display: flex; gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery::-webkit-scrollbar { display: none; }
.gallery > img {
  flex: 0 0 86%; aspect-ratio: 16 / 10;
  object-fit: cover; scroll-snap-align: start;
}

.scene__no {
  display: block; font-size: 16px; letter-spacing: 0.14em;
  color: var(--color-accent-700);
}
.scene__name {
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.55; margin: 14px 0 0; font-weight: 500;
}
.scene__desc { margin: 16px 0 0; font-size: 15.5px; }
.scene__origin { margin: 12px 0 0; font-size: 14.5px; color: var(--color-neutral-800); }
.scene__price { margin: 16px 0 0; font-size: 16px; }
.scene__staff { margin: 14px 0 0; font-size: 14.5px; color: var(--color-neutral-800); }

.scenes__note {
  font-size: 13px; color: var(--color-neutral-700);
  margin: clamp(40px, 5vw, 56px) 0 0;
}

/* --------------------------------------------------------------------------
   8. ご利用方法 / お客様の声（カード共通）
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
  gap: clamp(20px, 3vw, 32px);
}
.cards--reviews { grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); }
.cards .card { padding: clamp(22px, 3vw, 32px); }
.cards .card-title { font-size: 22px; margin: 8px 0 0; }
.cards .card-body { margin: 12px 0 0; font-size: 15px; }

.stars { color: var(--color-accent-700); font-size: 14px; letter-spacing: 0.05em; }
.review__body { margin: 14px 0 0; font-size: 15px; }
.review__meta { margin: 12px 0 0; font-size: 13px; color: var(--color-neutral-600); }

/* --------------------------------------------------------------------------
   9. おすすめの商品
   -------------------------------------------------------------------------- */
.prod { margin: 0; }
.prod__h3 { font-size: 22px; font-weight: 500; }
.prod__lead { margin: 10px 0 0; font-size: 15px; max-width: 44em; }

/* 参考写真の横スクロール */
.prod__refs {
  display: flex; gap: 12px; margin-top: 20px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
}
.prod__refs::-webkit-scrollbar { display: none; }
.prod__refs .plate {
  flex: 0 0 min(220px, 70%); aspect-ratio: 3 / 4; scroll-snap-align: start;
}

/* 品番カタログ */
.prod__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr));
  gap: clamp(20px, 3vw, 32px); margin-top: 24px;
}
.prod__grid .plate { aspect-ratio: 3 / 4; }
.prod__code {
  margin: 12px 0 0; font-size: 13px; letter-spacing: 0.1em;
  color: var(--color-neutral-700);
}
.prod__price { margin: 6px 0 0; font-size: 15px; }
.prod__more { margin: 20px 0 0; font-size: 15px; }

/* --------------------------------------------------------------------------
   10. FAQ（details / summary・JS不要）
   -------------------------------------------------------------------------- */
.faq { max-width: 52em; border-top: 1px solid var(--color-divider); }
.faq details {
  border-bottom: 1px solid var(--color-divider);
  padding: 18px 0;
}
.faq summary {
  font-family: var(--font-head); font-size: 18px;
  cursor: pointer; list-style: none;
  display: flex; align-items: flex-start; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "＋"; margin-left: auto; flex: none;
  color: var(--color-accent-700); font-size: 15px;
  transition: transform .2s;
}
.faq details[open] summary::after { content: "－"; }
.faq details p { margin: 12px 0 0; font-size: 15px; }

/* --------------------------------------------------------------------------
   11. お問い合わせ（ダーク）
   -------------------------------------------------------------------------- */
.contact {
  background: var(--color-neutral-900); color: var(--color-neutral-100);
  padding: clamp(52px, 7vw, 96px) 0;
}
.contact h2 { color: var(--color-neutral-100); }
.contact__lead { margin: 20px 0 0; max-width: 36em; color: var(--color-neutral-300); }
.contact__btns { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }
.contact__btns .btn { color: var(--color-neutral-100); border-color: var(--color-neutral-600); }
.contact__btns .btn:hover { background: rgba(248,244,244,0.08); color: var(--color-neutral-100); }
.contact__btns .btn--line { color: var(--color-accent-400); border-color: var(--color-accent-400); }
.contact__btns .btn--line:hover {
  color: var(--color-accent-300);
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
}
.contact__note { margin: 16px 0 0; font-size: 13px; color: var(--color-neutral-500); }

/* --------------------------------------------------------------------------
   12. フッター
   -------------------------------------------------------------------------- */
.lp-footer { padding: clamp(36px, 5vw, 56px) var(--pad); max-width: var(--wrap); margin: 0 auto; }
.lp-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 24px; font-size: 14px; color: var(--color-neutral-700);
}
.lp-footer__name {
  color: var(--color-text); font-family: var(--font-head); font-size: 17px;
}
.lp-footer__links { display: grid; gap: 6px; }

/* --------------------------------------------------------------------------
   13. 固定フッターバー
   -------------------------------------------------------------------------- */
.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  box-shadow: var(--shadow-md);
  padding: 10px clamp(12px, 4vw, 28px);
  padding-bottom: calc(10px + env(safe-area-inset-bottom));
  display: flex; gap: 10px; align-items: center;
}
.ctabar__label {
  font-family: var(--font-head); font-size: 15px;
  flex: 1; min-width: 0;
  overflow: hidden; white-space: nowrap; text-overflow: ellipsis;
}
.ctabar .btn { padding-inline: 18px; }

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

/* --- タブレット --- */
@media screen and (max-width: 900px) {
  .intro-split { grid-template-columns: 1fr; gap: 28px; }
  .intro-split__media img { aspect-ratio: 16 / 11; max-height: 420px; }
}

/* --- スマートフォン（デザイン指定の分岐点） --- */
@media screen and (max-width: 720px) {
  .scene-row { grid-template-columns: 1fr; }
  .gallery > img { flex: 0 0 92%; }
  .hero { height: min(78vh, 620px); }
  .lp-nav { padding: 14px 0; }
  .lp-nav__brand { font-size: 16px; }
  .lp-nav .btn { padding: 9px 14px; font-size: 13px; }
}

@media screen and (max-width: 560px) {
  body { font-size: 15.5px; line-height: 1.9; }
  .ctabar__label { display: none; }
  .ctabar .btn { flex: 1; }
  .contact__btns { flex-direction: column; align-items: stretch; }
  .prod__refs .plate { flex: 0 0 min(180px, 62%); }
}

/* --------------------------------------------------------------------------
   15. 横スクロールの合図（＞矢印・件数表示）
   スワイプできることが分かるように、ギャラリー右端に矢印を重ねる。
   -------------------------------------------------------------------------- */
.gallery-wrap { position: relative; }

/* 右端のグラデーション＋矢印。写真の邪魔をしないよう控えめに */
.gallery-wrap::after {
  content: "";
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 64px; pointer-events: none;
  background: linear-gradient(to left, var(--color-bg) 0%, rgba(243,242,242,0) 100%);
  opacity: 1; transition: opacity .25s;
}
.gallery-wrap.is-end::after { opacity: 0; }

.gallery-next {
  position: absolute; top: 50%; right: 8px;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--color-divider);
  border-radius: 50%;
  background: rgba(255,255,255,0.88);
  color: var(--color-text);
  font-family: var(--font-head); font-size: 17px; line-height: 1;
  cursor: pointer;
  transition: opacity .25s, background .2s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
.gallery-next:hover { background: #fff; color: var(--color-accent); }
.gallery-wrap.is-end .gallery-next { opacity: 0; pointer-events: none; }

/* 「1 / 3」の枚数表示 */
.gallery-hint {
  display: flex; align-items: center; gap: 8px;
  margin-top: 10px;
  font-size: 12.5px; letter-spacing: 0.06em;
  color: var(--color-neutral-600);
}
.gallery-hint__arrow { color: var(--color-accent-700); }

@media screen and (max-width: 560px) {
  .gallery-next { width: 34px; height: 34px; font-size: 15px; right: 6px; }
  .gallery-wrap::after { width: 44px; }
}

/* 枚数表示はギャラリーの直下に置く（グリッドの列に流れないよう wrap 内に収める） */
.gallery-wrap .gallery-hint { margin: 10px 0 0; }

/* 口コミカード：シーンラベルと星を縦に積む（2026-08-31 追記） */
.cards--reviews .card-kicker { display: block; margin-bottom: 10px; }
.cards--reviews .stars { display: block; }
.cards--reviews .review__meta a { color: var(--color-neutral-700); }

/* --------------------------------------------------------------------------
   17. レンタル内容とご利用について（2026-09-01 追加）
   -------------------------------------------------------------------------- */
.setlist { list-style: none; margin: 16px 0 0; padding: 0; font-size: 15px; }
.setlist li {
  position: relative; padding-left: 1.6em;
  margin-top: 9px; line-height: 1.85;
  color: var(--color-neutral-800);
}
.setlist li::before {
  content: "✓"; position: absolute; left: 0;
  color: var(--color-accent); font-size: 0.95em;
}
.setlist--dot li::before { content: "●"; font-size: 0.55em; top: 0.55em; }
.set-sub {
  margin: 24px 0 0; font-family: var(--font-head); font-weight: 500;
  font-size: 15px; color: var(--color-text);
}
.set-note {
  margin: 16px 0 0; font-size: 13.5px; line-height: 1.85;
  color: var(--color-neutral-600);
}

/* 商品セクション：プラン名を見出し級に、価格を大きく（2026-09-01） */
.prod__h3 { font-size: clamp(22px, 2.4vw, 28px); line-height: 1.45; }
.prod__planprice {
  margin: 12px 0 0;
  font-family: var(--font-head); font-weight: 500;
  font-size: clamp(20px, 2vw, 24px); letter-spacing: 0.02em;
  color: var(--color-accent-700);
}
.prod__lead { margin-top: 14px; }
.prod__price { font-size: 16px; color: var(--color-accent-700); }
