﻿@import url("reset.css");

.dopc {
  display: block;
}
.dosp {
  display: none;
}

@media (max-width: 767px) {
  .dosp {
    display: block !important;
  }
  .dopc {
    display: none !important;
  }
}

:root {
  /* === カラーパレット === */
  /* プライマリ — ダスティローズ（Pantone Mauvewood風） */
  --color-primary: #a2566a;
  --color-primary-hover: #8b4759;
  --color-primary-light: #f0e2e6;
  --color-primary-pale: #f8f3f5;

  /* 価格帯カラー — 彩度を抑えたトーナル配色 */
  --color-price-1: #c08090;   /* 格安 — ダスティピンク */
  --color-price-2: #6e7fa8;   /* 大衆 — スレートブルー */
  --color-price-3: #6a9e90;   /* 中級 — セージグリーン */
  --color-price-4: #8e7198;   /* 高級 — プラムグレー */
  --color-price-5: #b08d57;   /* ヘルス — アンティークゴールド */

  /* ブランドアクセント — テラコッタ */
  --color-brand: #c27a45;
  --color-brand-hover: #a96838;

  /* セマンティックカラー — トーンを揃えた自然な色味 */
  --color-success: #5e8f6b;
  --color-success-hover: #4f7a5b;
  --color-info: #527d96;
  --color-info-hover: #456a80;
  --color-warning: #b8884a;
  --color-caution: #b5a04c;
  --color-genre: #4d8d9a;
  --color-slate: #6f7f87;

  /* テキスト — ウォームグレー */
  --color-text: #2b2b2b;
  --color-text-secondary: #4a4a4a;
  --color-text-muted: #6b6b6b;
  --color-text-light: #979797;
  --color-text-placeholder: #a8a8a8;
  --color-text-disabled: #c2c2c2;

  /* 背景 — 微かに温かみのあるニュートラル */
  --color-bg: #fff;
  --color-bg-section: #f5f4f2;
  --color-bg-subtle: #efeee9;
  --color-bg-muted: #e6e4df;
  --color-bg-dark: #2b2b2b;

  /* ボーダー — ウォームグレー */
  --color-border: #e6e3df;
  --color-border-medium: #d6d2cc;
  --color-border-strong: #c0bbb4;

  /* === シャドウ — 純黒でなく暖色寄り === */
  --shadow-sm: 0 1px 4px rgba(60, 50, 40, 0.06);
  --shadow-md: 0 3px 12px rgba(60, 50, 40, 0.08);
  --shadow-lg: 0 8px 24px rgba(60, 50, 40, 0.12);
  --shadow-header: 0 1px 8px rgba(60, 50, 40, 0.07);

  /* === 角丸 === */
  --radius-xs: 2px;
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 7px;
  --radius-xl: 10px;
  --radius-pill: 100px;
  --radius-circle: 50%;

  /* === トランジション === */
  --transition-fast: 0.15s ease;
  --transition: 0.25s ease;
  --transition-slow: 0.4s ease;

  /* === レイアウト === */
  --max-width: 1200px;
  --header-height: 80px;
  --subnav-height: 36px;
}
/* 基本設定 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: #fff;
  padding-top: 116px; /* ヘッダー固定分の余白（80px + サブナビ36px） */
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }
}

/* 基本設定 */
html {
  font-size: 62.5%;
  scroll-padding-top: 136px; /* ヘッダー高さ + サブナビ + 余白 */
  scroll-behavior: smooth; /* スムーズスクロール */
}

/* 文字サイズ切替 */
html.font-small { font-size: 56.25%; }  /* 1rem = 9px */
html.font-large { font-size: 75%; }     /* 1rem = 12px */

/*====================================
  header.php
====================================*/
/* ヘッダー全体 */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: var(--shadow-header);
  z-index: 50;
}

/* ヘッダー本体 */
.header__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 80px;
}

/* ロゴ部分 */
.header__sitename {
  margin: 0;
}

.header__logo-link {
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.header__logo-img {
  display: block;
  height: auto;
}

/* ナビゲーション全体 */
.header__nav-wrapper {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  height: 100%;
  align-items: center;
}

.header__nav {
  position: relative;
  height: 100%;
}

/* ナビゲーションリスト */
.header__nav-list {
  height: 100%;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}

/* ナビゲーションアイテム */
.header__nav-item {
  position: relative;
  width: 100px;
  border-left: 1px solid var(--color-border-strong);
}

.header__nav-item:last-child {
  border-right: 1px solid var(--color-border-strong);
}

/* ナビゲーションリンク */
.header__nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 5px;
  text-decoration: none;
  color: var(--color-text);
  transition: background-color 0.15s ease;
  min-height: 60px;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}

.header__nav-link:hover {
  background-color: var(--color-bg-subtle);
}

/* ナビゲーションタイトル */
.header__nav-title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* ナビゲーションサブタイトル */
.header__nav-subtitle {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-top: 2px;
  text-align: center;
}

/* ナビゲーションアイコン */
.header__nav-icon {
  font-size: 1.8rem;
  margin-bottom: 5px;
  color: var(--color-text-muted);
}

/* ハンバーガーメニュー */
.header__hamburger-menu {
  display: none;
  position: relative;
}

/* ハンバーガーチェックボックス（非表示） */
.header__hamburger-checkbox {
  display: none;
}

/* ハンバーガーボタン */
.header__hamburger-open {
  display: block;
  position: relative;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 51;
}

/* ハンバーガー3本線 */
.header__hamburger-line,
.header__hamburger-line::before,
.header__hamburger-line::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: var(--radius-xs);
  background-color: var(--color-bg-dark);
  position: absolute;
  transition: transform 0.25s ease;
}

.header__hamburger-line {
  top: 50%;
  transform: translateY(-50%);
}

.header__hamburger-line::before {
  top: -8px;
}

.header__hamburger-line::after {
  top: 8px;
}

/* ハンバーガーメニューが開いた時のアニメーション */
.header__hamburger-checkbox:checked
  + .header__hamburger-open
  .header__hamburger-line {
  background-color: transparent;
}

.header__hamburger-checkbox:checked
  + .header__hamburger-open
  .header__hamburger-line::before {
  transform: rotate(45deg);
  top: 0;
}

.header__hamburger-checkbox:checked
  + .header__hamburger-open
  .header__hamburger-line::after {
  transform: rotate(-45deg);
  top: 0;
}

/* 背景オーバーレイ */
.header__hamburger-close {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 999;
}

.header__hamburger-checkbox:checked ~ .header__hamburger-close {
  opacity: 1;
  visibility: visible;
}

/* ドロワーメニュー */
.header__drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100%;
  background-color: #fff;
  transform: translateX(-100%);
  transition: transform 0.25s ease;
  z-index: 1000;
  overflow-y: auto;
}

.header__hamburger-checkbox:checked ~ .header__drawer-menu {
  transform: translateX(0);
}

/* ドロワーリスト */
.header__drawer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ドロワーアイテム */
.header__drawer-item {
  border-bottom: 1px solid var(--color-border);
}

/* ドロワーリンク */
.header__drawer-link {
  display: block;
  padding: 15px 20px;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.header__drawer-link:hover {
  background-color: var(--color-bg-subtle);
}

/* トップへ戻るリンク */
.header__drawer-item--gotop .header__drawer-link {
  background-color: var(--color-bg-section);
  font-weight: 700;
}

/* サブヘッダー */
.header__drawer-item--subhead {
  background-color: var(--color-bg-dark);
  color: #fff;
  padding: 10px 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .header__nav {
    height: 0px;
  }
  .header__nav-wrapper {
    display: block;
    flex: none;
    height: auto;
    position: absolute;
    right: 20px;
    top: 20px;
  }
  /* スマートフォン表示用アイテムを表示 */
  .header__nav-item--sp {
    display: block;
  }

  /* PC表示用アイテムを非表示 */
  .header__nav-item--pc {
    display: none;
  }

  /* ハンバーガーメニューを表示 */
  .header__hamburger-menu {
    display: block;
  }

  /* ナビゲーションリストの調整 */
  .header__nav-list {
    gap: 10px;
  }

  .header__nav-link {
    padding: 8px 10px;
    min-height: 50px;
  }

  .header__nav-title {
    font-size: 1.4rem;
  }
}

@media (min-width: 769px) {
  /* PC表示用アイテムを表示 */
  .header__nav-item--pc {
    display: block !important;
  }

  /* スマートフォン表示用アイテムを非表示 */
  .header__nav-item--sp {
    display: none;
  }
}

/* サブナビ */
.header__subnav {
  position: relative;
  background-color: var(--color-bg-section);
  border-top: 1px solid var(--color-border);
}

.header__subnav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin: 0 auto;
}

.header__subnav-item {
  position: relative;
}

.header__subnav-item + .header__subnav-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background-color: var(--color-border-strong);
}

.header__subnav-link {
  display: block;
  padding: 8px 20px;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
  cursor: pointer;
}

.header__subnav-link:hover {
  color: var(--color-primary);
}

@media (max-width: 768px) {
  .header__subnav-link {
    padding: 8px 14px;
    font-size: 1.4rem;
  }
}

/* 文字サイズ切替ボタン（PC・サブナビ内） */
.header__font-size {
  display: flex;
  align-items: center;
  gap: 4px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.header__font-size-label {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-right: 4px;
}
.header__font-size-btn {
  background: none;
  border: 1px solid var(--color-border-medium);
  color: var(--color-text-muted);
  padding: 1px 8px;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: var(--radius-xs);
  transition: all var(--transition-fast);
  line-height: 1.6;
}
.header__font-size-btn:hover {
  border-color: var(--color-primary);
  /* color: var(--color-primary); */
}
.header__font-size-btn--active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}

/* 文字サイズ切替ボタン（SP・ドロワー内） */
.header__drawer-item--font-size {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  border-top: 1px solid var(--color-border);
}
.header__font-size-sp {
  display: flex;
  gap: 6px;
}
.header__font-size-sp .header__font-size-btn {
  padding: 4px 14px;
  font-size: 1.4rem;
}

/*====================================
  footer.php
====================================*/
/* フッター全体 */
.footer {
  background-color: var(--color-bg-dark);
  color: #fff;
  margin-top: auto;
}

/* フッターコンテナ */
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フッターメインコンテンツ */
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 0;
  border-bottom: 1px solid var(--color-text-secondary);
}

/* 左側ブランド部分 */
.footer__brand {
  flex: 1;
  max-width: 400px;
}

/* フッターロゴ画像ラッパー */
.footer__logo-wrapper {
  margin-bottom: 15px;
}

/* フッターロゴ画像 */
.footer__logo-img {
  width: auto;
  height: 60px;
  object-fit: contain;
}

.footer__description {
  margin-top: 16px;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* フッターロゴ */
.footer__logo {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
  line-height: 1.3;
}

/* フッター連絡先 */
.footer__contact {
  margin-top: 15px;
}

/* フッター電話番号 */
.footer__tel {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.6rem;
  transition: color 0.15s ease;
  gap: 8px;
}

.footer__tel:hover {
  color: var(--color-text-disabled);
}

.footer__tel i {
  font-size: 1.4rem;
}

/* 右側ナビゲーション部分 */
.footer__nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
}

/* ナビゲーショングループ */
.footer__nav-group {
  min-width: 200px;
}

/* ナビゲーションタイトル */
.footer__nav-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  letter-spacing: 0.06em;
}

/* ナビゲーションリスト */
.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ナビゲーションアイテム */
.footer__nav-item {
  margin-bottom: 12px;
}

.footer__nav-item:last-child {
  margin-bottom: 0;
}

/* ナビゲーションリンク */
.footer__nav-link {
  color: var(--color-text-disabled);
  text-decoration: none;
  font-size: 1.4rem;
  transition: color 0.15s ease;
  display: block;
  padding: 2px 0;
}

.footer__nav-link:hover {
  color: #fff;
}

/* コピーライト部分 */
.footer__copyright {
  text-align: center;
  padding: 20px 0;
}

