@charset "UTF-8";
/* ==========================================================
   高価買取えびすや — ネイビー×ゴールドの高級感デザイン
   ========================================================== */
:root {
  /* イメージカラー: ロゴの赤に合わせたレッド基調(--navyは「メインの濃色」として赤系を格納) */
  --navy: #7c0d12;
  --navy-light: #99161c;
  --gold: #c9a227;
  --gold-light: #e0c05a;
  --gold-grad: linear-gradient(135deg, #d4af37 0%, #f2d675 50%, #c9a227 100%);
  --red: #c8000f;
  --text: #2b2b2b;
  --text-light: #666;
  --bg-gray: #f8f4ee;
  --white: #fff;
  --line-green: #06c755;
  --shadow: 0 4px 24px rgba(60, 10, 12, 0.12);
  --radius: 12px;
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.8;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- 共通ボタン ---------- */
.btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  cursor: pointer;
  border: none;
  line-height: 1.4;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.btn--gold {
  background: var(--gold-grad);
  color: var(--navy);
  box-shadow: 0 4px 12px rgba(201, 162, 39, 0.4);
}
.btn--outline {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border: 2px solid var(--gold-light);
}
.btn--line { background: var(--line-green); color: #fff; }
.btn--lg { padding: 18px 44px; font-size: 18px; }
.btn__small { font-size: 12px; font-weight: 500; opacity: 0.85; }

/* ---------- 共通セクション ---------- */
.section { padding: 80px 20px; }
.section--gray { background: var(--bg-gray); }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}
.section__inner { max-width: 1080px; margin: 0 auto; }
.section__inner--wide { max-width: 1200px; }
.section__inner--narrow { max-width: 760px; }
.section__title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}
.section__title em { font-style: normal; color: var(--gold); font-size: 1.3em; white-space: nowrap; }
.section__title small { font-size: 0.5em; font-weight: 500; }
.section__title--light { color: var(--white); }
.section__title-en {
  display: block;
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 8px;
  font-weight: 700;
}
.section__desc { text-align: center; margin-bottom: 48px; color: var(--text-light); }
.section__desc--light { color: rgba(255,255,255,0.8); }

/* ---------- フェードインアニメーション（JS有効時のみ初期非表示） ---------- */
body.js .fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
body.js .fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ==========================================================
   ヘッダー
   ========================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}
.header__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 20px;
}
.header__logo a { display: flex; align-items: center; gap: 10px; }
.header__logo-img {
  width: 48px; height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.15));
}
.header__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.header__logo-sub { font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 0.1em; }
.header__logo-main { font-family: var(--font-serif); font-size: 22px; font-weight: 900; color: var(--navy); }
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: 20px; }
.header__nav a { font-size: 14px; font-weight: 500; position: relative; padding: 4px 0; }
.header__nav a::after {
  content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px;
  background: var(--gold); transition: width 0.3s;
}
.header__nav a:hover::after { width: 100%; }
.header__contact { display: flex; align-items: center; gap: 16px; }
.header__tel { display: flex; flex-direction: column; align-items: center; line-height: 1.3; }
.header__tel-label { font-size: 10px; color: var(--text-light); }
.header__tel-number {
  display: flex; align-items: center; gap: 4px;
  font-size: 22px; font-weight: 900; color: var(--navy);
  font-family: "Arial", sans-serif;
}
.header__tel-number svg { color: var(--gold); }
.header__cta { padding: 10px 22px; font-size: 14px; }
.header__hamburger { display: none; }

/* ==========================================================
   ヒーロー
   ========================================================== */
