@charset "utf-8";
/* CSS Document */
/* ════════════════════════════════
   DESIGN TOKENS
════════════════════════════════ */
:root {
  --accent: #0C3449;
  --accent-mid: #165070;
  --accent-hover: #1a5070;
  --accent-pale: #e8f0f5;
  --accent-light: #c8dce8;
  --gold: #b8924a;
  --gold-pale: #f5efe4;
  --gold-dark: #9e7a3a;
  --text-main: #1A1A1A;
  --text-sub: #555555;
  --text-light: #888888;
  --border: #E2E8F0;
  --bg-white: #FFFFFF;
  --bg-light: #F8F9FA;
  --bg-mid: #F1F5F9;
  --bg-dark: #0a1e2a;
  --placeholder: #D8DFE8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .10);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, .14);
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --py: 72px;
  --radius: 6px;
}

/* ════════════════════════════════
   BASE
════════════════════════════════ */
.formal-kimono-content,
.formal-kimono-content *,
.formal-kimono-content *::before,
.formal-kimono-content *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
.formal-kimono-content body {
  font-family: var(--font-sans);
  background: var(--bg-white);
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  margin: 0;
}
.c_title {
  padding-top: 18px !important;
}
.fix_logo {
  padding-top: 15px !important;
}

/* ════════════════════════════════
   全幅補正
   サイト共通CSSのmargin・widthを打ち消して
   ナビ・ヒーロー・全コンテンツをheaderと同幅に揃える
════════════════════════════════ */

/* ① main_contentsを全幅に（ナビをheaderと同幅に） */
.main_contents {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

/* ② box_wrap〜box_article02を全幅に */
#box_wrap,
#box_article01,
#box_article01 article,
#box_article02 {
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ③ formal-kimono-contentを全幅に */
.formal-kimono-content {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* ════════════════════════════════
   UTILITY
════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-main);
  margin-bottom: 12px;
}
h3.section-title {
  font-size: 22px;
}
.section-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.5;
  max-width: 100%;
  margin-bottom: 12px;
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  overflow: visible;
}
.img-ph {
  background: var(--placeholder);
  width: 100%;
  height: 100%;
  display: block;
}

/* ════════════════════════════════
   BUTTONS
════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 13px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
a.btn, a.btn:link, a.btn:visited, a.btn:hover { color: #fff; }
.btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}
.btn::after {
  content: '›';
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}
.btn-outline {
  background: var(--accent-pale);
  color: var(--accent);
}
a.btn-outline, a.btn-outline:link, a.btn-outline:visited { color: var(--accent); }
.btn-outline:hover { background: var(--accent-pale); }
.btn-white {
  background: rgba(255,255,255,1);
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover { background: rgba(255,255,255,.9); }
.btn-ghost {
  background: rgba(255,255,255,.15);
  color: #fff;
  border-color: rgba(255,255,255,.6);
  backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,.25); }
.btn-gold {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); }
.btn-sm {
  font-size: 14px;
  padding: 8px 18px;
}

/* fixed CTA */
#fixed-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
  pointer-events: none;
}
#fixed-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
#fixed-cta .btn {
  font-size: 13px;
  padding: 10px 20px;
  box-shadow: 0 4px 16px rgba(12,52,73,.35);
}