/* コピーライトテキスト */
.footer__copyright-text {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* フッターコンテンツをモバイル用に調整 */
  .footer__content {
    padding: 30px 0;
    display: block;
  }

  /* ブランド部分をモバイル用に調整 */
  .footer__brand {
    margin: 0 auto 30px;
    text-align: center;
    width: 100%;
  }

  .footer__logo-wrapper,
  .footer__contact {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .footer__tel {
    justify-self: center;
  }

  .footer__logo-img {
    height: 50px;
  }

  /* フッターロゴサイズ調整 */
  .footer__logo {
    font-size: 2.0rem;
    margin-bottom: 15px;
  }

  /* ナビゲーション部分をモバイル用に調整 */
  .footer__nav {
    flex-direction: column;
    gap: 30px;
    width: 100%;
    justify-content: flex-start;
  }

  /* ナビゲーショングループをモバイル用に調整 */
  .footer__nav-group {
    min-width: auto;
    width: 100%;
  }

  /* ナビゲーションタイトルサイズ調整 */
  .footer__nav-title {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }

  /* ナビゲーションアイテム間隔調整 */
  .footer__nav-item {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  /* さらに小さい画面用の調整 */
  .footer__container {
    padding: 0 15px;
  }

  .footer__content {
    padding: 25px 0;
  }

  .footer__logo {
    font-size: 1.8rem;
  }

  .footer__tel {
    font-size: 1.4rem;
  }

  .footer__nav-title {
    font-size: 1.5rem;
  }

  .footer__nav-link {
    font-size: 1.4rem;
  }

  .footer__copyright {
    padding: 15px 0;
  }

  .footer__copyright-text {
    font-size: 1.4rem;
  }
}

/*====================================
 index.php
====================================*/
/*----- ファーストビュー -----*/

/* ファーストビュー全体 */
.firstview {
  position: relative;
  width: 100%;
}

/* ファーストビューコンテンツ */
.firstview__content {
  position: relative;
  width: 100%;
  height: auto;
}

/* 画像コンテナ */
.firstview__image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

/* 実際の画像 */
.firstview__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* テキストコンテンツ */
.firstview__text {
  position: absolute;
  top: 90%;
  left: 75%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  width: 90%;
  max-width: 800px;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "HGS明朝E", "MS P明朝", "MS 明朝", serif;
}

/* メインタイトル */
.firstview__heading {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

/* サブタイトル */
.firstview__subheading {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* ファーストビュー全体をスマートフォン用に調整 */
  .firstview {
  }

  .firstview__text {
    left: 50%;
  }

  /* テキストサイズをスマホ用に調整 */
  .firstview__heading {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .firstview__subheading {
    font-size: 1.5rem;
  }
}

/*----- 検索ボタンセクション -----*/

/* 検索ボタンセクション全体 */
.search-buttons {
  padding: 60px 0;
  background-color: var(--color-bg-section);
}

/* 検索ボタンコンテナ */
.search-buttons__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 検索ボタンタイトル */
.search-buttons__title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 44px;
  letter-spacing: 0.06em;
}

/* 検索ボタンリスト */
.search-buttons__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

/* 個別の検索ボタン */
.search-button {
  position: relative;
  flex: 1;
  max-width: 350px;
  min-width: 280px;
}

/* 検索ボタンメイン部分 */
.search-button__main {
  display: flex;
  align-items: center;
  padding: 8px 25px;
  background-color: #1a1a1a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-brand);
  position: relative;
  z-index: 2;
}

/* リンク用のメイン部分 */
.search-button__main--link {
  text-decoration: none;
}

/* ホバー効果 */
.search-button:hover .search-button__main {
  box-shadow: var(--shadow-lg);
}

/* メイン部分のホバー効果（背景色変更） */
.search-button__main:hover {
  background: var(--color-brand);
}

/* アイコン部分 */
.search-button__icon {
  font-size: 2.5rem;
  margin-right: 20px;
  color: var(--color-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-circle);
}

/* コンテンツ部分 */
.search-button__content {
  flex: 1;
  line-height: 1.2;
}

/* ボタンタイトル */
.search-button__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-brand);
}

/* ボタンサブタイトル */
.search-button__subtitle {
  font-size: 1.4rem;
  color: var(--color-brand);
  margin: 0;
}
.search-button__main:hover .search-button__icon {
  background: #e5e5e543;
}

.search-button__main:hover .search-button__icon,
.search-button__main:hover .search-button__title,
.search-button__main:hover .search-button__subtitle {
  color: white;
}

/* ドロップダウンメニュー */
.search-button__dropdown {
  font-size: 1.6rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 1;
}

/* ホバー時のドロップダウン表示 */
.search-button:hover .search-button__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ドロップダウンリスト */
.search-button__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 15px 0;
}

/* ドロップダウンアイテム */
.search-button__dropdown-item {
  margin: 0;
}

/* ドロップダウンリンク */
.search-button__dropdown-link {
  display: block;
  padding: 12px 25px;
  color: var(--color-text);
  text-decoration: none;
  transition: background-color 0.2s ease;
  border-left: 3px solid transparent;
}

.search-button__dropdown-link:hover {
  background-color: var(--color-bg-subtle);
  border-left-color: var(--color-price-2);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* 検索ボタンセクション */
  .search-buttons {
    padding: 40px 0;
  }

  /* タイトルサイズ調整 */
  .search-buttons__title {
    font-size: 3.0rem;
    margin-bottom: 30px;
  }

  /* ボタンリストを縦並びに */
  .search-buttons__list {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  /* ボタンサイズ調整 */
  .search-button {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }

  /* メイン部分のパディング調整 */
  .search-button__main {
    padding: 25px 20px;
  }

  /* アイコンサイズ調整 */
  .search-button__icon {
    font-size: 3.0rem;
    width: 60px;
    height: 60px;
    margin-right: 15px;
  }

  /* タイトルサイズ調整 */
  .search-button__title {
    font-size: 1.8rem;
  }

  /* サブタイトルサイズ調整 */
  .search-button__subtitle {
    font-size: 1.4rem;
  }
}

/*----- 価格帯別検索セクション -----*/

/* 価格帯別検索セクション全体 */
.price-search {
  padding: 60px 0;
  background-color: #fff;
}

/* 価格帯別検索コンテナ */
.price-search__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 価格帯別検索タイトル */
.price-search__title {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 44px;
  letter-spacing: 0.06em;
}

/* 価格帯別検索ボタンリスト */
.price-search__list {
  display: flex;
  gap: 20px;
}

/* 価格帯別検索ボタン */
.price-search__button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  border-radius: var(--radius-md);
  text-decoration: none;
  color: white;
  font-weight: 700;
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
  box-shadow: var(--shadow-sm);
  flex: 1 1 0;
  min-width: 0;
  line-height: 1.2;
  cursor: pointer;
}

/* 価格帯別ボタンのホバー効果 */
.price-search__button:hover {
  opacity: 0.9;
  box-shadow: var(--shadow-md);
}

/* 価格帯別ボタンの色分け */
.price-search__button--price1 {
  background-color: var(--color-price-1);
}

.price-search__button--price2 {
  background-color: var(--color-price-2);
}

.price-search__button--price3 {
  background-color: var(--color-price-3);
}

.price-search__button--price4 {
  background-color: var(--color-price-4);
}

.price-search__button--price5 {
  background-color: var(--color-price-5);
}

/* 価格帯名 */
.price-search__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
}

/* 価格帯範囲 */
.price-search__range {
  font-size: 1.6rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* 価格帯別検索セクション */
  .price-search {
    padding: 40px 0;
  }

  /* タイトルサイズ調整 */
  .price-search__title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }

  /* ボタンリストを縦並びに */
  .price-search__list {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  /* ボタンサイズ調整 */
  .price-search__button {
    min-width: 280px;
    max-width: 100%;
    padding: 25px 20px;
  }

  /* 価格帯名サイズ調整 */
  .price-search__name {
    font-size: 1.8rem;
  }

  /* 価格帯範囲サイズ調整 */
  .price-search__range {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  /* さらに小さい画面用の調整 */
  .price-search__button {
    min-width: 100%;
    padding: 20px 15px;
  }

  .price-search__name {
    font-size: 1.6rem;
  }

  .price-search__range {
    font-size: 1.4rem;
  }
}

/*----- 価格帯別店舗一覧セクション -----*/
/* 店舗セクション全体 */
.shop-sections {
  padding: 60px 0;
  background-color: var(--color-bg-section);
}

/* 店舗セクションコンテナ */
.shop-sections__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 個別の店舗セクション */
.shop-section {
  margin-bottom: 60px;
}

.shop-section:last-child {
  margin-bottom: 0;
}

/* 店舗セクションタイトル */
.shop-section__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  padding: 20px 0;
  position: relative;
}

/* タイトル上のボーダー */
.shop-section__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-radius: var(--radius-xs);
}

/* 価格帯別のボーダー色 */
.shop-section__title--price1::before {
  background-color: var(--color-price-1);
}

.shop-section__title--price2::before {
  background-color: var(--color-price-2);
}

.shop-section__title--price3::before {
  background-color: var(--color-price-3);
}

.shop-section__title--price4::before {
  background-color: var(--color-price-4);
}

.shop-section__title--price5::before {
  background-color: var(--color-price-5);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* 店舗セクション */
  .shop-sections {
    padding: 40px 0;
  }

  /* 個別セクション間隔調整 */
  .shop-section {
    margin-bottom: 40px;
  }

  /* タイトルサイズ調整 */
  .shop-section__title {
    font-size: 2.5rem;
    padding: 15px 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  /* タイトルサイズ調整 */
  .shop-section__title {
    font-size: 2.0rem;
  }
}

/*----- 店舗一覧 -----*/
/* セクション間のボーダー */
.shop-section__border {
  width: 100%;
  height: 1px;
  background-color: var(--color-border-strong);
  margin-bottom: 30px;
}

/* 店舗リスト */
.shop-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* 店舗アイテム */
.shop-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
  border: 1px solid var(--color-border);
  position: relative;
}

/* 店舗アイテム上部のボーダー */
.shop-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

/* 価格帯別ボーダー色 */
.shop-section[id="price1-section"] .shop-item::before {
  background-color: var(--color-price-1);
}

.shop-section[id="price2-section"] .shop-item::before {
  background-color: var(--color-price-2);
}

.shop-section[id="price3-section"] .shop-item::before {
  background-color: var(--color-price-3);
}

.shop-section[id="price4-section"] .shop-item::before {
  background-color: var(--color-price-4);
}

.shop-section[id="price5-section"] .shop-item::before {
  background-color: var(--color-price-5);
}

.shop-item:hover {
  box-shadow: var(--shadow-md);
}

/* 店舗名 */
.shop-item__name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.3;
}

/* タグ部分 */
.shop-item__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

/* 個別タグ */
.shop-item__tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1;
  height: 35px;
}

/* タグの色分け */
.shop-item__tag--price {
  background-color: var(--color-price-1); /* デフォルト（格安用） */
}

/* 価格帯別の価格タグ色 */
.shop-section[id="price1-section"] .shop-item__tag--price {
  background-color: var(--color-price-1);
}

.shop-section[id="price2-section"] .shop-item__tag--price {
  background-color: var(--color-price-2);
}

.shop-section[id="price3-section"] .shop-item__tag--price {
  background-color: var(--color-price-3);
}

.shop-section[id="price4-section"] .shop-item__tag--price {
  background-color: var(--color-price-4);
}

.shop-section[id="price5-section"] .shop-item__tag--price {
  background-color: var(--color-price-5);
}

.shop-item__tag--genre {
  background-color: var(--color-genre);
}

.shop-item__tag--coupon {
  background-color: var(--color-caution);
  color: var(--color-text);
}

/* バナー部分 */
.shop-item__banner {
  margin-bottom: 15px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.shop-item__banner-img {
  width: 100%;
  object-fit: contain;
}

.shop-item__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
  margin: 8px 0;
}

