@charset "UTF-8";
/* ==========================================================================
   結納・顔合わせのきもの LP  (scene/yuinou.html 専用)
   デザインシステム「Classical」のトークンを唯一の出典とする。
   色・フォント・余白は必ず下記の変数から取り、ハードコードしないこと。
   ========================================================================== */

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

/* --------------------------------------------------------------------------
   1. デザイントークン（design/_ds/classical-.../styles.css より）
   -------------------------------------------------------------------------- */
: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-500: #c28d41;
  --color-accent-600: #a06f24;
  --color-accent-700: #7d5411;
  --color-accent-800: #5a3b0a;

  /* ダーク帯の上に乗せる文字 */
  --color-on-dark: #f1ece3;
  --color-on-dark-strong: #faf7f2;

  --font-heading: "Cormorant Garamond", "Shippori Mincho", serif;
  --font-body: "Shippori Mincho", "Cormorant Garamond", "Lora", serif;
  --font-heading-weight: 600;

  --space-1: 4.6px;
  --space-2: 9.2px;
  --space-3: 13.8px;
  --space-4: 18.4px;
  --space-6: 27.6px;
  --space-8: 36.8px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 7px;

  --shadow-sm: 0 1px 2px color-mix(in srgb, #2d2b2b 14%, transparent);

  /* このLP固有のレイアウト値 */
  --gutter: 6vw;
  --section-pad: 110px;
  --split-min-h: 640px;
  --ctabar-h: 53px;
}

/* --------------------------------------------------------------------------
   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: 15px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0 0 var(--space-2);
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 25px; }
h4 { font-size: 20px; }
h5 { font-size: 16px; }
h6 { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }

p { margin: 0 0 var(--space-3); }
img { display: block; max-width: 100%; }
figure { margin: 0; }

a { color: var(--color-accent-700); text-decoration: none; text-underline-offset: 3px; }
a:hover { color: var(--color-accent); }

:focus { outline: none; }
:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
::selection { background: color-mix(in srgb, var(--color-accent) 30%, transparent); }

/* --------------------------------------------------------------------------
   3. デザインシステムのコンポーネントクラス
   -------------------------------------------------------------------------- */
.hr {
  height: 1px; border: 0; margin: var(--space-4) 0;
  background: var(--color-divider);
}

.plate {
  filter: sepia(0.22) saturate(0.82) contrast(1.05);
  box-sizing: border-box;
  border: 6px solid var(--color-surface);
  outline: 1px solid var(--color-divider);
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  cursor: pointer; text-decoration: none;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; line-height: 1.2; color: var(--color-text);
  background: transparent; border: 1px solid transparent;
  padding: var(--space-2) calc(var(--space-3) * 1.2);
  border-radius: var(--radius-md);
}
.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-primary:active { background: color-mix(in srgb, var(--color-accent) 22%, transparent); }

.card {
  display: flex; flex-direction: column; gap: var(--space-2);
  padding: var(--space-3); border-radius: var(--radius-md);
  background: transparent; border: 1px solid var(--color-divider);
}
.elev-sm { box-shadow: var(--shadow-sm); }

.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table th {
  text-align: left; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  color: color-mix(in srgb, var(--color-text) 60%, transparent);
  padding: var(--space-2); border-bottom: 1px solid var(--color-divider);
  white-space: nowrap;
}
.table td { padding: var(--space-2); border-bottom: 1px solid var(--color-divider); }
.table tbody tr:hover { background: color-mix(in srgb, var(--color-text) 4%, transparent); }

/* 表はモバイルで横スクロール（狭い画面で潰さず、min-width で横に逃がす） */
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.table-wrap .table { min-width: 620px; }
.table-wrap .table td { white-space: nowrap; }

/* --------------------------------------------------------------------------
   4. アニメーション
   スクロール駆動（animation-timeline: view()）。未対応ブラウザでは
   @supports が偽になり fadeUp は一切適用されない = 最初から表示される。
   -------------------------------------------------------------------------- */