/* ════════════════════════════════
   ① HERO
════════════════════════════════ */
#hero {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border);
  margin: 0;
}
#hero img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 56px);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 48px 48px 0;
  background: var(--bg-light);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-pale);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  width: fit-content;
  letter-spacing: .04em;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 40px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-main);
  margin-bottom: 14px;
}
.hero-title strong { color: var(--accent); }
.hero-lead {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.95;
  margin-bottom: 20px;
  max-width: 440px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 26px;
}
.badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  background: var(--bg-mid);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 4px 10px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--placeholder);
  border-left: 1px solid var(--border);
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .55s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.slide {
  flex: 0 0 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.slide-ph {
  position: absolute;
  inset: 0;
  background: var(--placeholder);
}
.slide-ph img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.slide[data-index="1"] .slide-ph { background: #c8d4de; }
.slide[data-index="2"] .slide-ph { background: #d0dae2; }
.slide[data-index="3"] .slide-ph { background: #cad6e0; }
.slide[data-index="4"] .slide-ph { background: #c4d0dc; }
.slide-label {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 30px;
  padding: 12px 14px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
  z-index: 2;
}
.slide-label-cat {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: .12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 3px;
}
.slide-label-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  margin-bottom: 6px;
}
.slide-label-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 1px solid rgba(12,52,73,.25);
  padding-bottom: 2px;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: background .2s;
  z-index: 10;
}
.slider-btn:hover { background: #fff; }
#sliderPrev { left: 10px; }
#sliderNext { right: 10px; }
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  padding: 0;
}
.slider-dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ════════════════════════════════
   ② 信頼実績
════════════════════════════════ */
#trust {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 14px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-num {
  font-family: var(--font-serif);
  font-size: clamp(18px, 3.2vw, 22px);
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.trust-num2 {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.2vw, 28px);
  font-weight: 600;
  color: var(--accent);
  display: block;
  line-height: 1.1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}
.trust-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.5;
}
.trust-big { font-size: 1.1rem; }

/* ════════════════════════════════
   観光着物導線
════════════════════════════════ */
#casual-redirect {
  background: var(--bg-mid);
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.casual-redirect-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  max-width: 900px;
  margin: 0 auto;
}
.casual-redirect-content { flex: 1; }
.casual-redirect-title {
  font-size: 17px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 4px;
}
.casual-redirect-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* ════════════════════════════════
   不安解消ブロック（reliable）
════════════════════════════════ */
#reliable {
  background: var(--bg-light);
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
}
.reliable_inner {
  max-width: 640px;
  margin: 0 auto;
}
.reliable-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 6px;
  text-align: center;
}
.reliable_list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.reliable_item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #eee;
}
.reliable_icon {
  font-size: 20px;
  line-height: 1;
  margin-top: 2px;
}
.reliable_heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}
.reliable_text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}
.reliable-img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 12px;
  text-align: center;
  border: 1px solid #d4d4d4;
}
.reliable-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

/* ════════════════════════════════
   ④ 人気カテゴリ
════════════════════════════════ */
#popular-cat {
  padding: var(--py) 0;
  background: var(--bg-light);
}
.popular-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.pop-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
  background: var(--bg-white);
}
.pop-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.pop-card-img {
  aspect-ratio: 3/4;
  background: var(--placeholder);
  position: relative;
  overflow: hidden;
}
.pop-card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pop-card-body {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  padding: 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pop-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  margin-bottom: 2px;
}
.pop-card-sub {
  font-size: 14px;
  color: var(--text-sub);
  display: block;
}

/* ════════════════════════════════
   シーン選択（3ステップ）
════════════════════════════════ */
#scene-selection {
  background: var(--bg-white);
  padding: var(--py) 0;
}
.scene-card {
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all .25s;
}
.scene-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.scene-card.selected {
  border-color: var(--accent);
  background: var(--accent-pale);
}
.scene-card-img {
  position: relative;
  padding-top: 120%;
  overflow: hidden;
  background: var(--placeholder);
}
.scene-card-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scene-card-content {
  padding: 9px;
  text-align: center;
}
.scene-card-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 6px;
}
.scene-card-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.3;
}
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
#role-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s, max-height .4s;
  display: none;
}
#role-section.active {
  opacity: 1;
  max-height: 1000px;
  display: block;
}
.role-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  max-width: 1280px;
  margin: 24px auto 0;
}
.role-btn {
  background: var(--bg-light);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}
