@charset "utf-8";

/* ==========================================================================
   Reincarne / 共通スタイル
   - デザイントークン(色・余白・文字)は :root にまとめています。
     色を変えたいときはここだけ触れば全ページに反映されます。
   ========================================================================== */

:root {
  /* ブランドカラー(現ロゴから継承) */
  --orange: #f39a01;
  --orange-dark: #cc7f00;
  --orange-soft: #fdf2e0;
  --green: #3e982d;
  --green-dark: #317923;
  --green-soft: #eef7ec;

  /* メールの導線に使う藍。Skill Joint の #1e3a5f と同じ色相。
     濃い地の上でも見えるよう、明るさだけを2段に分けて使う */
  --mail: #3a6b9e;        /* 塗りの地。白文字と 5.56:1 */
  --mail-dark: #2b5688;   /* 押したときの地 */
  --mail-soft: #6f9fd0;   /* 濃い地の上に置く文字と線。地と 6.64:1 */

  /* 文字・背景 */
  --ink: #231815;
  --ink-70: #55504c;
  --ink-45: #8a827b;
  --bg: #ffffff;
  --bg-soft: #faf7f2;
  --bg-dark: #17130f;
  --line: #e9e2d8;

  /* レイアウト */
  --wrap: 1120px;
  --wrap-narrow: 800px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 64px;

  --shadow-sm: 0 1px 2px rgba(35, 24, 21, .06), 0 2px 8px rgba(35, 24, 21, .05);
  --shadow-md: 0 4px 12px rgba(35, 24, 21, .07), 0 12px 32px rgba(35, 24, 21, .08);

  --font: "Hiragino Sans", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic ProN",
          "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", Meiryo, sans-serif;
  --font-en: "Helvetica Neue", Arial, var(--font);
}

/* --------------------------------------------------------------------------
   リセット
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

/* hidden属性を確実に効かせる(display指定に負けないように) */
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  letter-spacing: .02em;
  overflow-wrap: break-word;
}

h1, h2, h3, h4, p, ul, ol, dl, dd, figure, table { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --------------------------------------------------------------------------
   共通レイアウト部品
   -------------------------------------------------------------------------- */
.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}
.wrap--narrow { width: min(100% - 40px, var(--wrap-narrow)); }

.section { padding: 72px 0; }
.section--soft { background: var(--bg-soft); }
.section--mint { background: var(--green-soft); }
.section--tight { padding: 48px 0; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 0 0 8px 8px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* セクション見出し */
.sec-head { margin-bottom: 40px; }
.sec-head--center { text-align: center; }

.sec-head__en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.sec-head__ja {
  font-size: clamp(24px, 4.4vw, 34px);
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: .04em;
}
.sec-head__lead {
  margin-top: 14px;
  color: var(--ink-70);
  font-size: 15px;
}
.sec-head--center .sec-head__lead { margin-inline: auto; max-width: 640px; }

/* ボタン */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .3);
}
.btn--line:hover { background: #05b34c; box-shadow: 0 10px 26px rgba(6, 199, 85, .38); }

.btn--primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(243, 154, 1, .3);
}
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 10px 26px rgba(243, 154, 1, .38); }

.btn--ghost {
  background: transparent;
  border-color: currentColor;
}
.btn--ghost:hover { background: rgba(255, 255, 255, .12); }

.btn--outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn--outline:hover { border-color: var(--orange); color: var(--orange-dark); }

.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn-row--center { justify-content: center; }

/* テキストリンク(→つき) */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--orange-dark);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.arrow-link::after { content: "→"; transition: transform .18s ease; }
.arrow-link:hover::after { transform: translateX(4px); }

/* --------------------------------------------------------------------------
   ヘッダー
   -------------------------------------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
/* 正式ロゴ(横組み)。オレンジと緑のみなので白背景・黒背景の両方で使えます */
.logo__img { display: block; height: 36px; width: auto; }
.footer .logo__img { height: 40px; }

.logo__mark { width: 30px; height: 30px; flex-shrink: 0; }
.logo__text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.logo__name {
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .1em;
}
.logo__sub {
  font-size: 10px;
  letter-spacing: .1em;
  color: var(--ink-45);
}

.gnav { display: flex; align-items: center; gap: 2px; }
.gnav__link {
  display: block;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 8px;
  transition: color .18s, background-color .18s;
}
.gnav__link:hover { color: var(--orange-dark); background: var(--orange-soft); }
.gnav__link[aria-current="page"] { color: var(--orange-dark); }

/* ドロワー内の予約ボタン。PCではヘッダー右側のボタンを使うので隠す */
.gnav__cta { display: none; }

.header__cta { display: flex; align-items: center; gap: 10px; }
/* パソコン幅では、この枠の中身（メニューボタン）は出ない。
   空のまま置くとすき間だけが残り、メニューが右端にそろわないので隠す */
@media (min-width: 1001px) {
  .header__cta { display: none; }
}

/* ヘッダー右端の連絡先アイコン */
.header__icons { display: flex; align-items: center; gap: 8px; }
.hicon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--ink-70);
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
}
.hicon svg { width: 18px; height: 18px; }
.hicon:hover { color: var(--orange-dark); border-color: var(--orange); background: var(--orange-soft); }
.hicon--line:hover { color: #06c755; border-color: #06c755; background: #eafaf1; }

@media (max-width: 560px) {
  .header__icons { gap: 6px; }
  .hicon { width: 34px; height: 34px; }
  .hicon svg { width: 16px; height: 16px; }
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle__bars { display: block; position: relative; width: 20px; height: 14px; margin: 0 auto; }
.nav-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle__bars span:nth-child(1) { top: 0; }
.nav-toggle__bars span:nth-child(2) { top: 6px; }
.nav-toggle__bars span:nth-child(3) { top: 12px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   ヒーロー
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1000px 520px at 78% 12%, rgba(243, 154, 1, .30), transparent 62%),
    radial-gradient(760px 460px at 8% 92%, rgba(62, 152, 45, .26), transparent 60%),
    linear-gradient(155deg, #1d1813 0%, #17130f 55%, #100d0a 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  padding: 88px 0 96px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  margin-bottom: 26px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .06);
}
.hero__badge b { color: var(--orange); }

.hero__title {
  font-size: clamp(30px, 6vw, 52px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero__title em {
  font-style: normal;
  color: var(--orange);
}
.hero__lead {
  max-width: 620px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(15px, 2.2vw, 17px);
}
.hero__note {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
}

/* ヒーロー下の数値バー */
.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stats__item {
  padding: 22px 16px;
  text-align: center;
  background: rgba(23, 19, 15, .55);
  color: #fff;
}
.hero-stats__num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(20px, 3.4vw, 30px);
  font-weight: 700;
  color: var(--orange);
  line-height: 1.3;
}
.hero-stats__num small { font-size: .58em; margin-left: 2px; }
.hero-stats__label {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .74);
}

/* --------------------------------------------------------------------------
   下層ページの見出し帯
   -------------------------------------------------------------------------- */
.page-head {
  position: relative;
  padding: 56px 0 52px;
  color: #fff;
  background:
    radial-gradient(760px 380px at 82% 8%, rgba(243, 154, 1, .26), transparent 60%),
    linear-gradient(150deg, #1d1813, #100d0a);
}
.page-head__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-head__ja {
  font-size: clamp(24px, 4.6vw, 36px);
  font-weight: 700;
  line-height: 1.4;
}
.page-head__lead {
  margin-top: 14px;
  max-width: 700px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
}

.breadcrumb {
  padding: 14px 0;
  font-size: 12px;
  color: var(--ink-45);
  border-bottom: 1px solid var(--line);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumb li + li::before { content: "／"; margin-right: 8px; color: var(--line); }
.breadcrumb a:hover { color: var(--orange-dark); }

/* --------------------------------------------------------------------------
   事業部カード
   -------------------------------------------------------------------------- */
.divisions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.division {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.division:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.division__icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.division--green .division__icon { background: var(--green-soft); color: var(--green-dark); }
.division__icon svg { width: 28px; height: 28px; }

.division__en {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--ink-45);
  text-transform: uppercase;
}
.division__name {
  margin: 4px 0 12px;
  font-size: 21px;
  font-weight: 700;
}
.division__desc {
  flex: 1;
  font-size: 14.5px;
  color: var(--ink-70);
  margin-bottom: 20px;
}
.division__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}
.division__tags li {
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-70);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   サービスカード(メニュー一覧)
   -------------------------------------------------------------------------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card__visual {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, #2a231c, #17130f);
  color: var(--orange);
}
.card__visual svg { width: 66px; height: 66px; opacity: .92; }
.card__visual--green { color: var(--green); }

.card__body { flex: 1; display: flex; flex-direction: column; padding: 24px 24px 26px; }
.card__title { font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.card__desc { flex: 1; font-size: 14.5px; color: var(--ink-70); margin-bottom: 18px; }
.card__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 16px;
  margin-bottom: 18px;
  border-top: 1px dashed var(--line);
  font-size: 13px;
  color: var(--ink-45);
}
.card__price b {
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 700;
  color: var(--orange-dark);
}

/* --------------------------------------------------------------------------
   選ばれる理由
   -------------------------------------------------------------------------- */
.reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.reason {
  display: flex;
  flex-direction: column;
  padding: 24px 22px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(35, 24, 21, .05);
}
/* 「REASON 01」とオレンジの丸チェック */
.reason__num {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--orange);
  margin-bottom: 12px;
}
.reason__num svg { width: 19px; height: 19px; flex-shrink: 0; }
.reason__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 6px;
}
/* カード中央のイラスト */
.reason__fig {
  display: grid;
  place-items: center;
  flex: 1;
  min-height: 108px;
  padding: 10px 0 14px;
  color: var(--orange);
}
.reason__fig img { max-width: 100%; height: auto; }
.reason__desc { font-size: 13.5px; line-height: 1.75; color: var(--ink-70); }

@media (max-width: 1000px) {
  .reasons { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .reasons { grid-template-columns: 1fr; }
  .reason__fig { min-height: 0; }
}

/* --------------------------------------------------------------------------
   洗浄範囲(「分解」の深さが、洗浄範囲を変える)
   -------------------------------------------------------------------------- */
.range {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 48px;
  align-items: center;
}
.range__label {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.range__title {
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 700;
  letter-spacing: .03em;
  line-height: 1.5;
  margin-bottom: 18px;
}
.range__body { font-size: 15.5px; color: var(--ink-70); }
.range__body + .range__body { margin-top: 16px; }
.range__list { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.range__list li { padding: 0 16px; }
.range__list li:first-child { padding-left: 0; }
.range__list li + li { border-left: 1px solid var(--line); }
.range__name {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 9px;
}
.range__name::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--orange);
  transform: rotate(45deg);
  flex-shrink: 0;
}
.range__sub { font-size: 13px; line-height: 1.65; color: var(--ink-70); word-break: keep-all; }

@media (max-width: 900px) {
  .range { grid-template-columns: 1fr; gap: 30px; }
  .range__list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 0; }
  .range__list li:nth-child(odd) { padding-left: 0; border-left: 0; }
}

/* --------------------------------------------------------------------------
   料金表
   -------------------------------------------------------------------------- */
.price-block + .price-block { margin-top: 48px; }
.price-block__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
}
.price-block__title { font-size: 21px; font-weight: 700; }
.price-block__note { font-size: 13px; color: var(--ink-45); }

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

.price-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 15px;
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}
.price-table thead th {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-70);
  background: var(--bg-soft);
  white-space: nowrap;
}
.price-table tbody tr:hover { background: var(--orange-soft); }
.price-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.price-table .price {
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  color: var(--orange-dark);
}
/* 「〜」が付く行と付かない行で「円」の位置がずれないよう、
   末尾の「〜」には幅を持たせず、右の余白へはみ出させる */
.price-table .num:last-child { padding-right: 34px; }
.price-table .price .tilde { display: inline-block; width: 0; }

.price-table .menu-name { font-weight: 700; }
.price-table .menu-note {
  display: block;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--ink-45);
  margin-top: 2px;
}
/* 部品×コースの対応表 */
.price-table th.mark,
.price-table td.mark { text-align: center; white-space: nowrap; }
.price-table thead th.mark { min-width: 96px; }
.price-table .mark--on { font-size: 17px; font-weight: 700; color: var(--orange-dark); }
.price-table .mark--part { font-size: 17px; font-weight: 700; color: var(--orange); }
.price-table .mark--off { font-size: 17px; color: var(--ink-45); }
.price-table tbody tr.row-sum td { background: var(--bg-soft); font-weight: 700; }
.price-table tbody tr.row-sum:hover td { background: var(--bg-soft); }

/* 表の下の凡例 */
.table-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin-top: 14px;
  font-size: 13px;
  color: var(--ink-70);
}
.table-legend span { margin-right: 4px; }

.price-table .tag {
  display: inline-block;
  margin-left: 8px;
  padding: 1px 8px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-dark);
  vertical-align: 2px;
}

.notice {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 14px;
  color: var(--ink-70);
}
.notice__title { font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.notice ul li { position: relative; padding-left: 18px; }
.notice ul li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}

/* --------------------------------------------------------------------------
   ご利用の流れ
   -------------------------------------------------------------------------- */
.flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 44px 34px;
  counter-reset: flow;
}
.flow__item {
  position: relative;
  padding: 34px 20px 26px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  counter-increment: flow;
}
/* 上部中央のSTEPバッジ */
.flow__item::before {
  content: "STEP " counter(flow);
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 14px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  white-space: nowrap;
}
/* カードとカードのあいだの矢印(オレンジの二重山形) */
.flow__item::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -28px;
  width: 22px;
  height: 16px;
  transform: translateY(-50%);
  background: center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 16' fill='none' stroke='%23f39a01' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 3.5 8.5 8 4 12.5'/%3E%3Cpath d='M12 3.5 16.5 8 12 12.5'/%3E%3C/svg%3E");
}
.flow__item:last-child::after { content: none; }

.flow__icon { width: 44px; height: 44px; margin: 0 auto 14px; color: var(--orange); }
.flow__title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.flow__desc { font-size: 15px; color: var(--ink-70); }

@media (max-width: 900px) {
  .flow__item::after { content: none; }
}

/* --------------------------------------------------------------------------
   お支払い方法
   -------------------------------------------------------------------------- */
