@charset "UTF-8";
/* ============================================================
 * 店舗ページ共通
 * - 一覧 (.salon-archive)
 * - 県ランディング (.salon-pref)
 * - 詳細 (.salon-detail) ＋ ヒーロー / 店舗情報 / 誘導 / 料金表
 * ============================================================ */
/* base.css をグローバルに読み込むとヘッダー/フッターが崩れるため、
 * salon ページで必要な CSS 変数とリセットだけをここに閉じ込める。 */
:root {
  --color-primary-30: rgb(120.6, 0, 19.8);
  --color-primary-50: #c90021;
  --color-secondary-50: #a2750e;
  --color-tertiary-50: #1b5485;
  --color-tertiary-95: rgb(225.90625, 238.375, 249.09375);
  --color-gray-10: #222222;
  --color-gray-20: #333333;
  --color-gray-30: #464646;
  --color-gray-50: #606060;
  --color-gray-80: #a6a6a6;
}

/* salon コンテナ配下にだけ効くリセット
 * box-sizing 前提 ＋ Bootstrap/candc.css の要素スタイル（font-size/color/line-height/
 * リンク色など）が継承で漏れるのをここで打ち消す。 */
.salon-archive,
.salon-detail {
  color: var(--color-gray-10);
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  /* base.css 非読込のため、視覚的に隠す指定をスコープ内で補完 */
}
.salon-archive,
.salon-archive *,
.salon-archive *::before,
.salon-archive *::after,
.salon-detail,
.salon-detail *,
.salon-detail *::before,
.salon-detail *::after {
  box-sizing: border-box;
}
.salon-archive img,
.salon-detail img {
  max-width: 100%;
  height: auto;
}
.salon-archive p,
.salon-detail p {
  font-size: inherit;
  line-height: 1.8;
  margin: 0;
}
.salon-archive a,
.salon-detail a {
  color: inherit;
  text-decoration: none;
}
.salon-archive h1, .salon-archive h2, .salon-archive h3, .salon-archive h4, .salon-archive h5, .salon-archive h6,
.salon-detail h1,
.salon-detail h2,
.salon-detail h3,
.salon-detail h4,
.salon-detail h5,
.salon-detail h6 {
  color: inherit;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.salon-archive ul, .salon-archive ol,
.salon-detail ul,
.salon-detail ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
.salon-archive .screen-reader-text,
.salon-detail .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute !important;
}

/* -----------------------------------------------------------
 * 一覧 (/salon/)
 * ----------------------------------------------------------- */
.salon-archive .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  box-sizing: border-box;
}
.salon-archive .title {
  font-size: 46px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
}
.salon-archive .lead {
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
  margin: 0 0 48px;
}
.salon-archive .list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .salon-archive .inner {
    padding: 40px 16px 60px;
  }
  .salon-archive .title {
    font-size: 7.8125vw;
    margin-bottom: 16px;
  }
  .salon-archive .lead {
    font-size: 3.6458333333vw;
    margin-bottom: 28px;
  }
  .salon-archive .list {
    grid-template-columns: 1fr 1fr;
    gap: 20px 12px;
  }
}

/* -----------------------------------------------------------
 * エリアから探す（注目都道府県ボタン）
 * ----------------------------------------------------------- */
.salon-area {
  margin-top: 64px;
}
.salon-area .title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 20px;
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.salon-area .title::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round'%3E%3Ccircle cx='10.5' cy='10.5' r='7'/%3E%3Cline x1='16' y1='16' x2='21' y2='21'/%3E%3C/svg%3E") no-repeat center/contain;
  flex: none;
}
.salon-area .buttons {
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}
.salon-area .buttonLink {
  color: var(--color-gray-10);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border: 1px solid #bcbcbc;
  border-radius: 5px;
  padding: 18px 16px;
  transition: color 0.2s ease, border-color 0.2s ease;
  display: block;
  position: relative;
}
.salon-area .buttonLink::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #bcbcbc;
  border-right: 2px solid #bcbcbc;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .salon-area .buttonLink:hover {
    color: var(--color-primary-50);
    border-color: var(--color-primary-50);
  }
  .salon-area .buttonLink:hover::after {
    border-color: var(--color-primary-50);
  }
}
@media (max-width: 768px) {
  .salon-area {
    margin-top: 40px;
  }
  .salon-area .title {
    font-size: 4.6875vw;
    margin-bottom: 14px;
  }
  .salon-area .title::before {
    width: 16px;
    height: 16px;
  }
  .salon-area .buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .salon-area .buttonLink {
    font-size: 3.90625vw;
    padding: 14px 12px;
  }
  .salon-area .buttonLink::after {
    right: 10px;
  }
}

/* -----------------------------------------------------------
 * 対応エリア一覧（全国の都道府県）
 * ----------------------------------------------------------- */