.shop-item__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* カード全体リンク化 */
.shop-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* 営業情報（横並び） */
.shop-item__info {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.shop-item__hours,
.shop-item__price {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.shop-item__price {
  font-weight: 700;
  color: var(--color-text);
}

.shop-item__hours i,
.shop-item__price i {
  color: var(--color-text-light);
  width: 12px;
}

/* 店舗説明 */
.shop-item__description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* カード内キャストサムネイル */
.shop-item__casts {
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

.shop-item__casts-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.shop-item__casts-slider {
  overflow: hidden;
  position: relative;
}

.shop-item__casts-track {
  display: flex;
  gap: 8px;
  transition: transform 0.3s ease;
}

.shop-item__cast {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}

.shop-item__cast-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-border);
}

.shop-item__cast-name {
  display: block;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-item__cast-time {
  display: block;
  font-size: 1.2rem;
  color: #2e7d32;
  margin-top: 2px;
  line-height: 1.15;
}

.shop-item__cast-time-arrow {
  font-size: 0.9rem;
  display: inline-block;
  line-height: 1;
}

.shop-item__casts-more {
  text-align: center;
  margin-top: 10px;
}

.shop-item__casts-more-btn {
  display: inline-flex;
  align-items: center;
  padding: 6px 20px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  background-color: var(--color-price-2);
  border-radius: var(--radius-sm);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.03em;
  transition: opacity 0.2s ease;
  height: 35px;
  cursor: pointer;
}

.shop-item__casts-more-btn:hover {
  opacity: 0.85;
}

.shop-item__casts-more-btn i {
  font-size: 1rem;
  margin-left: 3px;
}

/* 価格帯別もっと見るボタン色 */
.shop-section[id="price1-section"] .shop-item__casts-more-btn { background-color: var(--color-price-1); }
.shop-section[id="price2-section"] .shop-item__casts-more-btn { background-color: var(--color-price-2); }
.shop-section[id="price3-section"] .shop-item__casts-more-btn { background-color: var(--color-price-3); }
.shop-section[id="price4-section"] .shop-item__casts-more-btn { background-color: var(--color-price-4); }
.shop-section[id="price5-section"] .shop-item__casts-more-btn { background-color: var(--color-price-5); }

/* shop/price*.php 用（shop-section外） */
.shop-item--price1 .shop-item__casts-more-btn { background-color: var(--color-price-1); }
.shop-item--price2 .shop-item__casts-more-btn { background-color: var(--color-price-2); }
.shop-item--price3 .shop-item__casts-more-btn { background-color: var(--color-price-3); }
.shop-item--price4 .shop-item__casts-more-btn { background-color: var(--color-price-4); }
.shop-item--price5 .shop-item__casts-more-btn { background-color: var(--color-price-5); }

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .shop-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  /* 店舗リストを1列に */
  .shop-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* 店舗アイテムのパディング調整 */
  .shop-item {
    padding: 15px;
  }

  /* 店舗名サイズ調整 */
  .shop-item__name {
    font-size: 1.8rem;
  }


  .shop-item__info {
    gap: 12px;
  }

  .shop-item__cast-img {
    /* width: 40px;
    height: 40px; */
  }
}

@media (max-width: 480px) {
  /* SP時はキャスト3人まで表示 */
  .shop-item__cast:nth-child(n+4) {
    display: none;
  }

  /* セクション間隔調整 */
  .shop-section__border {
    margin-bottom: 20px;
  }

  /* 店舗アイテムパディング調整 */
  .shop-item {
    padding: 12px;
  }

  /* 店舗名サイズ調整 */
  .shop-item__name {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  /* タグ部分調整 */
  .shop-item__tags {
    margin-bottom: 12px;
  }

  /* バナー高さ調整 */
  .shop-item__banner {
    margin-bottom: 12px;
  }


  /* 説明文サイズ調整 */
  .shop-item__description {
    font-size: 1.4rem;
    margin-bottom: 12px;

  }
}

/*----- お店の新着ニュース -----*/
.news {
  padding: 60px 0;
  background-color: var(--color-bg-section);
}

.news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
}

.news__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--color-text);
  letter-spacing: 0.06em;
}

/* ニュースリスト - PC版2列レイアウト */
.news__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

/* ニュースアイテム - 左右レイアウト */
.news__item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  display: flex;
  align-items: stretch;
  border-left: 3px solid transparent;
}

.news__item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-primary);
}

/* ニュース画像 - 左側固定幅 */
.news__image {
  width: 120px;
  min-width: 120px;
  height: 120px;
  overflow: hidden;
  flex-shrink: 0;
}

.news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.2s ease;
}

.news__item:hover .news__img {
  opacity: 0.85;
}

/* ニュースコンテンツ - 右側可変幅 */
.news__content {
  padding: 15px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__date {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.news__item-title {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news__shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
}

/* もっと見るボタン */
.news__more {
  text-align: center;
}

.news__more-button {
  display: inline-block;
  padding: 11px 36px;
  background-color: transparent;
  color: var(--color-primary);
  text-decoration: none;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.news__more-button:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* ニュースセクション */
  .news {
    padding: 40px 0;
  }

  .news__container {
    padding: 0 15px;
  }

  .news__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }

  /* ニュースリスト - SP版1列レイアウト */
  .news__list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }

  /* ニュースアイテム - SP版調整 */
  .news__image {
    width: 100px;
    min-width: 100px;
    height: 100px;
  }

  .news__content {
    padding: 12px 15px;
  }

  .news__item-title {
    font-size: 1.5rem;
  }

  .news__shop {
    font-size: 1.4rem;
  }

  /* もっと見るボタン - SP版調整 */
  .news__more-button {
    padding: 10px 30px;
    font-size: 1.5rem;
  }
}

/*----- 協会からのお知らせ -----*/
.association {
  padding: 60px 0;
  background-color: #fff;
}

.association__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 0;
  border-top: 2px solid var(--color-border-strong);
}

.association__title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 36px;
  color: var(--color-text);
  letter-spacing: 0.06em;
}

/* お知らせリスト - PC版4列レイアウト */
.association__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

/* お知らせアイテム */
.association__item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
  cursor: pointer;
}

.association__item:hover {
  box-shadow: var(--shadow-lg);
}

/* お知らせ画像 */
.association__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.association__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.association__item:hover .association__img {
  transform: scale(1.03);
}

/* お知らせコンテンツ */
.association__content {
  padding: 15px;
}

.association__date {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  font-weight: 400;
}

.association__item-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* もっと見るボタン */
.association__more {
  text-align: center;
}

.association__more-button {
  display: inline-block;
  padding: 11px 36px;
  background-color: transparent;
  color: var(--color-info);
  text-decoration: none;
  border: 1px solid var(--color-info);
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.association__more-button:hover {
  background-color: var(--color-info);
  color: #fff;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* 協会セクション */
  .association {
    padding: 40px 0;
  }

  .association__container {
    padding: 20px 0 0;
    overflow: hidden;
  }

  .association__title {
    font-size: 2.4rem;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  /* お知らせリスト - SP版スライド式 */
  .association__list {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  /* スクロールバーのスタイリング */
  .association__list::-webkit-scrollbar {
    height: 6px;
  }

  .association__list::-webkit-scrollbar-track {
    background: var(--color-bg-subtle);
    border-radius: var(--radius-xs);
  }

  .association__list::-webkit-scrollbar-thumb {
    background: var(--color-border-strong);
    border-radius: var(--radius-xs);
  }

  .association__list::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
  }

  /* お知らせアイテム - SP版調整 */
  .association__item {
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  .association__image {
    height: 160px;
  }

  .association__content {
    padding: 12px;
  }

  .association__item-title {
    font-size: 1.4rem;
  }

  /* もっと見るボタン - SP版調整 */
  .association__more {
    padding: 0 15px;
  }

  .association__more-button {
    padding: 10px 30px;
    font-size: 1.5rem;
  }
}

/* タブレット版調整 */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .association__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .association__image {
    height: 200px;
  }
}

/*----- 協会からのお知らせ -----*/
.introduction {
  padding: 60px 0;
  background-color: var(--color-bg-section);
}

.introduction__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.introduction__title {
  font-size: 4.0rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-text);
  font-weight: 700;
}

.introduction__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.introduction__item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  background: white;
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

.introduction__image {
  flex-shrink: 0;
  width: 300px;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.introduction__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.introduction__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.introduction__subtitle {
  font-size: 2.4rem;
  color: var(--color-text);
  margin-bottom: 15px;
  font-weight: 700;
}

.introduction__text {
  font-size: 1.6rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.introduction__more {
  text-align: center;
  margin-top: 40px;
  display: none; /* PC版では非表示 */
}

.introduction__more-btn {
  background: var(--color-primary);
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

.introduction__more-btn:hover {
  background-color: var(--color-primary-hover);
}

/* SP版スタイル */
@media (max-width: 768px) {
  .introduction__item {
    flex-direction: column;
    padding: 20px;
    position: relative;
  }

  .introduction__item--hidden {
    display: none;
  }

  .introduction__item--truncated {
    overflow: hidden;
  }

  .introduction__item--truncated .introduction__text {
    max-height: 54px; /* 2行分の高さ (16px * 1.7 * 2) */
    overflow: hidden;
    position: relative;
  }

  .introduction__item--truncated .introduction__text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 27px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.9));
    pointer-events: none;
  }

  .introduction__item--truncated::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
    backdrop-filter: blur(2px);
    pointer-events: none;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  }

  .introduction__image {
    width: 100%;
    height: 180px;
  }

  .introduction__subtitle {
    font-size: 2.0rem;
    margin-bottom: 12px;
  }

  .introduction__text {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .introduction__title {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }

  .introduction__list {
    gap: 25px;
    margin-bottom: 0;
  }

  .introduction__more {
    display: block; /* SP版でのみ表示 */
    position: relative;
    z-index: 10;
    margin-top: 20px;
  }

  .introduction__item--truncated + .introduction__more .introduction__more-btn {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-text);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-md);
  }
}


/*====================================
  /shop/ ショップ一覧ページ
====================================*/
/*----- ページタイトル -----*/
.page-title {
  background-color: var(--color-bg-section);
  padding: 40px 0;
  border-bottom: 1px solid var(--color-border);
}

.page-title__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-title__heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  margin: 0;
}


/*----- タブ -----*/
.shop-tabs {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
}

.shop-tabs__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.shop-tabs__nav {
  width: 100%;
}

.shop-tabs__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--color-bg-muted);
}

.shop-tabs__item {
  flex: 1;
  min-width: 0;
}

.shop-tabs__link {
  display: block;
  padding: 15px 10px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
  position: relative;
}

.shop-tabs__link:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-section);
}

/* 価格帯別のアクティブ色 */
.shop-tabs__link--active.shop-tabs__link--all {
  border-bottom-color: var(--color-brand);
}

.shop-tabs__link--active.shop-tabs__link--price1 {
  border-bottom-color: var(--color-price-1);
}

.shop-tabs__link--active.shop-tabs__link--price2 {
  border-bottom-color: var(--color-price-2);
}

.shop-tabs__link--active.shop-tabs__link--price3 {
  border-bottom-color: var(--color-price-3);
}

.shop-tabs__link--active.shop-tabs__link--price4 {
  border-bottom-color:  var(--color-price-4);
}