.pay-wrap {
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid var(--line);
}
.pay-label {
  display: block;
  text-align: center;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.pay-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 12px;
}
.pay-lead {
  max-width: 680px;
  margin: 0 auto 28px;
  text-align: center;
  font-size: 15px;
  color: var(--ink-70);
}
.pay {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
/* アイコンを左、文字を右に並べたコンパクトな形 */
.pay__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.pay__icon { width: 34px; height: 34px; flex-shrink: 0; color: var(--orange); }
.pay__name { font-size: 15.5px; font-weight: 700; margin-bottom: 5px; letter-spacing: .02em; }
.pay__brands { font-size: 13.5px; line-height: 1.7; color: var(--ink-70); word-break: keep-all; }

@media (max-width: 1000px) {
  .pay { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .pay { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   対応エリア
   -------------------------------------------------------------------------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 22px;
}
.area-card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.area-card__pref {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--orange);
}
.area-card__pref span {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-45);
  letter-spacing: .12em;
}
.area-card__cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-card__cities li {
  padding: 5px 13px;
  font-size: 14.5px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
}

/* --------------------------------------------------------------------------
   お知らせ
   -------------------------------------------------------------------------- */
.news { border-top: 1px solid var(--line); }
.news__item {
  display: grid;
  grid-template-columns: 108px 128px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  transition: background-color .18s;
}
.news__item:hover { background: var(--bg-soft); }
.news__date {
  font-family: var(--font-en);
  font-size: 13.5px;
  color: var(--ink-45);
  font-variant-numeric: tabular-nums;
}
.news__cat {
  justify-self: start;
  padding: 3px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  white-space: nowrap;
}
.news__cat--green { background: var(--green-soft); color: var(--green-dark); }
.news__cat--ink { background: #eeeae4; color: var(--ink-70); }
.news__title { font-size: 15px; font-weight: 700; }

/* --------------------------------------------------------------------------
   よくあるご質問
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: 12px; }
.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}
.faq__q::before {
  content: "Q";
  flex-shrink: 0;
  font-family: var(--font-en);
  color: var(--orange);
  font-size: 18px;
  line-height: 1.6;
}
.faq__q::after {
  content: "";
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  margin-left: auto;
  margin-top: 8px;
  border-right: 2px solid var(--ink-45);
  border-bottom: 2px solid var(--ink-45);
  transform: rotate(45deg);
  transition: transform .25s ease;
}
.faq__item.is-open .faq__q::after { transform: rotate(-135deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .28s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  padding: 0 22px 20px 50px;
  font-size: 14.5px;
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   CTA バンド
   -------------------------------------------------------------------------- */
.cta {
  position: relative;
  overflow: hidden;
  padding: 68px 0;
  color: #fff;
  text-align: center;
  background:
    radial-gradient(620px 320px at 20% 10%, rgba(62, 152, 45, .3), transparent 60%),
    radial-gradient(680px 340px at 84% 88%, rgba(243, 154, 1, .32), transparent 62%),
    linear-gradient(140deg, #1d1813, #100d0a);
}
.cta__title {
  font-size: clamp(23px, 4.2vw, 33px);
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 16px;
}
.cta__lead {
  max-width: 560px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, .8);
  font-size: 15px;
}
.cta__note { margin-top: 20px; font-size: 13px; color: rgba(255, 255, 255, .6); }

/* --------------------------------------------------------------------------
   フッター
   -------------------------------------------------------------------------- */
.footer {
  padding: 56px 0 0;
  background: var(--bg-dark);
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer .logo__name { color: #fff; }
.footer .logo__sub { color: rgba(255, 255, 255, .5); }
.footer__about { margin-top: 18px; max-width: 340px; font-size: 13.5px; line-height: 1.85; }

.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--orange);
  text-transform: uppercase;
  font-family: var(--font-en);
  margin-bottom: 14px;
}
.footer__list li + li { margin-top: 9px; }
.footer__list a { transition: color .18s; }
.footer__list a:hover { color: #fff; }

/* フッターのInstagram。施工の様子を見てもらうための入口 */
.footer__sns { margin-top: 20px; }
.footer__sns a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px 10px 13px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .9);
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.footer__sns a:hover {
  border-color: var(--orange);
  background: rgba(243, 154, 1, .14);
  color: #fff;
}
.footer__sns svg { width: 19px; height: 19px; flex: none; }
.footer__sns small {
  display: block;
  margin-top: 10px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}

.footer__contact dt {
  font-size: 11.5px;
  letter-spacing: .1em;
  color: rgba(255, 255, 255, .45);
}
.footer__contact dd { margin: 2px 0 12px; color: #fff; }
.footer__contact a:hover { color: var(--orange); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 12.5px;
  color: rgba(255, 255, 255, .5);
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer__bottom-links a:hover { color: #fff; }


/* --------------------------------------------------------------------------
   Instagram（作業風景）
   横スクロールは Swiper（assets/vendor/swiper）に任せている
   -------------------------------------------------------------------------- */
.ig-sec {
  position: relative;
  overflow: hidden;
  color: #fff;
  padding: 84px 0;
  background:
    radial-gradient(720px 380px at 94% -2%, rgba(193, 53, 132, .22), transparent 62%),
    var(--bg-dark);
}
.ig-sec__inner {
  display: grid;
  grid-template-columns: 1.15fr 1.3fr auto;
  gap: 32px;
  align-items: stretch;
}
/* 左の文章は、余った高さを要素の間へ均等に配る */
.ig-sec__inner > .reveal:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
/* 動画カードとスマートフォンは、もとの大きさのまま */
.ig-deck { align-self: start; }
.ig-phone { align-self: center; }
/* 中身の大きさで桁が広がらないようにする（横スクロールが壊れるため） */
.ig-sec__inner > *,
.ig-side > * { min-width: 0; }

/* 左：見出しと本文 */
.ig-sec__en {
  display: block;
  margin-bottom: 18px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
}
.ig-sec__title {
  font-size: clamp(26px, 3.3vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .03em;
}
.ig-sec__title em { font-style: normal; color: var(--orange); }
.ig-sec__title span { display: block; }
.ig-sec__lead {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .78);
}

/* 中央：作業風景の並び */
/* ご紹介のときにも使ってもらうための一言 */
.ig-sec__note {
  position: relative;
  margin-top: 16px;
  padding-top: 20px;
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255, 255, 255, .62);
}
.ig-sec__note::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 3px;
  background: var(--orange);
}

.ig-deck {
  position: relative;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 22px;
  background: rgba(255, 255, 255, .04);
}
.ig-deck__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.ig-deck__t { font-size: 15.5px; font-weight: 700; white-space: nowrap; }
.ig-deck__rule { flex: 1; height: 1px; background: #fff; }
/* Instagramらしい色にする文字 */
.ig-grad {
  background: linear-gradient(90deg, #f77737 0%, #e1306c 45%, #c13584 75%, #833ab4 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ig-card { position: relative; display: block; border-radius: 12px; overflow: hidden; }
.ig-card::before { content: ""; display: block; padding-top: 140%; }
.ig-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.ig-card:hover img { transform: scale(1.05); }
.ig-card__play {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(3px);
}
.ig-card__play svg { width: 17px; height: 17px; color: #fff; }
.ig-card__cap {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  background: rgba(20, 16, 14, .74);
  backdrop-filter: blur(3px);
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: #fff;
}

/* 前後ボタンと点。Swiperの既定の見た目は使わず、こちらで整える */
.ig-deck .swiper { width: 100%; overflow: hidden; }
.ig-nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  margin-top: -12px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(28, 23, 20, .82);
  color: #fff;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease;
  z-index: 2;
}
.ig-nav:hover { background: rgba(243, 154, 1, .9); border-color: transparent; }
.ig-nav svg { width: 17px; height: 17px; }
.ig-nav--prev { left: -23px; }
.ig-nav--next { right: -23px; }
.ig-nav.swiper-button-disabled { opacity: .3; cursor: default; }

.ig-dots { position: absolute; top: 30px; right: 30px; display: flex; gap: 7px; }
.ig-dots .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .28);
  opacity: 1;
  transition: background-color .2s ease;
}
.ig-dots .swiper-pagination-bullet-active { background: #e1306c; }

/* 右：QRとボタン */
.ig-side { display: grid; gap: 22px; justify-items: stretch; }
.ig-qr {
  position: relative;
  min-height: 0;
  margin: 0;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  max-width: none;
}
/* 左の見出しの下に引く線。LINE欄と対にする */
.ig-sec__rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 26px 0 0;
  background: rgba(243, 154, 1, .28);
}
.ig-sec__rule::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 74px;
  height: 3px;
  background: var(--orange);
}
.ig-qr img {
  position: absolute;
  inset: 0;
  margin: auto;
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.ig-qr figcaption {
  margin-top: 8px;
  text-align: center;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #c13584;
}
.ig-side__label {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #e1306c;
  text-align: center;
}
/* 左の欄に置いたときは左寄せ、幅も内容に合わせる（右の欄には効かせない） */
.ig-sec__inner > .reveal:first-child .ig-side__label { text-align: left; }
.ig-sec__inner > .reveal:first-child .ig-follow { width: auto; margin-top: 0; }
.ig-sec__inner > .reveal:first-child > div:last-child { margin-top: 30px; }
.ig-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 15px 20px;
  border-radius: 999px;
  background: linear-gradient(95deg, #fcaf45 0%, #f77737 20%, #e1306c 46%, #c13584 70%, #833ab4 88%, #5851db 100%);
  color: #fff;
  font-size: 14.5px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(193, 53, 132, .32);
  transition: transform .18s ease, box-shadow .18s ease;
}
.ig-follow:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(220, 39, 67, .42); }
.ig-follow__arrow {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  flex: none;
}
.ig-follow__arrow svg { width: 14px; height: 14px; }


/* Instagramの使い方3段階 */
.ig-flow {
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
}
.ig-flow__title {
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  font-size: 14.5px;
  font-weight: 700;
  color: var(--orange);
}
.ig-steps {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  width: 100%;
}
.ig-step { flex: 1; display: grid; justify-items: center; gap: 8px; }
.ig-step__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
}
/* 左下の黄からピンクを通って右上の紫へ。Instagramの配色 */
.ig-step__icon {
  background: radial-gradient(circle at 28% 106%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285aeb 92%);
}
.ig-step__icon svg { width: 22px; height: 22px; }
.ig-step__t { font-size: 11.5px; line-height: 1.4; text-align: center; white-space: nowrap; color: rgba(255, 255, 255, .78); }
.ig-steps__arrow {
  flex: none;
  align-self: center;
  margin-top: -14px;
  color: rgba(255, 255, 255, .32);
}
.ig-steps__arrow svg { width: 13px; height: 13px; display: block; }

@media (max-width: 1080px) {
  .ig-sec__inner { grid-template-columns: 1fr 1fr; }
  .ig-side { grid-column: 1 / -1; grid-auto-flow: column; align-items: center; justify-content: center; gap: 34px; }
  .ig-follow { width: auto; }
}
@media (max-width: 800px) {
  .ig-sec { padding: 60px 0; }
  .ig-sec__inner { grid-template-columns: 1fr; gap: 32px; }
  .ig-deck { padding: 22px 18px 24px; }
  .ig-nav { display: none; }
  .ig-dots { position: static; margin-top: 16px; justify-content: center; }
  .ig-side { grid-auto-flow: row; gap: 20px; }
}

/* --------------------------------------------------------------------------
   スマホ固定フッターCTA
   -------------------------------------------------------------------------- */
.sp-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  gap: 8px;
  padding: 9px 12px calc(9px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.sp-cta .btn { flex: 1; padding: 13px 8px; font-size: 14.5px; }

/* --------------------------------------------------------------------------
   汎用テキストページ(プライバシーポリシー等)
   -------------------------------------------------------------------------- */
.prose h2 {
  margin: 40px 0 14px;
  padding-left: 14px;
  font-size: 20px;
  font-weight: 700;
  border-left: 4px solid var(--orange);
}
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin: 26px 0 10px; font-size: 17px; font-weight: 700; }
.prose p { margin-bottom: 16px; color: var(--ink-70); }
.prose ul { margin: 0 0 16px; }
.prose ul li { position: relative; padding-left: 20px; color: var(--ink-70); }
.prose ul li::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.prose ol { margin: 0 0 16px; padding-left: 24px; list-style: decimal; }
.prose ol li { color: var(--ink-70); }

.info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
.info-table th,
.info-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.info-table th {
  width: 200px;
  font-weight: 700;
  background: var(--bg-soft);
  white-space: nowrap;
}
/* 未確定の項目。あとから探して差し替えやすいよう色を変えています */
.tbd { color: var(--ink-45); }

/* --------------------------------------------------------------------------
   スクロール表示アニメーション
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   レスポンシブ
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .divisions { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1000px) {
  .section { padding: 56px 0; }

  /* グローバルナビをドロワーに切り替え */
  .nav-toggle { display: block; }
  .header__cta .btn { display: none; }

  .gnav {
    /* ヘッダーには backdrop-filter が掛かっている。
       これがあると中の position:fixed は画面ではなくヘッダーを基準にしてしまい、
       ドロワーの高さが 0 になって細い帯しか出なくなる。
       そのためヘッダー基準のまま、真下に画面の高さぶんを敷く */
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-h));
    height: calc(100dvh - var(--header-h));
    display: block;
    padding: 20px 24px 40px;
    background: #fff;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .24s ease, transform .24s ease, visibility .24s;
  }
  /* 閉じているあいだは中のリンクを触れないようにする。
     opacity:0 は見た目を消すだけで、指やマウスは通ってしまう */
  .gnav { pointer-events: none; }
  .gnav.is-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
  .gnav__link {
    white-space: normal;
    padding: 15px 8px;
    font-size: 17px;
    font-weight: 700;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  /* ページ一覧を持つ見出しは、その一覧までがひとかたまり。
     線は下の一覧の後ろに引く */
  .gnav__item { border-bottom: 1px solid var(--line); }
  .gnav__item > .gnav__link { border-bottom: 0; padding-bottom: 9px; }
  .gnav__cta { margin-top: 24px; display: grid; gap: 12px; }

  .hero__inner { padding: 60px 0 68px; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }

  .news__item { grid-template-columns: 96px 1fr; row-gap: 6px; }
  .news__title { grid-column: 1 / -1; }

  .info-table th, .info-table td { display: block; width: auto; white-space: normal; }
  .info-table th { border-bottom: 0; padding-bottom: 8px; }

  /* 画面の下に固定する予約ボタンの帯（.sp-cta）は、いまのページには入れていない。
     帯を出す指定と、そのぶんの余白を取る指定だけが残っていて、
     スマホでページの一番下に76pxの空白ができていたので外した。
     帯を復活させるときは、この2行も一緒に戻すこと */
}