.salon-region {
  border-top: 1px solid #d5d5d5;
  margin-top: 48px;
  padding-top: 40px;
}
.salon-region .grid {
  gap: 28px 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.salon-region .name {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}
.salon-region .prefs {
  color: #6c6c6c;
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: -0.01em;
  margin: 0;
}
.salon-region .prefs a {
  color: #6c6c6c;
  white-space: nowrap;
  text-decoration: none;
}
@media (any-hover: hover) {
  .salon-region .prefs a:hover {
    color: var(--color-primary-50);
    text-decoration: underline;
  }
}
.salon-region .sep {
  color: #cfcfcf;
  margin: 0 3px;
}
@media (max-width: 768px) {
  .salon-region {
    margin-top: 32px;
    padding-top: 28px;
  }
  .salon-region .grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .salon-region .name {
    font-size: 3.90625vw;
  }
  .salon-region .prefs {
    font-size: 3.3854166667vw;
  }
}

/* -----------------------------------------------------------
 * 店舗カード（一覧 / 県ランディング 共通）
 * ----------------------------------------------------------- */
.salon-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  /* ホバー/フォーカス時のみ赤い枠（outlineなので非ホバー時は何も表示されない＝白線が出ない）
     offset:0 で枠外側に描画。負offsetだと overflow:hidden の写真の下に隠れてカード下部だけ赤線になる */
}
@media (any-hover: hover) {
  .salon-card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    outline: 2px solid var(--color-primary-50);
    outline-offset: 0;
  }
}
.salon-card:focus-within {
  outline: 2px solid var(--color-primary-50);
  outline-offset: 0;
}
.salon-card .link {
  color: inherit;
  text-decoration: none;
  display: block;
}
.salon-card .link:focus {
  outline: none;
}
.salon-card .link:focus-visible {
  outline: none;
}
.salon-card .thumb {
  aspect-ratio: 235/140;
  overflow: hidden;
}
.salon-card .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.salon-card .body {
  padding: 14px 36px 14px 16px;
  display: flex;
  flex-direction: column;
  row-gap: 4px;
  position: relative;
}
.salon-card .body::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--color-primary-50);
  border-right: 3px solid var(--color-primary-50);
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  rotate: 45deg;
}
.salon-card .pref {
  color: var(--color-primary-50);
  font-size: 16px;
  font-weight: 700;
}
.salon-card .name {
  font-size: 22px;
  font-weight: 700;
}
.salon-card .address {
  color: var(--color-gray-50);
  font-size: 13px;
  line-height: 1.5;
  margin-top: 4px;
}
.salon-card .tel {
  color: var(--color-gray-20);
  font-size: 16px;
  font-weight: 700;
  margin-top: 6px;
}
@media (max-width: 768px) {
  .salon-card .body {
    padding: 10px 28px 12px 12px;
  }
  .salon-card .pref {
    font-size: 3.6458333333vw;
  }
  .salon-card .name {
    font-size: 4.6875vw;
  }
  .salon-card .address {
    font-size: 2.8645833333vw;
  }
}

/* -----------------------------------------------------------
 * 県ランディング (/salon/{pref}/)
 * ----------------------------------------------------------- */
.salon-pref .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px 100px;
  box-sizing: border-box;
}
.salon-pref .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
}
@media (max-width: 768px) {
  .salon-pref .inner {
    padding: 40px 16px 60px;
  }
  .salon-pref .title {
    font-size: 6.7708333333vw;
    margin-bottom: 28px;
  }
}

/* -----------------------------------------------------------
 * 都道府県ページ：県内／近隣店舗リスト
 * ----------------------------------------------------------- */
.salon-pref-shops .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}
.salon-pref-shops .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 32px;
}
.salon-pref-shops .list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}
.salon-pref-shops .salon-card .link {
  gap: 12px;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
}
.salon-pref-shops .salon-card .thumb {
  aspect-ratio: auto;
  height: 100%;
  position: relative;
}
.salon-pref-shops .salon-card .tag {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  background: var(--color-primary-50);
  border-radius: 4px;
  padding: 3px 12px;
  position: absolute;
  top: 10px;
  left: 10px;
}
.salon-pref-shops .salon-card .tag.online {
  background: var(--color-tertiary-50);
}
.salon-pref-shops .salon-card .body {
  padding: 20px 44px 20px 24px;
  justify-content: center;
}
.salon-pref-shops .salon-card .address {
  font-size: 14px;
}
@media (max-width: 768px) {
  .salon-pref-shops .inner {
    padding: 28px 16px;
  }
  .salon-pref-shops .title {
    font-size: 6.25vw;
    margin-bottom: 20px;
  }
  .salon-pref-shops .list {
    gap: 4.1666666667vw;
  }
  .salon-pref-shops .salon-card .link {
    grid-template-columns: 33.8541666667vw 1fr;
    gap: 2.0833333333vw;
  }
  .salon-pref-shops .salon-card .tag {
    font-size: 2.8645833333vw;
    padding: 0.5208333333vw 2.0833333333vw;
    top: 2.0833333333vw;
    left: 2.0833333333vw;
  }
  .salon-pref-shops .salon-card .body {
    padding: 3.125vw 7.2916666667vw 3.125vw 2.6041666667vw;
  }
  .salon-pref-shops .salon-card .address {
    font-size: 2.8645833333vw;
  }
}

/* -----------------------------------------------------------
 * 近隣店舗への誘導（ピンク帯）
 * ----------------------------------------------------------- */