.shop-tabs__link--active.shop-tabs__link--price5 {
  border-bottom-color: var(--color-price-5);
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* ページタイトル - SP版調整 */
  .page-title {
    padding: 30px 0;
  }

  .page-title__container {
    padding: 0 15px;
  }

  .page-title__heading {
    font-size: 2.4rem;
  }

  /* タブナビゲーション - SP版調整 */
  .shop-tabs {
    top: 60px;
  }

  .shop-tabs__container {
    padding: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .shop-tabs__list {
    min-width: 600px;
    padding: 0 15px;
  }

  .shop-tabs__item {
    flex: none;
    min-width: 110px;
  }

  .shop-tabs__link {
    padding: 12px 8px;
    font-size: 1.4rem;
  }

  /* スクロールバーのスタイリング - SP版 */
  .shop-tabs__container::-webkit-scrollbar {
    height: 3px;
  }

  .shop-tabs__container::-webkit-scrollbar-track {
    background: var(--color-bg-subtle);
  }

  .shop-tabs__container::-webkit-scrollbar-thumb {
    background: var(--color-border-strong);
    border-radius: var(--radius-xs);
  }

  .shop-tabs__container::-webkit-scrollbar-thumb:hover {
    background: var(--color-text-light);
  }
}


/*----- ページタイトル -----*/
.shop-sections {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.shop_page .shop-sections__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== 店舗アイテム - 基本スタイル ===== */
.shop-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
  position: relative;
}

.shop-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-color: var(--color-border-medium);
}

.shop-item:hover {
  box-shadow: var(--shadow-md);
}

/* ===== 価格帯別の上部カラーバー ===== */
.shop-item--price1::before {
  background-color: var(--color-price-1);
}

.shop-item--price2::before {
  background-color: var(--color-price-2);
}

.shop-item--price3::before {
  background-color: var(--color-price-3);
}

.shop-item--price4::before {
  background-color: var(--color-price-4);
}

.shop-item--price5::before {
  background-color: var(--color-price-5);
}

/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 1024px) {
  .shop-sections__container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .shop-sections {
    padding: 30px 0;
  }

  .shop_page .shop-sections__container {
    grid-template-columns: 1fr;
    padding: 0 15px;
    gap: 20px;
  }
}

/*====================================
  /detail/ ショップ詳細ページ
====================================*/
body.detail-page {
  padding-top: 0; /* ヘッダー分のスペースを削除 */
}


/* ===== 詳細ページ用ヘッダー調整 ===== */
.detail-page .header {
  position: relative;
  z-index: auto;
}

.detail-page .header--scrolled {
  position: relative;
  transform: none;
  box-shadow: none;
}

/* ===== 店舗バナー ===== */
.detail-banner {
  width: 100%;
}

.detail-banner__container {
  width: 100%;
}

.detail-banner__image {
  width: 100%;
  height: auto;
}

.detail-banner__img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== 店舗メニューナビゲーション ===== */
.detail-nav {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.detail-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.detail-nav__nav {
  width: 100%;
}

.detail-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}

.detail-nav__item {
  flex: none;
}

.detail-nav__link {
  display: block;
  padding: 15px 20px;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  transition: all 0.25s ease;
}

.detail-nav__link:hover {
  color: var(--color-primary);
  background-color: var(--color-bg-section);
}

.detail-nav__link--active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
  font-weight: 700;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* SP版メニューナビゲーション */
  .detail-nav-sp {
    background-color: #fff;
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .detail-nav-sp__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

  .detail-nav-sp__shopname {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
    flex: 1;
  }

  .detail-nav-sp__category {
    display: block;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 2px;
  }

  .detail-nav-sp__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
  }

  .detail-nav-sp__menu-link,
  .detail-nav-sp__menu-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 1.4rem;
    background: none;
    border: none;
    padding: 5px;
    cursor: pointer;
  }

  .detail-nav-sp__menu-link i,
  .detail-nav-sp__menu-button i {
    font-size: 1.8rem;
    margin-bottom: 2px;
  }

  /* オーバーレイメニュー */
  .detail-nav-sp__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    transition: height 0.3s ease;
    z-index: 1000;
  }

  .detail-nav-sp__overlay.active {
    height: 100%;
  }

  .detail-nav-sp__close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .detail-nav-sp__close-line {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: relative;
    transition: 0.3s;
  }

  .detail-nav-sp__close-line:first-child {
    transform: rotate(45deg);
    margin-bottom: -2px;
  }

  .detail-nav-sp__close-line:last-child {
    transform: rotate(-45deg);
  }

  .detail-nav-sp__overlay-content {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
  }

  .detail-nav-sp__shop-info .detail-nav-sp__shopname {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .detail-nav-sp__hours {
    display: block;
    font-size: 1.4rem;
    color: var(--color-text-disabled);
    margin-top: 5px;
  }

  .detail-nav-sp__nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
  }

  .detail-nav-sp__nav-list li {
    margin: 5px 0;
  }

  .detail-nav-sp__nav-list a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    display: block;
    padding: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .detail-nav-sp__recruit a {
    background-color: var(--color-primary);
    border-radius: var(--radius-sm);
    border-bottom: none;
  }

  .detail-nav-sp__external-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }

  .detail-nav-sp__external-list li {
    margin: 10px 0;
  }

  .detail-nav-sp__external-hp a {
    background-color: var(--color-info);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 1.6rem;
  }

  .detail-nav-sp__external-tel a {
    background-color: var(--color-success);
    color: #fff;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 700;
  }
}


/*====================================
  /detail/ ショップ詳細ページ
====================================*/
/* ===== メインコンテンツエリア ===== */
.detail-main {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.detail-main__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 30px;
}

/* 左側コンテンツ（70%） */
.detail-main__left {
  flex: 0 0 70%;
}

/* 右側コンテンツ（30%） */
.detail-main__right {
  flex: 0 0 30%;
}

/* ===== セクション共通スタイル ===== */
.detail-section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.detail-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border-medium);
}

.detail-section__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  letter-spacing: 0.04em;
}

/* PC版もっと見るボタン */
.detail-section__more {
  font-size: 1.4rem;
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 16px;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.detail-section__more:hover {
  background-color: var(--color-primary);
  color: #fff;
}

/* SP版もっと見るボタンコンテナ */
.detail-section__more-sp {
  text-align: center;
  margin-top: 15px;
}

.detail-section__more-button {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: var(--radius-sm);
  letter-spacing: 0.03em;
  transition: background-color 0.2s ease;
}

.detail-section__more-button:hover {
  background-color: var(--color-primary-hover);
}


/* ===== 女の子スライダー ===== */
.detail-girls-slider {
  position: relative;
}

.detail-girls-slider__container {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.detail-girls-slider__slide {
  display: none;
}

.detail-girls-slider__slide.active {
  display: block;
}

.detail-girls__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* 女の子カード */
.detail-girl {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.detail-girl:hover {
  box-shadow: var(--shadow-md);
}

.detail-girl__image {
  width: 100%;
  aspect-ratio: 3/4; /* 縦横比3:4で固定 */
  overflow: hidden;
}

.detail-girl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-girl__info {
  padding: 15px;
}

.detail-girl__catchcopy {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 5px;
}

.detail-girl__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.detail-girl__specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.detail-girl__schedule {
  font-size: 1.4rem;
  color: #2e7d32;
  font-weight: 500;
  margin-bottom: 4px;
}

/* ドットインジケーター */
.detail-girls-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.detail-girls-slider__dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  border: none;
  background-color: var(--color-border-medium);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.detail-girls-slider__dot--active {
  background-color: var(--color-primary);
}

.detail-girls-slider__dot:hover {
  background-color: var(--color-primary-hover);
}

/* ===== 新着ニュース ===== */
.detail-news {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.detail-news__image {
  flex: 0 0 140px;
  height: 180px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.detail-news__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-news__content {
  flex: 1;
}

.detail-news__date {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.detail-news__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
  line-height: 1.4;
}

.detail-news__text {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  max-height: 240px;
  overflow-y: auto;
  padding-right: 10px;
}

/* スクロールバーのスタイリング */
.detail-news__text::-webkit-scrollbar {
  width: 6px;
}

.detail-news__text::-webkit-scrollbar-track {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-xs);
}

.detail-news__text::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
  border-radius: var(--radius-xs);
}

.detail-news__text::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* メインコンテンツ - SP版調整 */
  .detail-main {
    padding: 20px 0;
  }

  .detail-main__container {
    flex-direction: column;
    padding: 0 15px;
    gap: 0;
  }

  .detail-main__left,
  .detail-main__right {
    flex: none;
    width: 100%;
  }

  /* セクション - SP版調整 */
  .detail-section {
    padding: 20px;
    margin-bottom: 20px;
  }

  .detail-section__title {
    font-size: 2.0rem;
    margin-bottom: 20px;
  }

  /* 女の子スライダー - SP版調整 */
  .detail-girls__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .detail-girl__image {
    height: 160px;
  }

  .detail-girl__info {
    padding: 12px;
  }

  .detail-girl__name {
    font-size: 1.4rem;
  }

  /* 新着ニュース - SP版調整 */
  .detail-news {
    flex-direction: column;
    gap: 15px;
  }

  .detail-news__image {
    flex: none;
    width: 100%;
    height: 200px;
  }

  .detail-news__title {
    font-size: 1.6rem;
  }

  .detail-news__text {
    max-height: 200px;
  }
}

/* ===== 料金システム ===== */
.detail-price__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.detail-price__time {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.detail-price__amount {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ===== ショップデータ ===== */
.detail-shop-data__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-shop-data__item {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg-muted);
}

.detail-shop-data__item:last-child {
  border-bottom: none;
}

.detail-shop-data__label {
  flex: 0 0 100px;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.detail-shop-data__value {
  flex: 1;
  font-size: 1.4rem;
  color: var(--color-text);
}

.detail-shop-data__tel {
  color: var(--color-success);
  text-decoration: none;
  font-weight: 700;
}

.detail-shop-data__tel:hover {
  text-decoration: underline;
}

.detail-shop-data__link {
  color: var(--color-info);
  text-decoration: none;
}

.detail-shop-data__link:hover {
  text-decoration: underline;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  /* 料金システム - SP版調整 */
  .detail-price__item {
    padding: 12px 15px;
  }

  .detail-price__time {
    font-size: 1.6rem;
  }

  .detail-price__amount {
    font-size: 1.8rem;
  }

  /* ショップデータ - SP版調整 */
  .detail-shop-data__item {
    flex-direction: column;
    gap: 5px;
    padding: 10px 0;
  }

  .detail-shop-data__label {
    flex: none;
    font-size: 1.4rem;
    color: var(--color-text-light);
  }

  .detail-shop-data__value {
    font-size: 1.4rem;
  }
}

/* ===== 右側サイドバー ===== */
.detail-sidebar {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.detail-sidebar__title {
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 20px;
  margin: 0;
  text-align: center;
}

/* サイドバーヘッダー（タイトル＋もっと見る） */
.detail-sidebar__header {
  background-color: var(--color-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

.detail-sidebar__header .detail-sidebar__title {
  background: none;
  padding: 0;
  margin: 0;
}

.detail-sidebar__more {
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  padding: 4px 12px;
  border: 1px solid #fff;
  border-radius: var(--radius-xl);
  transition: all 0.25s ease;
}

.detail-sidebar__more:hover {
  background-color: #fff;
  color: var(--color-primary);
}

/* SP版もっと見るボタン */
.detail-sidebar__more-sp {
  text-align: center;
  margin-top: 15px;
}

.detail-sidebar__more-button {
  display: inline-block;
  font-size: 1.4rem;
  color: #fff;
  background-color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  transition: all 0.25s ease;
}

.detail-sidebar__more-button:hover {
  background-color: var(--color-primary-hover);
}

/* ===== ピックアップスライダー ===== */
.detail-pickup {
  padding: 20px;
}

.detail-pickup-slider {
  position: relative;
}

.detail-pickup-slider__container {
  overflow: hidden;
}

.detail-pickup-slider__slide {
  display: none;
}

.detail-pickup-slider__slide.active {
  display: block;
}

.detail-pickup-girl__image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
}

.detail-pickup-girl__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-pickup-girl__info {
  text-align: center;
}

.detail-pickup-girl__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px 0;
}

.detail-pickup-girl__specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}

.detail-pickup-girl__message {
  font-size: 1.4rem;
  color: var(--color-text);
  line-height: 1.4;
}

/* ピックアップ用ドットインジケーター */
.detail-pickup-slider__dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 15px;
}

.detail-pickup-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-circle);
  border: none;
  background-color: var(--color-border-medium);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.detail-pickup-slider__dot--active {
  background-color: var(--color-primary);
}

.detail-pickup-slider__dot:hover {
  background-color: var(--color-primary-hover);
}

/* ===== 店舗情報 ===== */
.detail-shop-info {
  padding: 20px;
}

.detail-shop-info__name {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-info);
  margin: 0 0 15px 0;
  text-align: center;
}

.detail-shop-info__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 15px;
}

