/* ———————————
   1) 追従ヘッダーを fixed にするなら body 余白を確保
——————————— */
html,
body {
  margin: 0;
}

:root {
  --header-h: 80px; /* ← ヘッダー実寸 */
}

body {
  padding-top: var(--header-h);
}

/* ———————————
   2) ヒーロー帯
——————————— */
.page-hero {
  position: relative;
  margin-top: calc(-1 * var(--header-h)); /* ヘッダーと上下ゼロで重ねる */
  min-height: 400px; /* デザイン値 */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center; /* 上下中央揃え */
  justify-content: center;
  text-align: center;
  color: #b32223; /* MAIN 色 */
}

/* ———————————
   3) インナーラッパー
——————————— */
.page-hero__inner {
  max-width: 1280px;
  width: 100%;
  padding: 0 16px;
}

/* ———————————
   4) 見出し＆リード
——————————— */
.page-hero__lead {
  margin: 0 0 8px;
  font-size: 14px;
  letter-spacing: 20%;
  font-weight: 600;
}

.page-hero__title {
  margin: 0;
  font-size: 36px; /* レスポンシブ */
  line-height: 1.2;
  letter-spacing: 0.2em;
  font-family: "Zen Kaku Gothic New";
  font-weight: 700;
}

/* ———————————
   6) WordPress 管理バー調整（ログイン時）
——————————— */
.logged-in .page-hero {
  margin-top: calc(-1 * (var(--header-h) + 32px)); /* PC 管理バー 32px */
}

@media (max-width: 782px) {
  .logged-in .page-hero {
    margin-top: calc(-1 * (var(--header-h) + 46px)); /* モバイル管理バー */
  }
}

/* リンクと区切りはそのまま */
.riat-breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.riat-breadcrumb a:hover {
  text-decoration: underline;
}
.riat-breadcrumb .sep {
  margin: 0 6px;
}

/* サービスコンテンツページ */

/* ===== 共通レイアウト ===== */
.wrapper {
  /* max-width: 1024px; 
  margin: 0 auto; */
  margin-left: 13%;
  margin-right: 13%;
}

/* ===== 見出し ===== */
.catch {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #832223; /* MAIN */
  margin-bottom: 4px;
  font-weight: 700;
}

.lead {
  font-size: clamp(32px, 5vw, 48px); /* Shoes/Boots 等 */
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  letter-spacing: 0.15em;
  margin: 0 0 32px;
  line-height: 1.2;
}

/* ===== Trouble セクション ===== */
.trouble-block {
  display: grid;
  grid-template-columns: 1fr 360px; /* 左本文, 右画像 */
  gap: 32px;
  align-items: start;
  margin-bottom: 48px;
}

@media (max-width: 900px) {
  .trouble-block {
    grid-template-columns: 1fr;
  }
  .trouble-img {
    order: -1; /* 画像を上に */
    margin-bottom: 16px;
  }
  .page-hero__title {
    font-size: 24px;
  }
}

.trouble-title {
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin-bottom: 12px;
}

.trouble-list {
  list-style: disc;
  padding-left: 20px;
  line-height: 1.8;
}

/* ===== 料金表 ===== */
.price-table {
  margin: 64px 0;
}
.price-table__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.price-box {
  border: 1px solid #ccc;
  padding: 16px;
}
.price-box__title {
  background: #b32223;
  color: #fff;
  font-weight: 700;
  text-align: center;
  margin: -16px -16px 8px;
  padding: 8px 0;
}

/* ===== CTA ボタン ===== */
.cta {
  margin: 64px 0;
  text-align: center;
}
.cta__btn {
  background: #b32223;
  color: #fff;
  padding: 14px 48px;
  border-radius: 32px;
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.1em;
}
.cta__btn:hover {
  opacity: 0.8;
}

/* ===== Point セクション ===== */
.point {
  margin: 80px 0;
}
.point__desc {
  line-height: 1.8;
}

/* ===== パンくず 左寄せ ===== */

/* ─ パンくず全体 ─────────────────── */
.riat-breadcrumb {
  max-width: 1328px; /* 必要ならそのまま */
  margin: 0 auto 30px; /* 中央ブロックのまま、文字は左寄せ */
  font-size: 14px;
  line-height: 48px;
  letter-spacing: 0.05em;
  color: #1a1a1a;
  font-weight: 500;
  padding-bottom: 70px;
  text-align: left; /* ← 中央揃えを左揃えに変更 */
}

.riat-breadcrumb {
  /* max-width: 1024;
  margin: 0 auto; */
  margin-left: 13%;
  margin-right: 13%;
}

@media (max-width: 768px) {
  .riat-breadcrumb {
    padding-left: 24px;
    padding-right: 24px;
    padding-bottom: 50px;
    margin: 0;
  }
}

.custom-sub-header {
  padding: 0px;
  height: 100px;
}

.page-hero__title {
  margin-top: 80px;
}