.hero {
  position: relative;
  padding: 150px 20px 0;
  background: linear-gradient(150deg, #4a0508 0%, #7c0d12 45%, #a3161d 100%);
  color: var(--white);
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(212,175,55,0.18), transparent),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(212,175,55,0.1), transparent);
  pointer-events: none;
}
.hero__bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 1px, transparent 1px 14px);
}
.hero__inner { position: relative; max-width: 1080px; margin: 0 auto; }
.hero__content { text-align: center; padding-bottom: 56px; }
.hero__logo {
  display: block;
  width: clamp(90px, 12vw, 130px);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.9), 0 0 0 6px var(--gold), 0 10px 30px rgba(0,0,0,0.45);
}
.hero__lead {
  display: inline-block;
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: 0.2em;
  color: var(--gold-light);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 20px;
}
.hero__title-em {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__title-big {
  font-size: 1.5em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__desc { font-size: clamp(13px, 1.6vw, 16px); color: rgba(255,255,255,0.85); margin-bottom: 32px; }
.hero__badges { display: flex; justify-content: center; gap: 16px; margin-bottom: 36px; flex-wrap: wrap; }
.hero__badge {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #f2d675, #c9a227 70%);
  color: var(--navy);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(201,162,39,0.4);
  line-height: 1.2;
}
.hero__badge-label { font-size: 13px; font-weight: 700; }
.hero__badge-value { font-size: 36px; font-weight: 900; font-family: var(--font-serif); }
.hero__badge-value small { font-size: 16px; }
.hero__cta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* 信頼の数字 */
.hero__stats {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.35);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  backdrop-filter: blur(4px);
}
.hero__stat {
  padding: 28px 12px;
  text-align: center;
  border-right: 1px solid rgba(212,175,55,0.25);
}
.hero__stat:last-child { border-right: none; }
.hero__stat-num {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 900;
  color: var(--gold-light);
}
.hero__stat-unit { font-size: clamp(16px, 2vw, 22px); font-weight: 700; color: var(--gold-light); }
.hero__stat-unit small { font-size: 0.65em; }
.hero__stat-label { display: block; font-size: 13px; color: rgba(255,255,255,0.8); margin-top: 4px; }
.hero__stat-label sup { font-size: 9px; }

/* ==========================================================
   キャンペーン
   ========================================================== */
.campaign {
  background: linear-gradient(135deg, #b8860b 0%, #ecd06a 50%, #b8860b 100%);
  color: #5c0a0e;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.campaign::before {
  content: "";
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-45deg, rgba(255,255,255,0.15) 0 12px, transparent 12px 24px);
}
.campaign__inner { position: relative; }
.campaign__ribbon {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-weight: 900;
  font-size: 13px;
  padding: 4px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.campaign__text { font-size: clamp(18px, 3vw, 28px); font-weight: 700; }
.campaign__up {
  font-family: var(--font-serif);
  font-size: 1.6em;
  font-weight: 900;
  color: var(--red);
  margin-left: 6px;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.campaign__period { font-size: 14px; margin-top: 6px; opacity: 0.85; }
.campaign__grid {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.campaign__grid .campaign__inner:first-child { border-right: 1px dashed rgba(92,10,14,0.35); padding-right: 24px; }

/* ==========================================================
   本日の買取相場
   ========================================================== */
.rate { background: var(--navy); padding: 36px 20px; color: #fff; }
.rate__inner { max-width: 1080px; margin: 0 auto; }
.rate__head { display: flex; align-items: baseline; justify-content: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.rate__title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--gold-light);
}
.rate__title::before { content: "📈 "; }
.rate__date { font-size: 13px; color: rgba(255,255,255,0.7); }
.rate__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.rate__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 10px;
  padding: 16px 12px;
  text-align: center;
  display: flex; flex-direction: column; gap: 4px;
}
.rate__label { font-size: 13px; font-weight: 700; color: var(--gold-light); }
.rate__label small { font-weight: 400; color: rgba(255,255,255,0.6); }
.rate__price { font-family: var(--font-serif); font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; }
.rate__price small { font-size: 0.5em; font-weight: 400; color: rgba(255,255,255,0.7); }
.rate__diff { font-size: 12px; font-weight: 700; }
.rate__diff--up { color: #7fd88f; }
.rate__diff--down { color: #7fb8d8; }
.rate__note { text-align: center; font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 16px; }

/* ==========================================================
   お悩み
   ========================================================== */
.worry__list { max-width: 720px; margin: 0 auto 40px; display: flex; flex-direction: column; gap: 14px; }
.worry__item {
  background: var(--bg-gray);
  border-left: 4px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px 16px 52px;
  position: relative;
  font-size: 16px;
}
.worry__item::before {
  content: "✓";
  position: absolute; left: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-weight: 900;
  font-size: 20px;
}
.worry__item strong { color: var(--red); }
.worry__answer { text-align: center; }
.worry__answer-arrow { font-size: 16px; color: var(--text-light); position: relative; margin-bottom: 8px; }
.worry__answer-arrow::after {
  content: ""; display: block; margin: 10px auto 0;
  border: 14px solid transparent; border-top-color: var(--gold); border-bottom: none;
}
.worry__answer-text {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 900;
  color: var(--navy);
}
.worry__answer-text span { color: var(--gold); }

/* ==========================================================
   選ばれる理由
   ========================================================== */
.reason__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.reason__card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.reason__card:hover { transform: translateY(-6px); border-color: var(--gold-light); }
.reason__num {
  position: absolute; top: 16px; right: 20px;
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 900;
  color: rgba(212,175,55,0.35);
}
.reason__icon { width: 48px; height: 48px; color: var(--gold-light); margin-bottom: 16px; }
.reason__icon svg { width: 100%; height: 100%; }
.reason__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--gold-light); }
.reason__text { font-size: 14px; color: rgba(255,255,255,0.85); }

/* ==========================================================
   買取品目
   ========================================================== */
.items__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.items__card {
  position: relative;
  background: var(--white);
  border: 1px solid #e5e0d5;
  border-radius: var(--radius);
  padding: 24px 8px 18px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.items__card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--gold); }
.items__emoji { font-size: 36px; line-height: 1; }
.items__name { font-size: 14px; font-weight: 700; }
.items__tag {
  position: absolute; top: -8px; right: -6px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 2px 10px; border-radius: 20px;
  box-shadow: 0 2px 6px rgba(192,57,43,0.4);
}
.items__note { text-align: center; margin-top: 24px; font-size: 13px; color: var(--text-light); }

/* ==========================================================
   買取実績
   ========================================================== */
.results__slider { position: relative; margin: 0 -8px; }
.results__track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px;
  scrollbar-width: none;
}
.results__track::-webkit-scrollbar { display: none; }
.results__card {
  flex: 0 0 250px;
  scroll-snap-align: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.results__img {
  height: 150px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.15em;
}
.results__img--gold    { background: linear-gradient(135deg, #b8860b, #ffd700, #b8860b); }
.results__img--watch   { background: linear-gradient(135deg, #2c3e50, #4a6382); }
.results__img--bag     { background: linear-gradient(135deg, #6e4a2f, #a97c50); }
.results__img--gem     { background: linear-gradient(135deg, #4a148c, #8e44ad); }
.results__img--antique { background: linear-gradient(135deg, #3e2723, #795548); }
.results__img--kimono  { background: linear-gradient(135deg, #880e4f, #c2185b); }
.results__img--stamp   { background: linear-gradient(135deg, #1b5e20, #43a047); }
.results__img--whisky  { background: linear-gradient(135deg, #bf360c, #e64a19); }
.results__cat { font-size: 11px; color: var(--gold); font-weight: 700; padding: 12px 16px 0; }
.results__name { font-size: 15px; font-weight: 700; padding: 2px 16px 0; }
.results__price { padding: 6px 16px 16px; font-size: 12px; color: var(--text-light); }
.results__price strong { display: block; font-size: 22px; color: var(--red); font-family: var(--font-serif); }
.results__arrow {
  position: absolute; top: 42%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  transition: background 0.2s;
  z-index: 2;
}
.results__arrow:hover { background: var(--gold); color: var(--navy); }
.results__arrow--prev { left: -8px; }
.results__arrow--next { right: -8px; }
.results__cta { text-align: center; margin-top: 40px; }
.results__cta p { margin-bottom: 16px; font-weight: 500; }

/* ==========================================================
   買取方法
   ========================================================== */
.method__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 40px; }
.method__grid--two { grid-template-columns: repeat(2, 1fr); max-width: 820px; margin-left: auto; margin-right: auto; }
.method__card {
  position: relative;
  background: var(--white);
  border: 2px solid #e5e0d5;
  border-radius: var(--radius);
  padding: 36px 24px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}
.method__card:hover { border-color: var(--gold); transform: translateY(-4px); }
.method__card:first-child { border-color: var(--gold); }
.method__badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-grad);
  color: var(--navy);
  font-size: 12px; font-weight: 900;
  padding: 4px 18px;
  border-radius: 20px;
  white-space: nowrap;
}
.method__icon { font-size: 48px; margin-bottom: 8px; }
.method__title { font-family: var(--font-serif); font-size: 24px; font-weight: 900; color: var(--navy); }
.method__copy { font-size: 13px; color: var(--gold); font-weight: 700; margin-bottom: 16px; }
.method__list { text-align: left; display: flex; flex-direction: column; gap: 8px; }
.method__list li {
  font-size: 14px;
  padding-left: 24px;
  position: relative;
}
.method__list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.method__list small { font-size: 11px; color: var(--text-light); }
.method__line {
  display: flex; align-items: center; gap: 20px;
  background: #eafaf0;
  border: 2px solid var(--line-green);
  border-radius: var(--radius);
  padding: 24px 28px;
  flex-wrap: wrap;
}
.method__line-icon { color: var(--line-green); flex-shrink: 0; }
.method__line-text { flex: 1; min-width: 240px; }
.method__line-text h3 { font-size: 18px; color: #05803a; margin-bottom: 4px; }
.method__line-text p { font-size: 14px; }

/* ---------- 出張対応エリア ---------- */
.area {
  margin-top: 28px;
  background: var(--bg-gray);
  border: 1px solid #e5dcc8;
  border-radius: var(--radius);
  padding: 28px;
}
.area__title { font-size: 18px; color: var(--navy); margin-bottom: 16px; text-align: center; }
.area__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.area__block {
  background: var(--white);
  border-radius: 8px;
  padding: 16px;
  display: flex; flex-direction: column; gap: 4px;
  border-top: 3px solid #d5c9a8;
}
.area__block--main { border-top-color: var(--gold); }
.area__region { font-weight: 900; color: var(--navy); font-size: 15px; }
.area__block--main .area__region { color: var(--red); }
.area__pref { font-size: 13px; color: var(--text-light); }

/* ==========================================================
   鑑定士紹介
   ========================================================== */
.staff__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.staff__card {
  background: var(--white);
  border: 1px solid #eee4d0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  text-align: center;
}
.staff__avatar {
  width: 90px; height: 90px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(150deg, #f8ecd5, #eed9a8);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.staff__role { font-size: 12px; color: var(--red); font-weight: 700; }
.staff__name { font-family: var(--font-serif); font-size: 20px; color: var(--navy); margin: 2px 0; }
.staff__exp {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  background: var(--navy); color: var(--gold-light);
  padding: 2px 12px; border-radius: 20px;
  margin-bottom: 12px;
}
.staff__msg { font-size: 13px; color: var(--text-light); text-align: left; }
.staff__ladies {
  margin-top: 28px;
  background: #fdf0f4;
  border: 1px solid #f0c8d6;
  border-radius: 10px;
  padding: 16px 24px;
  font-size: 14px;
  text-align: center;
}
.staff__ladies strong { color: #c2185b; }

/* ==========================================================
   安心への取り組み
   ========================================================== */
.anshin__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 40px; }
.anshin__card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.anshin__icon { font-size: 36px; display: block; margin-bottom: 10px; }
.anshin__card h3 { font-size: 15px; color: var(--navy); margin-bottom: 8px; }
.anshin__card p { font-size: 12px; color: var(--text-light); text-align: left; }
.anshin__alert {
  margin-top: 28px;
  background: #fff7e6;
  border: 2px solid #e8b93f;
  border-radius: var(--radius);
  padding: 24px 28px;
}
.anshin__alert-title { font-size: 16px; color: #9a6b00; margin-bottom: 8px; }
.anshin__alert p { font-size: 13px; color: #5f4a10; }

/* ==========================================================
   ご利用の流れ
   ========================================================== */
.flow__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 48px; counter-reset: flow; }
.flow__step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
}
.flow__step:not(:last-child)::after {
  content: "▶";
  position: absolute;
  right: -18px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 14px;
  z-index: 1;
}
.flow__num {
  display: inline-block;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 12px; font-weight: 700;
  padding: 3px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}
.flow__icon { font-size: 40px; margin-bottom: 8px; }
.flow__title { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.flow__text { font-size: 13px; color: var(--text-light); text-align: left; }
.flow__note { text-align: center; margin-top: 28px; font-size: 13px; color: var(--text-light); }

/* ==========================================================
   お客様の声
   ========================================================== */
.voice__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.voice__card {
  background: var(--bg-gray);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
}
.voice__card::before {
  content: "“";
  position: absolute; top: 4px; left: 16px;
  font-family: var(--font-serif);
  font-size: 60px;
  color: rgba(201,162,39,0.3);
  line-height: 1;
}
.voice__stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 12px; }
.voice__text { font-size: 14px; margin-bottom: 16px; }
.voice__author { font-size: 12px; color: var(--text-light); border-top: 1px dashed #ccc; padding-top: 10px; }

/* ==========================================================
   FAQ
   ========================================================== */
.faq__list { display: flex; flex-direction: column; gap: 14px; margin-top: 40px; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  overflow: hidden;
}
.faq__q {
  position: relative;
  padding: 20px 56px 20px 60px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  transition: background 0.2s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { background: #faf8f2; }
.faq__q::before {
  content: "Q";
  position: absolute; left: 18px; top: 50%;
  transform: translateY(-50%);
  width: 30px; height: 30px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
}
.faq__q::after {
  content: "＋";
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 20px; font-weight: 700;
  transition: transform 0.3s;
}
.faq__item[open] .faq__q::after { content: "－"; }
.faq__a {
  position: relative;
  padding: 4px 24px 22px 60px;
  font-size: 14px;
  color: var(--text-light);
}
.faq__a::before {
  content: "A";
  position: absolute; left: 18px; top: 2px;
  width: 30px; height: 30px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 15px;
}

/* ==========================================================
   お問い合わせフォーム
   ========================================================== */
.contact__steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}
.contact__step {
  flex: 1;
  max-width: 200px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%);
}
.contact__step::before {
  content: attr(data-step-label) ". ";
}
.contact__step.is-active { background: var(--gold-grad); color: var(--navy); }
.contact__form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 40px 36px;
  margin-top: 0;
}
.contact__zip-wrap { display: flex; gap: 10px; }
.contact__input--zip { max-width: 200px; }
.contact__zip-btn {
  flex-shrink: 0;
  background: var(--gold);
  color: var(--navy);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  padding: 0 18px;
  cursor: pointer;
  font-family: var(--font-sans);
}
.contact__zip-btn:hover { background: var(--gold-light); }
.contact__row--check { font-size: 14px; }
.contact__check { display: flex; align-items: center; gap: 8px; cursor: pointer; }
.contact__check input { width: 18px; height: 18px; accent-color: var(--gold); }
.contact__confirm-title { font-size: 18px; text-align: center; margin-bottom: 20px; color: var(--gold-light); }
.contact__confirm {
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.contact__confirm div {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(255,255,255,0.15);
  font-size: 14px;
}
.contact__confirm div:last-child { border-bottom: none; }
.contact__confirm dt { width: 130px; flex-shrink: 0; color: var(--gold-light); font-weight: 700; }
.contact__confirm dd { flex: 1; word-break: break-all; }
.contact__confirm-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.contact__confirm-btns .btn { flex: 1; min-width: 160px; }
.contact__done { text-align: center; padding: 20px 0; }
.contact__done-icon { font-size: 56px; display: block; margin-bottom: 12px; }
.contact__done h3 { font-size: 22px; color: var(--gold-light); margin-bottom: 12px; }
.contact__done p { font-size: 14px; }
.contact__row { margin-bottom: 22px; }
.contact__label { display: block; font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.contact__req, .contact__opt {
  display: inline-block;
  font-size: 11px;
  padding: 1px 10px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}
.contact__req { background: var(--red); color: #fff; }
.contact__opt { background: #8a7a7a; color: #fff; }
.contact__input {
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text);
}
.contact__input:focus { outline: 3px solid var(--gold); }
.contact__submit { width: 100%; margin-top: 8px; }
.contact__privacy { font-size: 12px; text-align: center; margin-top: 16px; color: rgba(255,255,255,0.7); }
.contact__tel-box {
  text-align: center;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px dashed rgba(212,175,55,0.4);
}
.contact__tel-box p { font-size: 14px; }
.contact__tel-number {
  display: inline-block;
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 900;
  color: var(--gold-light);
  font-family: "Arial", sans-serif;
  margin: 8px 0 4px;
}
.contact__tel-hours { font-size: 13px; color: rgba(255,255,255,0.75); }

/* ==========================================================
   店舗案内
   ========================================================== */
.shop__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 48px; align-items: start; }
.shop__map-iframe { display: block; box-shadow: var(--shadow); }

/* ==========================================================
   フランチャイズ募集
   ========================================================== */
.fc {
  background: linear-gradient(135deg, #4a0508 0%, #7c0d12 60%, #99161c 100%);
  color: #fff;
  padding: 44px 20px;
}
.fc__inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px; flex-wrap: wrap;
}
.fc__label { font-size: 12px; letter-spacing: 0.3em; color: var(--gold-light); font-weight: 700; margin-bottom: 6px; }
.fc__title { font-family: var(--font-serif); font-size: clamp(20px, 3vw, 28px); margin-bottom: 8px; }
.fc__desc { font-size: 14px; color: rgba(255,255,255,0.85); max-width: 640px; }
.fc__btn { flex-shrink: 0; font-size: 20px; }
.shop__name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 20px;
  border-left: 5px solid var(--gold);
  padding-left: 14px;
}
.shop__table { width: 100%; border-collapse: collapse; }
.shop__table th, .shop__table td {
  text-align: left;
  padding: 14px 8px;
  border-bottom: 1px solid #e5e0d5;
  font-size: 14px;
  vertical-align: top;
}
.shop__table th { width: 110px; color: var(--gold); font-weight: 700; white-space: nowrap; }
.shop__table a { color: var(--navy); font-weight: 700; }

/* ==========================================================
   フッター
   ========================================================== */
.footer { background: #2a0405; color: rgba(255,255,255,0.8); padding: 56px 20px 120px; }
.footer__inner { max-width: 1080px; margin: 0 auto; text-align: center; }
.footer__logo { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 24px; }
.footer__logo-img { width: 52px; height: 52px; }
.footer__logo-text { font-family: var(--font-serif); font-size: 20px; font-weight: 900; color: #fff; }
.footer__nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.footer__nav a { font-size: 13px; transition: color 0.2s; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__license { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.4); }

/* ==========================================================
   スマホ固定CTA / ページトップ
   ========================================================== */
.fixed-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  display: none;
  grid-template-columns: 1fr 1.2fr;
  gap: 8px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(42,4,5,0.95);
  backdrop-filter: blur(6px);
}
.fixed-cta a {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  border-radius: 10px;
  padding: 8px 4px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
}
.fixed-cta__small { font-size: 10px; font-weight: 500; opacity: 0.9; }
.fixed-cta__tel { background: var(--navy-light); color: #fff; border: 1px solid var(--gold); }
.fixed-cta__form { background: var(--gold-grad); color: var(--navy); }

.pagetop {
  position: fixed;
  right: 20px; bottom: 24px;
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 998;
}
.pagetop.is-visible { opacity: 1; pointer-events: auto; }

/* ==========================================================
   下層ページ(規約・会社概要など)
   ========================================================== */
.sub-header {
  background: var(--navy);
  padding: 14px 20px;
}
.sub-header__inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.sub-header__logo { display: flex; align-items: center; gap: 10px; }
.sub-header__logo img { width: 42px; height: 42px; }
.sub-header__logo span { font-family: var(--font-serif); font-size: 18px; font-weight: 900; color: #fff; }
.sub-header__back {
  font-size: 13px; font-weight: 700;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: 30px;
  padding: 8px 20px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.sub-header__back:hover { background: var(--gold); color: var(--navy); }
.sub-main { max-width: 900px; margin: 0 auto; padding: 48px 20px 80px; }
.sub-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 32px);
  color: var(--navy);
  border-left: 6px solid var(--gold);
  padding-left: 16px;
  margin-bottom: 12px;
}
.sub-main .sub-date { font-size: 13px; color: var(--text-light); margin-bottom: 36px; }
.sub-main h2 {
  font-size: 19px;
  color: var(--navy);
  background: var(--bg-gray);
  border-radius: 8px;
  padding: 10px 16px;
  margin: 36px 0 14px;
}
.sub-main h3 { font-size: 16px; color: var(--navy); margin: 20px 0 8px; }
.sub-main p, .sub-main li { font-size: 14px; margin-bottom: 10px; }
.sub-main ol, .sub-main ul { padding-left: 22px; margin-bottom: 14px; }
.sub-main ol { list-style: decimal; }
.sub-main ul { list-style: disc; }
.sub-main ol li, .sub-main ul li { margin-bottom: 6px; }
.sub-table { width: 100%; border-collapse: collapse; margin: 16px 0 24px; }
.sub-table th, .sub-table td {
  border: 1px solid #e0d8c6;
  padding: 12px 14px;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
}
.sub-table th { background: var(--bg-gray); color: var(--navy); width: 180px; white-space: nowrap; }
.sub-note {
  background: #fff7e6;
  border: 1px solid #e8b93f;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13px;
  color: #5f4a10;
  margin: 16px 0;
}
.sub-placeholder { background: #ffe3e3; color: #a00; font-weight: 700; padding: 0 6px; border-radius: 4px; }
.sub-footer {
  background: #2a0405; color: rgba(255,255,255,0.7);
  text-align: center; padding: 28px 20px; font-size: 12px;
}
.sub-footer a { color: var(--gold-light); margin: 0 10px; }
@media (max-width: 768px) {
  .sub-table th { width: 110px; white-space: normal; }
}

/* フッターの規約リンク */
.footer__legal { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 20px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer__legal a:hover { color: var(--gold-light); }

/* ヒーロー数字の注記 */
.hero__stats-note {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  text-align: right;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  padding: 6px 4px 10px;
}

/* ==========================================================
   レスポンシブ
   ========================================================== */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .header__nav.is-open {
    display: block;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--navy);
    padding: 24px;
  }
  .header__nav.is-open ul { flex-direction: column; gap: 0; }
  .header__nav.is-open a {
    display: block;
    color: #fff;
    padding: 14px 8px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 16px;
  }
  .header__hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: var(--navy);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
  }
  .header__hamburger span {
    display: block;
    height: 2px;
    background: var(--gold-light);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .header__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .header__hamburger.is-open span:nth-child(2) { opacity: 0; }
  .header__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .header__contact { margin-left: auto; }
  .header__hamburger { margin-left: 0; }
  .reason__grid { grid-template-columns: repeat(2, 1fr); }
  .items__grid { grid-template-columns: repeat(4, 1fr); }
  .flow__list { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .flow__step:not(:last-child)::after { display: none; }
  .rate__grid { grid-template-columns: repeat(2, 1fr); }
  .anshin__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 16px; }
  .header__tel { display: none; }
  .header__cta { display: none; }
  .header__logo-main { font-size: 18px; }
  .hero { padding-top: 100px; }
  .hero__badge { width: 92px; height: 92px; }
  .hero__badge-value { font-size: 28px; }
  .hero__cta .btn { width: 100%; max-width: 340px; }
  .hero__stats { grid-template-columns: 1fr; border-radius: 12px 12px 0 0; }
  .hero__stat { border-right: none; border-bottom: 1px solid rgba(212,175,55,0.25); padding: 18px 12px; }
  .hero__stat:last-child { border-bottom: none; }
  .reason__grid { grid-template-columns: 1fr; }
  .items__grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .items__emoji { font-size: 30px; }
  .items__name { font-size: 12px; }
  .method__grid { grid-template-columns: 1fr; gap: 28px; }
  .method__line { flex-direction: column; text-align: center; }
  .campaign__grid { grid-template-columns: 1fr; gap: 20px; }
  .campaign__grid .campaign__inner:first-child { border-right: none; padding-right: 0; border-bottom: 1px dashed rgba(92,10,14,0.35); padding-bottom: 20px; }
  .area__grid { grid-template-columns: 1fr; }
  .staff__grid { grid-template-columns: 1fr; }
  .anshin__grid { grid-template-columns: 1fr; }
  .contact__steps { margin-top: 24px; }
  .contact__step { font-size: 11px; padding: 8px 4px; }
  .contact__zip-wrap { flex-wrap: wrap; }
  .contact__confirm dt { width: 100px; }
  .voice__grid { grid-template-columns: 1fr; }
  .flow__list { grid-template-columns: 1fr; }
  .shop__grid { grid-template-columns: 1fr; }
  .contact__form { padding: 28px 20px; }
  .results__arrow { display: none; }
  .fixed-cta { display: grid; }
  .pagetop { bottom: 90px; }
  .footer { padding-bottom: 140px; }
}

/* 極小スマホ(〜379px): 折返し調整 */
@media (max-width: 379px) {
  .hero__title { font-size: 27px; }
  .section__title { font-size: 22px; }
  .items__grid { grid-template-columns: repeat(2, 1fr); }
  .items__name { font-size: 13px; }
}