.detail-shop-info__tag {
  font-size: 1.4rem;
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  font-weight: 500;
}

.detail-shop-info__tag--price {
  background-color: var(--color-primary);
  color: #fff;
}

.detail-shop-info__tag--genre {
  background-color: var(--color-bg-muted);
  color: var(--color-text-muted);
}

.detail-shop-info__basic {
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-sm);
  margin-bottom: 15px;
}

.detail-shop-info__hours,
.detail-shop-info__price {
  padding: 10px 15px;
  font-size: 1.4rem;
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.detail-shop-info__hours {
  border-bottom: 1px solid #e0e0e0;
}

.detail-shop-info__hours i,
.detail-shop-info__price i {
  color: var(--color-text-muted);
  width: 16px;
}

.detail-shop-info__description {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  max-height: 200px;
  overflow-y: auto;
  padding-right: 8px;
}

/* スクロールバーのスタイリング */
.detail-shop-info__description::-webkit-scrollbar {
  width: 4px;
}

.detail-shop-info__description::-webkit-scrollbar-track {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-xs);
}

.detail-shop-info__description::-webkit-scrollbar-thumb {
  background: var(--color-border-strong);
  border-radius: var(--radius-xs);
}

.detail-shop-info__description::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}

.detail-shop-info__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-shop-info__tel {
  background-color: var(--color-success);
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 700;
  font-size: 1.6rem;
  transition: background-color 0.2s ease;
}

.detail-shop-info__tel:hover {
  background-color: var(--color-success-hover);
}

.detail-shop-info__tel i {
  margin-right: 8px;
}

.detail-shop-info__official,
.detail-shop-info__recruit {
  background-color: var(--color-bg-section);
  color: var(--color-text);
  text-decoration: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 500;
  border: 1px solid #e0e0e0;
  transition: all 0.25s ease;
}

.detail-shop-info__official:hover {
  background-color: var(--color-info);
  color: #fff;
  border-color: var(--color-info);
}

.detail-shop-info__recruit:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .detail-sidebar__title {
    font-size: 1.6rem;
    padding: 12px 15px;
  }

  .detail-shop-info {
    padding: 15px;
  }

  .detail-shop-info__name {
    font-size: 1.8rem;
  }

  .detail-shop-info__description {
    font-size: 1.4rem;
    max-height: 150px;
  }

  .detail-shop-info__tel {
    font-size: 1.5rem;
    padding: 10px;
  }
}

/*====================================
  /detail/castlist.php 女の子一覧ページ
====================================*/
/* ===== キャスト一覧ページ ===== */
.castlist-main {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.castlist-main__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== ページタイトル ===== */
.castlist-title {
  text-align: center;
  margin-bottom: 40px;
}

.castlist-title__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

/* ===== キャストグリッド ===== */
.castlist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* ===== キャストアイテム ===== */
.castlist-item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.castlist-item:hover {
  box-shadow: var(--shadow-md);
}

.castlist-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.castlist-item__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.castlist-item__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.castlist-item:hover .castlist-item__img {
  transform: scale(1.02);
}

.castlist-item__schedule-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 8px;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2;
}

.castlist-item__info {
  padding: 15px;
}

.castlist-item__message {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.4;
  min-height: 32px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.castlist-item__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px 0;
  text-align: center;
}

.castlist-item__specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
  text-align: center;
}

.castlist-item__comment {
  font-size: 1.1rem;
  color: #059669;
  text-align: center;
  margin-top: 4px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.castlist-item__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}

.castlist-item__badge--new {
  background: var(--color-success);
}

.castlist-item__badge--pickup {
  background: #e91e8c;
}

.castlist-item__entry {
  font-size: 1.4rem;
  color: var(--color-success);
  text-align: center;
  font-weight: 500;
}

.castlist-item__entry i {
  margin-right: 3px;
}

.castlist-item__comment {
  font-size: 1.4rem;
  color: #e91e8c;
  text-align: center;
  font-weight: 500;
}

.castlist-item__comment i {
  margin-right: 3px;
}

/* ===== レスポンシブ対応 ===== */
@media screen and (max-width: 1024px) {
  .castlist-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  /* メインコンテンツ - SP版調整 */
  .castlist-main {
    padding: 20px 0;
  }

  .castlist-main__container {
    padding: 0 15px;
  }

  /* ページタイトル - SP版調整 */
  .castlist-title {
    margin-bottom: 30px;
  }

  .castlist-title__heading {
    font-size: 2.4rem;
  }

  /* キャストグリッド - SP版2列 */
  .castlist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* キャストアイテム - SP版調整 */
  .castlist-item__info {
    padding: 12px;
  }

  .castlist-item__message {
    font-size: 1.4rem;
    min-height: 28px;
  }

  .castlist-item__name {
    font-size: 1.4rem;
  }

  .castlist-item__specs {
    font-size: 1.4rem;
  }

}


/*====================================
  ページネーション（共通）
====================================*/
.pagination {
  margin-top: 40px;
  padding: 20px 0;
}

.pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.pagination__item {
  display: flex;
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--color-text);
  background-color: #fff;
  border: 1px solid var(--color-border-medium);
  transition: all 0.25s ease;
}

.pagination__link:hover {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.pagination__item--active .pagination__link {
  background-color: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  pointer-events: none;
}

.pagination__item--disabled .pagination__link {
  color: var(--color-text-disabled);
  border-color: var(--color-border);
  background-color: var(--color-bg-section);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 30px;
  }

  .pagination__list {
    gap: 6px;
  }

  .pagination__link {
    min-width: 36px;
    height: 36px;
    font-size: 1.4rem;
    padding: 0 8px;
  }
}

/*====================================
  /girls/detail.php 女の子詳細ページ
====================================*/
/* ページ全体セクション */
.girl-detail {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

/* コンテナ */
.girl-detail__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 上部2カラムエリア */
.girl-detail__upper {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

/* 左カラム */
.girl-detail__left {
  flex: 0 0 40%;
}

/* 右カラム */
.girl-detail__right {
  flex: 1;
}

/* 下部100%エリア */
.girl-detail__lower {
  width: 100%;
}

/* コメント横並び */
.girl-detail__comments-row {
  display: flex;
  gap: 30px;
}

.girl-detail__comments-col {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .girl-detail__comments-row {
    flex-direction: column;
    gap: 0;
  }
}

/* ===== ギャラリー ===== */
/* メイン画像ラッパー（スライダー） */
.girl-detail__main-image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-bottom: 15px;
  background-color: var(--color-border);
}

/* メイン画像 img */
.girl-detail__main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

/* スライダー矢印共通 */
.girl-detail__slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: var(--radius-circle);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 10;
  transition: background-color 0.2s ease;
}

.girl-detail__slider-arrow:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* 左矢印 */
.girl-detail__slider-arrow--prev {
  left: 10px;
}

/* 右矢印 */
.girl-detail__slider-arrow--next {
  right: 10px;
}

/* サムネイルグリッド */
.girl-detail__thumbnails {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

/* 各サムネイル */
.girl-detail__thumb {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}

.girl-detail__thumb:hover {
  opacity: 0.8;
}

/* 選択中サムネイル */
.girl-detail__thumb--active {
  border-color: var(--color-primary);
}

/* サムネイル img */
.girl-detail__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== セクション共通 ===== */
.girl-detail__section {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.girl-detail__section-title {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

/* ===== プロフィール ===== */
.girl-detail__profile-table {
  margin: 0;
}

.girl-detail__profile-row {
  display: flex;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-bg-muted);
}

.girl-detail__profile-row:last-child {
  border-bottom: none;
}

.girl-detail__profile-label {
  flex: 0 0 80px;
  font-size: 1.4rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.girl-detail__profile-value {
  flex: 1;
  font-size: 1.4rem;
  color: var(--color-text);
  margin: 0;
}

/* ===== 写メ日記 ===== */
.girl-detail__diary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.girl-detail__diary-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  padding: 10px;
  border-radius: var(--radius-md);
  transition: background-color 0.2s ease;
}

.girl-detail__diary-item:hover {
  background-color: var(--color-bg-section);
}

.girl-detail__diary-img-wrap {
  flex: 0 0 60px;
  width: 60px;
  height: 60px;
  overflow: hidden;
  border-radius: var(--radius-sm);
}

.girl-detail__diary-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.girl-detail__diary-content {
  flex: 1;
}

.girl-detail__diary-title {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0 0 4px 0;
  line-height: 1.4;
}

.girl-detail__diary-date {
  font-size: 1.4rem;
  color: var(--color-text-light);
  margin: 0;
}

/* ===== Q&A ===== */
.girl-detail__qa-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.girl-detail__qa-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.girl-detail__qa-question,
.girl-detail__qa-answer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.4rem;
  line-height: 1.6;
}

.girl-detail__qa-question {
  color: var(--color-text);
  font-weight: 500;
}

.girl-detail__qa-answer {
  color: var(--color-text-secondary);
  padding-left: 5px;
}

.girl-detail__qa-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: var(--radius-circle);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}

.girl-detail__qa-question .girl-detail__qa-label {
  background-color: var(--color-primary);
}

.girl-detail__qa-answer .girl-detail__qa-label {
  background-color: var(--color-info);
}

/* ===== セールスポイント・オプション タグ ===== */
.girl-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.girl-detail__tag {
  display: inline-block;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 16px;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.girl-detail__tag--option {
  background: #eff6ff;
  color: #1e40af;
  border-color: #bfdbfe;
}

/* ===== コメント ===== */
.girl-detail__comment {
  padding: 0;
}

.girl-detail__comment-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin: 0;
}

.girl-detail__catchcopy {
  font-size: 1.5rem;
  color: #e91e8c;
  font-weight: 500;
  margin-bottom: 15px;
}

.girl-detail__schedule-table {
  display: flex;
  gap: 0;
  border: 1px solid #e0e0e0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.girl-detail__schedule-row {
  flex: 1;
  text-align: center;
  padding: 10px 5px;
  border-right: 1px solid #e0e0e0;
  background: #f9f9f9;
}

.girl-detail__schedule-row:last-child {
  border-right: none;
}

.girl-detail__schedule-row--active {
  background: var(--color-primary-pale);
}

.girl-detail__schedule-day {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 5px;
}

.girl-detail__schedule-time {
  display: block;
  font-size: 1.4rem;
  color: var(--color-text-muted);
}

.girl-detail__schedule-row--active .girl-detail__schedule-time {
  color: #e91e8c;
  font-weight: 500;
}

.girl-detail__back {
  text-align: center;
  margin-top: 40px;
}

.girl-detail__back-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 1.4rem;
  transition: background 0.2s ease;
  cursor: pointer;
}

.girl-detail__back-link:hover {
  background: #e0e0e0;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .girl-detail {
    padding: 20px 0;
  }

  .girl-detail__container {
    padding: 0 15px;
  }

  /* 上部を縦積みに */
  .girl-detail__upper {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }

  .girl-detail__left {
    flex: none;
    width: 100%;
  }

  .girl-detail__right {
    flex: none;
    width: 100%;
  }

  /* メイン画像 */
  .girl-detail__main-image {
    margin-bottom: 10px;
  }

  /* サムネイル */
  .girl-detail__thumbnails {
    gap: 5px;
  }

  /* セクション */
  .girl-detail__section {
    padding: 20px;
    margin-bottom: 15px;
  }

  .girl-detail__section-title {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }

  /* プロフィール */
  .girl-detail__profile-label {
    flex: 0 0 70px;
    font-size: 1.4rem;
  }

  .girl-detail__profile-value {
    font-size: 1.4rem;
  }

  /* Q&A */
  .girl-detail__qa-question,
  .girl-detail__qa-answer {
    font-size: 1.4rem;
  }

  /* コメント */
  .girl-detail__comment-text {
    font-size: 1.4rem;
  }

  /* 日記 */
  .girl-detail__diary-title {
    font-size: 1.4rem;
  }
}