.salon-guide .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  background: #f9eaec;
  padding: 40px 20px;
  box-sizing: border-box;
}
.salon-guide .lead {
  color: var(--color-gray-20);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  margin: 0 0 24px;
  /* PCは改行しない */
}
.salon-guide .lead .shop {
  color: var(--color-primary-50);
}
.salon-guide .lead br {
  display: none;
}
.salon-guide .actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.salon-guide .btn {
  color: var(--color-gray-20);
  font-size: 18px;
  font-weight: 700;
  background: #fff;
  border: 2px solid var(--color-gray-20);
  border-radius: 50px;
  padding: 9px 38px 9px 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.salon-guide .btn::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gray-20);
  border-right: 2px solid var(--color-gray-20);
  rotate: 45deg;
  position: absolute;
  right: 20px;
  top: 50%;
  translate: 0 -60%;
}
@media (max-width: 768px) {
  .salon-guide { /* スマホのみ改行 */ }
  .salon-guide .inner {
    padding: 7.2916666667vw 4.1666666667vw;
  }
  .salon-guide .lead {
    font-size: 4.1666666667vw;
    margin-bottom: 20px;
  }
  .salon-guide .lead br {
    display: inline;
  }
  .salon-guide .actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .salon-guide .btn {
    font-size: 3.90625vw;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 2.6041666667vw 7.8125vw;
  }
}

/* -----------------------------------------------------------
 * 詳細ページ共通ラッパ
 * ----------------------------------------------------------- */
.salon-detail {
  background: #fff;
}

/* -----------------------------------------------------------
 * ヒーロー
 * ----------------------------------------------------------- */
.salon-hero {
  /* FVスライドショー */
}
.salon-hero .inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "title visual" "body  visual";
  gap: 0 48px;
  align-items: start;
}
.salon-hero .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  margin: 0 0 24px;
  grid-area: title;
}
.salon-hero .title .brand {
  font-size: 26px;
  display: block;
}
.salon-hero .body {
  grid-area: body;
}
.salon-hero .visual {
  grid-area: visual;
  align-self: center;
}
.salon-hero .badge {
  color: var(--color-primary-50);
  font-size: 15px;
  font-weight: 700;
  background: #fff;
  border: 2px solid var(--color-primary-50);
  border-radius: 5px;
  padding: 4px 14px;
  margin: 0 0 24px;
  display: inline-block;
}
.salon-hero .badge.online {
  color: var(--color-tertiary-50);
  border-color: var(--color-tertiary-50);
}
.salon-hero .lead {
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 24px;
}
.salon-hero .telLabel {
  font-size: 15px;
  font-weight: 700;
  margin: 8px 0 4px;
}
.salon-hero .tel {
  color: var(--color-gray-10);
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.2;
  margin: 0 0 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.salon-hero .tel::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/shared/s_tel_r.svg) no-repeat center/contain;
  display: inline-block;
}
.salon-hero .telHours {
  color: var(--color-gray-30);
  font-size: 13px;
  margin: 0 0 4px;
}
.salon-hero .telHours:last-of-type {
  margin-bottom: 20px;
}
.salon-hero .reserve {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(to right, #ff4c69, var(--color-primary-50));
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 18px 32px;
  max-width: 360px;
  text-decoration: none;
  display: block;
  position: relative;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}
@media (any-hover: hover) {
  .salon-hero .reserve:hover {
    opacity: 0.82;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }
}
.salon-hero .reserve::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 22px;
  bottom: 0;
  rotate: 45deg;
}
.salon-hero .visual .img {
  width: 100%;
  aspect-ratio: 510/316;
  object-fit: cover;
  display: block;
}
.salon-hero .heroSlider {
  position: relative;
}
.salon-hero .heroSlider .frame {
  overflow: hidden;
  position: relative;
  aspect-ratio: 510/316;
}
.salon-hero .heroSlider .slide {
  opacity: 0;
  transition: opacity 0.6s ease;
  position: absolute;
  inset: 0;
}
.salon-hero .heroSlider .slide.is-active {
  opacity: 1;
}
.salon-hero .heroSlider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.salon-hero .heroSlider .dots {
  gap: 10px;
  margin-top: 12px;
  display: flex;
  justify-content: center;
}
.salon-hero .heroSlider .dots button {
  width: 10px;
  height: 10px;
  background: #fff;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
}
.salon-hero .heroSlider .dots button.is-active {
  background: var(--color-primary-50);
  border-color: var(--color-primary-50);
}
@media (max-width: 1000px) {
  .salon-hero .inner {
    padding: 32px 16px;
    grid-template-columns: 1fr;
    grid-template-areas: "title" "visual" "body"; /* スマホ：エリア名/店名 → 画像 → 本文（リード・予約） */
    gap: 16px;
  }
  .salon-hero .title {
    font-size: 8.3333333333vw;
    margin-bottom: 0;
  }
  .salon-hero .title .brand {
    font-size: 4.6875vw;
  }
  .salon-hero .badge {
    font-size: 3.3854166667vw;
    margin-bottom: 16px;
  }
  .salon-hero .tel {
    font-size: 7.2916666667vw;
  }
  .salon-hero .telLabel {
    font-size: 3.125vw;
  }
  .salon-hero .telHours {
    font-size: 2.8645833333vw;
    margin-bottom: 4px;
  }
  .salon-hero .telHours:last-of-type {
    margin-bottom: 14px;
  }
  .salon-hero .reserve {
    font-size: 4.4270833333vw;
    max-width: 100%;
    padding: 14px 24px;
  }
}