@media (max-width: 560px) {
  body { font-size: 15.5px; }
  .wrap, .wrap--narrow { width: min(100% - 32px, var(--wrap)); }
  .section { padding: 44px 0; }
  .sec-head { margin-bottom: 28px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .division, .area-card { padding: 24px 20px; }
  .card__body { padding: 20px; }
}

/* --------------------------------------------------------------------------
   印刷
   -------------------------------------------------------------------------- */
@media print {
  /* 背景色・背景画像を印刷に反映する(既定では省略されるため) */
  *, *::before, *::after {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* 画面用の演出は解除して、全内容を確実に出す */
  .reveal { opacity: 1 !important; transform: none !important; }
  .faq__a { grid-template-rows: 1fr !important; }
  .faq__q::after { display: none; }

  /* 操作用の部品は不要 */
  .sp-cta, .nav-toggle, .skip-link, .header__cta { display: none !important; }

  .header {
    position: static !important;
    background: #fff !important;
    backdrop-filter: none !important;
  }
  .gnav {
    position: static !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0 !important;
    background: none !important;
    overflow: visible !important;
  }
  .gnav__link { border: 0 !important; padding: 4px 8px !important; font-size: 11px !important; }
  .gnav__cta { display: none !important; }

  body { padding-bottom: 0; }
  .section { padding: 24px 0; }
  .hero__inner { padding: 40px 0 44px; }

  /* 見出しやカードが用紙の切れ目で分断されないように */
  .card, .division, .area-card, .flow__item, .reason, .faq__item, .notice {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .sec-head, .price-block__head { break-after: avoid; page-break-after: avoid; }
  .price-table tr { break-inside: avoid; page-break-inside: avoid; }
  .table-scroll { overflow: visible !important; }
  .price-table { min-width: 0 !important; }
  .detail, .biz__card, .strength, .about { break-inside: avoid; page-break-inside: avoid; }
}

/* ==========================================================================
   トップページ(コーポレート版)専用パーツ
   ========================================================================== */

/* --------------------------------------------------------------------------
   セクション見出し(明朝)
   -------------------------------------------------------------------------- */
.sec-title { text-align: center; margin-bottom: 44px; }
.sec-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.sec-title__ja {
  font-size: clamp(24px, 4.4vw, 34px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.45;
}
.sec-title__lead {
  max-width: 680px;
  margin: 16px auto 0;
  font-size: 15.5px;
  color: var(--ink-70);
}
.sec-title__rule {
  width: 44px;
  height: 2px;
  margin: 18px auto 0;
  background: var(--orange);
}
/* 幅いっぱいの細い罫線＋中央に太い線 */
.sec-title--rule .sec-title__rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin-top: 26px;
  background: rgba(243, 154, 1, .32);
}
.sec-title--rule .sec-title__rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: var(--orange);
}
.section--dark .sec-title--rule .sec-title__rule,
.ig-sec .sec-title--rule .sec-title__rule { background: rgba(255, 255, 255, .2); }

/* --------------------------------------------------------------------------
   写真枠(画像が無いあいだは説明入りのプレースホルダを表示)
   -------------------------------------------------------------------------- */
.shot {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--bg-soft);
  border-radius: 10px;
}
.shot img { display: block; width: 100%; height: 100%; object-fit: cover; }

.shot.is-empty {
  display: grid;
  place-items: center;
  border: 1px dashed #d8cfc0;
  background: repeating-linear-gradient(
    -45deg, #faf7f2, #faf7f2 9px, #f5f0e7 9px, #f5f0e7 18px
  );
}
.shot.is-empty img { display: none; }
.shot.is-empty::after {
  content: attr(data-ph);
  padding: 10px 14px;
  text-align: center;
  font-size: 12px;
  line-height: 1.65;
  letter-spacing: .03em;
  color: var(--ink-45);
}

/* --------------------------------------------------------------------------
   ファーストビュー(左テキスト・右写真)
   -------------------------------------------------------------------------- */
.hero2 {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(1000px 520px at 76% 14%, rgba(243, 154, 1, .30), transparent 62%),
    radial-gradient(760px 460px at 6% 92%, rgba(62, 152, 45, .24), transparent 60%),
    linear-gradient(155deg, #1d1813 0%, #17130f 55%, #100d0a 100%);
}
/* 薄いグリッド模様。中央から外へフェードさせて主張しすぎないようにする */
.hero2::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 20%, transparent 78%);
  pointer-events: none;
}
.hero2__inner { position: relative; z-index: 2; padding: 88px 0 74px; }
.hero2__copy { max-width: 1080px; }
/* 説明文(左)とアイコンカード3枚(右)の2段組 */
.hero2__body {
  display: grid;
  grid-template-columns: minmax(0, 400px) minmax(0, 1fr);
  gap: 40px;
  align-items: start;
}
.hero2__title {
  font-size: clamp(29px, 4.6vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  margin-bottom: 24px;
}
.hero2__title span { display: block; }
.hero2__title em { font-style: normal; color: var(--orange); }
.hero2__lead {
  max-width: 470px;
  margin-bottom: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, .82);
}
/* 説明文から十分離し、右エリアの中央に置く(水平位置のみの調整) */
.hero2__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  width: min(100%, 592px);
  margin-inline: auto;
}
.hero-card {
  padding: 22px 14px 20px;
  text-align: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background-color .2s ease, border-color .2s ease;
}
.hero-card:hover { background: rgba(255, 255, 255, .11); border-color: rgba(255, 255, 255, .28); }
.hero-card__icon { flex-shrink: 0; width: 32px; height: 32px; margin: 0 auto 12px; color: var(--orange); }
.hero-card__text { min-width: 0; }
.hero-card__t { font-size: 14px; font-weight: 700; margin-bottom: 6px; letter-spacing: .04em; color: #fff; }
.hero-card__d { font-size: 11.5px; line-height: 1.75; color: rgba(255, 255, 255, .62); }

/* ヒーロー下の事業部バー */
.hero-stats {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.hero-stats--3 { grid-template-columns: repeat(3, 1fr); }
.hero-stats__item {
  display: block;
  height: 100%;
  padding: 22px 16px;
  text-align: center;
  background: rgba(23, 19, 15, .58);
  color: #fff;
  transition: background-color .2s ease;
}
/* 押せることが分かるように */
a.hero-stats__item { position: relative; }
a.hero-stats__item:hover { background: rgba(243, 154, 1, .16); }
a.hero-stats__item:hover .hero-stats__label { color: #fff; }
a.hero-stats__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 12px;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: translateX(-50%) rotate(45deg);
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease;
}
a.hero-stats__item:hover::after { opacity: 1; transform: translateX(-50%) translateY(2px) rotate(45deg); }
.hero-stats__name {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(16px, 2.2vw, 21px);
  font-weight: 700;
  letter-spacing: .05em;
  line-height: 1.4;
  color: var(--orange);
}
.hero-stats__label {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  letter-spacing: .08em;
  color: rgba(255, 255, 255, .74);
}

/* --------------------------------------------------------------------------
   3つの事業部カード
   -------------------------------------------------------------------------- */
.biz { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.biz__card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.biz__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.biz__head { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.biz__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--orange);
  border-radius: 12px;
  color: var(--orange);
}
.biz__icon svg { width: 24px; height: 24px; }
.biz__card--green .biz__icon { border-color: var(--green); color: var(--green); }
.biz__en {
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
}
.biz__ja { margin-top: 3px; font-size: 12.5px; color: var(--ink-45); letter-spacing: .04em; }
.biz__desc { flex: 1; margin-bottom: 20px; font-size: 14px; color: var(--ink-70); }
.biz__shot { aspect-ratio: 4 / 3; }
/* カード下部の「詳しく見る」。写真の下に左揃えで置く */
.biz__more { margin-top: 20px; }
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
  transition: color .18s ease;
}
/* オレンジの「>」。線2本を回転させて描いています */
.more-link::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
  transition: transform .18s ease;
}
.more-link:hover { color: var(--orange-dark); }
.more-link:hover::after { transform: rotate(-45deg) translate(2px, 2px); }

/* --------------------------------------------------------------------------
   Reincarneの強み(5項目)
   -------------------------------------------------------------------------- */
.strengths {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.strength { padding: 32px 18px 30px; text-align: center; border-left: 1px solid var(--line); }
.strength:first-child { border-left: 0; }
.strength__icon { width: 42px; height: 42px; margin: 0 auto 14px; color: var(--orange); }
.strength__t { margin-bottom: 9px; font-size: 15px; font-weight: 700; letter-spacing: .04em; }
.strength__d { font-size: 12.5px; line-height: 1.8; color: var(--ink-70); }

/* --------------------------------------------------------------------------
   各事業部の詳細紹介
   -------------------------------------------------------------------------- */
.detail {
  display: grid;
  grid-template-columns: 268px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.detail + .detail { margin-top: 24px; }
.detail__head { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 16px; }
.detail__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--orange);
  border-radius: 12px;
  color: var(--orange);
}
.detail__icon svg { width: 23px; height: 23px; }
.detail--green .detail__icon { border-color: var(--green); color: var(--green); }
.detail__en { font-family: var(--font-en); font-size: 20px; font-weight: 700; letter-spacing: .04em; }
.detail__ja { margin-top: 3px; font-size: 12.5px; color: var(--ink-45); }
.detail__desc { font-size: 13.5px; color: var(--ink-70); }
.detail__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.detail__item .shot { aspect-ratio: 4 / 3; margin-bottom: 10px; }
.detail__cap { font-size: 12.5px; font-weight: 700; text-align: center; letter-spacing: .02em; }

/* --------------------------------------------------------------------------
   会社紹介パネル
   -------------------------------------------------------------------------- */
.about {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}
.about__body { padding: 40px 38px; }
.about__title {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 16px;
}
.about__desc { font-size: 14px; color: var(--ink-70); margin-bottom: 24px; }
.about__dl { border-top: 1px solid var(--line); }
.about__dl > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.about__dl dt { color: var(--ink-45); letter-spacing: .06em; }
.about__dl dd { margin: 0; color: var(--ink); }
.about__media .shot { height: 100%; min-height: 280px; border-radius: 0; }

/* --------------------------------------------------------------------------
   レスポンシブ(コーポレート版)
   -------------------------------------------------------------------------- */
@media (max-width: 1000px) {
  .hero2__inner { padding: 52px 0 52px; }
  .hero2__copy { max-width: none; }
  .hero2__lead { max-width: none; }
  .hero2__body { grid-template-columns: 1fr; gap: 26px; }

  .biz { grid-template-columns: 1fr; }
  .strengths { grid-template-columns: repeat(2, 1fr); }
  .strength { border-left: 0; border-top: 1px solid var(--line); }
  .strength:nth-child(-n+2) { border-top: 0; }
  .strength:nth-child(odd) { border-right: 1px solid var(--line); }

  .detail { grid-template-columns: 1fr; gap: 24px; }
  .about { grid-template-columns: 1fr; }
  .about__media { order: -1; }
  .about__media .shot { min-height: 0; aspect-ratio: 16 / 9; }
}

/* --------------------------------------------------------------------------
   ポイント(丸アイコン・中央揃え)
   -------------------------------------------------------------------------- */
.points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: 36px 28px;
}
.point { text-align: center; }
.point__num {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  color: var(--orange);
  margin-bottom: 16px;
}
.point__icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange-dark);
}
.point__icon svg { width: 30px; height: 30px; }
.point__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; letter-spacing: .02em; }
.point__desc { font-size: 15px; color: var(--ink-70); }

/* --------------------------------------------------------------------------
   ヘッダーのロゴ横に出す事業部名
   -------------------------------------------------------------------------- */
.logo__div {
  margin-left: 13px;
  padding-left: 15px;
  border-left: 1px solid var(--line);
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-70);
  white-space: nowrap;
}

/* --------------------------------------------------------------------------
   下層ページの見出し(写真つき・黒背景)
   -------------------------------------------------------------------------- */
.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(940px 500px at 74% 16%, rgba(243, 154, 1, .28), transparent 62%),
    radial-gradient(720px 440px at 6% 92%, rgba(62, 152, 45, .24), transparent 60%),
    linear-gradient(155deg, #1d1813 0%, #17130f 55%, #100d0a 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 40% 40%, #000 15%, transparent 76%);
  -webkit-mask-image: radial-gradient(circle at 40% 40%, #000 15%, transparent 76%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 2; padding: 82px 0 76px; }
.page-hero__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.page-hero__title {
  max-width: 620px;
  font-size: clamp(28px, 4.6vw, 46px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .02em;
  margin-bottom: 22px;
}
.page-hero__title em { font-style: normal; color: var(--orange); }
.page-hero__title span { display: block; }
.page-hero__lead {
  max-width: 640px;
  font-size: 16px;
  color: rgba(255, 255, 255, .84);
}
/* コース別ページの見出しに入れる料金と時間 */
.page-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 26px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  max-width: 640px;
}
.page-hero__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}
.page-hero__price b {
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--orange);
}
.page-hero__time { font-size: 14px; color: rgba(255, 255, 255, .7); }