@keyframes heroCycle {
  0%   { opacity: 0; transform: scale(1.00); }
  6%   { opacity: 1; }
  30%  { opacity: 1; transform: scale(1.07); }
  38%  { opacity: 0; transform: scale(1.09); }
  100% { opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .fade-up {
      animation: fadeUp 1s ease-out;
      animation-timeline: view();
      animation-range: entry 0% entry 45%;
    }
    .fade-up--50 { animation-range: entry 0% entry 50%; }
    .fade-up--55 { animation-range: entry 0% entry 55%; animation-duration: 1.1s; }
    .fade-up--58 { animation-range: entry 0% entry 58%; animation-duration: 1.1s; }
    .fade-up--60 { animation-range: entry 0% entry 60%; }
    .fade-up--61 { animation-range: entry 0% entry 61%; animation-duration: 1.1s; }
    .fade-up--64 { animation-range: entry 0% entry 64%; animation-duration: 1.1s; }
    .fade-up--67 { animation-range: entry 0% entry 67%; animation-duration: 1.1s; }
  }
}

/* --------------------------------------------------------------------------
   5. ヘッダー（ヒーローに重ねるバー）
   -------------------------------------------------------------------------- */
.lp-header {
  position: absolute; top: 0; left: 0; right: 0; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px var(--gutter);
  color: var(--color-on-dark-strong);
}
.lp-header__brand {
  font-family: var(--font-heading);
  font-size: 18px; letter-spacing: 0.04em;
}
.lp-header__brand a { color: inherit; }
.lp-header__contact {
  color: var(--color-on-dark-strong); font-size: 13px; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(250, 247, 242, 0.55);
}
.lp-header__contact:hover { color: var(--color-accent-200); }

/* --------------------------------------------------------------------------
   6. ヒーロー
   -------------------------------------------------------------------------- */
.hero { position: relative; height: 100vh; min-height: 520px; overflow: hidden; }
.hero__img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.94) brightness(0.93) contrast(1.04);
  opacity: 0;
}
@media (prefers-reduced-motion: no-preference) {
  .hero__img { animation: heroCycle 21s infinite ease-in-out; }
}
/* アニメーションを止める設定の場合は1枚目だけ表示 */
@media (prefers-reduced-motion: reduce) {
  .hero__img:first-of-type { opacity: 1; }
}
.hero__img--1 { animation-delay: 0s; }
.hero__img--2 { animation-delay: -7s; }
.hero__img--3 { animation-delay: -14s; }

.hero__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(20, 16, 12, 0.12) 0%,
    rgba(20, 16, 12, 0.20) 45%,
    rgba(20, 16, 12, 0.62) 100%);
}
.hero__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--gutter) 96px;
  color: var(--color-on-dark-strong);
}
/* H1「結納・顔合わせのきもの」が1行に収まる幅。
   clamp の上限 72px × 11文字 ≒ 790px を受けられるようにしている。 */
.hero__text { max-width: 860px; margin-bottom: 44px; }
.hero__kicker {
  font-family: var(--font-heading);
  font-size: 14px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--color-accent-300); margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(38px, 6vw, 72px); font-weight: 400;
  margin: 0 0 22px; line-height: 1.15;
}
.hero__lead {
  font-family: var(--font-heading);
  font-size: clamp(17px, 2vw, 22px); line-height: 1.7;
  margin: 0; font-style: italic; color: var(--color-on-dark);
}
.hero__scroll {
  color: var(--color-on-dark); font-size: 11px; letter-spacing: 0.12em;
  display: flex; align-items: center; gap: 10px;
}
.hero__scroll::before {
  content: ""; width: 1px; height: 34px;
  background: rgba(241, 236, 227, 0.6); display: inline-block;
}

/* --------------------------------------------------------------------------
   7. 共通レイアウト
   -------------------------------------------------------------------------- */