/*====================================
  /girls/ 絞り込みフィルター
====================================*/
.castlist-filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.castlist-filter__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.castlist-filter__row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.castlist-filter__item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 150px;
}

.castlist-filter__item--button {
  flex: 0 0 auto;
  min-width: auto;
  justify-content: flex-end;
}

.castlist-filter__label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.castlist-filter__input,
.castlist-filter__select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.castlist-filter__input:focus,
.castlist-filter__select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.castlist-filter__input::placeholder {
  color: var(--color-text-placeholder);
}

.castlist-filter__reset {
  height: 40px;
  padding: 0 20px;
  background-color: var(--color-bg-muted);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.castlist-filter__reset:hover {
  background-color: #e0e0e0;
  color: var(--color-text);
}

/* 検索結果なし */
.castlist-noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* 店舗名表示 */
.castlist-item__shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 4px 0;
  text-align: center;
}

/* 出勤情報表示 */
.castlist-item__schedule {
  font-size: 1.4rem;
  color: var(--color-success);
  font-weight: 500;
  margin: 0 0 4px 0;
  text-align: center;
}

/* 新人マーク */
.castlist-item__newmark {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 2;
  line-height: 1;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .castlist-filter {
    padding: 15px 0;
  }

  .castlist-filter__container {
    padding: 0 15px;
  }

  .castlist-filter__row {
    flex-direction: column;
    gap: 10px;
  }

  .castlist-filter__item {
    min-width: 100%;
  }

  .castlist-filter__item--button {
    min-width: 100%;
  }

  .castlist-filter__reset {
    width: 100%;
  }

  .castlist-item__shop {
    font-size: 1.4rem;
  }

  .castlist-item__schedule {
    font-size: 1.4rem;
  }
}


/*====================================
  出勤情報 日付ナビ（共通）
====================================*/
.schedule-date-nav-section {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  position: sticky;
  top: 124px;
  z-index: 40;
}

.schedule-date-nav-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.schedule-date-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.schedule-date-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.25s ease;
  background-color: var(--color-bg-section);
}

.schedule-date-nav__item:hover {
  background-color: var(--color-primary-light);
}

.schedule-date-nav__item--active {
  background-color: var(--color-primary);
  color: #fff;
}

.schedule-date-nav__item--active:hover {
  background-color: var(--color-primary-hover);
}

.schedule-date-nav__month {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.schedule-date-nav__day {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

/* 店舗詳細内の日付ナビ */
.schedule-main {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.schedule-main__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.schedule-title {
  text-align: center;
  margin-bottom: 40px;
}

.schedule-title__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
  display: inline-block;
}

.schedule-main .schedule-date-nav {
  margin-bottom: 20px;
}

.schedule-main .schedule-date-nav__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.schedule-main .schedule-date-nav__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--color-text);
  transition: all 0.25s ease;
  background-color: var(--color-bg-section);
}

.schedule-main .schedule-date-nav__item:hover {
  background-color: var(--color-primary-light);
}

.schedule-main .schedule-date-nav__item--active {
  background-color: var(--color-primary);
  color: #fff;
}

.schedule-main .schedule-date-nav__month {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.schedule-main .schedule-date-nav__day {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .schedule-date-nav-section {
    padding: 10px 0;
    top: 80px;
  }

  .schedule-date-nav__item {
    padding: 8px 2px;
  }

  .schedule-date-nav__month,
  .schedule-date-nav__day {
    font-size: 1.1rem;
  }

  .schedule-main .schedule-date-nav__item {
    padding: 8px 4px;
  }

  .schedule-main .schedule-date-nav__month,
  .schedule-main .schedule-date-nav__day {
    font-size: 1.4rem;
  }
}

/*====================================
  schedule/index.php - 出勤情報
====================================*/

/* コンテナ */
.schedule__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* 日付ナビゲーション */
.schedule__date-nav {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  position: sticky;
  top: 116px;
  z-index: 40;
}

.schedule__date-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}

.schedule__date-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.25s ease;
  background-color: var(--color-bg-section);
  position: relative;
}

.schedule__date-item:hover {
  background-color: var(--color-primary-light);
}

.schedule__date-item--active {
  background-color: var(--color-primary);
  color: #fff;
}

.schedule__date-item--active:hover {
  background-color: var(--color-primary-hover);
}

.schedule__date-day {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.4;
}

.schedule__date-num {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.schedule__date-today {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 2px;
  line-height: 1;
}

/* フィルター */
.schedule__filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.schedule__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.schedule__filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 150px;
}

.schedule__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.schedule__filter-select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.schedule__filter-select:focus,
.schedule__filter-input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.schedule__filter-input {
  height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.schedule__filter-input::placeholder {
  color: var(--color-text-placeholder);
}

.schedule__filter-item--button {
  flex: 0 0 auto;
  min-width: auto;
  justify-content: flex-end;
}

.schedule__filter-reset {
  height: 40px;
  padding: 0 20px;
  background-color: var(--color-bg-muted);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.schedule__filter-reset:hover {
  background-color: #e0e0e0;
  color: var(--color-text);
}

/* カードグリッド */
.schedule {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.schedule__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
  border: 1px solid var(--color-border);
}

.schedule__card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-medium);
}

.schedule__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.schedule__card-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.schedule__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.schedule__card:hover .schedule__card-img {
  transform: scale(1.02);
}

.schedule__card-time {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 10px;
  letter-spacing: 0.5px;
}

.schedule__card-info {
  padding: 12px 15px;
}

.schedule__card-shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 4px 0;
  text-align: center;
}

.schedule__card-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px 0;
  text-align: center;
}

.schedule__card-specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

/* 該当なし */
.schedule__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* ===== レスポンシブ対応 (タブレット) ===== */
@media screen and (max-width: 1024px) {
  .schedule__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .schedule__date-nav {
    padding: 10px 0;
  }

  .schedule__date-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .schedule__date-item {
    flex: 0 0 auto;
    min-width: 60px;
    padding: 8px 10px;
  }

  .schedule__date-day {
    font-size: 1.4rem;
  }

  .schedule__date-num {
    font-size: 1.4rem;
  }

  .schedule__filter {
    padding: 15px 0;
  }

  .schedule__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .schedule__filter-item {
    min-width: 100%;
  }

  .schedule__filter-item--button {
    min-width: 100%;
  }

  .schedule__filter-reset {
    width: 100%;
  }

  .schedule {
    padding: 25px 0;
  }

  .schedule__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .schedule__card-time {
    font-size: 1.4rem;
    padding: 5px 8px;
  }

  .schedule__card-info {
    padding: 10px 12px;
  }

  .schedule__card-name {
    font-size: 1.4rem;
  }

  .schedule__card-specs {
    font-size: 1.4rem;
  }
}


/*====================================
  sokuhime/index.php - 即姫
====================================*/

/* コンテナ */
.sokuhime__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フィルター */
.sokuhime__filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.sokuhime__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.sokuhime__filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 130px;
}

.sokuhime__filter-item--button {
  flex: 0 0 auto;
  min-width: auto;
  justify-content: flex-end;
}

.sokuhime__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.sokuhime__filter-input,
.sokuhime__filter-select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.sokuhime__filter-input:focus,
.sokuhime__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.sokuhime__filter-input::placeholder {
  color: var(--color-text-placeholder);
}

.sokuhime__filter-reset {
  height: 40px;
  padding: 0 20px;
  background-color: var(--color-bg-muted);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.sokuhime__filter-reset:hover {
  background-color: #e0e0e0;
  color: var(--color-text);
}

/* カードグリッド */
.sokuhime {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.sokuhime__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.sokuhime__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.sokuhime__card:hover {
  box-shadow: var(--shadow-md);
}

.sokuhime__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sokuhime__card-image {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
}

.sokuhime__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.sokuhime__card:hover .sokuhime__card-img {
  transform: scale(1.02);
}

/* 受付状況バッジ */
.sokuhime__card-status {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 6px 10px;
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
}

.sokuhime__card-status--now {
  background-color: rgba(233, 30, 99, 0.9);
}

.sokuhime__card-status--soon {
  background-color: rgba(255, 152, 0, 0.9);
}

.sokuhime__card-status--later {
  background-color: rgba(100, 100, 100, 0.85);
}

.sokuhime__card-info {
  padding: 12px 15px;
}

.sokuhime__card-shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 4px 0;
  text-align: center;
}

.sokuhime__card-name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px 0;
  text-align: center;
}

.sokuhime__card-specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

/* 該当なし */
.sokuhime__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* ===== レスポンシブ対応 (タブレット) ===== */
@media screen and (max-width: 1024px) {
  .sokuhime__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .sokuhime__filter {
    padding: 15px 0;
  }

  .sokuhime__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .sokuhime__filter-item {
    min-width: 100%;
  }

  .sokuhime__filter-item--button {
    min-width: 100%;
  }

  .sokuhime__filter-reset {
    width: 100%;
  }

  .sokuhime {
    padding: 25px 0;
  }

  .sokuhime__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sokuhime__card-info {
    padding: 10px 12px;
  }

  .sokuhime__card-name {
    font-size: 1.4rem;
  }

  .sokuhime__card-specs {
    font-size: 1.4rem;
  }

  .sokuhime__card-status {
    font-size: 1.4rem;
    padding: 5px 8px;
  }
}


/*====================================
  event/ - イベント
====================================*/

/* コンテナ */
.event__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フィルター */
.event__filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.event__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.event__filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 200px;
}

.event__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.event__filter-select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.event__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* イベント一覧 */
.event {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.event__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.event__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.event__card:hover {
  box-shadow: var(--shadow-md);
}

.event__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.event__card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.event__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.event__card:hover .event__card-img {
  transform: scale(1.03);
}

.event__card-body {
  padding: 15px 20px;
}

.event__card-shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 6px 0;
}

.event__card-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.event__card-period {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  margin: 0 0 10px 0;
}

.event__card-badge {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: var(--radius-xs);
  margin-bottom: 10px;
}

.event__card-badge--active {
  background-color: var(--color-primary);
  color: #fff;
}

.event__card-badge--upcoming {
  background-color: var(--color-warning);
  color: #fff;
}