/* ページ見出しの中のボタン */
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 28px;
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.hero-cta a svg { width: 20px; height: 20px; }
.hero-cta a:hover { transform: translateY(-2px); }
.hero-cta__line { background: #06c755; color: #fff; box-shadow: 0 6px 18px rgba(6, 199, 85, .3); }
.hero-cta__line:hover { background: #05b34c; box-shadow: 0 10px 26px rgba(6, 199, 85, .4); }
.hero-cta__sub { border: 1.5px solid rgba(255, 255, 255, .5); color: #fff; }
.hero-cta__sub:hover { border-color: #fff; background: rgba(255, 255, 255, .1); }

/* --------------------------------------------------------------------------
   ページ内の見出しへ飛ぶボタン
   -------------------------------------------------------------------------- */
/* ページ内の見出しへ飛ぶ帯。トップの3事業の帯と同じ作りにする。
   ヒーローの下端にくっつけて置く */
.anchor-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.anchor-nav a {
  position: relative;
  display: block;
  height: 100%;
  padding: 20px 14px 24px;
  text-align: center;
  background: rgba(23, 19, 15, .58);
  color: #fff;
  transition: background-color .2s ease;
}
.anchor-nav a:hover { background: rgba(243, 154, 1, .16); }
.anchor-nav__t {
  display: block;
  font-size: clamp(13.5px, 1.4vw, 16px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.4;
  color: var(--orange);
}
.anchor-nav__s {
  display: block;
  margin-top: 4px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: .12em;
  color: rgba(255, 255, 255, .6);
}
.anchor-nav a:hover .anchor-nav__s { color: rgba(255, 255, 255, .85); }
/* 下向きの小さな矢印 */
.anchor-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 5px;
  height: 5px;
  border-right: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: translateX(-50%) rotate(45deg);
  opacity: .55;
  transition: opacity .2s ease, transform .2s ease;
}
.anchor-nav a:hover::after { opacity: 1; transform: translateX(-50%) translateY(2px) rotate(45deg); }

@media (max-width: 760px) {
  .anchor-nav { grid-template-columns: repeat(2, 1fr); }
  .anchor-nav a { padding: 16px 10px 20px; }
}
}

/* --------------------------------------------------------------------------
   部品の図解
   -------------------------------------------------------------------------- */
.diagram {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: center;
}
.diagram__fig {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.diagram__fig svg { display: block; width: 100%; height: auto; }
.diagram__list { display: grid; gap: 10px; }
.diagram__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
}
.diagram__no {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}
.diagram__list li small { display: block; font-size: 12.5px; font-weight: 400; color: var(--ink-45); }
.diagram__note { margin-top: 22px; font-size: 13.5px; color: var(--ink-45); }

/* --------------------------------------------------------------------------
   コースごとの分解図（ボタンで切り替え）
   -------------------------------------------------------------------------- */
.explode__nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 24px;
}
.explode__nav button {
  padding: 13px 8px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.explode__nav button:hover { border-color: var(--orange); color: var(--orange-dark); }
.explode__nav button.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* 部品を重ねた作業台。外れる部品だけ左へ動く */
/* 重なった部品が、押すと散らばる作業台 */
.ex-stage {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  aspect-ratio: 1600 / 700;
}
.ex-slot {
  position: absolute;
  z-index: 1;
  /* 枠は元画像の大きさのままで作業台の外へはみ出すので、
     上にあるボタンを覆わないよう当たり判定を切っておく */
  pointer-events: none;
  transition: transform .55s cubic-bezier(.22, .9, .28, 1);
  transition-delay: var(--d, 0s);
}
.ex-art {
  display: block;
  transition: transform .55s cubic-bezier(.22, .9, .28, 1);
  transition-delay: var(--d, 0s);
}
.ex-art img { display: block; width: 100%; height: auto; transform-origin: 50% 50%; }

/* 3つのエリア。部品が散らばったあとに浮かび上がる */
.ex-zones {
  position: absolute;
  inset: 0;
  display: flex;
  gap: 12px;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}
.explode.is-exploded .ex-zones { opacity: 1; transition-delay: .55s; }
.ex-zone {
  position: relative;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
}
.ex-zone span {
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  padding: 0 12px;
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: var(--ink-70);
}
/* 左：外して洗う部品。太いオレンジ枠・白地・黒文字 */
.ex-zone--wash {
  border: 3px solid var(--orange);
  background: #fff;
}
.ex-zone--wash span { color: var(--ink); }
/* 中：その場で養生して洗う部品 */
.ex-zone--inset {
  border-color: var(--orange);
  background: rgba(253, 242, 224, .6);
}
.ex-zone--inset span { color: var(--orange-dark); }
/* 右：電気部品 */
.ex-zone--elec { background: rgba(240, 237, 232, .6); }
.ex-zone--elec span { color: var(--ink-45); }

/* 中身が無いエリアは、幅はそのままで枠だけ薄く残す */
.ex-zone.is-empty {
  background: transparent;
  border: 1px dashed var(--line);
}
.ex-zone.is-empty span { color: var(--ink-45); opacity: .55; }
.ex-zone.is-empty::after {
  content: "該当なし";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  font-size: 13px;
  color: var(--ink-45);
  opacity: .55;
}

/* 散らばったあとに浮かび上がる名前 */
.ex-label {
  position: absolute;
  left: 50%;
  top: calc(50% + var(--lt, 0%));
  width: max-content;
  max-width: 180px;
  padding-top: 8px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  opacity: 0;
  transform: translate(-50%, 4px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.explode.is-exploded .ex-label {
  opacity: 1;
  transform: translate(-50%, 0);
  transition-delay: calc(var(--d, 0s) + .3s);
}
/* 機種により外れない部品につける印。名前の下に置く */
.ex-mark {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-size: 12px;
  color: var(--orange-dark);
}
.ex-cap-note { display: inline-block; margin-top: 4px; font-size: 13.5px; color: var(--ink-45); }
.ex-mark-inline { font-style: normal; color: var(--orange-dark); }

@media (prefers-reduced-motion: reduce) {
  .ex-slot, .ex-art, .ex-label, .ex-zones { transition: none; }
}
/* 幅の狭い画面では、作業台が横343pxほどまで潰れて、
   部品の名前どうしが重なってしまう。
   最小の幅を決めて、足りないぶんは横に動かして見てもらう */
.ex-hint { display: none; }
@media (max-width: 700px) {
  .ex-scroll {
    overflow-x: auto;
    /* 部品は作業台の外まで飛び出す。先に余白を取っておかないと上下が切れる */
    /* 上に飛ぶ部品が入るぶんを、そのまま場所として取る。
       負の余白で外へ逃がすと、上のボタンに枠が重なって押せなくなる */
    padding: 100px 0 70px;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
  }
  .ex-stage { min-width: 660px; }
  .ex-label { font-size: 12px; }
  .ex-label small { font-size: 10px; }
  /* エリアの見出しも、狭い幅では大きすぎて図に重なる */
  .ex-zone span { top: 12px; font-size: 12px; padding: 0 8px; }

  .ex-hint {
    display: block;
    margin-top: 10px;
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-45);
  }
  .ex-hint::before { content: "↔ "; }
}

.explode__stage {
  position: relative;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}
.explode__stage img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity .35s ease;
}
/* 2枚目以降は重ねて置き、高さは1枚目で決める */
.explode__stage > *:not(:first-child) {
  position: absolute;
  top: 18px;
  left: 18px;
  width: calc(100% - 36px);
}
.explode__stage img.is-on { opacity: 1; }

/* 図がまだ用意できていないとき */
.explode__soon {
  display: grid;
  place-items: center;
  aspect-ratio: 1600 / 711;
  background: var(--bg-soft);
  border: 1px dashed var(--line);
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink-45);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.explode__soon.is-on { opacity: 1; }

.explode { margin-top: 40px; }
/* 組み立てた状態に戻すボタン（図解で見るボタンと同じ見た目） */
.explode__reset { margin-top: 16px; text-align: center; }
.ex-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border: 0;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .18s ease;
}
.ex-reset:hover { background: #fbe6c2; }
.ex-reset svg { width: 17px; height: 17px; }
/* 組み立てた状態のときは押す必要がないので隠す */
.ex-reset.is-active { visibility: hidden; }

.explode__caps { margin-top: 18px; text-align: center; }
.explode__caps p { font-size: 15px; color: var(--ink-70); }
.explode__caps b { color: var(--orange-dark); }

@media (max-width: 760px) {
  .explode__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* コースカードの2つ目のボタン */
.course__btns { display: grid; gap: 8px; }
.course__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-dark);
  background: var(--orange-soft);
  border-radius: 10px;
  transition: background-color .18s ease;
  cursor: pointer;
}
.course__link:hover { background: #fbe6c2; }
.course__link svg { width: 17px; height: 17px; }
.course__link__open,
.course__link__on { display: none; }

/* 図解を開いているカードのボタンは、凹ませて下向きの二重矢印だけにする */
.course__link.is-open {
  background: #fff;
  box-shadow: inset 0 2px 5px rgba(35, 24, 21, .16);
  color: var(--orange);
}
.course__link.is-open:hover { background: #fff; }
.course__link.is-open .course__link__t,
.course__link.is-open > svg:not(.course__link__open) { display: none; }
/* 「表示中」＋下向きの二重矢印。左右の余白がそろうよう中央に寄せる */
.course__link.is-open { gap: 9px; }
.course__link.is-open .course__link__on { display: block; }
.course__link.is-open .course__link__open { display: block; width: 26px; height: 18px; }

/* 構造図（横長のイラスト1枚） */
.structure { margin: 0; }
.structure img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.structure figcaption {
  margin-top: 16px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-45);
}

@media (max-width: 900px) {
  .diagram { grid-template-columns: 1fr; gap: 28px; }
}

/* --------------------------------------------------------------------------
   おすすめコースの強調
   （基本の .course__item より後に書いてあるので、こちらが効く）
   -------------------------------------------------------------------------- */
.course .course__item--rec {
  border: 3px solid var(--orange);
  box-shadow: 0 10px 30px rgba(243, 154, 1, .2);
}
.course .course__item--rec .course__name { color: var(--orange-dark); }
.course__tag--rec { background: var(--orange); }
/* 「標準」はおすすめより控えめに */
.course__tag--std { background: var(--ink-45); }

/* 比較表のおすすめ列 */
.price-table .is-rec { background: var(--orange-soft); }
.price-table thead th.is-rec { background: var(--orange); color: #fff; }
.price-table tbody tr:hover td.is-rec { background: #fbe6c2; }
.price-table tbody tr.row-sum td.is-rec { background: #fbe6c2; }
.price-table tbody tr.row-sum:hover td.is-rec { background: #fbe6c2; }
.price-table th.is-rec small {
  display: block;
  margin-bottom: 2px;
  font-size: 10.5px;
  letter-spacing: .14em;
}

@media (max-width: 1000px) {
  .logo__div { display: none; }
  .page-hero__inner { padding: 48px 0 52px; }
  .page-hero__title, .page-hero__lead { max-width: none; }
}

/* --------------------------------------------------------------------------
   サービス一覧カード(House Clinic のメニュー)
   -------------------------------------------------------------------------- */
.svc {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.svc__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.svc__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc__shot { aspect-ratio: 4 / 3; border-radius: 0; }
.svc__body { flex: 1; display: flex; flex-direction: column; padding: 22px 22px 24px; }
.svc__name { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.svc__desc { flex: 1; font-size: 15px; color: var(--ink-70); margin-bottom: 16px; }
.svc__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-top: 14px;
  margin-bottom: 16px;
  border-top: 1px dashed var(--line);
  font-size: 12.5px;
  color: var(--ink-45);
}
.svc__price b {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  color: var(--orange-dark);
}
/* カード下部の横幅いっぱいのボタン(オレンジの塗り) */
.svc__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(243, 154, 1, .28);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.svc__btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition: transform .18s ease;
}
.svc__btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 7px 18px rgba(243, 154, 1, .38);
  transform: translateY(-2px);
}
.svc__btn:hover::after { transform: rotate(-45deg) translate(2px, 2px); }
.svc__btn:active { transform: translateY(0); }

/* --------------------------------------------------------------------------
   コース比較カード(エアコンの4コース)
   -------------------------------------------------------------------------- */
.course {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.course__item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.course__item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.course__item--top { border-color: var(--orange); }
/* 他のカードと高さがずれないよう、バッジは枠の上に重ねて置く */
.course__tag {
  position: absolute;
  top: -12px;
  right: 18px;
  padding: 3px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
}
.course__name { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: .02em; }
.course__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
  font-size: 12.5px;
  color: var(--ink-45);
}
.course__price b {
  font-family: var(--font-en);
  font-size: 27px;
  font-weight: 700;
  color: var(--orange-dark);
}
.course__time { font-size: 12.5px; color: var(--ink-45); margin-bottom: 14px; }
.course__desc { flex: 1; font-size: 13.5px; color: var(--ink-70); margin-bottom: 18px; }

/* --------------------------------------------------------------------------
   セクション内の小見出し(左寄せ)
   -------------------------------------------------------------------------- */
.block-title { font-size: 19px; font-weight: 700; letter-spacing: .02em; margin-bottom: 8px; }
.block-lead {
  max-width: 840px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-70);
}
.block-lead--last { margin-bottom: 0; }
/* 本文のあとに置くInstagramへの一言 */
.sns-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
  font-size: 15px;
  color: var(--ink-70);
}
.sns-line a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
  color: var(--orange-dark);
  border-bottom: 1px solid rgba(243, 154, 1, .45);
  transition: color .18s ease, border-color .18s ease;
}
.sns-line a:hover { color: var(--orange); border-color: var(--orange); }
.sns-line svg { width: 18px; height: 18px; flex: none; }

@media (max-width: 560px) {
  .sns-line { flex-direction: column; gap: 6px; text-align: center; }
}

/* 本文のなかに置く追加料金 */
.opt-price { display: inline-block; margin-top: 8px; font-size: 12.5px; color: var(--ink-45); }
.opt-price b {
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-right: 3px;
}

/* --------------------------------------------------------------------------
   部品名の一覧
   -------------------------------------------------------------------------- */
.parts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.parts li {
  padding: 9px 16px;
  font-size: 14.5px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
}
.parts li span { margin-left: 6px; font-size: 12.5px; font-weight: 400; color: var(--ink-45); }

/* コース別ページ：取り外す／外さないを色で見分ける部品一覧 */
/* 取り外す部品＝オレンジで塗る */
.parts--state li {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.parts--state li span { color: rgba(255, 255, 255, .8); }

/* 機種により外れない場合がある部品＝オレンジの破線 */
.parts--state li.is-part {
  position: relative;
  padding-left: 32px;
  background: var(--orange-soft);
  border: 1px dashed var(--orange);
  color: var(--ink);
}
.parts--state li.is-part span { color: var(--ink-45); }
.parts--state li.is-part::before {
  content: "△";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--orange-dark);
}

/* 取り外さない部品＝グレーの破線 */
.parts--state li.is-off {
  background: transparent;
  border: 1px dashed var(--line);
  color: var(--ink-45);
}
.parts--state li.is-off span { color: var(--ink-45); }

/* コースの切り替え */
.course-nav-wrap { margin-top: 44px; padding-top: 36px; border-top: 1px solid var(--line); }
.course-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.course-nav a {
  display: block;
  padding: 14px 12px;
  text-align: center;
  font-size: 14.5px;
  font-weight: 700;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  transition: border-color .18s ease, color .18s ease, transform .18s ease;
}
.course-nav a:hover { border-color: var(--orange); color: var(--orange-dark); transform: translateY(-2px); }
.course-nav a span { display: block; margin-top: 4px; font-size: 12px; font-weight: 400; color: var(--ink-45); }
.course-nav a[aria-current="page"] {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  cursor: default;
}
.course-nav a[aria-current="page"]:hover { transform: none; }
.course-nav a[aria-current="page"] span { color: rgba(255, 255, 255, .82); }

@media (max-width: 760px) {
  .course-nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 大事な但し書き(オレンジの縦線つき) */
.note-lead {
  margin-top: 30px;
  padding: 20px 24px;
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  border-radius: 0 10px 10px 0;
}
.note-lead__t { font-size: 15.5px; font-weight: 700; margin-bottom: 8px; }
.note-lead p { font-size: 14.5px; line-height: 1.85; color: var(--ink-70); }

/* --------------------------------------------------------------------------
   外さない場合に洗い切れない可能性がある場所
   -------------------------------------------------------------------------- */
.risk__item {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.risk__item:first-child { border-top: 1px solid var(--line); }
.risk__t {
  position: relative;
  padding-left: 20px;
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
}
.risk__t::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--orange);
  transform: rotate(45deg);
}
.risk__d { font-size: 14.5px; line-height: 1.85; color: var(--ink-70); }
.risk__if { display: inline-block; margin-top: 4px; font-style: normal; font-size: 13px; color: var(--orange-dark); }

@media (max-width: 760px) {
  .risk__item { grid-template-columns: 1fr; gap: 8px; }
}

/* --------------------------------------------------------------------------
   仕様(高圧洗浄の圧力など)
   -------------------------------------------------------------------------- */
.specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 18px;
}
.spec {
  padding: 24px 20px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
}
.spec--main { border-color: var(--orange); background: var(--orange-soft); }
.spec__label { font-size: 13px; color: var(--ink-70); margin-bottom: 8px; }
.spec__value {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--orange-dark);
}
.spec__value small { font-size: .48em; margin-left: 3px; }
.spec__note { margin-top: 8px; font-size: 12.5px; color: var(--ink-45); }
.spec__price { margin-top: 8px; font-size: 12.5px; color: var(--ink-45); }
.spec__price b {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-right: 2px;
}

@media (max-width: 640px) {
  .specs { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   段階つきのオプション
   -------------------------------------------------------------------------- */
.tiers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.tier {
  padding: 24px 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
}
.tier__num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--orange);
  border-radius: 50%;
}
.tier__name { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; letter-spacing: .02em; }
.tier__desc { font-size: 14px; line-height: 1.8; color: var(--ink-70); }
.tier__price {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  color: var(--ink-45);
}
.tier__price b {
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  color: var(--orange-dark);
  margin-right: 3px;
}

@media (max-width: 760px) {
  .tiers { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   ご注意の囲み
   -------------------------------------------------------------------------- */
.note-box {
  margin-top: 28px;
  padding: 24px 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.note-box__t { font-size: 15.5px; font-weight: 700; margin-bottom: 12px; }
/* 箇条書きではなく、文章を入れる枠 */
.note-box--text p {
  font-size: 14.5px;
  line-height: 1.95;
  color: var(--ink-70);
}

/* 項目が長い注意書き。行の間を広げ、項目どうしも離す */
.note-box--ask li + li { margin-top: 10px; }
@media (max-width: 640px) {
  .note-box { padding: 20px 18px; }
  .note-box li { font-size: 13.5px; line-height: 1.95; }
  .note-box--ask li + li { margin-top: 12px; }
}
.note-box li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-70);
}
.note-box li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ink-45);
}