.wrap      { max-width: 1120px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--1000 { max-width: 1000px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--900 { max-width: 900px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--840 { max-width: 840px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }
.wrap--680 { max-width: 680px; margin: 0 auto; }
.wrap--640 { max-width: 640px; margin: 0 auto; padding-left: var(--gutter); padding-right: var(--gutter); }

.lead-text {
  font-size: 15px; line-height: 2;
  color: var(--color-neutral-700); text-align: justify;
}
.lead-text--center { text-align: center; margin-bottom: 40px; }
.kicker { color: var(--color-accent-700); margin-bottom: 14px; }
.note { font-size: 13px; color: var(--color-neutral-600); }

/* パンくず */
.breadcrumb {
  max-width: 1120px; margin: 0 auto;
  padding: 22px var(--gutter);
  font-size: 12px; color: var(--color-neutral-600);
  display: flex; gap: 8px; flex-wrap: wrap;
}
.breadcrumb .hr { max-width: 1120px; margin: 0 auto; }

/* イントロ */
.intro { padding: 88px var(--gutter) 96px; text-align: center; }
.intro__lead {
  font-family: var(--font-heading);
  font-size: 22px; line-height: 1.9; margin: 0 0 28px;
}
.intro .lead-text { margin: 0; }

/* 左右分割セクション */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: stretch; min-height: var(--split-min-h);
}
.split--600 { min-height: 600px; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__body {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px var(--gutter);
}
.split__body .lead-text { margin-bottom: 18px; }
.split__body .lead-text:last-child { margin-bottom: 0; }
.split__quote {
  font-family: var(--font-heading);
  font-size: 18px; font-style: italic;
  margin: 26px 0 18px; color: var(--color-text);
}
.split__quote--17 { font-size: 17px; margin: 0 0 18px; }
/* 画像を左に置く／右に置く */
.split--media-left  .split__media { order: 1; }
.split--media-left  .split__body  { order: 2; }
.split--media-right .split__body  { order: 1; }
.split--media-right .split__media { order: 2; }

/* --------------------------------------------------------------------------
   8. 選び方のコツ（サーフェス地のブロック）
   -------------------------------------------------------------------------- */
.selection { background: var(--color-surface); }
.selection__intro { padding: var(--section-pad) var(--gutter) 90px; text-align: center; }
.selection__intro .lead-text { text-align: center; }
.selection__block { padding-bottom: 96px; }
.selection__block h3 { text-align: center; margin-bottom: 28px; }

/* 着物の種類の定義リスト */
.deflist { display: flex; flex-direction: column; gap: 24px; }
.deflist h4 { margin-bottom: 8px; }
.deflist p { margin: 0; }
.deflist .hr { margin: 0; }

/* 男性の装い */
.mens-detail { padding-bottom: 96px; }
.mens-detail h3 { margin-bottom: 24px; }
.mens-detail__note { margin: 20px 0 24px; }

/* --------------------------------------------------------------------------
   9. コラム
   -------------------------------------------------------------------------- */
/* padding の一括指定は .wrap の左右余白を打ち消すため padding-block を使う */
.column { padding-block: var(--section-pad); }
.column__head { text-align: center; margin-bottom: 64px; }
.column__head h2 { margin-bottom: 0; }
.column__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
/* カードが2枚以下のときは、3列のカード幅を保ったまま中央寄せにする。
   3枚に戻せば自動的に元の3列レイアウトに復帰する。 */
.column__grid:not(:has(> a:nth-child(3))) {
  grid-template-columns: repeat(2, minmax(0, 347px));
  justify-content: center;
}
.column__card { display: block; }
.column__card figure { margin: 0 0 20px; }
.column__card img { width: 100%; height: 280px; object-fit: cover; }
.column__card h4 { margin-bottom: 10px; color: var(--color-text); }
.column__card:hover h4 { color: var(--color-accent); }
.column__card p {
  font-size: 14px; line-height: 1.9;
  color: var(--color-neutral-700); margin-bottom: 14px;
}
.column__more { font-size: 12px; letter-spacing: 0.1em; color: var(--color-accent-700); }

/* --------------------------------------------------------------------------
   10. きものラインナップ（ダーク帯・5連ストリップ）
   -------------------------------------------------------------------------- */
.lineup { background: var(--color-neutral-900); color: var(--color-on-dark); position: relative; }
.lineup__inner { display: flex; min-height: 70vh; }
.lineup__label {
  flex: 0 0 120px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 36px; padding: 40px 0;
}
.lineup__label-main {
  writing-mode: vertical-rl; font-family: var(--font-heading);
  font-size: 32px; letter-spacing: 0.08em; font-weight: 400;
}
.lineup__label-sub {
  writing-mode: vertical-rl; font-size: 11px; letter-spacing: 0.2em;
  color: var(--color-accent-300);
}
.lineup__strip { flex: 1; display: grid; grid-template-columns: repeat(5, 1fr); }
.lineup__strip img { width: 100%; height: 100%; object-fit: cover; }
.lineup__top {
  flex: 0 0 48px;
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  gap: 10px; padding-bottom: 36px;
  color: var(--color-on-dark); font-size: 11px; letter-spacing: 0.15em;
}
.lineup__top:hover { color: var(--color-accent-300); }
.lineup__top span:last-child { writing-mode: vertical-rl; }

/* --------------------------------------------------------------------------
   11. お客様の声
   -------------------------------------------------------------------------- */
.reviews { background: var(--color-surface); padding: var(--section-pad) var(--gutter); }
.reviews__head { max-width: 640px; margin: 0 auto; text-align: center; }
.reviews__badge { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.reviews__score {
  background: var(--color-neutral-900); color: #fff;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 22px; padding: 8px 16px; border-radius: var(--radius-sm);
}
.reviews__score-label { text-align: left; }
.reviews__score-label > div:first-child { font-size: 14px; }
.reviews__score-label > div:last-child { font-size: 12px; color: var(--color-neutral-600); }
.reviews__grid {
  max-width: 1120px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
}
.review-card { padding: 32px; }
.review-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.review-card__avatar {
  width: 48px; height: 48px; border-radius: 50%; flex: none;
  object-fit: cover; background: var(--color-neutral-300);
}
.review-card__avatar--initial {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 17px;
  color: var(--color-neutral-700); background: var(--color-neutral-200);
}
.review-card__name { font-size: 14px; }
.review-card__stars { display: flex; gap: 2px; color: var(--color-accent-600); }
.review-card__body {
  font-size: 14px; line-height: 1.9;
  color: var(--color-neutral-700); margin: 0 0 10px;
}
.review-card__src { font-size: 12px; color: var(--color-neutral-500); }
.reviews__more { text-align: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   12. 3つのご利用方法
   -------------------------------------------------------------------------- */
.service { padding-block: var(--section-pad) 20px; }
.service__head { text-align: center; margin-bottom: 56px; }
.service__head .lead-text { text-align: center; margin-bottom: 0; }
.service__head h2 { margin-bottom: 20px; }
.service__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { padding: 36px; }
/* カード上部の写真。カードの内側余白いっぱいに回り込ませる */
.service-card__media {
  margin: -36px -36px 26px;
  overflow: hidden;
  border-bottom: 1px solid var(--color-divider);
}
.service-card__media img {
  width: 100%; height: 190px; object-fit: cover;
}
.service-card h4 { margin-bottom: 14px; }
.service-card p {
  font-size: 14px; line-height: 1.9;
  color: var(--color-neutral-700); flex: 1; margin: 0;
}
.service-card__meta {
  font-size: 13px; color: var(--color-neutral-600); margin: 14px 0 18px;
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { padding-block: var(--section-pad); }
.faq__head { text-align: center; margin-bottom: 56px; }
.faq__head h2 { margin-bottom: 0; }
.faq__list { display: flex; flex-direction: column; gap: 28px; }
.faq__list h4 { margin-bottom: 10px; }
.faq__list p {
  font-size: 15px; line-height: 2;
  color: var(--color-neutral-700); margin: 0;
}
.faq__list .hr { margin: 0; }

/* --------------------------------------------------------------------------
   14. お問い合わせ（ダークCTA）
   -------------------------------------------------------------------------- */
.contact {
  background: var(--color-neutral-900); color: var(--color-on-dark);
  padding: 130px var(--gutter);
}
.contact__inner { text-align: center; }
.contact h2 { color: var(--color-on-dark); margin-bottom: 8px; }
.contact .kicker { color: var(--color-accent-300); margin-bottom: 16px; }
.contact__quote {
  font-family: var(--font-heading); font-style: italic; font-size: 19px;
  color: var(--color-accent-200); margin-bottom: 30px;
}
.contact__text {
  font-size: 15px; line-height: 2;
  color: color-mix(in srgb, #f1ece3 78%, transparent);
  margin-bottom: 48px;
}
.contact__btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.contact__btn {
  border: 1px solid rgba(241, 236, 227, 0.35);
  color: var(--color-on-dark);
  padding: 14px 30px; border-radius: var(--radius-md);
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px;
}
.contact__btn:hover { color: var(--color-on-dark); background: rgba(241, 236, 227, 0.08); }
.contact__btn--line {
  border-color: var(--color-accent-400); color: var(--color-accent-300);
}
.contact__btn--line:hover {
  color: var(--color-accent-200);
  background: color-mix(in srgb, var(--color-accent) 16%, transparent);
}

/* --------------------------------------------------------------------------
   15. フッター
   -------------------------------------------------------------------------- */
.lp-footer {
  padding: 28px var(--gutter) calc(var(--ctabar-h) + 47px);
  text-align: center; font-size: 12px; color: var(--color-neutral-600);
}
.lp-footer__shop { margin-bottom: 10px; }
.lp-footer__links {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 18px; margin-bottom: 16px;
}
.lp-footer__links a { color: var(--color-neutral-600); }
.lp-footer__links a:hover { color: var(--color-accent); }
.lp-footer__top { color: var(--color-neutral-600); }

/* --------------------------------------------------------------------------
   16. 固定CTAバー
   -------------------------------------------------------------------------- */
.ctabar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 20;
  background: var(--color-neutral-900);
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(241, 236, 227, 0.18);
  padding-bottom: env(safe-area-inset-bottom);
}
.ctabar a {
  padding: 16px 8px; text-align: center;
  color: var(--color-on-dark); font-size: 13px; letter-spacing: 0.04em;
  min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.ctabar a + a { border-left: 1px solid rgba(241, 236, 227, 0.18); }
.ctabar a:hover { color: var(--color-accent-200); }
.ctabar__line { color: var(--color-accent-300); }

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

/* --- タブレット〜 900px --- */
@media screen and (max-width: 900px) {
  :root { --section-pad: 76px; }

  h1 { font-size: 34px; }
  h2 { font-size: 27px; }
  h3 { font-size: 22px; }

  /* 分割セクションは1カラム化。画像 → テキストの順に統一 */
  .split { grid-template-columns: 1fr; min-height: 0; }
  .split--600 { min-height: 0; }
  .split--media-left  .split__media,
  .split--media-right .split__media { order: 1; }
  .split--media-left  .split__body,
  .split--media-right .split__body  { order: 2; }
  .split__media img { height: 58vw; max-height: 420px; }
  .split__body { padding: 56px var(--gutter); }

  /* 3カラム → 2カラム */
  .column__grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .service__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* 5連ストリップは横スクロール、見出しは横書きへ */
  .lineup__inner { flex-direction: column; min-height: 0; }
  .lineup__label {
    flex: none; flex-direction: row; justify-content: center;
    gap: 16px; padding: 32px var(--gutter) 20px;
  }
  .lineup__label-main { writing-mode: horizontal-tb; font-size: 24px; }
  .lineup__label-sub  { writing-mode: horizontal-tb; font-size: 10px; }
  .lineup__strip {
    display: flex; overflow-x: auto; -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .lineup__strip > div { flex: 0 0 52%; scroll-snap-align: start; }
  .lineup__strip img { height: 62vw; max-height: 400px; }
  .lineup__top {
    flex: none; flex-direction: row; justify-content: center;
    padding: 18px 0 26px;
  }
  .lineup__top span:last-child { writing-mode: horizontal-tb; }

  .intro { padding: 64px var(--gutter) 72px; }
  .intro__lead { font-size: 19px; }
  .contact { padding: 88px var(--gutter); }
}

/* --- スマートフォン 〜600px --- */
@media screen and (max-width: 600px) {
  :root { --gutter: 7vw; --section-pad: 64px; }

  h1 { font-size: 29px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  h4 { font-size: 18px; }

  .lp-header { padding: 18px var(--gutter); }
  .lp-header__brand { font-size: 15px; }
  .lp-header__contact { font-size: 12px; }

  .hero { height: 88vh; min-height: 460px; }
  .hero__inner { padding: 0 var(--gutter) calc(var(--ctabar-h) + 36px); }
  .hero__text { margin-bottom: 28px; }
  .hero__kicker { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 12px; }
  .hero__lead { font-size: 16px; }

  /* 1カラムへ */
  .column__grid,
  .reviews__grid,
  .service__grid { grid-template-columns: 1fr; gap: 20px; }

  .column__card img { height: 220px; }
  .review-card { padding: 24px; }
  .service-card { padding: 26px; }
  .service-card__media { margin: -26px -26px 20px; }
  .service-card__media img { height: 200px; }

  .split__body { padding: 44px var(--gutter); }
  .split__media img { height: 70vw; }

  .lineup__strip > div { flex: 0 0 72%; }
  .lineup__strip img { height: 86vw; }

  /* 本文の両端揃えはスマホだと字間が空きすぎるため解除 */
  .lead-text { text-align: left; }
  .lead-text--center { text-align: left; margin-bottom: 30px; }
  .selection__intro .lead-text { text-align: left; }
  .service__head .lead-text { text-align: left; }

  /* 横スクロールできることが分かるよう、右端に淡いグラデーションを掛ける */
  .table-wrap {
    background:
      linear-gradient(to right, var(--color-surface) 30%, rgba(234,233,233,0)) left / 24px 100% no-repeat,
      linear-gradient(to left,  var(--color-surface) 30%, rgba(234,233,233,0)) right / 24px 100% no-repeat;
  }

  .contact { padding: 72px var(--gutter); }
  .contact__btns { flex-direction: column; align-items: stretch; gap: 12px; }
  .contact__btn { padding: 15px 20px; }

  .ctabar a { font-size: 12px; padding: 14px 4px; }
}

/* ==========================================================================
   18. 和凛のお着物（宅配レンタルページ plan/takuhai.html から移植）
   出典CSS: plan/takuhai/css/style.css の「着物一覧（5カラム）」ブロック
   ・フォントは Adobe Fonts の shippori-mincho-b1 →
     当ページで読込済みの Google Fonts "Shippori Mincho" に置換（同じ書体）
   ・元の min-width:1280px は横スクロールの原因になるため、
     タブレット幅での縮小指定に置き換えている（見た目は同じ）
   ========================================================================== */
.takuhai_kimono {
  background: url("img/kimono/bg_kimono.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 118px 0;
  overflow: hidden;
}
.takuhai_kimono_outer { position: relative; }

.kumo1 {
  position: absolute; top: 33px; left: 0;
  margin-left: -84px; width: 662px; opacity: 0.5;
}
.kumo2 {
  position: absolute; top: 475px; right: 0;
  margin-right: -182px; width: 662px; opacity: 0.5;
}

.takuhai_kimono_list {
  max-width: 795px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 48px;
  position: relative; z-index: 1;
}

/* 縦書きの見出しブロック */
.ttl_tate2 {
  width: 73px;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-feature-settings: initial;
  position: absolute; top: 116px; left: 90px; z-index: 1;
}
.ttl_tate2 h2 {
  padding: 0; margin: 0;
  font-family: "Shippori Mincho", serif;
  font-size: 48px; font-weight: 600; line-height: 1.7;
  color: #fff; background: none; letter-spacing: 0.15em;
}
.ttl_tate2 p {
  font-family: "Shippori Mincho", serif;
  font-weight: 500; font-size: 16px; line-height: 1;
  margin: 0 0 0 5px; color: #fff;
  border-top: #fff 2px solid; padding-top: 15px;
}

.kimono_img { width: 120px; margin: 0 0 50px; }
/* width/height 属性を付けているため、比率を保って縮むよう height:auto を明示する */
.kimono_img img { width: 100%; height: auto; }
.takuhai_kimono_kind {
  writing-mode: vertical-rl; text-orientation: mixed;
  font-feature-settings: initial; margin-bottom: 30px;
}
.kimono_ttl {
  padding: 0; margin: 0 0 0 10px;
  font-family: "Shippori Mincho", serif;
  font-size: 21px; font-weight: 600; line-height: 1.5;
  color: #000; background: none; letter-spacing: 0.15em;
  border-right: #000 1px solid;
  position: relative; display: inline-block;
}
.kimono_ttl::after {
  content: ""; position: absolute;
  top: 0.15em; bottom: 0.15em; right: 0;
  width: 1px; background-color: #000;
}
.kimono_txt {
  font-family: "Shippori Mincho", serif;
  font-weight: 500; font-size: 16px; line-height: 1.5;
  color: #000; height: 330px; margin: 0;
}
.kimono_link {
  position: relative; display: inline-block;
  writing-mode: vertical-rl; text-orientation: mixed;
  font-feature-settings: initial;
  font-family: "Shippori Mincho", serif;
  font-size: 18px; font-weight: 600; letter-spacing: 0.15em;
  color: #fff; text-decoration: none;
  background: #000; padding: 40px 8px 70px;
}
.kimono_link:hover { color: #fff; background: #3a3a3a; }
.kimono_link::before {
  content: ""; position: absolute; left: 50%; bottom: 30px;
  width: 1px; height: 18px; background-color: #fff;
  transform: translateX(-50%);
}
.kimono_link::after {
  content: ""; position: absolute; left: 50%; bottom: 30px;
  width: 6px; height: 6px;
  border-right: 1px solid #fff; border-bottom: 1px solid #fff;
  transform: translateX(-50%) rotate(45deg);
}

/* --- タブレット（〜1180px）：5カラムのまま全体を縮める --- */
@media screen and (max-width: 1180px) {
  .ttl_tate2 { left: 40px; top: 90px; }
  .ttl_tate2 h2 { font-size: 40px; }
  .takuhai_kimono_list { max-width: 620px; gap: 30px; }
  .kimono_img { width: 100px; margin-bottom: 34px; }
  .kimono_txt { font-size: 14px; height: 300px; }
  .kimono_ttl { font-size: 18px; }
  .kimono_link { font-size: 16px; }
}

/* --- スマートフォン（〜767px）：1カラムの横並びレイアウトへ --- */
@media screen and (max-width: 767px) {
  .takuhai_kimono { min-width: auto; padding: 50vw 0 5vw; }
  .kumo1 { width: 60vw; }
  .kumo2 { width: 60vw; }
  .takuhai_kimono_list { max-width: none; margin: 0 5vw; display: block; }
  .takuhai_kimono_detail { margin-bottom: 15vw; }
  .ttl_tate2 {
    width: 10vw; top: 10vw; left: 50%; transform: translateX(-50%);
  }
  .ttl_tate2 h2 { font-size: 5vw; }
  .ttl_tate2 p { font-size: 3vw; }
  .kimono_img {
    width: 15vw; height: 30vw; margin: 0 3vw 0 0;
    display: inline-block; vertical-align: top;
  }
  .kimono_img img { width: 100%; height: 100%; object-fit: cover; }
  .takuhai_kimono_kind {
    writing-mode: horizontal-tb; text-orientation: none;
    margin-bottom: 30px; display: inline-block;
    width: 70vw; height: 30vw;
  }
  .kimono_ttl {
    font-size: 4.5vw; font-weight: 700; margin: 0 0 4vw;
    border-right: none;
  }
  .kimono_ttl::after { display: none; }
  .kimono_txt { font-size: 3.2vw; height: auto; padding-top: 2vw; }
  .kimono_link {
    display: block; writing-mode: horizontal-tb;
    font-size: 3.6vw; text-align: center; padding: 3.5vw 8px;
  }
  .kimono_link::before {
    left: auto; right: 15px; bottom: 50%;
    width: 18px; height: 1px; transform: translateY(50%);
  }
  .kimono_link::after {
    left: auto; right: 15px; bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }
}

/* ==========================================================================
   19. 結納・顔合わせにおすすめの着物（商品ピックアップ）
   ========================================================================== */
.pickup { padding-block: var(--section-pad) 0; }
.pickup__head { text-align: center; margin-bottom: 56px; }
.pickup__head h2 { margin-bottom: 20px; }
.pickup__head .lead-text { text-align: center; margin: 0 auto; max-width: 640px; }

.pickup__group { margin-bottom: 64px; }
.pickup__group:last-child { margin-bottom: 0; }
.pickup__cat {
  text-align: center; margin-bottom: 10px;
  padding-bottom: 12px; position: relative;
}
.pickup__cat::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 40px; height: 1px; background: var(--color-accent);
  transform: translateX(-50%);
}
.pickup__lead {
  text-align: center; font-size: 14px; line-height: 1.9;
  color: var(--color-neutral-700); margin: 0 auto 32px; max-width: 620px;
}

.pickup__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.item-card { display: block; }
.item-card figure {
  margin: 0 0 10px; overflow: hidden;
  border: 1px solid var(--color-divider); background: var(--color-surface);
}
.item-card img {
  width: 100%; height: 360px; object-fit: cover;
  transition: transform .4s ease;
}
.item-card:hover img { transform: scale(1.04); }
.item-card__no {
  display: block; text-align: center;
  font-family: var(--font-heading);
  font-size: 13px; letter-spacing: 0.06em;
  color: var(--color-neutral-700);
}
.item-card:hover .item-card__no { color: var(--color-accent); }

.pickup__more { text-align: center; margin: 28px 0 0; }
.pickup__more a {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 14px; letter-spacing: 0.04em;
  border-bottom: 1px solid var(--color-accent); padding-bottom: 3px;
}

@media screen and (max-width: 900px) {
  .pickup__grid { gap: 20px; }
  .item-card img { height: 280px; }
}
@media screen and (max-width: 600px) {
  .pickup__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .item-card img { height: 230px; }
  .pickup__group { margin-bottom: 48px; }
  .pickup__head .lead-text, .pickup__lead { text-align: left; }
}

/* ============================ 下見予約バナー ============================
   /plan/tomesode.html の下見バナーをこのページの配色に合わせたもの。
   ボタン・見出しは既存の .btn / .kicker と同じ変数を使っている。 */
.shitami-bnr {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 18px 28px;
  margin: var(--space-8) 0 var(--space-6);
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.6vw, 38px);
  background: linear-gradient(180deg, var(--color-accent-100) 0%, #fdf7ee 100%);
  border: 1px solid color-mix(in srgb, var(--color-accent) 28%, transparent);
  border-radius: var(--radius-md);
}
.shitami-bnr__text { flex: 1 1 380px; min-width: 0; }
.shitami-bnr__en { display: block; margin-bottom: 8px; }
.shitami-bnr__ja {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: clamp(19px, 2.2vw, 25px); line-height: 1.5; letter-spacing: .04em;
  color: var(--color-text); margin: 0;
}
.shitami-bnr__sub {
  font-size: 14px; line-height: 1.9; color: var(--color-neutral-700);
  margin: 10px 0 0;
}
.shitami-bnr__guide {
  display: inline-block; margin-top: 12px; font-size: 13.5px;
  color: var(--color-accent-700); text-decoration: underline; text-underline-offset: 3px;
}
.shitami-bnr__guide:hover { color: var(--color-accent); }
.shitami-bnr__btn {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 15px; letter-spacing: .12em; white-space: nowrap; text-decoration: none;
  color: var(--color-on-dark-strong); background: var(--color-accent-600);
  border: 1px solid var(--color-accent-600); border-radius: var(--radius-md);
  padding: 16px 30px; min-height: 54px;
  transition: background .18s ease, color .18s ease;
}
/* ホバーで白地に濃い文字へ反転させる（留袖ページと同じ挙動） */
.shitami-bnr__btn:hover {
  background: #fff; color: var(--color-text); border-color: var(--color-accent-600);
}
@media (max-width: 600px) {
  .shitami-bnr { flex-direction: column; align-items: stretch; }
  /* 縦並びでは flex-basis が高さになるため auto に戻す */
  .shitami-bnr__text { flex: 0 1 auto; }
  .shitami-bnr__btn { width: 100%; }
}

/* ================= 迷っている方への動線（下見・LINE相談） =================
   ヒーロー直後に置く。「似合うだろうか」という不安を、
   下見とLINE相談という2つの手段で受け止めるための区画。 */
.uc-help {
  margin: var(--space-6) auto var(--space-8);
}
.uc-help__lead {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: clamp(17px, 2vw, 21px); line-height: 1.8; letter-spacing: .04em;
  color: var(--color-text); text-align: center; margin: 0 0 var(--space-3);
  /* 「…迷われた／ら、」と1文字だけ落ちるのを防ぐ */
  word-break: auto-phrase; text-wrap: pretty;
}
.uc-help__ttl, .uc-help__kicker { word-break: auto-phrase; }
.uc-help__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.uc-help__card {
  display: flex; flex-direction: column; align-items: flex-start;
  padding: clamp(22px, 2.6vw, 30px) clamp(20px, 2.4vw, 28px);
  background: linear-gradient(180deg, var(--color-accent-100) 0%, #fdf7ee 100%);
  border: 1px solid color-mix(in srgb, var(--color-accent) 26%, transparent);
  border-radius: var(--radius-md);
}
.uc-help__kicker { margin-bottom: 8px; }
.uc-help__ttl {
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: clamp(18px, 2vw, 22px); line-height: 1.5; letter-spacing: .04em;
  color: var(--color-text); margin: 0 0 10px;
}
.uc-help__txt {
  font-size: 14px; line-height: 1.95; color: var(--color-neutral-700);
  margin: 0 0 18px;
}
.uc-help__btn {
  margin-top: auto; align-self: stretch;
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: var(--font-heading-weight);
  font-size: 15px; letter-spacing: .12em; text-decoration: none; white-space: nowrap;
  border-radius: var(--radius-md); padding: 15px 24px; min-height: 52px;
  transition: background .18s ease, color .18s ease;
}
.uc-help__btn--main {
  color: var(--color-on-dark-strong);
  background: var(--color-accent-600); border: 1px solid var(--color-accent-600);
}
/* LINEはブランド色（#06C755）で、ひと目でLINEと分かるようにする */
.uc-help__btn--line {
  color: #fff; background: #06C755; border: 1px solid #06C755;
}
.uc-help__btn--line .uc-help__linemark {
  width: 20px; height: 20px; margin-right: 9px; flex: 0 0 auto;
}
/* ホバーで反転させる（下見バナーと同じ挙動） */
.uc-help__btn--main:hover { background: #fff; color: var(--color-text); }
.uc-help__btn--line:hover { background: #05a948; border-color: #05a948; color: #fff; }

@media (max-width: 700px) {
  .uc-help__grid { grid-template-columns: 1fr; gap: 14px; }
  .uc-help__lead { text-align: left; }
}
