/* ============================================================
   KINGRAM LP — カラーパレット
   Primary  : #1B58A8  (ネイビーブルー / キーカラー)
   Accent   : #C8811E  (ウォームアンバー / オレンジ)
   Light    : #F5EDE0  (ウォームベージュ)
   Dark     : #2C2010  (ウォームダーク)
   ============================================================ */

:root {
  --primary: #1B58A8;
  --primary-dark: #133F82;
  --primary-light: #2E72CC;
  --accent: #C8811E;
  --accent2: #E8A84A;
  --dark: #2C2010;
  --dark2: #1A1208;
  --light: #F5EDE0;
  --light2: #FAF5EE;
  --white: #FFFFFF;
  --gray: #9A8A78;
  --text: #3A2A18;
  --border: #E5D3BC;
  --red: #C0392B;
  --gold: #A28B5F;
  --btn-orange: #e57a2c;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0.02em;
  color: #333;
  background: var(--white);
  overflow-x: hidden;
  padding-top: 64px;
}
h1 {
  font-size: 44px;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h3 {
  font-size: 22px;
  line-height: 1.35;
  font-weight: 600;
}
small {
  font-size: 13px;
  line-height: 1.6;
}

/* ─── COMMON ─── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
section { padding: 72px 0; }
.sec-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; letter-spacing: 0.3em; color: var(--primary); text-transform: uppercase; margin-bottom: 8px; font-weight: 500;
}
.sec-label::before, .sec-label::after { content: ''; display: block; width: 30px; height: 1px; background: var(--primary); }
.sec-title { font-family: "Noto Sans JP", sans-serif; font-size: 30px; color: var(--dark); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px; }
.sec-title span { color: var(--primary); }
.sec-sub { font-size: 16px; color: var(--gray); line-height: 1.7; margin-bottom: 40px; }
.sec-head { text-align: center; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--accent); color: #fff; font-weight: 700; font-size: 15px;
  padding: 16px 40px; border-radius: 50px; text-decoration: none; letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(255,107,0,0.35); transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover { background: #E05800; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(255,107,0,0.4); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 2px solid var(--primary); color: var(--primary); font-weight: 700; font-size: 14px;
  padding: 14px 36px; border-radius: 50px; text-decoration: none; letter-spacing: 0.05em;
  background: white; transition: all 0.25s; cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: white; }

/* reveal animation */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ─── HERO SLIDESHOW ─── */
.hero {
  position: relative;
  min-height: calc(100vh - 64px);   /* fallback */
  min-height: calc(100dvh - 64px);  /* モバイルブラウザのアドレスバー込みで正確に */
  display: flex; flex-direction: column;
  justify-content: center; align-items: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease;
  background-size: cover; background-position: center;
}
.hero-slide.active { opacity: 1; }
/* ダミースライド背景 */
.hero-slide:nth-child(1) { background: linear-gradient(135deg, #2C2010 0%, #1B4A8A 50%, #3A2A18 100%); }
.hero-slide:nth-child(2) { background: linear-gradient(135deg, #1B3A6A 0%, #2C2010 50%, #133F82 100%); }
.hero-slide:nth-child(3) { background: linear-gradient(135deg, #3A2A18 0%, #1B58A8 50%, #2C2010 100%); }
.hero-slide:nth-child(4) { background: linear-gradient(135deg, #1A1208 0%, #2C2010 50%, #1B3A6A 100%); }

/* 写真あり：グラデーションを上書き・プレースホルダーを非表示 */
.hero-slide[data-bg] { background-size: cover; background-position: center; }
.hero-slide[data-bg] > div { display: none; }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center; padding: 0 20px;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.hero-badge { display: none; }
.hero-title {
  writing-mode: horizontal-tb;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(36px, 5.2vw, 76px); font-weight: 700;
  color: white; letter-spacing: -0.01em; line-height: 1.15;
  text-align: center;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  margin: 0;
  animation: fadeDown 0.8s 0.3s both;
}
.hero-title em { color: var(--accent2); font-style: normal; }
.hero-sub-catch {
  font-size: 13px; color: rgba(255,255,255,0.75);
  letter-spacing: 0.14em; font-weight: 500;
  animation: fadeDown 0.8s 0.5s both;
}
.hero-sub-catch em { color: var(--accent2); font-style: normal; }
.hero-subtitle {
  font-size: 16px; color: rgba(255,255,255,0.9);
  margin-bottom: 8px; line-height: 1.7; letter-spacing: 0.02em;
  animation: fadeDown 0.8s 0.7s both;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: fadeDown 0.8s 0.9s both; }
.hero-cta .btn-primary { font-size: 16px; padding: 18px 48px; }
.hero-line-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #06C755; color: white; font-weight: 700; font-size: 15px;
  padding: 18px 40px; border-radius: 50px; text-decoration: none;
  box-shadow: 0 4px 16px rgba(6,199,85,0.4); transition: all 0.25s;
}
.hero-line-btn:hover { background: #05b54c; transform: translateY(-2px); }
.hero-stats { display: none; }

.slide-dots { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4); cursor: pointer; transition: all 0.3s; border: none; padding: 0; }
.slide-dot.active { background: white; width: 24px; border-radius: 4px; }

/* ─── TOP NAV ─── */
.top-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border); height: 64px;
  display: flex; align-items: center; padding: 0 20px;
}
/* WP管理バー表示中は固定ヘッダーをその分だけ下げる（未対応だとヘッダー下に管理バー分の謎の余白が出る） */
body.admin-bar .top-nav { top: 32px; }
@media screen and (max-width: 782px) {
  body.admin-bar .top-nav { top: 46px; }
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo img { height: 40px; display: block; }
.nav-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: white; font-weight: 700; font-size: 14px;
  padding: 12px 28px; border-radius: 50px; text-decoration: none;
  letter-spacing: 0.05em; transition: all 0.25s;
}
.nav-cta-btn:hover { background: #A66B15; transform: translateY(-1px); }
@media (max-width: 600px) {
  .nav-cta-btn { font-size: 12px; padding: 10px 18px; }
  .nav-logo img { height: 32px; }
}

/* ─── パンくずリスト ─── */
.breadcrumb { padding: 12px 0; font-size: 12px; color: var(--gray); background: var(--light2); }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { margin: 0 6px; }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

/* ─── 緊急お知らせバナー（最新の投稿タイトルを表示） ─── */
.kg-notice-banner { background: #FFF5F5; border-bottom: 1px solid #F5C6C6; padding: 10px 20px; text-align: center; }
.kg-notice-banner a { color: var(--red); font-weight: 700; font-size: 13px; text-decoration: none; }
.kg-notice-banner a:hover { text-decoration: underline; }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--dark); }
.stats-strip-inner { display: flex; }
.ss-stat {
  flex: 1; padding: 20px 16px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.ss-stat:last-child { border-right: none; }
.ss-num { font-size: clamp(22px,3vw,32px); font-weight: 700; color: white; line-height: 1; }
.ss-num sup { font-size: 0.55em; color: var(--accent2); }
.ss-lbl { font-size: 10px; color: rgba(255,255,255,0.6); letter-spacing: 0.08em; margin-top: 6px; white-space: nowrap; }
@media (max-width: 600px) {
  .ss-stat { padding: 14px 10px; }
  .ss-num { font-size: 20px; }
  .ss-lbl { font-size: 9px; }
}

/* ─── CAMPAIGN BANNER ─── */
.campaign {
  background: linear-gradient(135deg, #FF6B00, #FF9500);
  color: white; text-align: center; padding: 32px 20px; position: relative; overflow: hidden;
}
.campaign::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 8px, rgba(255,255,255,0.04) 8px, rgba(255,255,255,0.04) 16px);
}
.campaign-inner { position: relative; max-width: 900px; margin: 0 auto; }
.campaign-tag { display: inline-block; background: white; color: var(--accent); font-size: 11px; font-weight: 700; letter-spacing: 0.15em; padding: 4px 14px; border-radius: 20px; margin-bottom: 10px; }
.campaign-title { font-family: "Noto Sans JP", sans-serif; font-size: 22px; font-weight: 600; line-height: 1.35; margin-bottom: 8px; }
.campaign-up { font-size: clamp(28px,5vw,52px); font-weight: 700; line-height: 1; margin: 8px 0; font-family: 'M PLUS Rounded 1c', sans-serif; }
.campaign-up small { font-size: 0.45em; vertical-align: middle; }
.campaign-sub { font-size: 13px; opacity: 0.9; margin-bottom: 6px; }
.campaign-note { font-size: 11px; opacity: 0.75; }
.campaign-cta { margin-top: 20px; }
.campaign-cta .btn-primary { background: white; color: var(--accent); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }
.campaign-cta .btn-primary:hover { background: #FFF5F0; }

/* ─── PRICE UP CAROUSEL ─── */
.priceup-section { background: var(--light2); }
.carousel-wrap { position: relative; overflow: hidden; margin-top: 40px; }
.carousel-track { display: flex; gap: 20px; transition: transform 0.45s ease; padding-bottom: 4px; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; border: none; cursor: pointer;
  background: white; color: var(--primary); box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex; align-items: center; justify-content: center; z-index: 5; font-size: 18px;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: white; }
.carousel-btn.prev { left: -16px; }
.carousel-btn.next { right: -16px; }

.priceup-card {
  flex: 0 0 calc(33.333% - 14px); background: white; border-radius: 16px;
  overflow: hidden; box-shadow: 0 4px 20px rgba(27,88,168,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.priceup-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(27,88,168,0.18); }
.priceup-img {
  width: 100%; aspect-ratio: 4/3; background: var(--light);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--primary); letter-spacing: 0.1em; position: relative; overflow: hidden;
}
.priceup-img img { width: 100%; height: 100%; object-fit: cover; display: none; }
.priceup-img .img-placeholder { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.priceup-img .img-placeholder svg { opacity: 0.3; }
.priceup-body { padding: 20px; }
.priceup-condition { display: inline-block; border: 1px solid var(--primary); color: var(--primary); font-size: 10px; letter-spacing: 0.15em; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; }
.priceup-name { font-size: 13px; color: var(--text); line-height: 1.6; margin-bottom: 14px; }
.priceup-prices { background: var(--light2); border-radius: 8px; padding: 12px; }
.priceup-normal { font-size: 11px; color: var(--gray); text-decoration: line-through; margin-bottom: 4px; }
.priceup-badge { display: inline-block; background: #FFE0D0; color: var(--accent); font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 4px; margin-bottom: 8px; }
.priceup-price { font-size: 28px; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.priceup-price small { font-size: 14px; font-weight: 400; }

/* ─── CATEGORY CAROUSEL ─── */
.category-section { background: white; }
.cat-tabs-wrap { display: flex; gap: 8px; margin-bottom: 32px; overflow-x: auto; scrollbar-width: none; }
.cat-tabs-wrap::-webkit-scrollbar { display: none; }
.cat-tab-btn {
  flex-shrink: 0; padding: 10px 24px; border-radius: 50px;
  border: 2px solid var(--border); background: white; color: var(--gray);
  font-size: 14px; font-weight: 500; cursor: pointer; transition: all 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.cat-tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.cat-tab-btn.active { background: var(--primary); border-color: var(--primary); color: white; }
.cat-panel { display: none; }
.cat-panel.active { display: block; }

.cat-card {
  flex: 0 0 calc(33.333% - 14px); background: white; border-radius: 12px;
  border: 1px solid var(--border); overflow: hidden; transition: all 0.3s;
}
.cat-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(27,88,168,0.12); transform: translateY(-3px); }
.cat-card-img {
  width: 100%; aspect-ratio: 1; background: var(--light);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.cat-card-img img { width: 100%; height: 100%; object-fit: cover; display: none; }
.cat-card-img .img-ph { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--primary); opacity: 0.4; font-size: 11px; letter-spacing: 0.1em; }
.cat-card-body { padding: 16px; }
.cat-card-name { font-size: 12px; color: var(--text); line-height: 1.6; margin-bottom: 10px; }
.cat-card-lbl { font-size: 10px; color: var(--gray); letter-spacing: 0.1em; }
.cat-card-price { font-size: 22px; font-weight: 700; color: var(--primary-dark); }
.cat-card-price small { font-size: 12px; font-weight: 400; }

/* ─── CONDITION ─── */
.condition-section { background: var(--light2); }
.condition-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 40px; }
.condition-item {
  background: white; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(27,88,168,0.08); transition: all 0.3s;
}
.condition-item:hover { transform: translateY(-3px); box-shadow: 0 6px 24px rgba(27,88,168,0.15); }
.condition-img {
  width: 100%; aspect-ratio: 4/3; background: var(--light);
  display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
}
.condition-img img { width: 100%; height: 100%; object-fit: cover; display: none; }
.condition-img .img-ph { font-size: 32px; opacity: 0.3; }
.condition-name { padding: 12px; text-align: center; font-size: 13px; font-weight: 500; color: var(--dark); letter-spacing: 0.05em; }

/* ─── METHOD ─── */
.method-section { background: white; }
.method-main-card {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  border-radius: 20px; padding: 48px; display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center; margin-top: 40px; overflow: hidden; position: relative;
}
.method-main-card::before {
  content: '01'; position: absolute; right: 40px; top: 20px;
  font-size: 120px; font-weight: 700; color: rgba(255,255,255,0.05); line-height: 1;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}
.method-main-content { color: white; }
.method-main-tag { display: inline-block; background: var(--accent); color: white; font-size: 11px; font-weight: 700; padding: 4px 14px; border-radius: 20px; letter-spacing: 0.15em; margin-bottom: 16px; }
.method-main-title { font-family: "Noto Sans JP", sans-serif; font-size: 22px; font-weight: 600; margin-bottom: 12px; line-height: 1.35; letter-spacing: -0.01em; }
.method-main-desc { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.85); margin-bottom: 24px; }
.method-main-points { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.method-main-points li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.9); }
.method-main-points li::before { content: '✓'; display: flex; align-items: center; justify-content: center; width: 22px; height: 22px; min-width: 22px; background: var(--accent2); color: var(--dark); border-radius: 50%; font-size: 12px; font-weight: 700; }
.method-main-visual {
  aspect-ratio: 4/3; background: rgba(255,255,255,0.08); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.method-main-visual .vis-ph { text-align: center; color: rgba(255,255,255,0.4); }
.method-main-visual .vis-ph svg { opacity: 0.4; }
.method-main-visual .vis-ph p { font-size: 12px; margin-top: 8px; letter-spacing: 0.2em; }

.method-sub-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px; }
.method-sub-card {
  border: 2px solid var(--border); border-radius: 16px; padding: 28px; display: flex; gap: 20px;
  align-items: flex-start; transition: all 0.3s;
}
.method-sub-card:hover { border-color: var(--primary); background: var(--light2); }
.method-sub-icon { width: 52px; height: 52px; min-width: 52px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--primary); }
.method-sub-num { font-size: 11px; color: var(--gray); margin-bottom: 4px; }
.method-sub-title { font-size: 22px; font-weight: 600; color: var(--dark); margin-bottom: 6px; line-height: 1.35; }
.method-sub-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ─── FLOW CAROUSEL ─── */
.flow-section { background: var(--light2); }
.flow-card {
  flex: 0 0 calc(25% - 15px); background: white; border-radius: 16px;
  padding: 0 0 20px; text-align: center; box-shadow: 0 2px 12px rgba(27,88,168,0.08);
  transition: all 0.3s; position: relative; overflow: hidden;
}
.flow-card:hover { transform: translateY(-4px); box-shadow: 0 6px 24px rgba(27,88,168,0.15); }
.flow-card::after {
  content: '▶'; position: absolute; right: -14px; top: 40%; transform: translateY(-50%);
  color: var(--primary); font-size: 14px; z-index: 2;
}
.flow-card:last-child::after { display: none; }
.flow-photo {
  width: 100%; aspect-ratio: 4/3; background: var(--light);
  display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 16px;
}
.flow-photo img { width: 100%; height: 100%; object-fit: cover; display: none; }
.flow-photo-ph { display: flex; flex-direction: column; align-items: center; gap: 6px; color: var(--primary); opacity: 0.35; font-size: 11px; letter-spacing: 0.1em; }
.flow-card-body { padding: 0 16px; }
.flow-step { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: white; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.flow-title { font-size: 14px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.flow-desc { font-size: 13px; color: var(--gray); line-height: 1.6; }

.flow-tabs { display: flex; gap: 8px; margin-bottom: 28px; }
.flow-tab {
  padding: 10px 28px; border-radius: 50px; border: 2px solid var(--border);
  background: white; font-size: 14px; font-weight: 500; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; transition: all 0.2s; color: var(--gray);
}
.flow-tab.active { background: var(--primary); border-color: var(--primary); color: white; }
.flow-panel { display: none; }
.flow-panel.active { display: block; }

/* ─── VISIT BENEFIT ─── */
.visit-section { background: white; }
.visit-card {
  background: linear-gradient(135deg, #F5EDE0, #EDE0CC);
  border: 2px solid var(--accent2); border-radius: 20px; padding: 40px;
  position: relative; overflow: hidden; margin-top: 40px;
}
.visit-card::before {
  content: ''; position: absolute; right: -30px; bottom: -30px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(200,129,30,0.08);
}
.visit-header { text-align: center; margin-bottom: 32px; }
.visit-title {
  display: inline-block; background: var(--primary); color: white;
  font-family: "Noto Sans JP", sans-serif; font-size: 22px; font-weight: 600; line-height: 1.35;
  padding: 10px 36px; border-radius: 50px; letter-spacing: 0.05em;
}
.visit-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.visit-benefit { background: white; border-radius: 16px; padding: 28px 20px; text-align: center; box-shadow: 0 3px 16px rgba(27,88,168,0.12); }
.visit-benefit-tag { display: inline-block; background: var(--primary); color: white; font-size: 12px; font-weight: 700; padding: 4px 16px; border-radius: 20px; margin-bottom: 16px; letter-spacing: 0.1em; }
.visit-benefit-icon { font-size: 40px; margin-bottom: 12px; }
.visit-benefit-title { font-size: 14px; font-weight: 700; color: var(--dark); line-height: 1.5; margin-bottom: 6px; }
.visit-benefit-desc { font-size: 12px; color: var(--gray); line-height: 1.7; }
.visit-footer { text-align: center; margin-top: 24px; font-size: 13px; color: var(--primary); font-weight: 500; }
.visit-footer::before { content: '☎ '; }

/* ─── SHOP LIST ─── */
.shop-section { background: var(--light2); }
.pref-tabs { display: flex; gap: 8px; margin-bottom: 28px; flex-wrap: wrap; }
.pref-tab {
  padding: 8px 20px; border-radius: 50px; border: 2px solid var(--border);
  background: white; font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif; transition: all 0.2s; color: var(--gray);
}
.pref-tab.active { background: var(--primary); border-color: var(--primary); color: white; }
.shop-panel { display: none; }
.shop-panel.active { display: block; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.shop-card {
  background: white; border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 12px rgba(27,88,168,0.08); border: 1px solid var(--border);
  transition: all 0.3s;
}
.shop-card:hover { border-color: var(--primary); box-shadow: 0 4px 20px rgba(27,88,168,0.15); }
.shop-name { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.shop-access { font-size: 12px; color: var(--primary); margin-bottom: 8px; font-weight: 500; }
.shop-addr { font-size: 12px; color: var(--gray); line-height: 1.6; margin-bottom: 8px; }
.shop-hours { font-size: 12px; color: var(--text); }

/* ─── REASONS ─── */
.reason-section { background: white; }
.reason-head { text-align: center; }
.reason-head-eyebrow { font-size: 18px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.reason-head-main { font-size: 34px; font-weight: 700; color: var(--dark); }
.reason-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; }
.reason-card { text-align: center; padding: 0; }
.reason-icon-circle {
  width: 84px; height: 84px; border-radius: 50%; border: 2px solid var(--accent2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 34px; color: var(--accent2);
}
.reason-desc { font-size: 13px; color: var(--gray); line-height: 1.6; margin-bottom: 6px; }
.reason-title { font-size: 17px; font-weight: 700; color: var(--dark); line-height: 1.4; }

/* ─── FAQ ─── */
.faq-section { background: var(--light2); }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: white; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.05); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; cursor: pointer; gap: 16px;
}
.faq-q-inner { display: flex; gap: 14px; align-items: flex-start; }
.faq-q-mark { font-size: 20px; font-weight: 700; color: var(--primary); line-height: 1.2; flex-shrink: 0; }
.faq-q-text { font-size: 16px; color: var(--dark); font-weight: 500; line-height: 1.7; }
.faq-toggle { width: 30px; height: 30px; min-width: 30px; border-radius: 50%; background: var(--light); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 20px; transition: all 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-a { display: none; padding: 0 24px 20px 52px; font-size: 16px; color: var(--gray); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ─── VOICE ─── */
.voice-section { background: white; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.voice-card { background: var(--light2); border-radius: 16px; padding: 28px; position: relative; }
.voice-stars { color: var(--accent2); font-size: 15px; letter-spacing: 2px; margin-bottom: 12px; }
.voice-text { font-size: 16px; color: var(--text); line-height: 1.7; margin-bottom: 16px; }
.voice-from { font-size: 11px; color: var(--gray); }
.voice-quote { position: absolute; top: 20px; right: 20px; font-size: 48px; color: rgba(27,88,168,0.1); line-height: 1; font-family: Georgia, serif; }

/* ─── FINAL CTA ─── */
.final-cta { background: linear-gradient(135deg, var(--dark2) 0%, var(--dark) 100%); padding: 80px 0; }
.cta-block { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 56px 40px; text-align: center; }
.cta-campaign { background: linear-gradient(135deg, #FF6B00, #FF9500); border-radius: 16px; padding: 32px 28px; margin-bottom: 40px; }
.cta-campaign-tag { display: inline-block; background: white; color: var(--accent); font-size: 12px; font-weight: 700; padding: 4px 14px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.1em; }
.cta-campaign-title { font-family: "Noto Sans JP", sans-serif; font-size: 22px; color: white; font-weight: 600; line-height: 1.35; margin-bottom: 10px; }
.cta-campaign-up { font-size: clamp(36px,5vw,60px); font-weight: 700; color: white; line-height: 1; font-family: 'M PLUS Rounded 1c', sans-serif; }
.cta-campaign-up small { font-size: 0.45em; vertical-align: middle; }
.cta-campaign-sub { font-size: 13px; color: rgba(255,255,255,0.9); margin-top: 8px; }
.cta-campaign-note { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 6px; }

.cta-btns-wrap { display: flex; flex-direction: column; gap: 20px; }
.cta-section-title { font-size: 14px; color: rgba(255,255,255,0.7); letter-spacing: 0.1em; margin-bottom: 12px; }
.cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-tel-btn {
  display: flex; align-items: center; gap: 14px;
  background: white; color: var(--dark); border-radius: 12px; padding: 20px 36px;
  text-decoration: none; transition: all 0.3s; min-width: 300px; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.cta-tel-btn:hover { background: var(--light); transform: translateY(-2px); }
.cta-tel-btn .label { font-size: 11px; color: var(--gray); display: block; margin-bottom: 2px; letter-spacing: 0.1em; }
.cta-tel-btn .num { font-size: 26px; font-weight: 700; color: var(--primary-dark); letter-spacing: 0.05em; }
.cta-line-big {
  display: flex; align-items: center; gap: 12px;
  background: #06C755; color: white; border-radius: 50px; padding: 20px 36px;
  text-decoration: none; font-weight: 700; font-size: 16px; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(6,199,85,0.35);
}
.cta-line-big:hover { background: #05b54c; transform: translateY(-2px); }
.cta-mail-btn {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.12); color: white; border: 1px solid rgba(255,255,255,0.3);
  border-radius: 12px; padding: 18px 32px; text-decoration: none; font-size: 14px; font-weight: 500; transition: all 0.3s;
}
.cta-mail-btn:hover { background: rgba(255,255,255,0.2); }

/* ─── STICKY BAR ─── */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
  background: rgba(26,16,8,0.97); backdrop-filter: blur(10px);
  border-top: 3px solid var(--accent); padding: 12px 16px;
  display: flex; gap: 12px; align-items: stretch;
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 10px; border-radius: 8px; text-decoration: none;
  font-size: 13px; font-weight: 700; letter-spacing: 0.03em; transition: all 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}
.s-tel { background: white; color: var(--primary-dark); }
.s-tel:hover { background: var(--light); }
.s-tel .tel-num { font-size: 16px; font-weight: 700; }
.s-line { background: #06C755; color: white; }
.s-line:hover { background: #05b54c; }

/* ─── ANIMATIONS ─── */
@keyframes fadeDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: none; } }
@keyframes fadeUp   { from { opacity: 0; transform: translateY(20px); }  to { opacity: 1; transform: none; } }
@keyframes fadeInOnly { from { opacity: 0; } to { opacity: 1; } }

/* ─── RESERVE BUTTON ─── */
.btn-reserve { position: relative; padding-top: 28px !important; }
.reserve-badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px; white-space: nowrap; letter-spacing: 0.06em;
}
.nav-reserve-btn { position: relative; padding-top: 20px !important; }
.nav-badge {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: white; font-size: 9px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}
/* ─── SHOP RESERVE BUTTON ─── */
.shop-reserve-btn {
  display: block; margin-top: 14px;
  background: var(--primary); color: white;
  text-align: center; padding: 10px; border-radius: 8px;
  text-decoration: none; font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; transition: all 0.2s;
}
.shop-reserve-btn:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─── BRAND LIST ─── */
.brand-section { background: var(--light2); }
.brand-list { display: flex; flex-wrap: wrap; gap: 6px 8px; margin-top: 32px; }
.brand-tag {
  font-size: 10px; font-weight: 500; color: var(--gray);
  border: 1px solid var(--border); padding: 3px 10px; border-radius: 20px;
  letter-spacing: 0.06em; background: white; transition: all 0.2s;
}
.brand-tag:hover { border-color: var(--primary); color: var(--primary); }

/* ─── FOOTER ─── */
footer { background: var(--dark2); padding: 48px 0 100px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo { font-size: 28px; font-weight: 700; color: white; letter-spacing: 0.15em; margin-bottom: 8px; }
.footer-logo span { color: var(--primary-light); }
.footer-tagline { font-size: 11px; color: rgba(255,255,255,0.5); letter-spacing: 0.2em; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px 28px; }
.footer-links a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; letter-spacing: 0.05em; }
.footer-links a:hover { color: var(--primary-light); }
.footer-bottom { font-size: 11px; color: rgba(255,255,255,0.35); text-align: center; letter-spacing: 0.1em; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .priceup-card, .cat-card { flex-basis: calc(50% - 10px); }
  .flow-card { flex-basis: calc(50% - 10px); }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .method-main-card { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-benefits { grid-template-columns: 1fr; }
  .voice-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 56px 0; }
  .priceup-card, .cat-card { flex-basis: calc(85% - 10px); }
  .flow-card { flex-basis: 80%; }
  .condition-grid { grid-template-columns: repeat(2, 1fr); }
  .reason-grid { grid-template-columns: repeat(2, 1fr); }
  .method-sub-cards { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .cta-tel-btn { min-width: auto; width: 100%; }
  .footer-inner { flex-direction: column; }

  /* ─ ヒーロー モバイル最適化 ─ */
  .hero-content { padding: 0 16px; gap: 14px; }
  .hero-title {
    writing-mode: vertical-rl;
    font-size: clamp(28px, 9.5vw, 44px);
    letter-spacing: 0.18em; line-height: 1.9;
    align-self: flex-end; margin-right: 8px; margin-bottom: 28px;
    text-align: left;
    animation: fadeInOnly 0.8s 0.3s both;
  }
  .hero-sub-catch { font-size: 11px; }
  .hero-subtitle { font-size: 13px; line-height: 1.6; margin-bottom: 4px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn-primary { font-size: 14px !important; padding: 14px 28px !important; }
  .hero-line-btn { font-size: 13px; padding: 14px 24px; }
  .slide-dots { bottom: 12px; }
}