.role-btn:hover {
  border-color: var(--accent);
  background: var(--accent-pale);
}
.role-btn.selected {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.role-btn-label {
  font-size: 16px;
  font-weight: 600;
}
.role-btn-hint {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.4;
}
.role-btn.selected .role-btn-hint { color: rgba(255,255,255,.85); }
.role-btn-icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--placeholder);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4d4d4;
}
.role-btn-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.role-btn-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#category-section {
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity .4s, max-height .4s;
  display: none;
}
#category-section.active {
  opacity: 1;
  max-height: 1600px;
  display: block;
}
.category-result {
  max-width: 920px;
  margin: 24px auto 0;
}
.category-dual-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.sec-head {
  margin-bottom: 4px;
}
.category-recommendation {
  background: linear-gradient(135deg, var(--accent-pale) 0%, var(--bg-white) 100%);
  border: 2px solid var(--accent-light);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 45% 1fr;
  gap: 0;
}
.category-dual-wrapper .category-recommendation {
  grid-template-columns: 1fr;
  margin-bottom: 0;
}
.category-recommendation-img {
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  background: var(--placeholder);
}
.category-recommendation-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.category-recommendation-content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.category-recommendation-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 20px;
  line-height: 1.6;
}
.category-recommendation-reason {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.9;
  margin-bottom: 28px;
  padding-left: 18px;
  border-left: 4px solid var(--accent-light);
}
.category-recommendation-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  padding: 16px 36px;
  text-decoration: none;
  cursor: pointer;
  transition: all .2s;
  align-self: flex-start;
}
.category-recommendation-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.category-recommendation-cta::after { content: '›'; font-size: 20px; }
a.category-recommendation-cta { color: #fff; }
.category-sub {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.category-sub-intro {
  text-align: center;
  margin-bottom: 32px;
}
.category-sub-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.category-sub-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  letter-spacing: .02em;
}
.category-sub-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}
.category-sub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.category-sub-item {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.category-sub-item:hover {
  border-color: var(--accent-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.category-sub-item:hover .category-sub-img img { transform: scale(1.08); }
.category-sub-img {
  position: relative;
  padding-top: 90%;
  overflow: hidden;
  background: var(--placeholder);
}
.category-sub-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.category-sub-content {
  padding: 18px 16px;
  text-align: center;
  background: var(--bg-white);
}
.category-sub-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
  line-height: 1.5;
  letter-spacing: .02em;
}
.category-sub-label {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .06em;
  text-transform: uppercase;
}
.category-sub-grid:has(.category-sub-item:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 440px;
}
.category-sub-grid:has(.category-sub-item:only-child) {
  grid-template-columns: 1fr;
  max-width: 240px;
}
.scene-cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.scene-cat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: all .2s;
  padding-bottom: 12px;
}
.scene-cat-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.scene-cat-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--placeholder);
  position: relative;
  overflow: hidden;
}
.scene-cat-img img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
}
.scene-cat-name {
  font-family: var(--font-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  margin-top: 10px;
  padding: 0 8px;
  line-height: 1.4;
}
#sceneResultSummary { display: none; }
.scene-summary-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .06em;
  display: block;
  margin-bottom: 4px;
}
.scene-summary-text {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 4px;
}
.scene-summary-sub {
  font-size: 13px;
  color: var(--text-sub);
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-light);
  cursor: pointer;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 4px;
  transition: color .15s;
}
.back-btn:hover { color: var(--accent); }
.back-btn::before { content: '‹'; font-size: 16px; }

/* ════════════════════════════════
   迷ったらコレ
════════════════════════════════ */
#section-recommend {
  padding: var(--py) 0;
  background: var(--bg-light);
}
.recommend-cards { margin-top: 28px; }
.section-recommend .recommend-category {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section-recommend .card-recommend {
  flex: 1 1 calc(50% - 10px);
}
/* 迷ったらコレ：立場タブ */
.formal-kimono-content .recommend-role-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.formal-kimono-content .rec-role-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 10px 16px;
  border: 1.5px solid var(--border);
  border-radius: 32px;
  background: var(--bg-white);
  cursor: pointer;
  transition: border-color .2s, background .2s, box-shadow .2s;
  text-align: center;
  line-height: 1.3;
}
.formal-kimono-content .rec-role-btn:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-sm);
}
.formal-kimono-content .rec-role-btn.is-active {
  border-color: var(--accent);
  background: var(--accent-pale);
  box-shadow: var(--shadow-sm);
}
.formal-kimono-content .rec-role-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  letter-spacing: .02em;
}
.formal-kimono-content .rec-role-hint {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .02em;
}
/* 七五三3枚レイアウト（PC） */
.formal-kimono-content .recommend-category--three.recommend-category {
  flex-wrap: nowrap;
}
.formal-kimono-content .recommend-category--three .card-recommend {
  flex: 1 1 calc(33.333% - 14px);
}
.section-recommend .recommend-category[hidden] { display: none !important; }
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card-img {
  position: relative;
  overflow: hidden;
  background: var(--placeholder);
}
.card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
}
.card-recommend {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.card-recommend:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.card-body { padding: 14px 14px 16px; }
.card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 6px;
}
.card-reason {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* ════════════════════════════════
   料金の目安
════════════════════════════════ */
#prices {
  padding: var(--py) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.prices-incl-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-pale);
  border: 1px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 6px 14px;
  margin-bottom: 20px;
}
.prices-incl-badge::before { content: '✓'; }
.prices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.pc {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  column-gap: 12px;
  row-gap: 4px;
  align-items: center;
  transition: background .15s, border-color .15s;
}
.pc:last-child { border-bottom: 1px solid var(--border); }
.pc:hover {
  background: var(--accent-pale);
  border-left-color: var(--accent-hover);
}
.pc-scene {
  font-size: 11px;
  color: var(--text-light);
  letter-spacing: .04em;
  line-height: 1.3;
  grid-column: 1; grid-row: 1;
}
.pc-name {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.3;
  grid-column: 1; grid-row: 2;
}
.pc-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  white-space: nowrap;
  border: 1.5px solid var(--accent-light);
  border-radius: 4px;
  padding: 5px 10px;
  grid-column: 2; grid-row: 1 / 4;
  align-self: center;
  transition: background .15s, border-color .15s;
  writing-mode: horizontal-tb;
}
.pc-link::after { content: '›'; font-size: 14px; line-height: 1; }
.pc-link:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
}
.pc-price {
  font-family: var(--font-serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1.3;
  grid-column: 1; grid-row: 3;
  margin-top: 2px;
}
.pc-price small {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 400;
  color: var(--text-light);
  margin-left: 2px;
}

.prices-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.7;
}