/* --------------------------------------------------------------------------
   ご予約・お問い合わせ(3つの窓口)
   -------------------------------------------------------------------------- */
.ways {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.way {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 22px 28px;
  text-align: center;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.way__icon { width: 36px; height: 36px; margin-bottom: 14px; color: var(--orange); }
.way__name { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: .04em; }
.way__note { font-size: 13.5px; line-height: 1.8; color: rgba(255, 255, 255, .62); margin-bottom: 18px; }
/* 3窓口で形をそろえた、枠線つきの表示 */
.way__value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 22px;
  font-family: var(--font-en);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  transition: border-color .18s ease, color .18s ease, background-color .18s ease;
}
.way__value:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(243, 154, 1, .1);
}
/* 連絡先が未設定のあいだの表示 */
.way__soon {
  display: inline-block;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, .6);
  border: 1px dashed rgba(255, 255, 255, .3);
  border-radius: 999px;
}

/* おすすめの窓口を強調する */
.way--featured {
  border-color: var(--orange);
  background: rgba(243, 154, 1, .09);
}
.way--featured::before {
  content: "おすすめ";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 16px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  white-space: nowrap;
}
/* パソコンではQRコード、スマホ・タブレットではボタンを出す。
   既定はボタン側。マウス操作の環境だけQRに切り替える。 */
.way__qr { display: none; }
.way__qr img {
  display: block;
  width: 132px;
  height: 132px;
  padding: 9px;
  background: #fff;
  border-radius: 12px;
}
.way__qr figcaption {
  margin-top: 10px;
  font-size: 12.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .62);
}
@media (hover: hover) and (pointer: fine) {
  .way__qr { display: block; }
  .way__qr + .way__btn { display: none; }
}

/* 窓口の中のボタン(オレンジの塗り) */
.way__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(243, 154, 1, .3);
  transition: background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.way__btn::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition: transform .18s ease;
}
.way__btn:hover {
  background: var(--orange-dark);
  box-shadow: 0 7px 20px rgba(243, 154, 1, .4);
  transform: translateY(-2px);
}
.way__btn:hover::after { transform: rotate(-45deg) translate(2px, 2px); }

@media (max-width: 860px) {
  .ways { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   LINEの大きなパネル(1段目)
   -------------------------------------------------------------------------- */
.line-panel {
  display: grid;
  grid-template-columns: 1.2fr auto 1.15fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}
.line-panel__label {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.line-panel__title {
  font-size: clamp(26px, 3.3vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: .03em;
  color: #fff;
  margin-bottom: 20px;
}
.line-panel__title em { font-style: normal; color: var(--orange); }
.line-panel__lead {
  font-size: 15.5px;
  color: rgba(255, 255, 255, .78);
  margin-bottom: 28px;
}

/* 2つ並びのLINEボタン */
.line-btns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 540px;
}
.line-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 13px;
  border-radius: 10px;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.line-btn:hover { transform: translateY(-2px); }
.line-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.line-btn__t { font-size: 15px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.line-btn__s { display: block; margin-top: 3px; font-size: 12px; font-weight: 400; word-break: keep-all; }

.line-btn--fill {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, .28);
}
.line-btn--fill:hover { background: #05b34c; box-shadow: 0 10px 26px rgba(6, 199, 85, .38); }
.line-btn--fill .line-btn__s { color: rgba(255, 255, 255, .86); }

.line-btn--out {
  border: 1.5px solid #06c755;
  color: #06c755;
}
.line-btn--out:hover { background: rgba(6, 199, 85, .1); }
.line-btn--out .line-btn__s { color: rgba(255, 255, 255, .7); }

/* 中央のスマートフォン */
.phone {
  position: relative;
  width: 196px;
  height: 400px;
  background: #fff;
  border: 10px solid #24201d;
  border-radius: 40px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .5);
}
.phone::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 22px;
  background: #24201d;
  border-radius: 0 0 14px 14px;
}
/* 画面下のホームバー */
.phone::after {
  content: "";
  position: absolute;
  bottom: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #d4d0cb;
  border-radius: 2px;
}
.phone__inner {
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  height: 100%;
  padding: 32px 14px 26px;
  text-align: center;
}
.phone__inner img { display: block; width: 134px; height: 134px; }
.phone__cap { font-size: 12.5px; line-height: 1.7; color: var(--ink-70); }
/* スマホ・タブレットではQRの代わりにLINEマークを出す */
.phone__logo { display: grid; place-items: center; width: 96px; height: 96px; background: #06c755; border-radius: 22px; }
.phone__logo--ig {
  background: radial-gradient(circle at 28% 106%,
    #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 62%, #285aeb 92%);
}
.phone__logo svg { width: 52px; height: 52px; color: #fff; }
.phone__qr { display: none; }
@media (hover: hover) and (pointer: fine) {
  .phone__qr { display: grid; justify-items: center; gap: 16px; }
  .phone__logo { display: none; }
}

/* 見出しと横線 */
.line-side__title {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange);
  margin-bottom: 18px;
}
.line-side__title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, .22);
}

/* LINEでできること(緑の丸つきチェック) */
.line-can li {
  position: relative;
  padding-left: 34px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .88);
}
.line-can li + li { margin-top: 13px; }
.line-can li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 21px;
  height: 21px;
  border: 1.5px solid #06c755;
  border-radius: 50%;
}
.line-can li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 9px;
  height: 5px;
  border-left: 1.8px solid #06c755;
  border-bottom: 1.8px solid #06c755;
  transform: rotate(-45deg);
}

/* 予約までの流れ */
.line-flow {
  margin-top: 28px;
  padding: 22px 22px 20px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 14px;
}
.line-flow__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.line-flow__list li { position: relative; text-align: center; }
.line-flow__ico {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: 0 auto 9px;
  color: #06c755;
}
.line-flow__ico svg { width: 24px; height: 24px; }
.line-flow__list li span:last-child {
  display: block;
  font-size: 11.5px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .82);
  word-break: keep-all;
}
/* 手順のあいだの小さな三角 */
.line-flow__list li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 13px;
  right: -5px;
  width: 0;
  height: 0;
  border-left: 6px solid rgba(255, 255, 255, .34);
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

@media (max-width: 1080px) {
  .line-panel { grid-template-columns: 1fr; gap: 34px; justify-items: center; text-align: center; }
  .line-panel > div:first-child, .line-panel > div:last-child { width: 100%; }
  .line-panel__lead { margin-inline: auto; max-width: 560px; }
  .line-btns { margin-inline: auto; }
  .line-side__title { justify-content: flex-start; }
  .line-can { text-align: left; max-width: 420px; margin-inline: auto; }
}
@media (max-width: 560px) {
  .line-btns { grid-template-columns: 1fr; }
  .line-flow__list { grid-template-columns: repeat(2, 1fr); gap: 18px 10px; }
  .line-flow__list li:nth-child(2)::after { content: none; }
}

/* 2つ並びの窓口(2段目) */
.ways--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
/* メールを大きな欄へ移したので、お電話だけが残る。幅を取りすぎないようにする */
.ways--1 { grid-template-columns: minmax(0, 1fr); max-width: 520px; margin-inline: auto; }

/* お問い合わせの中に置く対応エリア */
.contact-area {
  margin-top: 54px;
  padding-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}
.contact-area__title {
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  margin-bottom: 10px;
}
.contact-area__lead {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .72);
}
/* 暗い背景に置いたときのエリアカード */
.section--dark .area-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section--dark .area-card__pref { color: #fff; }
.section--dark .area-card__pref span { color: rgba(255, 255, 255, .5); }
.section--dark .area-card__cities li {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .84);
}

/* --------------------------------------------------------------------------
   黒帯セクション(ページ中盤の締め)
   -------------------------------------------------------------------------- */
.section--dark {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(720px 380px at 10% 6%, rgba(62, 152, 45, .22), transparent 62%),
    radial-gradient(760px 420px at 96% 46%, rgba(58, 107, 158, .30), transparent 62%),
    radial-gradient(820px 420px at 8% 94%, rgba(243, 154, 1, .24), transparent 62%),
    linear-gradient(150deg, #1d1813 0%, #14100d 58%, #100d0a 100%);
}
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 10%, transparent 72%);
  pointer-events: none;
}
.section--dark > .wrap { position: relative; z-index: 1; }

.section--dark .sec-title__ja,
.ig-sec .sec-title__ja { color: #fff; }
.section--dark .sec-title__lead,
.ig-sec .sec-title__lead { color: rgba(255, 255, 255, .72); }

/* 黒帯の中に置いたときの「選ばれる理由」「ポイント」 */
.section--dark .reason__title { color: #fff; border-bottom-color: rgba(255, 255, 255, .18); }
.section--dark .reason__desc { color: rgba(255, 255, 255, .64); }
.section--dark .point__title { color: #fff; }
.section--dark .point__desc { color: rgba(255, 255, 255, .64); }
.section--dark .point__icon { background: rgba(255, 255, 255, .07); color: var(--orange); }

.section--dark .strengths {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
  box-shadow: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.section--dark .strength { border-color: rgba(255, 255, 255, .12); }
.section--dark .strength__t { color: #fff; }
.section--dark .strength__d { color: rgba(255, 255, 255, .62); }

@media (max-width: 560px) {
  /* 幅が足りないので、スマホでは横並びのカードに切り替える */
  .hero2__cards { grid-template-columns: 1fr; gap: 10px; }
  .hero-card { display: flex; align-items: center; gap: 14px; padding: 15px 18px; text-align: left; }
  .hero-card__icon { width: 30px; height: 30px; margin: 0; }
  .hero-card__t { margin-bottom: 3px; }
  .hero-card__d br { display: none; }

  .hero-stats__item { padding: 16px 8px; }
  .hero-stats__label { font-size: 11px; letter-spacing: .02em; }

  .strengths { grid-template-columns: 1fr; }
  .strength { border-right: 0 !important; border-top: 1px solid var(--line); padding: 24px 18px; }
  /* 2列のときに上の線を消していた指定を、1列では打ち消す。
     色はここで決めない。暗い背景のときの色をそのまま活かすため */
  .strength:nth-child(-n+2) { border-top-width: 1px; border-top-style: solid; }
  .strength:first-child { border-top-width: 0; }

  .detail { padding: 22px 18px; }
  .detail__grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .about__body { padding: 28px 22px; }
  .about__dl > div { grid-template-columns: 92px 1fr; }
}

/* Instagramの欄のスマートフォン */
.ig-phone { display: grid; place-items: center; }
.ig-phone .phone__inner img { width: 134px; height: auto; }

/* 指で触る機器ではスマートフォンの絵を出さない。
   QRを読み取る相手がいないので、置いても役に立たないため。
   画面の幅ではなく「マウスが使えるか」で判定する（QRの出し分けと同じ考え方） */
@media (hover: none) and (pointer: coarse) {
  .ig-phone,
  .line-panel__phone { display: none; }
  /* QRが消えるぶん、説明とボタンだけの1列にする */
  .ct-unit { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .ct-unit .line-btn,
  .ct-unit .mail-btn,
  .ct-unit .ct-btn-soon { max-width: none; }
  /* 1列では下に余白が無いので、受付の行は文章の続きに置く */
  .ct-unit__hours { position: static; margin-top: 16px; }
}

/* スマートフォンの中、QRと案内文のあいだの線 */
.ig-phone__line {
  display: block;
  width: 96px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #f9ce34 0%, #ee2a7b 55%, #6228d7 100%);
}

/* --------------------------------------------------------------------------
   料金のオプション（番号付きの縦の流れ）
   コース別ページのオプション欄だけで使う。ほかの欄には影響しない
   -------------------------------------------------------------------------- */
.opt-flow {
  position: relative;
  margin-top: 40px;
  padding-left: 74px;
  list-style: none;
}
/* 左の細い縦線 */
.opt-flow::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: rgba(243, 154, 1, .35);
}
.opt-flow__row { position: relative; }
.opt-flow__row + .opt-flow__row { margin-top: 28px; }

/* 縦線の上に置く丸い番号 */
.opt-flow__num {
  position: absolute;
  left: -74px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-en);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .04em;
  box-shadow: 0 3px 10px rgba(243, 154, 1, .3);
}
/* 番号からカードへ伸ばす短い線 */
.opt-flow__num::after {
  content: "";
  position: absolute;
  left: 44px;
  top: 50%;
  width: 26px;
  height: 2px;
  background: rgba(243, 154, 1, .35);
}

.opt-card {
  padding: 26px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 24, 21, .05);
}
.opt-card__t {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}
.opt-card__d {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-70);
}

/* 01：圧力の4枚 */
.opt-mpa {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.opt-mpa__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 22px 12px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  text-align: center;
}
.opt-mpa__item--main {
  border: 1.5px solid var(--orange);
  background: rgba(243, 154, 1, .07);
}
.opt-mpa__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .06em;
  white-space: nowrap;
}
.opt-mpa__label { font-size: 12.5px; color: var(--ink-70); }
.opt-mpa__value {
  margin-top: 6px;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--orange-dark);
}
.opt-mpa__value small { margin-left: 2px; font-size: .5em; }
/* 下の行はどのカードも同じ高さにして、数字の位置をそろえる */
.opt-mpa__foot {
  margin-top: 8px;
  min-height: 20px;
  font-size: 12.5px;
  color: var(--ink-70);
}
.opt-mpa__foot b { font-size: 15px; color: var(--orange-dark); }

/* 02・03：説明が左、料金が右 */
.opt-list { margin-top: 20px; border-top: 1px solid var(--line); }
.opt-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
}
.opt-list__name { font-size: 15px; font-weight: 700; }
.opt-list__desc {
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.8;
  color: var(--ink-70);
}
.opt-list__price {
  flex: none;
  font-size: 13px;
  color: var(--ink-70);
  white-space: nowrap;
}
.opt-list__price b {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-dark);
}

