/* =============================================
   ホテルページ専用CSS（hotel.css）
   ============================================= */

.hotel-page {
  padding-top: 0;
}

/* ヒーローの高さを570pxに変更 */
.hotel-hero {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.hotel-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hotel-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.15);
}
.hotel-hero__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* hotelページのヘッダーを透明に */
body:has(.hotel-page) .site-header {
  background: transparent;
  box-shadow: none;
}

body:has(.hotel-page) .header-left,
body:has(.hotel-page) .header-right {
  background-color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
}
/* ── ② イントロ ── */
.hotel-intro {
  padding: 64px 0;
  background-color: #ffffff;
}
.hotel-intro__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.hotel-intro__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.75;
  color: #ab0000;
  margin-bottom: 28px;
}
.hotel-intro__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  margin-bottom: 24px;
}
.hotel-intro__text:last-child {
  margin-bottom: 0;
}

/* ── ③ カードセクション ── */
.hotel-cards-section {
  padding: 0 0 80px;
  background-color: #ffffff;
}
.hotel-cards-section__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.hotel-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}

/* カード共通 */
.hotel-card {
    background-color: #ab0000;
    border-radius: 40px;
    padding: 28px 32px 32px;
    color: #ffffff;
    text-align: center;
}
.hotel-card--red {
  background-color: #ab0000;
  color: #ffffff;
}

.hotel-card__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 12px;
}
.hotel-card__divider {
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40' height='6' viewBox='0 0 40 6'%3E%3Cpath d='M0 3 Q5 0 10 3 Q15 6 20 3 Q25 0 30 3 Q35 6 40 3' stroke='%23ffffff' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 40px 6px;
  opacity: 0.6;
  margin-bottom: 20px;
}

/* 料金カード */
.hotel-card__price {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 8px;
}
.hotel-card__price-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}

/* ご案内カード */
.hotel-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}
.hotel-card__info-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hotel-card__info-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
  opacity: 0.85;
}
.hotel-card__info-value {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.hotel-card__info-note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
}

/* ── 電話予約ボタン ── */
.hotel-tel-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.hotel-tel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 5px 50px;
  border-radius: 50px;
  border: 3px solid #ab0000;
  background-color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hotel-tel-btn:hover {
  background-color: #ab0000;
  border-color: #ab0000;
  opacity: 1;
}

.hotel-tel-btn:hover .hotel-tel-btn__label,
.hotel-tel-btn:hover .hotel-tel-btn__number {
  color: #ffffff;
}

.hotel-tel-btn:hover .hotel-tel-btn__icon {
  filter: brightness(0) invert(1);
}

.hotel-tel-btn {
  /* transitionを追加 */
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.hotel-tel-btn__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.hotel-tel-btn__text {
  color: #ab0000;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hotel-tel-btn__label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #ab0000;
}
.hotel-tel-btn__number {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #ab0000;
}

/* ── 定休日テキスト ── */
.hotel-holiday {
  text-align: center;
}
.hotel-holiday__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 30px 0 0 0;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #ab0000;
}

/* ── SP対応 ── */
@media (max-width: 768px) {
  .hotel-hero { height: 260px; }
  .hotel-intro { padding: 40px 0; }
  .hotel-cards { grid-template-columns: 1fr; }
  .hotel-tel-btn { padding: 16px 24px; }
  .hotel-tel-btn__number { font-size: 22px; }
}

/* スライダー全体 */
.hotel-slider {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
}
.hotel-slider__track-wrap {
  overflow: hidden;
  flex: 1;
}
.hotel-slider__track {
  display: flex;
  transition: transform 0.4s ease;
  gap: 16px;
  align-items: center;
}

/* 各アイテム：通常は小さく */
.hotel-slider__item {
  flex: 0 0 26%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: flex 0.4s ease, opacity 0.4s ease;
  opacity: 0.7;
}