/* -----------------------------------------------------------
 * 店舗情報
 * ----------------------------------------------------------- */
.salon-info {
  background: #fff9f2;
  padding: 80px 0 60px;
}
.salon-info .inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-info .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
}
.salon-info .infoTable {
  margin: 0 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
}
.salon-info .infoCol {
  margin: 0;
}
.salon-info .infoRow {
  border-bottom: 1px solid var(--color-gray-80);
  padding: 20px 0;
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: start;
}
.salon-info .infoRow dt {
  font-size: 17px;
  font-weight: 700;
}
.salon-info .infoRow dd {
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.salon-info .mapLink {
  gap: 5px;
  color: #006df1 !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 62%, #dcdcdc 100%);
  border: 1px solid #006df1;
  border-radius: 8px;
  padding: 4px 14px;
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
}
@media (any-hover: hover) {
  .salon-info .mapLink:hover {
    background: linear-gradient(180deg, #f4f4f4 0%, #f4f4f4 62%, #d0d0d0 100%);
  }
}
.salon-info .mapLink span {
  color: #006df1; /* candc の * { color:#222 } が span に直接効くため明示 */
}
.salon-info .mapLink .ico {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  color: #006df1;
  fill: #006df1 !important;
}
.salon-info .mapLink .ico path {
  fill: #006df1 !important;
}
.salon-info .accessList {
  list-style: none;
  padding-left: 0;
}
.salon-info .accessList li {
  line-height: 1.7;
}
.salon-info .map {
  margin: 0 0 32px;
}
.salon-info .map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}
.salon-info .actions {
  gap: 16px;
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
}
.salon-info .print,
.salon-info .share {
  gap: 8px;
  color: var(--color-gray-20);
  font-size: 16px;
  font-weight: 700;
  background: #fff;
  border: 2px solid var(--color-gray-20);
  border-radius: 30px;
  padding: 9px 28px;
  text-decoration: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
@media (any-hover: hover) {
  .salon-info .print:hover,
  .salon-info .share:hover {
    opacity: 0.7;
  }
}
.salon-info .print .ico,
.salon-info .share .ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (max-width: 1000px) {
  .salon-info {
    padding: 48px 0 40px;
  }
  .salon-info .title {
    font-size: 6.7708333333vw;
    margin-bottom: 20px;
  }
  .salon-info .infoTable {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 12px;
  }
  .salon-info .infoRow {
    grid-template-columns: 76px 1fr;
    padding: 12px 0;
    gap: 10px;
  }
  .salon-info .infoRow dt {
    font-size: 3.6458333333vw;
  }
  .salon-info .infoRow dd {
    font-size: 3.6458333333vw;
  }
  .salon-info .map {
    margin-bottom: 20px;
  }
  .salon-info .map iframe {
    height: 200px;
  }
  .salon-info .print {
    display: none;
  }
  .salon-info .share {
    font-size: 4.1666666667vw;
  }
}

/* -----------------------------------------------------------
 * 誘導 CTA（オンライン → 対面）
 * ----------------------------------------------------------- */
.salon-redirect {
  background: #fff;
  padding: 60px 0;
}
.salon-redirect .inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-redirect .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 26px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px;
}
.salon-redirect .card {
  color: inherit;
  background: #fff9f2;
  border-radius: 8px;
  padding: 16px;
  text-decoration: none;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  align-items: center;
  position: relative;
}
@media (any-hover: hover) {
  .salon-redirect .card:hover {
    opacity: 0.85;
  }
}
.salon-redirect .card::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--color-primary-50);
  border-right: 2px solid var(--color-primary-50);
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 18px;
  bottom: 0;
  rotate: 45deg;
}
.salon-redirect .img {
  aspect-ratio: 4/3;
  width: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}
.salon-redirect .name {
  font-size: 20px;
  font-weight: 700;
  display: block;
}
.salon-redirect .address {
  color: var(--color-gray-50);
  font-size: 13px;
  line-height: 1.6;
  margin-top: 6px;
  display: block;
}
@media (max-width: 768px) {
  .salon-redirect {
    padding: 32px 0;
  }
  .salon-redirect .title {
    font-size: 5.2083333333vw;
  }
  .salon-redirect .card {
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 12px;
  }
  .salon-redirect .name {
    font-size: 3.90625vw;
  }
  .salon-redirect .address {
    font-size: 3.125vw;
  }
}

/* -----------------------------------------------------------
 * 料金表（共通ベース）
 * ----------------------------------------------------------- */