@media (max-width: 900px) {
  .opt-mpa { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
}
@media (max-width: 620px) {
  /* 縦線と番号は上に出して、カードの幅を確保する */
  .opt-flow { padding-left: 0; }
  .opt-flow::before { display: none; }
  .opt-flow__row + .opt-flow__row { margin-top: 22px; }
  .opt-flow__num {
    position: static;
    width: 38px;
    height: 38px;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .opt-flow__num::after { display: none; }
  .opt-card { padding: 22px 18px 24px; }
  .opt-mpa { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .opt-list__row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px 2px;
  }
  .opt-list__price { justify-self: end; }
}
@media (max-width: 380px) {
  .opt-mpa { grid-template-columns: 1fr; }
}

/* --------------------------------------------------------------------------
   規約のページ（プライバシーポリシー・特定商取引法）
   -------------------------------------------------------------------------- */
.legal__t {
  margin-top: 34px;
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1.5;
}
.legal > .legal__t:first-child { margin-top: 0; }
.legal p {
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-70);
}
.legal__list { margin-top: 8px; }
.legal__list li {
  position: relative;
  padding-left: 18px;
  font-size: 15px;
  line-height: 1.95;
  color: var(--ink-70);
}
.legal__list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.legal .info-table { margin-top: 14px; }
.legal__date {
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--ink-45);
}
/* 2つだけの帯 */
.anchor-nav--2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 760px) {
  .anchor-nav--2 { grid-template-columns: repeat(2, 1fr); }
}

/* キャンセル規定の書き方 */
.cancel__t {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cancel__t:first-child { margin-top: 0; }
.cancel { margin: 6px 0 0; }
.cancel li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 5px 0;
  font-size: 14px;
  border-bottom: 1px dashed var(--line);
}
.cancel li:last-child { border-bottom: 0; }
.cancel li span { color: var(--ink-70); }
.cancel li b { flex: none; font-weight: 700; color: var(--orange-dark); }

/* --------------------------------------------------------------------------
   豆知識のページ
   -------------------------------------------------------------------------- */
.tip__no {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--orange);
}
.tip__no span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  letter-spacing: .04em;
}
.tip__t {
  margin-top: 18px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}
.tip__lead {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 3px solid var(--orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--orange-dark);
}
.tip__body { margin-top: 22px; }
.tip__body p {
  font-size: 15.5px;
  line-height: 2;
  color: var(--ink-70);
}
.tip__body p + p { margin-top: 16px; }
.tip__body b { color: var(--ink); }
.tip__more { margin-top: 22px; }

/* 絵のある記事。絵はいつも右。本文の下へ少しもぐり込ませる */
.tip--fig {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.48fr);
  align-items: center;
}
/* 絵は右の桁へ */
.tip__fig {
  position: relative;
  z-index: 0;
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  /* 外枠より少し右へはみ出させて、紙面に食い込ませる */
  margin-right: -19px;
}
.tip__fig img {
  display: block;
  width: 100%;
  height: auto;
  /* 本文と接する左端をだんだん薄くして、背景になじませる */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
}
/* 本文は左の桁。絵の上に重ねる */
.tip__main {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1;
  margin-right: -38px;
}

@media (max-width: 860px) {
  .tip--fig { grid-template-columns: 1fr; }
  .tip__fig { grid-column: 1; grid-row: 2; margin-right: 0; }
  .tip__fig img {
    max-width: 420px;
    margin: 0 auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .tip__main { grid-column: 1; grid-row: 1; margin-right: 0; margin-bottom: 20px; }
}

/* 記事の本数に合わせて並べる帯 */
.anchor-nav--3 { grid-template-columns: repeat(3, 1fr); }
.anchor-nav--5 { grid-template-columns: repeat(5, 1fr); }
.anchor-nav--6,
.anchor-nav--7,
.anchor-nav--8 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .anchor-nav--5,
  .anchor-nav--6,
  .anchor-nav--7,
  .anchor-nav--8 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .anchor-nav--5,
  .anchor-nav--6,
  .anchor-nav--7,
  .anchor-nav--8 { grid-template-columns: repeat(2, 1fr); }
}

/* 豆知識ページへの案内（メニューの下に置く1枚） */
.tip-card {
  display: block;
  margin-top: 34px;
  padding: 26px 30px 28px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.tip-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(35, 24, 21, .08);
}
.tip-card__en {
  display: block;
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--orange);
}
.tip-card__t {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--ink);
}
.tip-card__d {
  display: block;
  margin-top: 10px;
  max-width: 720px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-70);
}
.tip-card__go {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--orange-dark);
}
.tip-card__go::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform .2s ease;
}
.tip-card:hover .tip-card__go::after { transform: translateX(3px) rotate(-45deg); }

@media (max-width: 560px) {
  .tip-card { padding: 22px 20px 24px; }
  .tip-card__t { font-size: 18px; }
}

/* --------------------------------------------------------------------------
   お掃除の種類の比べ方（列ごとに段数が違う表）
   -------------------------------------------------------------------------- */
.cmp {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}
.cmp__note {
  padding: 16px 20px 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--orange-dark);
}
.cmp__note--sub {
  padding: 0 20px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--ink-70);
}


.cmp__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-width: 720px;
  align-items: stretch;
}
.cmp__col { display: flex; flex-direction: column; }
.cmp__col + .cmp__col { border-left: 1px solid var(--line); }
.cmp__head {
  padding: 14px 10px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}
.cmp__cells { flex: 1; display: flex; flex-direction: column; }
.cmp__cell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 16px 10px;
  text-align: center;
  /* --a は下に行くほど大きくなる。いちばん下はどの列も同じ濃さ */
  background: rgba(243, 154, 1, var(--a, 0));
}
.cmp__cell + .cmp__cell { border-top: 1px solid var(--line); }
.cmp__t {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
}
.cmp__t b {
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: 700;
  color: var(--orange-dark);
}
.cmp__t small { margin-left: 2px; font-size: 12px; color: var(--orange-dark); }
.cmp__s {
  font-size: 11.5px;
  line-height: 1.6;
  color: var(--orange-dark);
  font-weight: 700;
}

@media (max-width: 700px) {
  .cmp__note { padding: 13px 14px 5px; font-size: 12.5px; }
  .cmp__note--sub { padding: 0 14px 12px; font-size: 11.5px; }
  .cmp__head { padding: 11px 6px; font-size: 12.5px; }
  .cmp__cell { padding: 13px 6px; }
  .cmp__t { font-size: 12.5px; }
  .cmp__t b { font-size: 19px; }
  .cmp__s { font-size: 10.5px; }
}

/* 数字ではなく言葉を入れる欄（ドラム式・プロペラ式の見分け） */
.spec__value--word { font-size: 22px; letter-spacing: .02em; }

/* ドラム式とプロペラ式の見分け方 */
.fantype {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.fantype__item {
  padding: 26px 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  text-align: center;
}
.fantype__img {
  display: block;
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 18px;
}
.fantype__t {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--orange-dark);
}
.fantype__d {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-70);
}
.fantype__s {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: var(--ink-45);
}

@media (max-width: 700px) {
  .fantype { grid-template-columns: 1fr; gap: 20px; }
  .fantype__item { padding: 22px 18px 24px; }
  .fantype__img { max-width: 220px; }
}

/* 料金表の行に添える小さな絵（ドラム式・プロペラ式の見分け） */
.price-table .menu-name:has(.menu-fig) {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-fig {
  flex: none;
  display: block;
  width: 62px;
  height: 62px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}
.menu-fig img { display: block; width: 100%; height: 100%; object-fit: contain; }
.menu-fig__body { display: block; min-width: 0; }
/* 表の中に置く説明の行 */
.price-table tr.menu-desc td {
  padding: 14px 16px;
  background: var(--bg-soft);
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-70);
}
.price-table tbody tr.menu-desc:hover td { background: var(--bg-soft); }

/* 表の中の区分（キッチン換気扇 / その他の換気扇） */
.price-table tr.menu-group th {
  padding: 14px 16px 10px;
  background: transparent;
  border-bottom: 2px solid var(--orange);
  text-align: left;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--orange-dark);
  white-space: nowrap;
}
.price-table tr.menu-group:not(:first-child) th { padding-top: 30px; }
.price-table tbody tr.menu-group:hover { background: transparent; }

/* 行の中に添える、お掃除機能付きの注記 */
.menu-add {
  /* 札は1つずつ改行して縦に積む。横に流すと、幅の違いで
     「上に2つ・下に1つ」のように不ぞろいになるため。
     幅は中の文字ぶんだけにして、帯にはしない */
  display: block;
  width: fit-content;
  margin: 6px 0 0;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(243, 154, 1, .12);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--orange-dark);
}

@media (max-width: 560px) {
  .menu-fig { width: 50px; height: 50px; }
  .price-table .menu-name:has(.menu-fig) { gap: 10px; }
}

/* --------------------------------------------------------------------------
   換気扇の、部品側のオプション
   -------------------------------------------------------------------------- */
.vopt-lead {
  margin-top: 46px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.vopt-lead__t {
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
}
.vopt-lead__d {
  margin-top: 12px;
  max-width: 840px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--ink-70);
}

.vopts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}
.vopt {
  display: flex;
  flex-direction: column;
  padding: 24px 26px 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 24, 21, .05);
}
.vopt__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.vopt__t {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .02em;
}
.vopt__price {
  flex: none;
  font-size: 13px;
  color: var(--ink-70);
  white-space: nowrap;
}
.vopt__price b {
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  color: var(--orange-dark);
}
.vopt__tax { margin-left: 2px; font-size: 12px; }
.vopt__when {
  margin-top: 14px;
  font-size: 13.5px;
  line-height: 1.75;
  color: var(--ink);
}
.vopt__when span {
  display: inline-block;
  margin-right: 8px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(243, 154, 1, .14);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange-dark);
  vertical-align: 1px;
}
.vopt__d {
  margin-top: 10px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-70);
}

@media (max-width: 1000px) {
  .vopts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .vopts { grid-template-columns: 1fr; gap: 16px; }
  .vopt { padding: 20px 18px 22px; }
  .vopt__head { flex-direction: column; align-items: flex-start; gap: 6px; }
  .vopt-lead { margin-top: 36px; padding-top: 32px; }
}

/* --------------------------------------------------------------------------
   換気扇：症状から読むメンテナンスの案内
   -------------------------------------------------------------------------- */
.vcases { display: grid; gap: 20px; }
.vcase {
  padding: 26px 28px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35, 24, 21, .05);
}
.vcase__label {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(243, 154, 1, .14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange-dark);
}
.vcase__sign {
  margin-top: 12px;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: .02em;
}
.vcase__cause {
  margin-top: 14px;
  font-size: 14.5px;
  line-height: 1.9;
  color: var(--ink-70);
}
.vcase__cause span {
  display: block;
  margin-bottom: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink-45);
}

.vcase__fixes {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.vcase__fixt {
  margin-bottom: 12px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--orange-dark);
}
.vfix + .vfix { margin-top: 16px; padding-top: 16px; border-top: 1px dashed var(--line); }
.vfix__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.vfix__name { font-size: 16px; font-weight: 700; letter-spacing: .02em; }
.vfix__price {
  flex: none;
  font-size: 12.5px;
  color: var(--ink-70);
  white-space: nowrap;
}
.vfix__price b {
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 700;
  color: var(--orange-dark);
}
.vfix__tax { margin-left: 2px; font-size: 11.5px; }
.vfix__d {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-70);
}

@media (max-width: 620px) {
  .vcase { padding: 22px 18px 24px; }
  .vfix__head { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ============================================================
   料金表の中に置く枠（ブロックチョイス）
   ============================================================ */
.price-table tr.menu-block td {
  padding: 0 16px 8px;
  background: transparent;
}
.price-table tbody tr.menu-block:hover td { background: transparent; }
.price-table tr.menu-block td > * { margin: 0; }
.menu-block__t,
.menu-block__d,
.menu-block__ex,
.menu-block__p {
  padding-left: 16px;
  padding-right: 16px;
  background: var(--bg-soft);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.menu-block__t {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  border-radius: 10px 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--orange-dark);
}
.menu-block__d {
  padding-top: 6px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-70);
}
.menu-block__ex {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  list-style: none;
}
.menu-block__ex li {
  padding: 3px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink);
}
.menu-block__p {
  padding-top: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  border-radius: 0 0 10px 10px;
  font-size: 13.5px;
  color: var(--ink);
}
.menu-block__p b {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  color: var(--orange-dark);
}
@media (max-width: 600px) {
  .price-table tr.menu-block td { padding: 0 12px 8px; }
  .menu-block__t,
  .menu-block__d,
  .menu-block__ex,
  .menu-block__p { padding-left: 13px; padding-right: 13px; }
}

/* ============================================================
   お風呂場の主な汚れ（5つ）
   ============================================================ */