/* ════════════════════════════════
   特典バナー
════════════════════════════════ */
#section-benefit {
  padding: var(--py) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.benefit-banners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 20px;
}
.banner {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s, transform .2s;
  min-height: 110px;
}
.banner:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.10);
  transform: translateY(-2px);
}
.banner-deco {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  position: relative;
  overflow: hidden;
  gap: 2px;
}
.banner-deco::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: .07;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.5) 0, rgba(255,255,255,.5) 1px, transparent 0, transparent 50%);
  background-size: 12px 12px;
}
.banner--acc .banner-deco { background: var(--accent); }
.banner--gold .banner-deco { background: var(--gold); }
.deco-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.deco-unit {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,.9);
  line-height: 1;
  position: relative;
  z-index: 1;
  margin-top: -2px;
}
.deco-icon {
  font-size: 16px;
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.9);
  line-height: 1.6;
}
.banner-body {
  background: var(--bg-white);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.banner--gold .banner-body { background: var(--gold-pale); }
.b-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.banner--acc .b-label { color: var(--gold); }
.banner--gold .b-label { color: var(--gold-dark); }
.b-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.35;
}
.banner--gold .b-title { color: var(--gold-dark); }
.b-cta {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
}
.b-desc {
  font-size: 15px;
  color: var(--text-sub);
  line-height: 1.7;
  margin-top: 2px;
}
.banner--gold .b-cta { color: var(--gold-dark); }
.b-cta::after { content: '›'; font-size: 16px; }

/* ════════════════════════════════
   選ばれる理由
════════════════════════════════ */
#reasons {
  padding: var(--py) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.reasons-stat {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent);
  margin-bottom: 8px;
}
.reasons-stat strong {
  font-size: 28px;
  font-weight: 700;
}
.reasons-panels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}
.reason-panel {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
.reason-panel:last-child { border-right: none; }
.reason-panel-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--placeholder);
  overflow: hidden;
}
.reason-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.reason-panel-body { padding: 18px 16px 22px; }
.reason-panel-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 8px;
  line-height: 1.4;
}
.reason-panel-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}
.reasons-foot {
  margin-top: 28px;
  text-align: center;
}

/* ════════════════════════════════
   お客様の声
════════════════════════════════ */
#reviews {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: var(--py) 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.review-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.review-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 12px;
}
.review-stars {
  color: #f6b800;
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
  margin-bottom: 10px;
}
.review-meta {
  font-size: 12px;
  color: var(--text-light);
}