/* 中央アイテムは大きく */
.hotel-slider__item.is-active {
  flex: 0 0 44%;
  opacity: 1;
  z-index: 1;
}

.hotel-slider__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.hotel-slider__caption {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #4f4f4f;
  text-align: center;
}

/* 矢印ボタン */
.hotel-slider__btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #ab0000;
  background-color: #ffffff;
  color: #ab0000;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s, color 0.2s;
  z-index: 2;
}
.hotel-slider__btn:hover {
  background-color: #ab0000;
  color: #ffffff;
}

/* インジケーター */
.hotel-slider__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}
.hotel-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #c0c0c0;
  cursor: pointer;
  transition: background-color 0.2s;
  border: none;
}
.hotel-slider__dot.active {
  background-color: #0051a3;
}

.hotel-slider-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.hotel-slider-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}


/* =============================================
   設備グリッド
   ============================================= */
.hotel-facilities {
  padding: 40px 0 80px;
  background-color: #ffffff;
}
.hotel-facilities__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.hotel-facilities__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
}
.hotel-facilities__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hotel-facilities__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.hotel-facilities__caption {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}

/* プレースホルダー */
.hotel-facilities__placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background-color: #e8e8e8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hotel-facilities__placeholder p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  color: #888888;
  text-align: center;
}



/* =============================================
   お部屋設備・アメニティ
   ============================================= */
.hotel-amenity {
  padding: 0 0 80px;
  background-color: #ffffff;
}
.hotel-amenity__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* カード枠 */
.hotel-amenity__card {
  border: 2px solid #ab0000;
  border-radius: 16px;
  padding: 40px 48px;
}

/* タイトル */
.hotel-amenity__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #ab0000;
  text-align: center;
  margin-bottom: 40px;
}

/* アイコングリッド */
.hotel-amenity__icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 16px;
  margin-bottom: 40px;
}

.hotel-amenity__icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

/* アイコン画像の背後に円を追加 */
.hotel-amenity__icon-img-wrap {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #f5f0f0; 
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}


.hotel-amenity__icon-img {
  width: 56px;  
  height: 56px;
  object-fit: contain;
  display: block;
}

.hotel-amenity__icon-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #4f4f4f; /* ← #a11f24 から変更 */
  text-align: center;
}

/* アメニティブロック */
.hotel-amenity__list-block {
  background-color: #f5f5f5;
  border-radius: 8px;
  padding: 28px 40px;
}
.hotel-amenity__list-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #ab0000;
  text-align: center;
  margin-bottom: 20px;
}
.hotel-amenity__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.hotel-amenity__list-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.hotel-amenity__list-name {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}
.hotel-amenity__list-price {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.1em;
  color: #4f4f4f;
}

/* SP対応 */
@media (max-width: 768px) {
  .hotel-amenity__card {
    padding: 28px 20px;
  }
  .hotel-amenity__icons {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 12px;
  }
  .hotel-amenity__icon-img {
    width: 48px;
    height: 48px;
  }
  .hotel-amenity__list-block {
    padding: 20px 16px;
  }
}

/* =============================================
   LADIES AREA
   ============================================= */
.ladies {
  position: relative;
  background-color: #fbf9f6;
  padding: 0;
}

/* 波線 */
.ladies__wave {
  width: 100%;
  line-height: 0;
  overflow: hidden;
}
.ladies__wave svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* インナー */
.ladies__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}

/* タイトル */
.ladies__header {
  text-align: center;
  margin-bottom: 56px;
}
.ladies__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 62px;
  line-height: 1.73;
  letter-spacing: 0.1em;
  color: #ab0000;
}
.ladies__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.75;
  color: #ab0000;
  margin-top: -4px;
}

/* メインブロック */
.ladies__main-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 64px;
}
.ladies__main-img-wrap {
  border-radius: 8px;
  overflow: hidden;
}
.ladies__main-img {
  width: 100%;
  height: auto;
  display: block;
}