.soils {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(186px, 1fr));
  gap: 32px 24px;
}
.soil { text-align: center; }
.soil__icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--orange);
}
.soil__icon svg { width: 30px; height: 30px; }
.soil__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.soil__desc {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-70);
  text-align: left;
}
.soil__note {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 14px;
  color: var(--ink-70);
}
.soil__note a {
  margin-left: 6px;
  font-weight: 700;
  color: var(--orange-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
@media (max-width: 600px) {
  .soils { grid-template-columns: repeat(2, 1fr); gap: 26px 18px; }
  .soil__icon { width: 54px; height: 54px; margin-bottom: 12px; }
  .soil__icon svg { width: 26px; height: 26px; }
  .soil__name { font-size: 15px; }
  .soil__desc { font-size: 13px; }
}

/* 見出しに添える印（要見積りなど） */
.menu-block__tag,
.menu-group__tag {
  display: inline-block;
  margin-left: 9px;
  padding: 2px 9px;
  border-radius: 999px;
  background: rgba(243, 154, 1, .14);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--orange-dark);
  vertical-align: 1px;
}

/* ============================================================
   節の中の小見出し（洗濯機の「承れません」など）
   ============================================================ */
.sec-sub { margin-top: 40px; }
.sec-sub__t {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.sec-sub + .note-box { margin-top: 20px; }
@media (max-width: 600px) {
  .sec-sub { margin-top: 32px; }
  .sec-sub__t { font-size: 15px; }
}

/* ============================================================
   料金表のオプション行（基本メニューにぶら下がるもの）
   ============================================================ */
.price-table tr.menu-opt .menu-name {
  position: relative;
  padding-left: 40px;
  font-weight: 400;
}
/* 基本メニューから枝分かれしていることを、線と＋で示す */
.price-table tr.menu-opt .menu-name::before {
  content: "＋";
  position: absolute;
  left: 18px;
  top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
}
.price-table tr.menu-opt .num { color: var(--ink-70); }
.price-table tr.menu-opt .price { font-size: 15px; }
@media (max-width: 600px) {
  .price-table tr.menu-opt .menu-name { padding-left: 30px; }
  .price-table tr.menu-opt .menu-name::before { left: 12px; top: 12px; }
}

/* ============================================================
   講習・研修の一覧（Skill Joint）
   ============================================================ */
.courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  margin-top: 20px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.course { padding: 22px 24px; background: #fff; }
.course__name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.course__desc {
  margin-top: 8px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--ink-70);
}
/* 名前だけを並べる札。リンクにもなる */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  list-style: none;
}
.chips a {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  transition: border-color .2s, color .2s;
}
.chips a:hover { border-color: var(--orange); color: var(--orange-dark); }
@media (max-width: 600px) {
  .course { padding: 18px 18px; }
  .course__name { font-size: 15px; }
  .course__desc { font-size: 13px; }
  .chips { gap: 8px; }
  .chips a { padding: 6px 12px; font-size: 12.5px; }
}

/* ============================================================
   Skill Joint / House Amend — House Clinicとは別の見た目。
   同じ骨格ではなく、事業部ごとに色と組み立てを変える。
   ページの<body>に付けたクラスで、事業部カラーを切り替える。
   ============================================================ */
.biz-page {
  --biz: #1e3a5f;          /* Skill Joint：深い藍 */
  --biz-deep: #16304f;
  --biz-soft: #eef2f7;
  --biz-line: rgba(255, 255, 255, .16);
  background: var(--biz-deep);
}
.biz-page--amend {
  --biz: #5b3e8e;          /* House Amend：紫 */
  --biz-deep: #4a3175;
  --biz-soft: #f2eef8;
}

/* 濃い地の上に置く節 */
.biz-sec { padding: 84px 0; background: var(--biz-deep); color: #fff; }
.biz-sec--pale { background: #fff; color: var(--ink); }
.biz-sec--tint { background: var(--biz-soft); color: var(--ink); }

/* 見出し。House Clinicの sec-title とは別に、細く大きく組む */
.biz-title { margin-bottom: 44px; }
.biz-title__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--biz);
}
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-title__en { color: #fff; opacity: .55; }
.biz-title__ja {
  margin-top: 14px;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 700;
  letter-spacing: .04em;
  line-height: 1.5;
}
.biz-title__lead {
  margin-top: 16px;
  font-size: 15px;
  line-height: 2;
  opacity: .82;
}

/* 見出し */
.biz-hero {
  position: relative;
  padding: clamp(96px, 14vw, 168px) 0 clamp(64px, 8vw, 96px);
  background: var(--biz-deep);
  color: #fff;
  overflow: hidden;
}
/* 地の上にうっすら罫線を敷いて、図面のような下地にする */
.biz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--biz-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--biz-line) 1px, transparent 1px);
  background-size: 64px 64px;
  opacity: .5;
  pointer-events: none;
}
.biz-hero__inner { position: relative; }
.biz-hero__en {
  display: block;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  opacity: .6;
}
.biz-hero__title {
  margin-top: 22px;
  font-size: clamp(30px, 5.6vw, 58px);
  font-weight: 700;
  letter-spacing: .02em;
  line-height: 1.4;
}
.biz-hero__title span { display: block; }
.biz-hero__title em { font-style: normal; }
.biz-hero__lead {
  margin-top: 26px;
  max-width: 46em;
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 2.1;
  opacity: .84;
}

/* 見出しの下のボタン */
.biz-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.biz-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .3);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  transition: background .2s, border-color .2s, color .2s;
}
.biz-btn svg { width: 18px; height: 18px; }
.biz-btn--fill { background: #fff; border-color: #fff; color: var(--biz-deep); }
.biz-btn--fill:hover { background: rgba(255, 255, 255, .86); }
.biz-btn--out:hover { background: rgba(255, 255, 255, .1); border-color: #fff; }

@media (max-width: 600px) {
  .biz-sec { padding: 60px 0; }
  .biz-title { margin-bottom: 32px; }
  .biz-btn { padding: 13px 20px; font-size: 13.5px; }
  .biz-cta { gap: 10px; }
}

/* 番号付きの一覧（講習の内容など）。表ではなく、通し番号で読ませる */
.biz-list { border-top: 1px solid var(--line); }
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-list { border-color: rgba(255, 255, 255, .18); }
.biz-item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 0 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-item { border-color: rgba(255, 255, 255, .18); }
.biz-item__no {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--biz);
  padding-top: 4px;
}
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-item__no { color: #fff; opacity: .5; }
.biz-item__name { font-size: 17px; font-weight: 700; letter-spacing: .03em; }
.biz-item__desc { margin-top: 7px; font-size: 13.5px; line-height: 1.95; opacity: .78; }

/* 2列で並べる箱（学び方など） */
.biz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.biz-card {
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-card {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .16);
}
.biz-card__t { font-size: 16px; font-weight: 700; letter-spacing: .03em; }
.biz-card__d { margin-top: 9px; font-size: 13.5px; line-height: 1.95; opacity: .78; }

/* 注記の箱 */
.biz-note {
  padding: 26px 28px;
  border-radius: 12px;
  background: var(--biz-soft);
  border: 1px solid var(--line);
}
.biz-note ul { list-style: none; }
.biz-note li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  line-height: 1.95;
  color: var(--ink-70);
}
.biz-note li + li { margin-top: 11px; }
.biz-note li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--biz);
}

/* 事業部の紹介欄で使う、名前の札 */
.biz-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; list-style: none; }
.biz-tags a,
.biz-tags span {
  display: inline-block;
  padding: 8px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  transition: border-color .2s, color .2s;
}
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-tags a,
.biz-sec:not(.biz-sec--pale):not(.biz-sec--tint) .biz-tags span {
  border-color: rgba(255, 255, 255, .26);
  color: #fff;
}
.biz-tags a:hover { border-color: var(--biz); color: var(--biz); }

/* お問い合わせ（メールのみ） */
.biz-contact { text-align: center; }
.biz-contact__mail {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-en);
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: .04em;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
  padding-bottom: 4px;
}
.biz-contact__mail:hover { border-color: #fff; }
.biz-contact__note { margin-top: 22px; font-size: 13.5px; line-height: 1.95; opacity: .72; }

@media (max-width: 600px) {
  .biz-item { grid-template-columns: 44px 1fr; gap: 0 12px; padding: 20px 0; }
  .biz-item__name { font-size: 15.5px; }
  .biz-card { padding: 20px 20px 22px; }
  .biz-note { padding: 20px 20px; }
}

/* 事業部ページでは、ヘッダーとフッターも事業部の色にそろえる */
.biz-page .header {
  background: rgba(22, 48, 79, .92);
  border-bottom-color: rgba(255, 255, 255, .14);
}
.biz-page--amend .header { background: rgba(74, 49, 117, .92); }
.biz-page .header .gnav__link,
.biz-page .header .hicon,
.biz-page .header .logo__div { color: #fff; }
.biz-page .header .gnav__link:hover { color: rgba(255, 255, 255, .7); }
/* ロゴは濃い色の線画なので、濃い地では白く反転させる */
.biz-page .header .logo__img { filter: brightness(0) invert(1); }
.biz-page .header .nav-toggle__bars span { background: #fff; }

.biz-page .footer { background: var(--biz-deep); }
.biz-page .breadcrumb {
  background: var(--biz-deep);
  border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.biz-page .breadcrumb a,
.biz-page .breadcrumb li { color: rgba(255, 255, 255, .66); }
.biz-page .breadcrumb a:hover { color: #fff; }

/* ============================================================
   お客様ログイン（Skill Joint）。
   いまは見た目だけで、認証の処理はつながっていない。
   ============================================================ */
.auth {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 120px);
  padding: 72px 0;
  background: var(--biz-deep);
}
.auth__inner { width: 100%; max-width: 420px; padding: 0 20px; }
.auth__head { text-align: center; margin-bottom: 28px; color: #fff; }
.auth__en {
  display: block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .55;
}
.auth__title { margin-top: 12px; font-size: 24px; font-weight: 700; letter-spacing: .04em; }
.auth__lead { margin-top: 12px; font-size: 13.5px; line-height: 1.9; opacity: .8; }

.auth__card {
  padding: 30px 28px 32px;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
/* 動かないことをはっきり伝える帯 */
/* このページはMasterコース修了者向け。工事中の見た目ではなく、
   「鍵が掛かっている」ことが伝わる落ち着いた案内にする */
.auth__gate {
  margin-bottom: 22px;
  padding: 13px 15px;
  border-radius: 8px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-left: 3px solid var(--orange);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--ink-70);
}
.auth__gate strong { color: var(--ink); }

/* 入力欄のかたまり。上に透明な覆いを掛けて、押しても打てないようにする。
   送信先が無いまま打てるようにすると、ほかで使っているパスワードを
   入れてしまう方が出るため */
.auth__fields { position: relative; }
.auth__fields::after {
  content: "";
  position: absolute;
  inset: 0;
  cursor: not-allowed;
}

/* 覆いを押したときに出る案内 */
.auth__note {
  margin-top: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  background: var(--orange-soft);
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--orange-dark);
}
.auth__field + .auth__field { margin-top: 18px; }
.auth__label {
  display: block;
  margin-bottom: 7px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink);
}
.auth__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
}
.auth__input:focus { outline: none; border-color: var(--biz); }
.auth__input:disabled { background: var(--bg-soft); color: var(--ink-45); cursor: not-allowed; }
.auth__submit {
  width: 100%;
  margin-top: 26px;
  padding: 14px;
  border: none;
  border-radius: 999px;
  background: var(--biz);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  cursor: pointer;
}
.auth__submit:disabled { background: var(--ink-45); cursor: not-allowed; }
.auth__sub { margin-top: 18px; text-align: center; font-size: 13px; }
.auth__sub a { color: var(--biz); text-decoration: underline; text-underline-offset: 3px; }
.auth__back { margin-top: 26px; text-align: center; font-size: 13px; }
.auth__back a { color: rgba(255, 255, 255, .72); }
.auth__back a:hover { color: #fff; }

/* ログインした先にあるもの */
.auth__inside {
  margin-top: 30px;
  padding: 22px 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: #fff;
}
.auth__inside p { font-size: 12.5px; letter-spacing: .1em; opacity: .6; }
.auth__inside ul { margin-top: 12px; list-style: none; }
.auth__inside li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.9;
}
.auth__inside li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 12px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .6);
}
@media (max-width: 600px) {
  .auth { padding: 48px 0; min-height: 0; }
  .auth__card { padding: 24px 20px 26px; }
}

/* ============================================================
   House Amend — 万能洗剤と専門洗剤の対比、洗剤のラインナップ
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.split__col {
  padding: 26px 26px 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}
/* 自分たちの側を、色で立てる */
.split__col--on { border-color: var(--biz); background: var(--biz-soft); }
.split__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--ink-45);
}
.split__col--on .split__label { color: var(--biz); }
.split__body { margin-top: 12px; font-size: 14px; line-height: 2; color: var(--ink-70); }

/* 洗剤の一覧。区分の見出しを挟んで、罫線で区切る */
.lineup { border-top: 1px solid rgba(255, 255, 255, .18); }
.lineup__group {
  padding: 26px 0 10px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
  opacity: .55;
}
.lineup__group:first-child { padding-top: 20px; }
.lineup__item { padding: 20px 0; border-bottom: 1px solid rgba(255, 255, 255, .18); }
.lineup__name { font-size: 17px; font-weight: 700; letter-spacing: .03em; color: #fff; }
.lineup__desc {
  margin-top: 7px;
  font-size: 13.5px;
  line-height: 1.95;
  color: #fff;
  opacity: .74;
}
@media (max-width: 600px) {
  .split__col { padding: 20px 20px 22px; }
  .lineup__name { font-size: 15.5px; }
}

/* ============================================================
   メール予約の欄。LINE欄と同じ骨格で、色をブランドのオレンジにする。
   真ん中はスマホではなく、メールの下書き画面に見立てた枠。
   ============================================================ */
.mail-panel {
  display: grid;
  grid-template-columns: 1.2fr auto 1.15fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 34px;
}
/* Swiperのときと同じで、はみ出しを止めておく */
.mail-panel > * { min-width: 0; }
.mail-panel__label {
  font-family: var(--font-en);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange);
}
.mail-panel__title {
  margin-top: 14px;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #fff;
}
.mail-panel__title em { font-style: normal; color: var(--orange); }
.mail-panel__lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  color: rgba(255, 255, 255, .74);
}

.mail-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
/* 中の文字数に関係なく、LINEのボタンと同じ幅にそろえる */
.mail-btn { width: 213px; }
@media (max-width: 600px) {
  .mail-btn { width: auto; flex: 1 1 auto; }
}
.mail-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 13px;
  border-radius: 10px;
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.mail-btn:hover { transform: translateY(-2px); }
.mail-btn svg { width: 22px; height: 22px; flex-shrink: 0; }
.mail-btn__t { font-size: 15px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.mail-btn__s { display: block; margin-top: 3px; font-size: 12px; font-weight: 400; word-break: keep-all; }
.mail-btn--fill {
  background: var(--mail);
  color: #fff;
  box-shadow: 0 6px 18px rgba(58, 107, 158, .34);
}
.mail-btn--fill:hover { background: var(--mail-dark); box-shadow: 0 10px 26px rgba(58, 107, 158, .44); }
.mail-btn--out {
  border: 1px solid var(--mail-soft);
  color: var(--mail-soft);
}
.mail-btn--out:hover { background: rgba(111, 159, 208, .12); }
.mail-btn--out .mail-btn__s { color: rgba(255, 255, 255, .7); }
.mail-btn--fill .mail-btn__s { color: rgba(255, 255, 255, .86); }

/* 真ん中：メールの下書きに見立てた枠 */
.mail-note {
  width: 268px;
  padding: 20px 20px 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .16);
}
.mail-note__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mail-note__bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
}
.mail-note__row {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, .16);
  font-size: 12.5px;
  line-height: 1.7;
}
.mail-note__k { flex: 0 0 4.5em; color: rgba(255, 255, 255, .5); }
.mail-note__v { color: rgba(255, 255, 255, .88); }
.mail-note__cap {
  margin-top: 16px;
  font-size: 11.5px;
  line-height: 1.8;
  text-align: center;
  color: rgba(255, 255, 255, .5);
}

@media (max-width: 900px) {
  .mail-panel { grid-template-columns: 1fr; gap: 26px; }
  .mail-note { width: 100%; max-width: 320px; margin: 0 auto; }
}

/* メール欄の中では、チェックと手順の色をオレンジにそろえる。
   LINE欄の部品をそのまま借りているので、ここだけ上書きする */
.mail-panel .line-can li::before { border-color: var(--mail-soft); }
.mail-panel .line-can li::after {
  border-left-color: var(--mail-soft);
  border-bottom-color: var(--mail-soft);
}
.mail-panel .line-flow__ico { color: var(--mail-soft); }
.mail-panel .line-side__title { color: var(--mail-soft); }
/* 手順の文字が4つに割れて詰まるので、少し小さくして折り返しを許す */
.mail-panel .line-flow__list li span:last-child {
  font-size: 11px;
  line-height: 1.5;
  word-break: normal;
}

/* メール欄のスマホの中に出す印。LINEの緑に対して、こちらは青 */
.phone__logo--mail { background: var(--mail); }
.phone__logo--mail svg { width: 46px; height: 46px; }

/* メール欄のスマートフォンは、LINE欄より内容が少ないぶん縦を縮める。
   LINEを主、メールを従として見せるための差でもある */