/* ════════════════════════════════
   サポート体制
════════════════════════════════ */
#support {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: var(--py) 0;
}
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.support-card {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s;
}
.support-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
}
.support-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--placeholder);
  flex-shrink: 0;
}
.support-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.support-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.support-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 10px;
  line-height: 1.4;
}
.support-desc {
  font-size: 16px;
  color: var(--text-sub);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 16px;
}
.support-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1.5px solid var(--accent-light);
  border-radius: 4px;
  padding: 7px 14px;
  align-self: flex-start;
  transition: background .15s, border-color .15s;
}
.support-link::after { content: '›'; font-size: 16px; line-height: 1; }
.support-link:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
}

/* ════════════════════════════════
   ご利用の流れ
════════════════════════════════ */
#flow {
  padding: var(--py) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.flow-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
  margin-bottom: 28px;
}
.flow-steps::before { display: none; }
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 20px 24px;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: box-shadow .2s, border-color .2s;
}
.flow-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  flex-shrink: 0;
  font-size: 22px;
  color: var(--accent-mid);
  line-height: 1;
  align-self: center;
}
.flow-step-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.flow-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.flow-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
  line-height: 1.4;
  letter-spacing: .01em;
}
.flow-desc {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
  line-height: 1.5;
}
.flow-text { flex: 1; }
.flow-fork {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.fork-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fork-label {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--accent);
  display: block;
  margin-bottom: 3px;
}
.fork-text {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.7;
}
.fork-text strong { color: var(--text-main); font-weight: 700; }
.flow-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.flow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-white);
  border: 1.5px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 10px 18px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.flow-link::after { content: '›'; font-size: 16px; }
.flow-link:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
}

/* ════════════════════════════════
   FAQ
════════════════════════════════ */
#faq {
  background: var(--bg-light);
  border-top: 1px solid var(--border);
  padding: var(--py) 0;
}
.faq-list {
  margin-top: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-list.reveal.visible { overflow: visible; }
.faq-item {
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}
.faq-item:last-child { border-bottom: none; }
.faq-q {
  padding: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: background .15s;
}
.faq-q:hover,
.faq-item.open .faq-q { background: var(--bg-light); }
.faq-item.open .faq-q { border-bottom: 1px solid var(--border); }
.faq-q-text {
  font-size: 16px;
  color: var(--text-main);
  flex: 1;
}
.faq-q-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-q-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding: 18px;
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.9;
}

/* ════════════════════════════════
   着物カテゴリ一覧
════════════════════════════════ */
#all-cat {
  padding: var(--py) 0;
  background: var(--bg-white);
  border-top: 1px solid var(--border);
}
.all-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.all-cat-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.all-cat-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.all-cat-img {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--placeholder);
  overflow: hidden;
  position: relative;
}
.all-cat-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}
.all-cat-body {
  position: absolute;
  bottom: 8px; left: 8px; right: 8px;
  padding: 8px 10px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.85);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.all-cat-name {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.all-cat-scene {
  font-size: 14px;
  color: var(--text-sub);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.4;
}
.all-cat-arrow { display: none; }
.all-cat-more {
  overflow: hidden;
  max-height: 0;
  transition: max-height .4s ease;
  margin-top: 0;
}
.all-cat-more.open {
  max-height: 800px;
  margin-top: 10px;
}
.all-cat-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 20px;
  padding: 12px 24px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: background .2s, border-color .2s;
  font-family: var(--font-sans);
}
.all-cat-toggle:hover {
  background: var(--accent-pale);
  border-color: var(--accent-light);
}
.all-cat-toggle.open { background: var(--accent-pale); }
.all-cat-toggle-icon {
  font-size: 16px;
  transition: transform .3s;
  display: inline-block;
}
.all-cat-toggle.open .all-cat-toggle-icon { transform: rotate(180deg); }

/* ════════════════════════════════
   着物コラム
════════════════════════════════ */
#guides {
  padding: var(--py) 0;
  background: var(--bg-light);
  border-top: 1px solid var(--border);
}
.guides-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.guide-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.guide-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-light);
  transform: translateY(-2px);
}
.guide-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--placeholder);
  overflow: hidden;
  position: relative;
}
.guide-card-img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
	object-position: top;
}
.guide-card-body { padding: 16px; }
.guide-card-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 6px;
  display: block;
}
.guide-card-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 8px;
}
.guide-card-desc {
  font-size: 14px;
  color: var(--text-sub);
  line-height: 1.6;
}
.guides-footer {
  margin-top: 24px;
  text-align: center;
}
.guides-more-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  background: var(--bg-white);
  border: 1.5px solid var(--accent-light);
  border-radius: var(--radius);
  padding: 11px 24px;
  text-decoration: none;
  transition: background .15s, border-color .15s;
}
.guides-more-link::after {
  content: '›';
  font-size: 16px;
}
.guides-more-link:hover {
  background: var(--accent-pale);
  border-color: var(--accent);
}