.event__card-desc {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 該当なし */
.event__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* ===== イベント詳細 ===== */
.event-detail {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.event-detail__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.event-detail__banner {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.event-detail__banner-img {
  width: 100%;
  height: auto;
  display: block;
}

.event-detail__content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.event-detail__shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 8px 0;
}

.event-detail__title {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px 0;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.event-detail__meta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.event-detail__meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  color: var(--color-text-secondary);
}

.event-detail__meta-item i {
  color: var(--color-primary);
  width: 16px;
  text-align: center;
}

.event-detail__body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}

.event-detail__back {
  text-align: center;
}

.event-detail__back-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.event-detail__back-link:hover {
  background-color: var(--color-bg-section);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.event-detail__back-link i {
  margin-right: 5px;
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .event__filter {
    padding: 15px 0;
  }

  .event__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .event__filter-item {
    min-width: 100%;
  }

  .event {
    padding: 25px 0;
  }

  .event__grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .event__card-body {
    padding: 12px 15px;
  }

  .event__card-title {
    font-size: 1.5rem;
  }

  .event__card-period {
    font-size: 1.4rem;
  }

  .event__card-desc {
    font-size: 1.4rem;
  }

  .event-detail {
    padding: 25px 0;
  }

  .event-detail__content {
    padding: 20px 15px;
  }

  .event-detail__title {
    font-size: 2.0rem;
  }

  .event-detail__body {
    font-size: 1.4rem;
  }
}


/*====================================
  news/ - 新着情報
====================================*/

/* コンテナ */
.news__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フィルター */
.news__filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.news__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.news__filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 200px;
}

.news__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.news__filter-select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.news__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

/* ニュース一覧 */
.news {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.news__item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
  border-left: 3px solid transparent;
}

.news__item:hover {
  box-shadow: var(--shadow-md);
  border-left-color: var(--color-primary);
}

.news__item-link {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.news__item-image {
  flex: 0 0 200px;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.news__item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.news__item:hover .news__item-img {
  transform: scale(1.03);
}

.news__item-body {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.news__item-date {
  font-size: 1.4rem;
  color: var(--color-text-light);
}

.news__item-badge {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-xs);
  color: #fff;
}

.news__item-badge--info {
  background-color: var(--color-slate);
}

.news__item-badge--campaign {
  background-color: var(--color-primary);
}

.news__item-badge--newface {
  background-color: var(--color-success);
}

.news__item-badge--schedule {
  background-color: var(--color-info);
}

.news__item-shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 4px 0;
}

.news__item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 該当なし */
.news__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .news__filter {
    padding: 15px 0;
  }

  .news__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .news__filter-item {
    min-width: 100%;
  }

  .news {
    padding: 25px 0;
  }

  .news__list {
    gap: 12px;
  }

  .news__item-image {
    flex: 0 0 100px;
  }

  .news__item-body {
    padding: 10px 12px;
  }

  .news__item-meta {
    gap: 6px;
    margin-bottom: 4px;
  }

  .news__item-date {
    font-size: 1.4rem;
  }

  .news__item-badge {
    font-size: 1.4rem;
    padding: 2px 6px;
  }

  .news__item-shop {
    font-size: 1.4rem;
  }

  .news__item-title {
    font-size: 1.4rem;
  }
}


/* ===== ニュース詳細 ===== */
.news-detail {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.news-detail__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.news-detail__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.news-detail__img {
  width: 100%;
  height: auto;
  display: block;
}

.news-detail__image--portrait {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.news-detail__content {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.news-detail__date {
  font-size: 1.4rem;
  color: var(--color-text-light);
}

.news-detail__shop {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 500;
  margin: 0 0 8px 0;
}

.news-detail__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 20px 0;
  line-height: 1.4;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-border);
}

.news-detail__body {
  font-size: 1.5rem;
  line-height: 1.8;
  color: #444;
}

.news-detail__back {
  text-align: center;
}

.news-detail__back-link {
  display: inline-block;
  padding: 12px 30px;
  background-color: #fff;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: all 0.25s ease;
}

.news-detail__back-link:hover {
  background-color: var(--color-bg-section);
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.news-detail__back-link i {
  margin-right: 5px;
}

@media screen and (max-width: 768px) {
  .news-detail {
    padding: 25px 0;
  }

  .news-detail__content {
    padding: 20px 15px;
  }

  .news-detail__title {
    font-size: 1.8rem;
  }

  .news-detail__body {
    font-size: 1.4rem;
  }
}


/*====================================
  共通 - 詳細ページ店舗リンク
====================================*/

/* 店舗名リンク */
.news-detail__shop-link,
.event-detail__shop-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.news-detail__shop-link:hover,
.event-detail__shop-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

.event-detail__meta-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.15s ease;
}

.event-detail__meta-link:hover {
  color: var(--color-primary);
}

/* 店舗リンクボタン */
.detail-shop-btn {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid var(--color-border);
  text-align: center;
}

.detail-shop-btn__link {
  display: inline-block;
  padding: 14px 30px;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
}

.detail-shop-btn__link:hover {
  background-color: var(--color-primary-hover);
}

.detail-shop-btn__link i {
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .detail-shop-btn {
    margin-top: 25px;
    padding-top: 20px;
  }

  .detail-shop-btn__link {
    display: block;
    padding: 14px 20px;
    font-size: 1.4rem;
  }
}


/*====================================
  diary/ - 日記
====================================*/

/* コンテナ */
.diary__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* フィルター */
.diary__filter {
  background-color: #fff;
  padding: 20px 0;
  border-bottom: 1px solid var(--color-border);
}

.diary__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
  flex-wrap: wrap;
}

.diary__filter-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 150px;
}

.diary__filter-item--button {
  flex: 0 0 auto;
  min-width: auto;
  justify-content: flex-end;
}

.diary__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.diary__filter-input,
.diary__filter-select {
  height: 40px;
  line-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text);
  background-color: #fff;
  transition: border-color 0.2s ease;
  width: 100%;
}

.diary__filter-input:focus,
.diary__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.diary__filter-input::placeholder {
  color: var(--color-text-placeholder);
}

.diary__filter-reset {
  height: 40px;
  padding: 0 20px;
  background-color: var(--color-bg-muted);
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  color: var(--color-text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}

.diary__filter-reset:hover {
  background-color: #e0e0e0;
  color: var(--color-text);
}

/* 日記一覧 */
.diary {
  padding: 40px 0;
  background-color: var(--color-bg-section);
}

.diary__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.diary__card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s ease;
}

.diary__card:hover {
  box-shadow: var(--shadow-md);
}

.diary__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.diary__card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.diary__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.diary__card:hover .diary__card-img {
  transform: scale(1.03);
}

.diary__card-body {
  padding: 15px 20px;
}

.diary__card-title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 10px 0;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.diary__card-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.diary__card-date {
  color: var(--color-text-light);
}

.diary__card-separator {
  color: var(--color-text-disabled);
  margin: 0 2px;
}

.diary__card-girl {
  color: var(--color-text);
  font-weight: 700;
}

.diary__card-shop {
  color: var(--color-primary);
  font-size: 1.4rem;
}

.diary__card-text {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 該当なし */
.diary__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* ===== レスポンシブ対応 (SP版) ===== */
@media screen and (max-width: 768px) {
  .diary__filter {
    padding: 15px 0;
  }

  .diary__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .diary__filter-item {
    min-width: 100%;
  }

  .diary__filter-item--button {
    min-width: 100%;
  }

  .diary__filter-reset {
    width: 100%;
  }

  .diary {
    padding: 25px 0;
  }

  .diary__list {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .diary__card-body {
    padding: 12px 15px;
  }

  .diary__card-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .diary__card-meta {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }

  .diary__card-text {
    font-size: 1.4rem;
    -webkit-line-clamp: 2;
  }
}


/* ============================================
   日記詳細ページ
   ============================================ */

.diary-detail {
  padding: 40px 0 60px;
}

.diary-detail__container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.diary-detail__image {
  flex: 0 0 350px;
}

.diary-detail__img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
}

.diary-detail__content {
  flex: 1;
  min-width: 0;
}

.diary-detail__meta {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 12px;
}

.diary-detail__date {
  color: #888;
}

.diary-detail__separator {
  margin: 0 4px;
  color: var(--color-text-disabled);
}

.diary-detail__girl {
  color: #e91e8c;
  font-weight: 500;
}

.diary-detail__shop {
  color: #888;
  font-size: 1.4rem;
}

.diary-detail__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 24px;
  line-height: 1.5;
}

.diary-detail__body {
  font-size: 1.5rem;
  line-height: 2;
  color: #444;
  margin-bottom: 40px;
}

.diary-detail__back {
  flex: 0 0 100%;
  text-align: center;
  margin-top: 20px;
}

.diary-detail__back-link {
  display: inline-block;
  padding: 12px 30px;
  background: var(--color-bg-subtle);
  color: var(--color-text-muted);
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 1.4rem;
  transition: background 0.2s ease;
}

.diary-detail__back-link:hover {
  background: #e0e0e0;
}

/* SP */
@media screen and (max-width: 768px) {
  .diary-detail {
    padding: 30px 0 50px;
  }

  .diary-detail__container {
    flex-direction: column;
    gap: 20px;
  }

  .diary-detail__image {
    flex: none;
    text-align: center;
  }

  .diary-detail__img {
    max-width: 300px;
  }

  .diary-detail__title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }

  .diary-detail__body {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 30px;
  }

  .diary-detail__meta {
    font-size: 1.4rem;
  }
}


/* ============================================
   店舗別出勤情報 (detail-schedule)
   ============================================ */

.detail-schedule__date-nav {
  background-color: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 15px 0;
  position: sticky;
  top: 55px;
  z-index: 40;
}

.detail-schedule__date-list {
  display: flex;
  gap: 8px;
  list-style: none;
}

.detail-schedule__date-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 8px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-subtle);
  cursor: pointer;
  transition: all 0.25s ease;
}

.detail-schedule__date-item:hover {
  background: #ffe0ec;
}

.detail-schedule__date-item--active {
  background: var(--color-primary);
  color: #fff;
}

.detail-schedule__date-item--active:hover {
  background: #d81b60;
}

.detail-schedule__date-day {
  font-size: 1.4rem;
  font-weight: 500;
}

.detail-schedule__date-num {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 2px;
}

.detail-schedule__date-today {
  font-size: 1.4rem;
  font-weight: 700;
  background: #fff;
  color: var(--color-primary);
  padding: 1px 5px;
  border-radius: var(--radius-xs);
  margin-top: 3px;
}

.detail-schedule__date-item--active .detail-schedule__date-today {
  background: #fff;
  color: var(--color-primary);
}

.detail-schedule__filter {
  margin-bottom: 25px;
}

.detail-schedule__filter-row {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.detail-schedule__filter-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.detail-schedule__filter-label {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.detail-schedule__filter-select {
  padding: 8px 12px;
  border: 1px solid var(--color-border-medium);
  border-radius: var(--radius-md);
  font-size: 1.4rem;
  background: #fff;
  min-width: 140px;
}

.detail-schedule__filter-select:focus {
  outline: none;
  border-color: var(--color-primary);
}

.detail-schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.detail-schedule__card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease;
}

.detail-schedule__card:hover {
  box-shadow: var(--shadow-md);
}

.detail-schedule__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.detail-schedule__card-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.detail-schedule__card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.detail-schedule__card:hover .detail-schedule__card-img {
  transform: scale(1.02);
}

.detail-schedule__card-time {
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 6px 10px;
}

.detail-schedule__card-info {
  padding: 12px 15px;
}

.detail-schedule__card-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 6px 0;
  text-align: center;
}

.detail-schedule__card-specs {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.4;
}

.detail-schedule__noresult {
  text-align: center;
  padding: 60px 20px;
  font-size: 1.6rem;
  color: var(--color-text-light);
}

/* タブレット */
@media screen and (max-width: 1024px) {
  .detail-schedule__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-schedule__date-list {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 5px;
  }

  .detail-schedule__date-item {
    flex: 0 0 auto;
    min-width: 58px;
    padding: 8px 10px;
  }

  .detail-schedule__date-day {
    font-size: 1.4rem;
  }

  .detail-schedule__date-num {
    font-size: 1.4rem;
  }

  .detail-schedule__filter-row {
    flex-direction: column;
    gap: 10px;
  }

  .detail-schedule__filter-select {
    min-width: 100%;
  }

  .detail-schedule__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .detail-schedule__card-info {
    padding: 8px 10px;
  }

  .detail-schedule__card-name {
    font-size: 1.4rem;
  }

  .detail-schedule__card-specs {
    font-size: 1.4rem;
  }
}


/* ============================================
   店舗別新着ニュース (detail-newslist)
   ============================================ */

.detail-newslist {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-newslist__item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-bg-muted);
}

.detail-newslist__image {
  flex: 0 0 180px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.detail-newslist__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

.detail-newslist__content {
  flex: 1;
  min-width: 0;
}

.detail-newslist__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.detail-newslist__date {
  font-size: 1.4rem;
  color: #888;
}

.detail-newslist__category {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  color: #fff;
}

.detail-newslist__category--info {
  background: var(--color-slate);
}

.detail-newslist__category--campaign {
  background: var(--color-primary);
}

.detail-newslist__category--entry {
  background: var(--color-success);
}

.detail-newslist__category--schedule {
  background: var(--color-info);
}

.detail-newslist__title {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.detail-newslist__body {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-newslist__item {
    flex-direction: column;
    gap: 12px;
    padding: 15px;
  }

  .detail-newslist__image {
    flex: none;
  }

  .detail-newslist__title {
    font-size: 1.5rem;
  }

  .detail-newslist__body {
    font-size: 1.4rem;
  }
}


/* ============================================
   店舗別イベント (detail-event)
   ============================================ */

.detail-event__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-event__item {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-header);
  border: 1px solid var(--color-bg-muted);
}

.detail-event__image {
  position: relative;
  overflow: hidden;
}

.detail-event__img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.detail-event__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  color: #fff;
}