/* 下段 */
.ladies__sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.ladies__sub-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.ladies__sub-photo-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ladies__sub-photo-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.ladies__sub-caption {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}

/* テキスト共通 */
.ladies__heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #ab0000;
  margin-bottom: 16px;
}
.ladies__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  margin-bottom: 16px;
}
.ladies__text:last-child {
  margin-bottom: 0;
}

/* SP対応 */
@media (max-width: 768px) {
  .ladies__title { font-size: 36px; }
  .ladies__main-row { grid-template-columns: 1fr; gap: 32px; }
  .ladies__sub-row { grid-template-columns: 1fr; gap: 32px; }
}

/* =============================================
   AREA MAP (完全再現・動作保証版)
   ============================================= */
.area-map {
  padding: 80px 0;
  background-color: #ffffff;
}
.area-map__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.area-map__header {
  text-align: center;
  margin-bottom: 48px;
}
.area-map__title {
  font-family: 'Dela Gothic One', sans-serif;
  font-weight: normal;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #8a141a;
  margin-bottom: 4px;
}
.area-map__subtitle {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8a141a;
}

/* マップグリッド（PC時は横並び） */
.area-map__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 24px;
}

/* 薄いクリーム色のカード本体（ここが確実にクリックを受け取るようにします） */
.area-map__item {
  position: relative;
  z-index: 1; /* 重なり順をシンプルにリセット */
  background-color: #fbf9f6;
  border-radius: 32px;
  padding: 40px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.area-map__item:hover {
  transform: translateY(-4px);
  opacity: 0.95;
}

/* カード内のヘッダー（中央揃え） */
.area-map__card-header {
  text-align: center;
  margin-bottom: 24px;
  pointer-events: none; /* テキスト選択がクリックを邪魔しないようにガード */
}
.area-map__card-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: #8a141a;
  margin-bottom: 12px;
}
.area-map__card-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #333333;
}

/* 画像ラッパー */
.area-map__img-container {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  pointer-events: none; /* ← ここはそのまま、クリックイベントを親（.area-map__item）に流します */
}
.area-map__img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* ホバー時に虫眼鏡マークを表示 & 画像を少し拡大 */
.area-map__item:hover .area-map__zoom-icon {
  opacity: 1;
}
.area-map__item:hover .area-map__img {
  transform: scale(1.02);
}

.area-map__zoom-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 2;
}

.area-map__note {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #666666;
  text-align: center;
}

/* タブレット・スマホ用のレスポンシブ対応 */
@media (max-width: 768px) {
  .area-map {
    padding: 60px 0;
  }
  .area-map__title {
    font-size: 38px;
  }
  .area-map__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .area-map__item {
    padding: 30px 20px;
    border-radius: 24px;
  }
  .area-map__card-title {
    font-size: 18px;
  }
  .area-map__card-sub {
    font-size: 13px;
  }
  .area-map__zoom-icon {
    opacity: 1;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

/* =============================================
モーダル (重なり順修正版)
   ============================================= */
.map-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999; /* 確実に最前面へ持ってくるよう大きな値に指定 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.map-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.map-modal__content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
}

.map-modal__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}

.map-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 30px;
  cursor: pointer;
}



/* =============================================
注意事項
   ============================================= */
.hotel-caution {
  padding: 0 0 80px;
  background-color: #ffffff;
}
.hotel-caution__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* カード */
.hotel-caution__card {
  border: 2px solid #ab0000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* カードヘッダー（ボルドー帯） */
.hotel-caution__card-header {
  background-color: #ab0000;
  padding: 18px 28px;
}
.hotel-caution__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ffffff;
}

/* リスト */
.hotel-caution__list {
  list-style: none;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hotel-caution__list li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  padding-left: 1em;
  position: relative;
}
.hotel-caution__list li::before {
  content: '・';
  position: absolute;
  left: 0;
}

/* 電話ボタン */
.hotel-caution__tel-wrap {
  display: flex;
  justify-content: center;
}
.hotel-caution__tel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 64px;
  border-radius: 50px;
  border: 2px solid #ab0000;
  background-color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.hotel-caution__tel-btn:hover {
  opacity: 0.8;
}
.hotel-caution__tel-icon {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex-shrink: 0;
}
.hotel-caution__tel-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hotel-caution__tel-label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #ab0000;
  text-align: center;
}
.hotel-caution__tel-number {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  letter-spacing: 0.05em;
  color: #ab0000;
}


/* =============================================
   キャンセルポリシー
   ============================================= */
.hotel-cancel {
  padding: 0 0 80px;
  background-color: #ffffff;
}
.hotel-cancel__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 40px;
  background-color: #fbf9f6;
  border-radius: 32px;
}