/* ════════════════════════════════
   最終CTA
════════════════════════════════ */
#final-cta {
  background: var(--bg-dark);
  padding: var(--py) 0;
}
.final-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.final-cta-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.final-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}
.final-cta-desc {
  font-size: 16px;
  color: rgba(255,255,255,.72);
  margin-bottom: 36px;
  line-height: 1.9;
}
.final-cta-desc strong { color: #fff; font-weight: 700; }
.final-cta-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.final-cta-option {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  text-decoration: none;
  display: block;
  transition: background .2s, border-color .2s;
}
.final-cta-option:hover {
  background: rgba(255,255,255,.13);
  border-color: rgba(255,255,255,.3);
}
.final-cta-option-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.final-cta-option-title {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}
.final-cta-option-desc {
  font-size: 13px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
}
.final-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--bg-dark);
  background: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 16px 40px;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: 100%;
  max-width: 400px;
}
.final-cta-btn::after { content: '›'; font-size: 20px; line-height: 1; font-weight: 400; }
.final-cta-btn:hover {
  background: rgba(255,255,255,.9);
  transform: translateY(-1px);
}
.final-cta-note {
  font-size: 13px;
  color: rgba(255,255,255,.45);
  margin-top: 14px;
  line-height: 1.7;
}

/* ════════════════════════════════
   その他
════════════════════════════════ */
.shade { inset: 0; }
.globalnav_top { margin: 0; }

/* ════════════════════════════════
   RESPONSIVE
   ブレークポイント統一：
   - 1024px以下（タブレット＋SP）
   - 750px以下（SP）
   - 600px以下（小型SP）
════════════════════════════════ */