.mail-panel .phone { height: 268px; }
.mail-panel .phone__inner { gap: 11px; padding: 22px 12px 18px; }
.mail-panel .phone__inner img { width: 122px; height: 122px; }
.mail-panel .phone__cap { font-size: 11.5px; line-height: 1.65; }

/* ============================================================
   お電話の欄。LINE・メールと同じ骨格だが、真ん中のスマートフォンは置かず
   2列にする。QRを読み取る相手がいないため。
   色はブランドのオレンジ。
   ============================================================ */
.tel-panel { display: block; }
/* 見出し・番号・受付時間を横一列に。上のLINE・メールと列の位置をそろえる */
.tel-row {
  display: grid;
  /* 見出しが大きいぶん左を広げる。上のLINE・メールとは列幅が違う */
  grid-template-columns: auto auto 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 12px;
}
.tel-row > * { min-width: 0; }
.tel-panel__mid { display: grid; justify-items: center; }
.tel-panel > * { min-width: 0; }
.tel-panel__label {
  font-family: var(--font-en);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--orange);
}
.tel-panel__title {
  /* LINE・メールの見出しと同じ大きさ。1行に収まるよう列幅の側で調整する */
  font-size: clamp(22px, 2.6vw, 30px);
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .02em;
  color: #fff;
}
.tel-panel__title em { font-style: normal; color: var(--orange); }

/* 番号そのものをボタンにする。押せばそのままかかる */

.tel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  transition: color .2s;
}
.tel-btn:hover { color: var(--orange-dark); }
.tel-btn svg { width: 26px; height: 26px; flex-shrink: 0; }
.tel-btn__t {
  font-family: var(--font-en);
  /* 見出しと見た目をそろえる。欧文の数字は字面が小さいので2割ほど大きくする */
  font-size: clamp(27px, 3.1vw, 36px);
  font-weight: 700;
  letter-spacing: .03em;
  white-space: nowrap;
}
.tel-hours {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .7);
  white-space: nowrap;
}

/* 番号が未設定のあいだ出す案内 */
.tel-soon {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 255, 255, .3);
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
}

/* 右側はLINE・メールと同じ部品を借りて、色だけオレンジにそろえる */
.tel-panel .line-side__title { color: var(--orange); }
.tel-panel .line-can li::before { border-color: var(--orange); }
.tel-panel .line-side__title { max-width: 12em; }
.tel-panel .line-can li::after {
  border-left-color: var(--orange);
  border-bottom-color: var(--orange);
}

@media (max-width: 900px) {
  .tel-row { grid-template-columns: 1fr; gap: 14px; }
  .tel-panel__title { white-space: normal; }
  .tel-panel__mid { justify-items: start; }
  .tel-btn__t { font-size: 21px; }
}

/* お問い合わせ欄の区切り線。CONTACTの下にあるものと同じ形にそろえる */
.contact-rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 44px 0;
  background: rgba(255, 255, 255, .2);
}
.contact-rule::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -1px;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background: var(--orange);
}
@media (max-width: 600px) {
  .contact-rule { margin: 34px 0; }
}

/* LINE・メールのスマートフォンの中にも、Instagramと同じ区切り線を入れる。
   色はそれぞれの導線に合わせる */
.line-phone__line,
.mail-phone__line {
  display: block;
  width: 96px;
  height: 2px;
  border-radius: 2px;
  background: #06c755;
}
.mail-phone__line { background: var(--mail-soft); }

/* ============================================================
   ヘッダーの下に開くページ一覧。
   マウスを乗せたときと、キーボードで進んだとき（:focus-within）に開く。
   JSは使わない。指で触る機器では、ドロワーの中に全部並べて出す。
   ============================================================ */
.gnav__item { position: relative; }
.gnav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 190px;
  padding: 8px;
  margin-top: 4px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  list-style: none;
  /* 閉じているあいだは、目にも読み上げにも触れさせない */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 10;
}
.gnav__item:hover .gnav__menu,
.gnav__item:focus-within .gnav__menu {
  opacity: 1;
  visibility: visible;
  transform: none;
}
/* 見出しとメニューのあいだに隙間があると、そこでマウスが外れてしまう。
   透明な帯を渡して、途切れないようにする */
.gnav__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}
.gnav__menu a {
  display: block;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  white-space: nowrap;
  color: var(--ink-70);
  transition: color .18s, background-color .18s;
}
.gnav__menu a:hover { color: var(--orange-dark); background: var(--orange-soft); }
.gnav__menu a[aria-current="page"] { color: var(--orange-dark); font-weight: 700; }
/* 開いているあいだ、親の見出しにも色を残す */
.gnav__item:hover > .gnav__link,
.gnav__item:focus-within > .gnav__link { color: var(--orange-dark); background: var(--orange-soft); }

/* 事業部ページ（濃い地）ではメニューも濃い地にそろえる */
.biz-page .gnav__menu { background: var(--biz-deep); border-color: rgba(255, 255, 255, .16); }
.biz-page .gnav__menu a { color: rgba(255, 255, 255, .8); }
.biz-page .gnav__menu a:hover,
.biz-page .gnav__menu a[aria-current="page"] { color: #fff; background: rgba(255, 255, 255, .1); }
.biz-page .header .gnav__item:hover > .gnav__link,
.biz-page .header .gnav__item:focus-within > .gnav__link {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

/* スマホのドロワーでは、開閉せずに全部並べて出す。
   幅はドロワーの切り替えと同じにそろえる */
@media (max-width: 1000px) {
  .gnav__item { position: static; }
  .gnav__menu {
    position: static;
    opacity: 1;
    /* visible と書くと、閉じているドロワーの hidden を打ち消して
       見えないリンクが画面じゅうに残ってしまう。親に従わせる */
    visibility: inherit;
    transform: none;
    min-width: 0;
    margin: 2px 0 8px;
    padding: 0 0 0 14px;
    border: none;
    border-left: 2px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  /* 指で触ると :hover が残る機種がある。
     そこで一覧が visible に戻ると、閉じたドロワーの見えないリンクが復活してしまう */
  .gnav__item:hover .gnav__menu,
  .gnav__item:focus-within .gnav__menu { visibility: inherit; }
  .gnav__menu::before { display: none; }
  .gnav__menu a {
    padding: 11px 8px;
    font-size: 15px;
    white-space: normal;
  }
  /* ドロワーは白地なので、事業部ページでも文字は濃い色に戻す。
     ヘッダーが濃い地のときの白文字のままだと、開いても読めない */
  .biz-page .gnav,
  .biz-page .header .gnav__link,
  .biz-page .gnav__menu a { color: var(--ink); }
  .biz-page .gnav__menu a { color: var(--ink-70); }
  .biz-page .gnav__menu { background: transparent; border-left-color: var(--line); }
  .biz-page .gnav__menu a:hover,
  .biz-page .gnav__menu a[aria-current="page"],
  .biz-page .header .gnav__item:hover > .gnav__link,
  .biz-page .header .gnav__item:focus-within > .gnav__link {
    color: var(--biz-deep, var(--ink));
    background: transparent;
  }
}


/* ============================================================
   お問い合わせページ（contact.html）
   ご用件を選ぶと、その窓口だけが出る。
   ============================================================ */
.ct-lead {
  max-width: 640px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .68);
}

/* ご用件のボタン。押されているものだけオレンジで塗る */
.ct-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 940px;
  margin: 0 auto 40px;
}
.ct-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 10px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  color: rgba(255, 255, 255, .82);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s, background-color .18s, color .18s;
}
.ct-tab__s {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .06em;
  color: rgba(255, 255, 255, .45);
}
.ct-tab:hover { border-color: rgba(255, 255, 255, .38); background: rgba(255, 255, 255, .09); }
.ct-tab.is-active {
  border-color: var(--orange);
  background: var(--orange);
  color: #fff;
}
.ct-tab.is-active .ct-tab__s { color: rgba(255, 255, 255, .8); }

/* 選んだご用件の中身 */
.ct-panel__lead {
  margin-bottom: 24px;
  text-align: center;
  font-size: 15.5px;
  line-height: 1.9;
  color: rgba(255, 255, 255, .72);
}

/* 窓口のカード。数が変わっても並びが崩れないようにする */
.ct-ways {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(258px, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
  list-style: none;
}
.ct-way {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 22px 22px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: inherit;
  text-decoration: none;
  transition: border-color .2s, background-color .2s, transform .2s;
}
a.ct-way:hover {
  border-color: rgba(255, 255, 255, .34);
  background: rgba(255, 255, 255, .09);
  transform: translateY(-3px);
}
.ct-way__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: rgba(255, 255, 255, .09);
  color: var(--orange);
}
.ct-way__icon svg { width: 22px; height: 22px; }
/* 題名が2行に折り返したとき、次の行が続きに流れ込まないよう、
   どちらも独立した行にする（inlineのままだと margin-top も効かない） */
.ct-way__t { display: block; font-size: 17px; font-weight: 700; color: #fff; }
.ct-way__s {
  display: block;
  margin-top: 4px;
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .6);
}
/* 宛先や番号。文字を大きくして、ここだけ読めば済むようにする */
/* フリーダイヤルの欄だけ、絵と文章を横一列に並べ、番号を大きく出す。
   メールやFAXの欄は宛先が長いので、これまでどおり縦に積む */
.ct-way[data-site-link="tel"] {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px 14px;
}
.ct-way[data-site-link="tel"] .ct-way__v {
  grid-column: 1 / -1;
  color: #fff;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: .08em;
  /* 字間は最後の文字の右にも付くので、そのぶん右へずらして中央にそろえる */
  text-indent: .08em;
  text-align: center;
  white-space: nowrap;
  word-break: normal;
}
/* ハイフンの前後だけ、数字どうしの間隔（.08em）をもう一段ぶん広げる */
.ct-way[data-site-link="tel"] .num-sep { margin: 0 .08em; }
/* 絵も白にそろえる。この欄で色を持つのは、ほかの窓口の「簡単予約」だけにする */
.ct-way[data-site-link="tel"] .ct-way__icon { color: #fff; }

.ct-way__v {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .01em;
  color: var(--orange);
  word-break: break-all;
}

/* 窓口ごとの色分け。LINEは緑、メールは青 */
.ct-way--line .ct-way__icon { color: var(--green); }
.ct-way--line .ct-way__v { color: var(--green); }
.ct-way--mail .ct-way__icon { color: var(--mail-soft); }
.ct-way--mail .ct-way__v { color: var(--mail-soft); }

/* 補足の欄 */
.ct-note {
  max-width: 760px;
  margin: 0 auto;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg-soft);
}
.ct-note dl { display: grid; gap: 14px; }
.ct-note > dl > div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: baseline;
}
.ct-note dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--ink-45);
}
.ct-note dd { font-size: 15px; line-height: 1.9; }

@media (max-width: 760px) {
  .ct-tabs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .ct-tabs { grid-template-columns: 1fr; gap: 8px; }
  .ct-tab { flex-direction: row; justify-content: center; gap: 8px; padding: 14px 12px; }
  .ct-ways { grid-template-columns: 1fr; }
  .ct-note { padding: 22px 20px; }
  .ct-note > dl > div { grid-template-columns: 1fr; gap: 4px; }
}



/* ひとつの窓口＝QR1つとボタン1つ。4つ並べる */
/* 窓口のカード。1行に2枚。
   左にどの窓口かと説明、右にQRとボタンを置く */
.ct-units {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 940px;
  margin: 0 auto;
  list-style: none;
}
.ct-unit {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  /* 受付時間をカードの下端に置くため、左右の列を高さいっぱいに伸ばす */
  align-items: stretch;
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.ct-unit__label {
  /* 日本語まじりの題名なので、英字用の広い字間は使わない */
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.4;
  color: #fff;
}
/* 題名の中の「で」は、つなぎの言葉なので少し小さく白で */
.ct-unit__de { font-size: .82em; color: #fff; }
/* 「で」のあと。予約はオレンジ、相談は白 */
.ct-unit__act { color: #fff; }
.ct-unit__act--reserve { color: var(--orange); }
/* 題名との間 */
/* 受付の行を、題名と文章の位置に影響させずに下端へ置く */
.ct-unit__body { position: relative; display: flex; flex-direction: column; justify-content: center; }

.ct-unit__d {
  margin-top: 24px;
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, .72);
}

/* 右側。QRの下にボタンを置く */
.ct-unit__side {
  display: grid;
  align-content: center;
  gap: 12px;
  justify-items: center;
}

/* 受付時間。カードの左下に寄せる */
.ct-unit__hours {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 12.5px;
  letter-spacing: .01em;
  color: rgba(255, 255, 255, .48);
}
.ct-unit .line-btn,
.ct-unit .mail-btn,
.ct-unit .ct-btn-soon { width: 100%; max-width: 213px; }

/* まだ使えない窓口のボタン。QRの枠と同じ破線にして、押せないことを見せる */
.ct-btn-soon {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 13px;
  border: 1.5px dashed rgba(255, 255, 255, .28);
  border-radius: 10px;
  text-align: left;
  color: rgba(255, 255, 255, .5);
  cursor: default;
}
.ct-btn-soon svg { width: 22px; height: 22px; flex-shrink: 0; }
.ct-btn-soon__t { font-size: 15px; font-weight: 700; letter-spacing: .01em; white-space: nowrap; }
.ct-btn-soon__s { display: block; margin-top: 3px; font-size: 12px; font-weight: 400; }

/* QR。白い台に載せて読みやすくする */
.ct-qrbox { display: block; }
/* 指で触る機器ではQRを出さない。自分の画面のQRは読み取れないため。
   メディアクエリは指定の強さを足さないので、必ず上の定義より後ろに置くこと。
   前に置くと、あとから書いた display: block に負けて消えなくなる */
@media (hover: none) and (pointer: coarse) {
  .ct-qrbox { display: none; }
}
.ct-qr {
  display: block;
  width: 152px;
  height: 152px;
  padding: 9px;
  border-radius: 12px;
  background: #fff;
}
.ct-qr img { display: block; width: 100%; height: 100%; }

/* まだQRを出せない窓口。QRと同じ大きさの枠に「準備中」と置く */
.ct-soon {
  display: grid;
  place-items: center;
  width: 152px;
  height: 152px;
  padding: 9px;
  border: 1.5px dashed rgba(255, 255, 255, .3);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  color: rgba(255, 255, 255, .5);
}

/* QR付きの窓口のあとに、単独のカードが続くときの間 */
.ct-units + .ct-ways { margin-top: 14px; }

@media (max-width: 980px) {
  .ct-units { grid-template-columns: 1fr; }
}
@media (max-width: 460px) {
  .ct-unit { grid-template-columns: minmax(0, 1fr); gap: 16px; }
  .ct-unit__side { justify-items: stretch; }
  .ct-unit .ct-qrbox { justify-self: center; }
  .ct-unit .line-btn,
  .ct-unit .mail-btn,
  .ct-unit .ct-btn-soon { max-width: none; }
  /* 1列では下に余白が無いので、受付の行は文章の続きに置く */
  .ct-unit__hours { position: static; margin-top: 16px; }
}