.detail-event__badge--active {
  background: var(--color-primary);
}

.detail-event__badge--upcoming {
  background: var(--color-warning);
}

.detail-event__content {
  padding: 20px 25px;
}

.detail-event__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.5;
}

.detail-event__period {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 12px;
}

.detail-event__period i {
  margin-right: 5px;
  color: var(--color-primary);
}

.detail-event__body {
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-event__content {
    padding: 15px 18px;
  }

  .detail-event__title {
    font-size: 1.6rem;
  }

  .detail-event__body {
    font-size: 1.4rem;
  }
}


/* ============================================
   料金システム (detail-system)
   ============================================ */

.detail-system__section {
  margin-bottom: 35px;
}

.detail-system__section:last-child {
  margin-bottom: 0;
}

.detail-system__inner {
  max-width: 500px;
  margin: 0 auto;
}

.detail-system__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

.detail-system__heading i {
  color: var(--color-primary);
  margin-right: 8px;
}

/* コース一覧 */
.detail-system__course-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-system__course-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.detail-system__course-time {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
}

.detail-system__course-price {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-primary);
}

.detail-system__course-desc {
  width: 100%;
  font-size: 1.4rem;
  color: #888;
  margin-top: 6px;
}

/* 指名料 */
.detail-system__nomination-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-system__nomination-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: var(--color-bg-section);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.detail-system__nomination-type {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text);
}

.detail-system__nomination-price {
  font-size: 2.0rem;
  font-weight: 700;
  color: var(--color-primary);
}

.detail-system__nomination-desc {
  width: 100%;
  font-size: 1.4rem;
  color: #888;
  margin-top: 6px;
}

/* オプション */
.detail-system__option-list {
  border: 1px solid var(--color-bg-muted);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.detail-system__option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  border-bottom: 1px solid var(--color-bg-muted);
}

.detail-system__option-item:last-child {
  border-bottom: none;
}

.detail-system__option-name {
  font-size: 1.4rem;
  color: var(--color-text);
}

.detail-system__option-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* 注意事項 */
.detail-system__note {
  background: #fafafa;
  border-radius: var(--radius-lg);
  padding: 20px 25px;
}

.detail-system__note-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.detail-system__note-list li {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.detail-system__note-list li::before {
  content: '※';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-system__heading {
    font-size: 1.6rem;
  }

  .detail-system__course-item {
    padding: 12px 15px;
  }

  .detail-system__course-time {
    font-size: 1.6rem;
  }

  .detail-system__course-price {
    font-size: 1.8rem;
  }

  .detail-system__nomination-item {
    padding: 12px 15px;
  }

  .detail-system__nomination-type {
    font-size: 1.4rem;
  }

  .detail-system__nomination-price {
    font-size: 1.8rem;
  }


  .detail-system__note {
    padding: 15px 18px;
  }
}


/* ============================================
   アクセス (detail-access)
   ============================================ */

.detail-access__section {
  margin-bottom: 40px;
}

.detail-access__section:last-child {
  margin-bottom: 0;
}

.detail-access__heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}

.detail-access__heading i {
  color: var(--color-primary);
  margin-right: 8px;
}

.detail-access__row {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.detail-access__info {
  flex: 1 1 0;
  min-width: 0;
}

.detail-access__row .detail-access__map-wrap {
  flex: 1 1 0;
  min-width: 0;
}

.detail-access__table {
  width: 100%;
  border-collapse: collapse;
}

.detail-access__table th,
.detail-access__table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--color-bg-muted);
  font-size: 1.4rem;
  text-align: left;
}

.detail-access__table th {
  width: 120px;
  font-weight: 700;
  color: var(--color-text);
  background: #fafafa;
}

.detail-access__table td {
  color: var(--color-text-secondary);
}

.detail-access__table td a {
  color: var(--color-primary);
  text-decoration: none;
}

.detail-access__table td a:hover {
  text-decoration: underline;
}


.detail-access__map-wrap {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.detail-access__map-wrap iframe {
  display: block;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
}


.detail-access__route-section {
  margin-bottom: 20px;
}

.detail-access__route-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
  padding-left: 12px;
  border-left: 3px solid var(--color-primary);
}

.detail-access__route-steps {
  list-style: none;
  counter-reset: step;
  padding-left: 0;
}

.detail-access__route-steps li {
  counter-increment: step;
  position: relative;
  padding: 8px 0 8px 35px;
  font-size: 1.4rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.detail-access__route-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: var(--radius-circle);
  display: flex;
  align-items: center;
  justify-content: center;
}

.detail-access__route-note {
  background: #fff8e1;
  border-radius: var(--radius-lg);
  padding: 15px 20px;
  margin-top: 20px;
}

.detail-access__route-note p {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.detail-access__route-note i {
  color: var(--color-warning);
  margin-right: 6px;
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-access__row {
    flex-direction: column;
  }

  .detail-access__info,
  .detail-access__row .detail-access__map-wrap {
    flex: none;
    width: 100%;
  }

  .detail-access__table th {
    width: 90px;
    padding: 10px 12px;
    font-size: 1.4rem;
  }

  .detail-access__table td {
    padding: 10px 12px;
    font-size: 1.4rem;
  }

  .detail-access__map-wrap iframe {
    height: 300px;
  }

  .detail-access__heading {
    font-size: 1.6rem;
  }

  .detail-access__route-title {
    font-size: 1.4rem;
  }

  .detail-access__route-steps li {
    font-size: 1.4rem;
    padding-left: 30px;
  }

  .detail-access__route-note {
    padding: 12px 15px;
  }
}


/* ============================================
  イベントプレビュー (detail-event-preview)
  店舗詳細TOPの最新1件表示用
============================================ */

.detail-event-preview {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.detail-event-preview__image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.detail-event-preview__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.detail-event-preview__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-primary);
  color: #fff;
}

.detail-event-preview__content {
  padding: 0 5px;
}

.detail-event-preview__title {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.4;
}

.detail-event-preview__period {
  font-size: 1.4rem;
  color: #888;
  margin-bottom: 10px;
}

.detail-event-preview__period i {
  margin-right: 4px;
  color: var(--color-primary);
}

.detail-event-preview__text {
  font-size: 1.4rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* SP */
@media screen and (max-width: 768px) {
  .detail-event-preview__title {
    font-size: 1.5rem;
  }

  .detail-event-preview__text {
    font-size: 1.4rem;
  }
}


/* ========================================
   アクセスページ
========================================*/

/* メインセクション */
.access-main {
  background-color: var(--color-bg-section);
  padding: 40px 0 60px;
}

.access-main__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* タイトル */
.access-title {
  text-align: center;
  margin-bottom: 40px;
}

.access-title__heading {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  padding-bottom: 15px;
  border-bottom: 3px solid var(--color-primary);
  display: inline-block;
}

/* 店舗情報テーブル */
.access-info {
  margin-bottom: 50px;
  background-color: var(--color-bg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.access-info__table {
  width: 100%;
  border-collapse: collapse;
}

.access-info__table th,
.access-info__table td {
  padding: 18px 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  border-bottom: 1px solid var(--color-border);
}

.access-info__table tr:last-child th,
.access-info__table tr:last-child td {
  border-bottom: none;
}

.access-info__table th {
  width: 160px;
  font-weight: 700;
  color: var(--color-text);
  background-color: var(--color-bg-subtle);
  text-align: left;
  vertical-align: top;
}

.access-info__table td {
  color: var(--color-text-secondary);
}

.access-info__table td a {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.access-info__table td a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

/* 地図セクション */
.access-map {
  margin-top: 50px;
}

.access-map__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-border-medium);
}

.access-map__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.access-map__embed iframe {
  display: block;
  width: 100%;
}

/* SP対応 */
@media screen and (max-width: 768px) {
  .access-main {
    padding: 30px 0 40px;
  }

  .access-main__container {
    padding: 0 15px;
  }

  .access-title {
    margin-bottom: 30px;
  }

  .access-title__heading {
    font-size: 2.2rem;
    padding-bottom: 12px;
    border-bottom-width: 2px;
  }

  .access-info {
    margin-bottom: 40px;
    border-radius: var(--radius-md);
  }

  .access-info__table th,
  .access-info__table td {
    padding: 14px 16px;
    font-size: 1.4rem;
    display: block;
    width: 100%;
  }

  .access-info__table th {
    padding-bottom: 8px;
    border-bottom: none;
    background-color: transparent;
    font-size: 1.3rem;
    color: var(--color-text-muted);
  }

  .access-info__table td {
    padding-top: 0;
    padding-bottom: 16px;
  }

  .access-info__table tr {
    border-bottom: 1px solid var(--color-border);
  }

  .access-info__table tr:last-child {
    border-bottom: none;
  }

  .access-map {
    margin-top: 40px;
  }

  .access-map__title {
    font-size: 1.9rem;
    margin-bottom: 15px;
    padding-bottom: 8px;
  }

  .access-map__embed {
    border-radius: var(--radius-md);
  }

  .access-map__embed iframe {
    height: 300px;
  }
}

/* ===== TOP: セクション共通 ===== */
.top-section {
  padding: 48px 0;
  border-top: 1px solid #eee;
}

.top-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.top-section__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
}

.top-section__title i {
  margin-right: 8px;
  color: #059669;
}

.top-section__more {
  font-size: 13px;
  color: #059669;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s;
}

.top-section__more:hover {
  opacity: 0.7;
}

/* ===== TOP: 写メ日記スライダー ===== */
.top-diary-slider {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.top-diary-slider::-webkit-scrollbar {
  display: none;
}

.top-diary-slider__track {
  display: flex;
  gap: 16px;
  padding-bottom: 8px;
}

.top-diary-slider__item {
  flex-shrink: 0;
  width: 140px;
  text-decoration: none;
  color: inherit;
}

.top-diary-slider__image {
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}

.top-diary-slider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.top-diary-slider__item:hover .top-diary-slider__img {
  transform: scale(1.05);
}

.top-diary-slider__title {
  font-size: 12px;
  font-weight: 500;
  color: #333;
  margin-top: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== TOP: 新着・イベント一覧 ===== */
.top-news-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: #eee;
  border-radius: 8px;
  overflow: hidden;
}

.top-news-list__item {
  display: flex;
  gap: 16px;
  padding: 14px 16px;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}

.top-news-list__item:hover {
  background: #f9fafb;
}

.top-news-list__image {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f5f5f5;
}

.top-news-list__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-news-list__body {
  flex: 1;
  min-width: 0;
}

.top-news-list__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.top-news-list__date {
  font-size: 11px;
  color: #999;
}

.top-news-list__cat {
  font-size: 10px;
  font-weight: 600;
  padding: 1px 8px;
  border-radius: 3px;
}

.top-news-list__cat--info { background: #dbeafe; color: #1e40af; }
.top-news-list__cat--campaign { background: #fef3c7; color: #92400e; }
.top-news-list__cat--entry { background: #dcfce7; color: #166534; }
.top-news-list__cat--schedule { background: #ede9fe; color: #5b21b6; }
.top-news-list__cat--active { background: #dcfce7; color: #166534; }
.top-news-list__cat--upcoming { background: #dbeafe; color: #1e40af; }

.top-news-list__title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 640px) {
  .top-section { padding: 32px 0; }
  .top-section__title { font-size: 1.2rem; }
  .top-diary-slider__item { width: 120px; }
  .top-news-list__image { width: 64px; height: 48px; }
  .top-news-list__title { font-size: 13px; }
}