/* ────────────────────────────
   1024px以下：タブレット＋SPレイアウト
   （旧：1024px・951px・900px を統合）
──────────────────────────── */
@media (max-width: 1024px) {
  /* コンテナ余白 */
  .container {
    padding-left: 4%;
    padding-right: 4%;
  }
  #hero .container {
    padding-left: 0;
    padding-right: 0;
  }

  /* trust：2列 */
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  /* 観光着物導線 */
  .casual-redirect-inner {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  /* reliable：横並びカード */
  #reliable .support-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  #reliable .reliable-card {
    display: grid;
    grid-template-columns: 72px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
    padding: 14px;
  }
  #reliable .reliable-img {
    grid-column: 1; grid-row: 1 / 3;
    width: 72px; height: 72px;
    flex-shrink: 0;
    margin: 0;
    align-self: center;
  }
  #reliable .reliable-title {
    grid-column: 2; grid-row: 1;
    text-align: left;
    font-size: 18px;
    margin-bottom: 0;
    font-weight: bold;
  }
  #reliable .reliable-text {
    grid-column: 2; grid-row: 2;
    font-size: 14px;
    line-height: 1.6 !important;
    margin: 0;
  }

  /* popular-cat：3列維持 */
  .popular-cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* reviews：2列 */
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* お客様の声：横並び */
  .review-card {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 10px;
    text-align: left;
    padding: 16px;
    align-items: center;
  }
  .review-img {
    grid-column: 1; grid-row: 1 / 3;
    width: 60px; height: 60px;
    margin: 0; flex-shrink: 0;
  }
  .review-stars {
    grid-column: 2; grid-row: 1;
    margin-bottom: 0;
    text-align: left;
    font-size: 13px;
    letter-spacing: 1px;
  }
  .review-meta {
    grid-column: 2; grid-row: 2;
    text-align: left;
    align-self: start;
  }
  .review-text {
    grid-column: 1 / 3;
    grid-row: 3;
    text-align: left;
    margin-bottom: 0;
    font-size: 14px;
  }

  /* support：2列 */
  .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* reasons：2列 */
  .reasons-panels {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0;
  }
  .reason-panel:nth-child(2) { border-right: none; }
  .reason-panel:nth-child(1),
  .reason-panel:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }

  /* guides：3列 */
  .guides-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* all-cat：2列 */
  .all-cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .all-cat-more.open { max-height: 1600px; }

  /* section-recommend */
  #section-recommend { padding-top: 24px; }
  #section-recommend .section-title { margin-bottom: 4px; }
  .recommend-cards { margin-top: 16px; }
  .recommend-category .card-recommend { flex: 1 1 100%; }
  /* 迷ったらコレ 七五三：1列 */
  .formal-kimono-content .recommend-category--three.recommend-category {
    flex-wrap: wrap;
  }
  .formal-kimono-content .recommend-category--three .card-recommend {
    flex: 1 1 100%;
  }
  /* 立場タブ：SP3列 */
  .formal-kimono-content .rec-role-btn {
    padding: 8px 12px;
    flex: 1 1 calc(33.333% - 4px);
    min-width: 0;
  }
  .formal-kimono-content .rec-role-label { font-size: 13px; }

  /* category-sub-grid */
  .category-sub-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 24px;
    max-width: 600px;
  }

  /* role-btn：横並び */
  .role-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .role-btn {
    flex-direction: row;
    text-align: left;
    padding: 12px 16px;
    gap: 14px;
    align-items: center;
  }
  .role-btn-icon {
    width: 60px; height: 60px;
    flex-shrink: 0;
  }
  .role-btn-content { align-items: flex-start; }

  /* category-recommendation：縦並び */
  .category-recommendation {
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
  .category-recommendation-img { padding-top: 56.25%; }
  .category-recommendation-content { padding: 20px 18px 24px; }
  .category-recommendation-title { font-size: 18px; margin-bottom: 12px; }
  .category-recommendation-reason { font-size: 15px; margin-bottom: 20px; }
  .category-recommendation-cta {
    width: 100%;
    padding: 14px 20px;
    justify-content: center;
  }
  .category-dual-wrapper {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* HERO：SP全面スライダー */
  .hero-inner {
    grid-template-columns: 1fr;
    max-height: none;
    min-height: 86svh;
    position: relative;
  }
  .hero-slider {
    position: absolute;
    inset: 0;
    height: auto;
    border-left: none;
    z-index: 1;
  }
  .slide-label { display: none; }
  .slider-btn, .slider-dots { z-index: 4; }
  .hero-left {
    position: relative;
    z-index: 3;
    padding: 18px 16px 28px;
    margin-top: auto;
    justify-content: flex-end;
    min-height: 86svh;
    background: transparent;
  }
  .hero-tag {
    background: rgba(12,52,73,.78);
    color: #fff;
    margin-bottom: 12px;
  }
  .hero-title {
    color: #fff;
    font-size: clamp(24px, 7vw, 34px);
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0,0,0,.22);
  }
  .hero-title strong { color: #fff; }
  .hero-lead {
    color: rgba(255,255,255,.94);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
    max-width: 34em;
    text-shadow: 0 1px 10px rgba(0,0,0,.18);
  }
  .badge {
    background: rgba(255,255,255,.9);
    border-color: rgba(255,255,255,.72);
    color: var(--text-main);
  }
  .hero-badges { gap: 5px; margin-bottom: 16px; }
  .hero-cta-row { flex-direction: column; gap: 8px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }

  /* sceneResultSummary */
  #sceneResultSummary { display: block; }

  /* flow：縦積み */
  .flow-steps {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .flow-step-arrow {
    width: auto;
    height: 28px;
    font-size: 20px;
    transform: rotate(90deg);
    justify-self: center;
  }
  .flow-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    padding: 20px 18px;
    gap: 16px;
  }
  .flow-step-left { flex-shrink: 0; align-items: center; }
  .flow-num {
    position: static;
    margin: 0 0 6px 0;
    width: 52px; height: 52px;
    font-size: 18px;
    flex-shrink: 0;
  }
  .flow-title { font-size: 18px; padding-top: 0; margin-bottom: 6px; }
  .flow-fork { align-items: flex-start; }
  .flow-links { flex-direction: column; }
  .flow-link { justify-content: space-between; }

  /* final-cta-options：1列 */
  .final-cta-options {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 28px;
  }
	.tab-bar img {
		width: 255px;
		height: 35px;
	}
}

/* sceneResultSummary：PC非表示 */
@media (min-width: 1025px) {
  #sceneResultSummary { display: none !important; }
}

/* ────────────────────────────
   750px以下：SP専用レイアウト
   （旧：768px を 750px に変更）
──────────────────────────── */
@media (max-width: 750px) {
  /* recommend-category */
  .recommend-category { gap: 12px; }
  .recommend-category[data-scene="shichigosan"] .card-title { font-size: 16px; }

  /* prices：1列 */
  .prices-grid {
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .pc {
    border-radius: 0;
    border: none;
    border-left: 3px solid var(--accent);
    border-bottom: 1px solid var(--border);
    padding: 13px 16px;
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto auto;
  }
  .pc:last-child { border-bottom: none; }
  .pc-scene { display: none; }
  .pc-name { font-size: 15px; grid-row: 1; }
  .pc-price { font-size: 15px; grid-row: 2; margin-top: 1px; }
  .pc-link { grid-row: 1 / 3; padding: 5px 10px; }

  /* benefit-banners：1列 */
  .benefit-banners {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .banner {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .banner-deco {
    flex-direction: row;
    justify-content: flex-start;
    padding: 14px 18px;
    gap: 12px;
    min-height: 72px;
  }
  .deco-num { font-size: 40px; }
  .deco-unit { font-size: 18px; margin-top: 0; }
  .deco-icon { font-size: 16px; }
  .banner-body { padding: 14px 16px; }
  .b-title { font-size: 18px; }

  /* guides：2列 */
  .guides-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ────────────────────────────
   600px以下：小型SP
──────────────────────────── */
@media (max-width: 600px) {
  :root { --py: 48px; }

  /* popular-cat：2列 */
  .popular-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .pop-card-title { font-size: 15px; }
  .pop-card-sub { font-size: 12px; }

  /* reasons：1列 */
  .reasons-panels {
    grid-template-columns: 1fr;
    border: none;
    box-shadow: none;
    gap: 16px;
  }
  .reason-panel {
    border-right: none;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
  }
  .reason-panel:nth-child(1),
  .reason-panel:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .reason-panel-img { aspect-ratio: 16/9; }
  .reason-panel-img img { object-position: center 20%; }
  .reason-panel-body { padding: 14px 16px 18px; }
  .reason-panel-title { font-size: 18px; }
  .reason-panel-desc { font-size: 16px; }

  /* support：1列 */
  .support-grid { grid-template-columns: 1fr; }
  .support-img { aspect-ratio: 16/9; }
  .support-body { padding: 16px 16px 18px; }
  .support-title { font-size: 18px; font-weight: 600; }

  /* reviews：1列 */
  .reviews-grid { grid-template-columns: 1fr; }

  /* recommend-category */
  .recommend-category { gap: 10px; }
  .card-body { padding: 10px 12px 12px; }
  .card-title { font-size: 16px; }

  /* prices */
  .prices-grid { border-radius: 0; }
  .pc { padding: 11px 14px; }
  .pc-name { font-size: 16px; }
  .pc-price { font-size: 15px; }
  .pc-link { font-size: 14px; padding: 4px 8px; }
  .price-card { padding: 12px 10px; }

  /* faq */
  .faq-q { padding: 13px; }
  .faq-q-text { font-size: 16px; }
  .faq-a-inner { padding: 0 16px 18px; font-size: 16px; }

  /* all-cat：2列 */
  .all-cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .all-cat-more.open { max-height: 2000px; }
  .all-cat-name { font-size: 16px; }
  .all-cat-scene { font-size: 14px; }

  /* guides：1列 */
  .guides-grid { grid-template-columns: 1fr; }
  .guide-card-img { aspect-ratio: 16/9; }
  .guide-card-title { font-size: 16px; }

  /* fixed-cta */
  #fixed-cta { bottom: 14px; right: 14px; }
  #fixed-cta .btn { font-size: 16px; padding: 10px 18px; }

  /* hero */
  .hero-inner { min-height: 78svh; }
  .hero-left { min-height: 78svh; padding: 16px 14px 24px; }
  .hero-title { font-size: clamp(22px, 7vw, 30px); }
  .hero-lead { font-size: 13px; }
}