/* カード */
.hotel-cancel__card {
  border: 2px solid #ab0000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 48px;
}

/* カードヘッダー(ボルドー帯、注意事項と統一) */
.hotel-cancel__card-header {
  background-color: #ab0000;
  padding: 18px 28px;


}
.hotel-cancel__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.1em;
  color: #ab0000;
  text-align: center;
}

.hotel-cancel__subtitle {
    text-align: center;
}

/* テーブル */
.hotel-cancel__table-wrap {
  padding: 28px 32px 12px;
}
.hotel-cancel__table {
  width: 100%;
  border-collapse: collapse;
}
.hotel-cancel__table th,
.hotel-cancel__table td {
  font-family: 'Zen Maru Gothic', sans-serif;
  letter-spacing: 0.05em;
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.hotel-cancel__table th {
  font-weight: 700;
  font-size: 14px;
  color: #ab0000;
  border-bottom: 2px solid #ab0000;
}
.hotel-cancel__table td {
  font-weight: 500;
  font-size: 15px;
  color: #4f4f4f;
}
.hotel-cancel__table tbody tr:last-child td {
  border-bottom: none;
}

/* 注意書きリスト */
.hotel-cancel__notes {
  list-style: none;
  padding: 12px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.hotel-cancel__notes li {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  padding-left: 1.2em;
  position: relative;
}
.hotel-cancel__notes li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #ab0000;
  font-size: 11px;
  top: 5px;
}

/* SP対応 */
@media (max-width: 768px) {
  .hotel-cancel { padding: 0 0 56px; }
  .hotel-cancel__inner { padding: 32px 20px; border-radius: 24px; }
  .hotel-cancel__card { margin-bottom: 28px; }
  .hotel-cancel__card-header { padding: 14px 16px; }
  .hotel-cancel__title { font-size: 16px; }
  .hotel-cancel__table-wrap { padding: 16px 16px 4px; }
  .hotel-cancel__table th,
  .hotel-cancel__table td { padding: 10px 6px; font-size: 12.5px; }
  .hotel-cancel__notes { padding: 10px 16px 20px; }
  .hotel-cancel__notes li { font-size: 12.5px; }
}




/* SP対応 */
@media (max-width: 768px) {
  .hotel-caution__list {
    padding: 20px 16px;
  }
  .hotel-caution__tel-btn {
    padding: 16px 32px;
    width: 100%;
    justify-content: center;
  }
  .hotel-caution__tel-number {
    font-size: 22px;
  }
}
/* =============================================
   hotel.css SP追加対応
   ============================================= */
@media (max-width: 768px) {
  .hotel-hero { height: 220px; }
  .hotel-hero__title { font-size: 26px; }
  
  .hotel-intro { padding: 36px 0; }
  .hotel-intro__inner { padding: 0 16px; }
  .hotel-intro__heading { font-size: 18px; }
  .hotel-intro__text { font-size: 13px; }
  
  .hotel-cards-section { padding: 0 0 56px; }
  .hotel-cards-section__inner { padding: 0 16px; }
  .hotel-cards { grid-template-columns: 1fr; gap: 16px; margin-bottom: 28px; }
  .hotel-card { border-radius: 20px; padding: 24px 20px; }
  .hotel-card__title { font-size: 17px; }
  .hotel-card__price { font-size: 28px; }
  .hotel-card__info-label { font-size: 13px; }
  
  .hotel-tel-btn { padding: 14px 20px; }
  .hotel-tel-btn__number { font-size: 22px; }
  .hotel-tel-btn__icon { width: 36px; height: 36px; }
  .hotel-holiday__text { font-size: 12px; }
  
.hotel-slider-section { padding: 40px 0; }
  .hotel-slider-section__inner { padding: 0 8px; }

  /* ホテルスライダー → 1列グリッド */
  .hotel-slider {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .hotel-slider__btn { display: none !important; }
  .hotel-slider__track-wrap { display: contents !important; }
  .hotel-slider__track { display: contents !important; }
  .hotel-slider__item,
  .hotel-slider__item.is-active {
    flex: none !important;
    opacity: 1 !important;
    transform: none !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .hotel-slider__img {
    width: 100% !important;
    aspect-ratio: 4/3 !important;
    border-radius: 8px !important;
    height: auto !important;
  }
  .hotel-slider__caption { font-size: 12px !important; text-align: center !important; }
  .hotel-slider__dots { display: none !important; }

  
  .hotel-facilities { padding: 28px 0 48px; }
  .hotel-facilities__inner { padding: 0 16px; }
  .hotel-facilities__grid { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
  .hotel-facilities__caption { font-size: 12px; }
  
  .hotel-amenity { padding: 0 0 56px; }
  .hotel-amenity__inner { padding: 0 16px; }
  .hotel-amenity__card { padding: 24px 16px; border-radius: 12px; }
  .hotel-amenity__title { font-size: 18px; margin-bottom: 28px; }
  .hotel-amenity__icons { grid-template-columns: repeat(3, 1fr); gap: 20px 10px; }
  .hotel-amenity__icon-img-wrap { width: 72px; height: 72px; }
  .hotel-amenity__icon-img { width: 40px; height: 40px; }
  .hotel-amenity__icon-label { font-size: 12px; }
  .hotel-amenity__list-block { padding: 20px 16px; }
  .hotel-amenity__list-title { font-size: 16px; }
  .hotel-amenity__list-name,
  .hotel-amenity__list-price { font-size: 13px; }
  
  .ladies__inner { padding: 40px 16px 56px; }
  .ladies__title { font-size: 32px; }
  .ladies__subtitle { font-size: 14px; }
  .ladies__header { margin-bottom: 32px; }
  .ladies__main-row { grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
  .ladies__sub-row { grid-template-columns: 1fr; gap: 24px; }
  .ladies__heading { font-size: 17px; }
  .ladies__text { font-size: 13px; }
  .ladies__sub-photos { grid-template-columns: 1fr 1fr; gap: 12px; }
  .ladies__sub-caption { font-size: 12px; }
  
  .area-map { padding: 48px 0; }
  .area-map__inner { padding: 0 16px; }
  .area-map__title { font-size: 32px; }
  .area-map__grid { grid-template-columns: 1fr; gap: 20px; }
  .area-map__item { padding: 24px 16px; border-radius: 16px; }
  .area-map__card-title { font-size: 16px; }
  
  .hotel-caution { padding: 0 0 56px; }
  .hotel-caution__inner { padding: 0 16px; }
  .hotel-caution__card { margin-bottom: 28px; }
  .hotel-caution__card-header { padding: 14px 16px; }
  .hotel-caution__title { font-size: 16px; }
  .hotel-caution__list { padding: 16px; gap: 12px; }
  .hotel-caution__list li { font-size: 13px; }
  .hotel-tel-wrap { margin-bottom: 0; }
}