.salon-price {
  background: #fff;
  padding: 70px 0 0;
  /* 見出し */
  /* br 表示切替ユーティリティ */
  /* テーブル */
  /* プラン名行 */
  /* データ行 */
  /* 詳細ボタン */
  /* サービス・サポート直下の注釈 */
  /* サポート */
  /* 注釈ボックス */
}
.salon-price .inner {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-price h2 {
  color: var(--color-gray-20) !important;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 40px;
}
.salon-price .red {
  color: #bb2121;
}
.salon-price .yellow {
  color: #b8902d;
}
.salon-price .forspinline {
  display: none;
}
.salon-price .priceTable.pc {
  display: inline-table;
}
.salon-price .priceTable.sp {
  display: none;
}
.salon-price .priceTable {
  font-size: 22px;
  line-height: 1.4;
  width: 100%;
  margin: 0 0 20px;
}
.salon-price .priceTable tr {
  border-bottom: 1px solid #c8c8c8;
}
.salon-price .priceTable tr td {
  text-align: center;
  width: 14.2857142857%;
  padding: 15px 0;
}
.salon-price .priceTable tr:first-child td {
  line-height: 1.2;
  border-right: 1px solid #fff;
  border-radius: 15px 15px 0 0;
  padding: 15px 0;
}
.salon-price .priceTable tr:first-child td,
.salon-price .priceTable tr:first-child td span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}
.salon-price .priceTable tr:first-child td span {
  font-size: 14px;
}
.salon-price .priceTable tr:first-child td:nth-child(2) {
  background: #b99c2d;
  position: relative;
}
.salon-price .priceTable.west tr:first-child td:nth-child(2) {
  background: #00659c;
}
.salon-price .priceTable tr:first-child td:nth-child(2) .catch {
  position: absolute;
  color: #ba3a27;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  background: #fffbd6;
  border-radius: 20px;
  border: 4px solid #ba3a27;
  width: 165px;
  padding: 5px;
  top: -70px;
  left: 50%;
  transform: translateX(-50%);
}
.salon-price .priceTable tr:first-child td:nth-child(2) .catch::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  border: 10px solid transparent;
  border-left: 20px solid #fffbd6;
  z-index: 1;
}
.salon-price .priceTable tr:first-child td:nth-child(2) .catch::after {
  content: "";
  position: absolute;
  top: 62px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  border: 10px solid transparent;
  border-left: 20px solid #ba3a27;
}
.salon-price .priceTable tr:first-child td:nth-child(3) {
  background: #00659c;
}
.salon-price .priceTable.west tr:first-child td:nth-child(3) {
  background: #b99c2d;
}
.salon-price .priceTable tr:first-child td:nth-child(4),
.salon-price .priceTable tr:first-child td:nth-child(5),
.salon-price .priceTable tr:first-child td:nth-child(6) {
  background: #ba3a27;
}
.salon-price .priceTable tr:first-child td:nth-child(7) {
  background: #267059;
}
.salon-price .priceTable tr:not(:first-child) td {
  border-left: 1px solid #c8c8c8;
  border-right: 1px solid #c8c8c8;
}
.salon-price .priceTable tr:not(:first-child) td:first-child {
  background: #fff9f2;
}
.salon-price .priceTable tr:not(:first-child) td span {
  font-size: 12px;
  vertical-align: super;
}
.salon-price .priceTable tr td .plus {
  color: #ba3a27;
  font-size: 16px;
  background: #fff0de;
  border-radius: 10px;
  width: 130px;
  margin: 20px auto 0;
  padding: 10px 0;
  display: block !important;
}
.salon-price .priceTable tr:nth-child(4) td .plus {
  margin: 0 0 0 20px;
  display: inline-block !important;
}
.salon-price .priceTable tr.redBorder {
  border: solid 2px #c1272d;
}
.salon-price .priceTable.west .small {
  font-size: 15px;
}
.salon-price .priceTable.west .lh-1 {
  line-height: 1;
}
.salon-price .priceTable .detailBtn {
  background: #267059;
  border-radius: 10px;
  box-shadow: 0 5px 0 0 rgb(19, 82, 62);
  width: 140px;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
  transform: translateY(-5px);
}
.salon-price .priceTable .detailBtn span {
  color: #fff;
  font-size: 18px !important;
  position: relative;
  margin: 0 15px 0 0;
}
.salon-price .priceTable .detailBtn span::before {
  position: absolute;
  content: "";
  bottom: 3px;
  right: -23px;
  border: 8px solid transparent;
  border-left: 9px solid #fff;
}
@media (hover: hover) and (pointer: fine) {
  .salon-price .priceTable .detailBtn:hover {
    box-shadow: none;
    transform: translateY(0);
    transition-duration: 0.1s;
  }
}
.salon-price .note {
  font-size: 14px;
  text-align: right;
  margin: 0 0 60px;
}
.salon-price .serviceNote {
  font-size: 14px;
  text-align: center;
  margin: 16px 0 0;
}
.salon-price .support {
  background: #fff;
  margin: 0 0 80px;
  padding: 40px 0;
}
.salon-price .support .red {
  color: var(--color-gray-20) !important;
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 48px;
}
.salon-price .support ul {
  gap: 24px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.salon-price .support ul li {
  width: 150px;
  text-align: center;
}
.salon-price .support ul li figure {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 14px;
}
.salon-price .support ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.salon-price .support ul li p {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.salon-price .support ul li p span {
  font-size: 10px;
  vertical-align: super;
}
.salon-price .columnBox {
  border: solid 4px #d5d5d5;
  padding: 50px 60px;
  margin: 0 0 80px;
}
.salon-price .columnBox .fontBold {
  font-weight: bold;
}
.salon-price .columnBox .indent {
  text-indent: -2.5em;
  padding-left: 2.5em;
}
.salon-price .columnBox h5 {
  font-size: 18px;
  font-weight: bold;
  border-bottom: dashed 1px #d5d5d5;
  margin: 30px 0 15px;
  padding: 0 0 5px;
}
.salon-price .columnBox p, .salon-price .columnBox li {
  font-size: 14px;
  margin: 0;
}
.salon-price .columnBox .set {
  font-size: 16px;
}
.salon-price .columnBox ul.set {
  font-size: 16px;
}
.salon-price .columnBox ul.set li {
  list-style: disc;
  text-indent: -1em;
  padding-left: 1em;
  margin: 0 0 3px;
}
@media (max-width: 768px) {
  .salon-price {
    padding: 10vw 0 0;
  }
  .salon-price h2 {
    font-size: 6.6vw;
    margin: 0 0 8vw;
  }
  .salon-price .forspinline {
    display: inline;
  }
  .salon-price .forpcinline {
    display: none;
  }
  .salon-price .priceTable.pc {
    display: none;
  }
  .salon-price .priceTable.sp {
    display: block;
    table-layout: fixed;
  }
  .salon-price .priceTable {
    font-size: 3.7vw;
    margin: 0 0 4vw;
  }
  .salon-price .priceTable tr:first-child td {
    padding: 2.5vw 0;
    font-size: 3.5vw;
  }
  .salon-price .priceTable tr:first-child td span {
    font-size: 3vw;
  }
  .salon-price .priceTable tr:first-child td:nth-child(5) {
    background: #267059;
  }
  .salon-price .priceTable tr:not(:first-child) td:first-child {
    font-size: 3vw;
  }
  .salon-price .priceTable tr:not(:first-child) td.small {
    font-size: 2.6vw;
  }
  .salon-price .priceTable tr:not(:first-child) td:first-child span {
    font-size: 2vw;
  }
  .salon-price .priceTable tr:first-child td:nth-child(2) .catch {
    font-size: 3vw;
    width: 33vw;
    padding: 1.5vw 0;
    top: -15.5vw;
    border: 0.8vw solid #ba3a27;
    border-radius: 15px;
  }
  .salon-price .priceTable tr:first-child td:nth-child(2) .catch::before {
    top: 11.5vw;
    border: 2vw solid transparent;
    border-left: 4.5vw solid #fffbd6;
  }
  .salon-price .priceTable tr:first-child td:nth-child(2) .catch::after {
    top: 12.6vw;
    border: 2.2vw solid transparent;
    border-left: 4.5vw solid #ba3a27;
  }
  .salon-price .priceTable tr td {
    padding: 3vw 0;
  }
  .salon-price .priceTable td.left {
    text-align: left;
  }
  .salon-price .priceTable tr:nth-child(3) td.left span.num,
  .salon-price .priceTable tr:nth-child(5) td.left span.num {
    padding: 0 0 1rem 1rem;
  }
  .salon-price .priceTable tr:nth-child(5) td:last-child {
    font-size: 3.7vw;
  }
  .salon-price .priceTable tr td .plus {
    font-size: 2.5vw;
    width: 16vw;
    margin: 2vw auto 0;
    padding: 2vw 0;
  }
  .salon-price .priceTable tr td .plus .big {
    color: #ba3a27;
    font-size: 3vw;
  }
  .salon-price .priceTable tr:nth-child(4) td .plus {
    margin: 0 0 0 4vw;
    display: inline-block !important;
  }
  .salon-price .priceTable .detailBtn {
    font-size: 3.5vw;
    font-weight: bold;
    width: 17vw;
    padding: 6vw 0;
    transform: none;
  }
  .salon-price .priceTable .detailBtn span {
    font-size: 3.5vw !important;
  }
  .salon-price .priceTable .detailBtn span::before {
    bottom: 0.5vw;
    right: -5.5vw;
    border: 2vw solid transparent;
    border-left: 2.1vw solid #fff;
  }
  .salon-price .priceTable.west .small {
    font-size: 2.7vw;
  }
  .salon-price .note {
    font-size: 2.7vw;
    text-align: left;
  }
  .salon-price .support {
    margin: 0 0 12vw;
    padding: 10vw 0;
  }
  .salon-price .support .red {
    font-size: 6vw;
    margin: 0 0 8vw;
  }
  .salon-price .support ul {
    flex-wrap: wrap;
    row-gap: 6vw;
    column-gap: 4vw;
    justify-content: center;
  }
  .salon-price .support ul li {
    width: 26vw;
  }
  .salon-price .support ul li figure {
    width: 24vw;
    height: 24vw;
    margin: 0 auto 3vw;
  }
  .salon-price .support ul li p {
    font-size: 3.6vw;
  }
  .salon-price .support ul li p span {
    font-size: 2vw;
  }
  .salon-price .columnBox {
    border: solid 2px #d5d5d5;
    padding: 5vw;
    margin: 0 0 12vw;
  }
  .salon-price .columnBox h5 {
    font-size: 14px;
    margin: 5vw 0 15px;
    text-indent: -1em;
    padding-left: 1em;
  }
  .salon-price .columnBox p, .salon-price .columnBox li {
    font-size: 12px;
  }
  .salon-price .columnBox .set {
    font-size: 12px;
  }
  .salon-price .columnBox ul.set {
    font-size: 12px;
  }
}

/* -----------------------------------------------------------
 * 画像プレースホルダー（本番画像差し替え前提）
 * ----------------------------------------------------------- */
.salon-ph {
  background: #e6e6e6 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b0b0b0' stroke-width='1.5'%3E%3Crect x='3' y='4' width='18' height='16' rx='2'/%3E%3Ccircle cx='9' cy='10' r='2'/%3E%3Cpath d='m4 18 5-5 4 4 3-3 4 4'/%3E%3C/svg%3E") no-repeat center/30px;
  display: block;
}

/* -----------------------------------------------------------
 * 対面誘導ブロック（オンライン×誘導）
 * ----------------------------------------------------------- */
/* -----------------------------------------------------------
 * 茜会が選ばれる理由
 * ----------------------------------------------------------- */
.salon-reasons {
  background: #fff;
  padding: 80px 0;
}
.salon-reasons .inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-reasons .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.salon-reasons .visual {
  margin: 0 0 40px;
  position: relative;
}
.salon-reasons .img {
  aspect-ratio: 1000/300;
  width: 100%;
  object-fit: cover;
  display: block;
}
.salon-reasons .badge65 {
  width: 200px;
  height: auto;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
  position: absolute;
  right: 18%;
  top: 54%;
  translate: 0 -50%;
}
.salon-reasons .cols {
  gap: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.salon-reasons .col {
  padding: 0 32px;
}
.salon-reasons .col:not(:last-child) {
  border-right: 1px solid var(--color-gray-80);
}
.salon-reasons .col:first-child {
  padding-left: 0;
}
.salon-reasons .col:last-child {
  padding-right: 0;
}
.salon-reasons .name {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin: 0 0 16px;
}
.salon-reasons .col p {
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  margin: 0;
}
@media (max-width: 768px) {
  .salon-reasons {
    padding: 48px 0;
    /* 左右の余白を削除して全幅に */
    /* SPは1・2つめは1行（改行なし）、3つめは「様々な「結婚」の／かたちを…」で改行 */
  }
  .salon-reasons .title {
    font-size: 6.7708333333vw;
  }
  .salon-reasons .visual {
    margin: 0 -20px 7.2916666667vw;
  }
  .salon-reasons .img {
    aspect-ratio: 393/225;
    border-radius: 0;
  }
  .salon-reasons .col:nth-child(1) .name br,
  .salon-reasons .col:nth-child(2) .name br {
    display: none;
  }
  .salon-reasons .badge65 {
    width: 32vw;
    right: 4%;
  }
  .salon-reasons .cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .salon-reasons .col {
    padding: 7.2916666667vw 0;
  }
  .salon-reasons .col:first-child {
    padding-top: 0;
  }
  .salon-reasons .col:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid #d1d1d1; /* 縦積み時の区切り線（横線のみ・薄め） */
  }
  .salon-reasons .name {
    font-size: 5.2083333333vw;
    text-align: center;
    margin-bottom: 4.1666666667vw;
  }
  .salon-reasons .col p {
    font-size: 4.1666666667vw;
  }
}

/* -----------------------------------------------------------
 * CTA バンド
 * ----------------------------------------------------------- */
.salon-cta-band {
  background: #fdeef0;
  padding: 40px 0;
}
.salon-cta-band .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.salon-cta-band .item {
  text-align: center;
}
.salon-cta-band .label {
  color: var(--color-gray-20);
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 12px;
}
.salon-cta-band .btn {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  width: 320px;
  max-width: 100%;
  height: 70px;
  border: 3px solid #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  margin: 0 auto;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.salon-cta-band .btn::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  margin: auto 0;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  rotate: 45deg;
}
@media (any-hover: hover) {
  .salon-cta-band .btn:hover {
    opacity: 0.82;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
  }
}
.salon-cta-band .btn.primary {
  background: linear-gradient(to right, #ff4c69, var(--color-primary-50));
}
.salon-cta-band .btn.secondary {
  background: linear-gradient(to right, #ffad66, #ff8400);
}
@media (max-width: 768px) {
  .salon-cta-band {
    padding: 28px 0;
    /* px指定だと縮小時にはみ出すため vw 指定に */
  }
  .salon-cta-band .inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .salon-cta-band .btn {
    width: 83.3333333333vw;
    max-width: 100%;
    height: 18.2291666667vw;
    font-size: 5.2083333333vw;
  }
  .salon-cta-band .btn::after {
    right: 5.2083333333vw;
  }
}

/* -----------------------------------------------------------
 * サービス・サポート
 * ----------------------------------------------------------- */
/* -----------------------------------------------------------
 * 入会手続きの流れ
 * ----------------------------------------------------------- */
.salon-flow {
  background: #fff9f2;
  padding: 80px 0;
}
.salon-flow .inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-flow .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.salon-flow .steps {
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.salon-flow .step {
  text-align: center;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  padding: 24px 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.salon-flow .step:not(:last-child)::after {
  content: "";
  width: 14px;
  height: 14px;
  border-top: 4px solid var(--color-tertiary-50);
  border-right: 4px solid var(--color-tertiary-50);
  margin: auto 0;
  rotate: 45deg;
  position: absolute;
  top: 0;
  right: -23px;
  bottom: 0;
}
.salon-flow .step.is-last:not(:last-child)::after {
  border-color: var(--color-primary-50);
}
.salon-flow .num {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  color: var(--color-tertiary-50);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  width: 100%;
  border-bottom: 1px solid var(--color-tertiary-50);
  padding: 0 0 12px;
  margin: 0 0 14px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}
.salon-flow .num small {
  color: var(--color-tertiary-50);
  font-size: 18px;
  font-weight: 700;
}
.salon-flow .step.is-last .num {
  color: var(--color-primary-50);
  border-bottom-color: var(--color-primary-50);
}
.salon-flow .step.is-last .num small {
  color: var(--color-primary-50);
}
.salon-flow .label {
  color: var(--color-gray-20);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: block;
}
@media (max-width: 768px) {
  .salon-flow {
    padding: 48px 0;
    /* 最終ステップ直前（STEP3→4）の矢印は赤 */
  }
  .salon-flow .title {
    font-size: 6.7708333333vw;
    margin-bottom: 6.25vw;
  }
  .salon-flow .steps {
    grid-template-columns: 1fr;
    gap: 4.1666666667vw;
  }
  .salon-flow .step {
    flex-direction: row;
    align-items: stretch;
    justify-content: flex-start;
    gap: 5.2083333333vw;
    padding: 3.6458333333vw 6.25vw;
    /* カード間の下向き矢印 */
  }
  .salon-flow .step:not(:last-child)::after {
    width: 3.6458333333vw;
    height: 3.6458333333vw;
    border-top: none;
    border-left: none;
    border-right: 2px solid var(--color-tertiary-50);
    border-bottom: 2px solid var(--color-tertiary-50);
    rotate: 45deg;
    top: auto;
    right: auto;
    bottom: -3.125vw;
    left: 50%;
    translate: -50% 0;
  }
  .salon-flow .step.is-last::after {
    display: none;
  }
  .salon-flow .step:nth-last-child(2)::after {
    border-color: var(--color-primary-50);
  }
  .salon-flow .num {
    width: 19.7916666667vw;
    flex-direction: column;
    justify-content: center;
    gap: 0.5208333333vw;
    border-bottom: none;
    border-right: 1px solid currentColor;
    padding: 0 4.1666666667vw 0 0;
    margin: 0;
    font-size: 6.7708333333vw;
  }
  .salon-flow .num small {
    font-size: 4.1666666667vw;
  }
  .salon-flow .label {
    flex: 1;
    text-align: left;
    align-self: center;
    font-size: 4.6875vw;
  }
}

/* -----------------------------------------------------------
 * メディア情報
 * ----------------------------------------------------------- */
.salon-media {
  background: #fff;
  padding: 80px 0;
}
.salon-media .inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.salon-media .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 40px;
}
.salon-media .grid {
  gap: 56px;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
}
.salon-media .visual img {
  width: 100%;
  height: auto;
  display: block;
}
.salon-media .list {
  margin: 0;
  padding: 0;
  list-style: none;
  column-count: 1;
  column-gap: 0;
  /* カテゴリラベル（メディア掲載・テレビ等）はデザイン上非表示 */
}
.salon-media .list li {
  break-inside: avoid;
  border-bottom: 1px solid var(--color-gray-80);
  padding: 12px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.salon-media .list li span {
  color: var(--color-gray-20);
  font-size: 18px;
  white-space: nowrap;
  flex: none;
}
.salon-media .list li span i {
  display: none;
}
.salon-media .list li a {
  color: var(--color-gray-20);
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
}
@media (any-hover: hover) {
  .salon-media .list li a:hover {
    text-decoration: underline;
  }
}
.salon-media .more {
  text-align: right;
  margin-top: 20px;
}
.salon-media .more a {
  color: var(--color-gray-20);
  font-size: 14px;
  text-decoration: none;
  padding-right: 18px;
  position: relative;
}
.salon-media .more a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1.5px solid var(--color-gray-20);
  border-right: 1.5px solid var(--color-gray-20);
  margin: auto 0;
  rotate: 45deg;
  position: absolute;
  top: 0;
  right: 4px;
  bottom: 0;
}
@media (any-hover: hover) {
  .salon-media .more a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 768px) {
  .salon-media {
    padding: 48px 0;
  }
  .salon-media .title {
    font-size: 6.25vw;
    margin-bottom: 8vw;
  }
  .salon-media .grid {
    grid-template-columns: 1fr;
    gap: 8vw;
  }
  .salon-media .list li {
    gap: 12px;
    padding: 10px 0;
  }
  .salon-media .list li span {
    font-size: 3.6458333333vw;
  }
  .salon-media .list li a {
    font-size: 3.6458333333vw;
  }
}

/* -----------------------------------------------------------
 * LINE
 * ----------------------------------------------------------- */
.salon-line {
  background: #fff;
  padding: 60px 0 80px;
}
.salon-line .inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  text-align: center;
}
.salon-line .title {
  font-family: "Noto Serif JP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 32px;
}
.salon-line .bnr {
  margin: 0 auto;
  display: block;
}
.salon-line .bnr img {
  width: 100%;
  max-width: 540px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .salon-line {
    padding: 40px 0 56px;
  }
  .salon-line .title {
    font-size: 5.2083333333vw;
    margin-bottom: 6vw;
  }
  .salon-line .bnr img {
    max-width: 100%;
  }
}
