@charset "UTF-8";

/* ============================================
   alfa_sp.css（RADOHRE+α SP版 - 完全最適化版）
   
   【対象画面サイズ】
   840px以下（スマートフォン・タブレット）
   
   【前提条件】
   public_all.cssで定義されたCSS変数を使用
   このファイルはpublic_all.cssの後に読み込むこと
   
   【変数の使用例】
   color: var(--color-text-main);
   background: var(--color-bg-beige);
   transition: var(--transition-normal);
   
   【ファイル構成】
   0. リセット・共通設定
   1. ヒーローエリア
   2. RADOHRE+α セクション（タブ切り替え）
   3. プランセクション
   4. 予約ボタンエリア
   5. 設備の紹介（スライダー）
   6. 下部リンクセクション
   7. レスポンシブ調整（640px以下、415px以下）
   ============================================ */

/* ============================================
   0. リセット・共通設定
   ============================================ */

/* ────────────────────────────────
   ボックスサイズを統一
   ──────────────────────────────── */
* {
  box-sizing: border-box;
}

/* ────────────────────────────────
   画像の基本設定
   ──────────────────────────────── */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ────────────────────────────────
   PC/SP 表示切り替え
   ──────────────────────────────── */
.sp-only {
  display: none !important;          /* SPでもデフォルトは非表示 */
}

.pc-only {
  display: block;                    /* SPでPC版見出しを表示 */
}

/* ────────────────────────────────
   改行用ユーティリティ
   ──────────────────────────────── */
.spacer {
  display: block;
  height: 8px;
}

/* ============================================
   1. ヒーローエリア（#page-top-section）
   
   【構成】
   - 上部：メイン画像（250px固定高）
   - 下部：テキスト情報（パンくず、タイトル、説明文）
   
   【レイアウト】
   - Flexboxの縦並び（column）
   - 画像を先頭に表示（order: 1）
   ============================================ */

/* ────────────────────────────────
   セクション全体
   ──────────────────────────────── */
#page-top-section {
  width: 100%;
  background: var(--color-bg-main);
  display: flex;
  flex-direction: column;           /* 縦並び */
  padding-top: var(--header-height); /* 固定ヘッダー分の余白 */
  padding-bottom: 40px;
  margin: 0 0 36px 0;
  border-bottom: 1px solid var(--color-border-main);
}

/* ────────────────────────────────
   画像エリア（上部に配置）
   ──────────────────────────────── */
#page-top-section .section-harf:last-child {
  order: 1;                         /* 表示順を先頭に */
  width: 100%;
}

/* メイン画像コンテナ */
#page-top-section .img-top {
  width: 100%;
  height: 250px;                    /* 固定高 */
  overflow: hidden;
  background: var(--color-bg-black);
}

/* メイン画像 */
#page-top-section .img-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;                /* アスペクト比を保ちながら埋める */
  object-position: center 40%;      /* 縦位置40%でトリミング */
}

/* ────────────────────────────────
   テキストエリア（下部に配置）
   ──────────────────────────────── */
#page-top-section .section-harf:first-child {
  order: 2;                         /* 表示順を2番目に */
  width: 100%;
  padding: var(--spacing-lg) 40px 0;
}

/* ────────────────────────────────
   パンくずナビゲーション
   ──────────────────────────────── */
.section-stay1-Link {
  padding-top: 0;
  font-size: var(--font-size-small);
  font-weight: 500;
  color: var(--color-text-muted);
}

.section-stay1-Link a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

.section-stay1-Link a:hover {
  color: var(--color-text-main);
}

/* ────────────────────────────────
   見出しエリア
   ──────────────────────────────── */
.contents-heading {
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-lg);
  padding-bottom: 4px;
  border-bottom: none;
}

/* メインタイトル */
.TOP-page-title {
  font-size: 1.9rem;
  font-weight: 700;
}

/* ルビ（ふりがな） */
.TOP-page-title rt {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--color-text-light);
}

/* サブタイトル */
.TOP-page-title-p {
  font-size: var(--font-size-large);
  font-weight: 300;
  letter-spacing: 0.06rem;
}

/* キャッチコピー */
.TOP-page-read {
  font-size: var(--font-size-base);
  font-weight: 700;
  line-height: 1.5;
  margin: var(--spacing-sm) 0 var(--spacing-md);
}

/* 本文テキスト */
.TOP-page-p {
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: justify;              /* 両端揃え */
}

/* 補足テキスト */
.TOP-small-text {
  font-size: var(--font-size-small);
  font-weight: 400;
}

/* ============================================
   2. RADOHRE+α セクション（#alfa-sec）
   
   【機能】
   - タブ切り替えで3種類のプラン内容を表示
   - SP版は画像とテキストを縦並びで表示
   
   【タブ内容】
   1. 車・バイクと
   2. ペットと
   3. 大人数で
   ============================================ */

#alfa-sec {
  background: var(--color-bg-main);
  padding: 40px 40px 0;
}

/* ────────────────────────────────
   セクション見出し（alfa.html用 - pタグ）
   ──────────────────────────────── */
#alfa-sec .section-heading {
  text-align: center;
  font-size: var(--font-size-xxlarge);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  padding: 0 auto var(--spacing-sm);
  border-bottom: 1px solid var(--color-text-main);
  white-space: nowrap;              /* 改行しない */
}

#alfa-sec .section-heading span {
  white-space: nowrap;
}

#alfa-sec .section-heading rt {
  font-size: var(--font-size-medium);
  color: var(--color-text-light);
}

/* ────────────────────────────────
   セクション見出し（index.html用 - divタグ）
   ──────────────────────────────── */
#alfa-sec .section-heading.sp-only {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  white-space: nowrap;
  border-bottom: none;
}

#alfa-sec .main-title-area {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
}

#alfa-sec .main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-text-main);
}

#alfa-sec .alpha {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-text-main);
}

#alfa-sec .alpha ruby {
  ruby-position: over;
}

#alfa-sec .alpha rt {
  font-size: var(--font-size-tiny);
  color: var(--color-text-light);
}

/* ────────────────────────────────
   キャッチコピー・説明テキスト
   ──────────────────────────────── */
#alfa-sec .copyfont {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-text-main);
  text-align: center;
}

#alfa-sec .letterfont {
  width: 100%;
  margin: 0 auto;
  max-width: 600px;
  font-size: 0.9rem;
  line-height: 2;
  color: var(--color-text-body);
  text-align: justify;
}

/* SP版では本文内のbrタグを無効化 */
#alfa-sec .letterfont br {
  display: none;
}

/* ────────────────────────────────
   コンテンツテキストボックス
   ──────────────────────────────── */
#alfa-sec .contents-textbox {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ────────────────────────────────
   ボタンエリア（index.html用）
   ──────────────────────────────── */
#alfa-sec .contents-button-area {
  display: flex;
  flex-direction: column;
  align-items: center;              /* 中央揃え */
  gap: var(--spacing-md);
  margin: 15px auto;
  width: 100%;
}

/* 共通ボタン */
#alfa-sec .contents-button {
  max-width: 400px;
  width: 100%;
  padding: 12px var(--spacing-xl);
  background: var(--color-btn-dark);
  color: var(--color-bg-main);
  font-size: var(--font-size-large);
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius-pill);
  transition: var(--transition-normal);
  box-shadow: 0 4px 12px var(--color-border-soft);
  margin: 0 auto;
}

#alfa-sec .contents-button:hover {
  background: var(--color-btn-dark-hover);
  transform: translateY(-2px);      /* 上に2px浮く */
}

#alfa-sec .section-inner > .section-harf:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* ────────────────────────────────
   タブボタンエリア
   ──────────────────────────────── */
#alfa-sec .tab-button-area {
  display: flex;
  flex-wrap: wrap;                  /* 必要に応じて折り返し */
  justify-content: center;
  gap: 8px;
  margin-bottom: 35px;
  width: 100%;
}

/* ────────────────────────────────
   タブボタン（個別）
   ──────────────────────────────── */
#alfa-sec .tab-button {
  flex: 1;                          /* 均等に幅を分ける */
  min-width: 90px;                  /* 最小幅（折り返し制御） */
  padding: 8px 12px;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  border: none;
  white-space: nowrap;
  cursor: pointer;
  position: relative;
}

/* タブボタン下の下線（通常は非表示） */
#alfa-sec .tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--color-border-main);
  opacity: 1;                      
  transition: opacity var(--transition-fast) ease;
}

/* タブボタン：選択中 / ホバー時 */
#alfa-sec .tab-button.active,
#alfa-sec .tab-button:hover {
  background: var(--color-accent-soft);
}

#alfa-sec .tab-button.active::after,
#alfa-sec .tab-button:hover::after {
  opacity: 1;
  background: var(--color-btn-dark);           
}

/* タブボタン内の小さい注記（例：(最大16人)） */
#alfa-sec .tab-button .index_small {
  font-size: 0.8em;
  font-weight: 600;
  margin-left: var(--spacing-xs);
}

/* ────────────────────────────────
   タブコンテンツエリア
   ──────────────────────────────── */
#alfa-sec .alfa-contents {
  position: relative;
}

/* 各タブの内容（通常は非表示） */
#alfa-sec .alfa-content {
  margin: 0 auto var(--spacing-xl);
  max-width: 600px;
  display: none;                    /* デフォルトは非表示 */
  gap: 40px;
  align-items: flex-start;
}

/* 選択中のタブ内容（SP版は縦並び） */
#alfa-sec .alfa-content.active {
  display: flex;
  flex-direction: column;           /* 縦並び */
}

/* ────────────────────────────────
   タブ内容：画像エリア
   ──────────────────────────────── */
#alfa-sec .alfa-image {
  flex: 1 1 100%;
  width: 100%;
  margin: 0 auto;
}

#alfa-sec .alfa-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ────────────────────────────────
   タブ内容：テキストエリア
   ──────────────────────────────── */
#alfa-sec .alfa-text {
  flex: 1 1 100%;
  font-size: 1rem;
  line-height: 2;
  margin-top: -25px;           
  margin-left: auto;
  margin-right: auto;
}

#alfa-sec .alfa-text br{
  display: none;
}

#alfa-sec .alfa-text h3 {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  text-align: center;
}

#alfa-sec .alfa-text strong {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
}

/* ============================================
   3. プランセクション（#plan-section）
   
   【構成】
   - 左カラム：ご宿泊プラン（料金表）
   - 右カラム：BBQ・サウナプラン（連携情報）
   
   【SP版レイアウト】
   - 縦並び（column）で表示
   - 各カラムは100%幅
   ============================================ */

/* ────────────────────────────────
   セクション全体
   ──────────────────────────────── */
#plan-section {
  width: 100%;
  background-color: var(--color-bg-beige);
  padding: var(--spacing-md) 0;
}

/* ────────────────────────────────
   プラン表全体（縦並び）
   ──────────────────────────────── */
.plan-inner {
  width: 100%;
  padding: 0 40px var(--spacing-md);
  display: flex;
  flex-direction: column;           /* 縦並び */
  gap: var(--spacing-lg);
}

/* ────────────────────────────────
   各カラム（左右共通）
   ──────────────────────────────── */
.plan-col {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

/* カラムタイトル */
.plan-title {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 15px;
}

/* タイトルアイコン（色付きバー） */
.title-icon {
  width: 8px;
  height: var(--font-size-large);
  background: var(--color-accent-main);
  flex-shrink: 0;
}

/* 補足テキスト */
.small-text {
  font-size: var(--font-size-medium);
  font-weight: 500;
}

/* ────────────────────────────────
   料金行
   ──────────────────────────────── */
.plan-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 8px var(--spacing-sm);
  font-size: 1.3rem;
  position: relative;
}

.plan-row p {
  margin: 0;
}

/* プラン名 */
.plan-row p:first-child {
  font-weight: 600;
  white-space: nowrap;
}

/* 金額 */
.plan-row p:last-child {
  font-weight: 600;
  white-space: nowrap;
  margin-left: auto;                /* 右端に配置 */
}

/* 中央の点線（疑似要素で作成） */
.plan-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-bottom: 2px dotted var(--color-text-dark);
  z-index: 0;
}

/* テキストに背景を持たせて点線を切る */
.plan-row p {
  background: var(--color-bg-beige);
  padding: 0 var(--spacing-xs);
  position: relative;
  z-index: 1;
}

/* 金額部分 */
.price {
  font-weight: 700;
}

/* 金額の補足（税込など） */
.price-small {
  font-size: var(--font-size-medium);
  margin-left: 0;
  font-weight: 400;
}

/* 注意書き */
.note {
  font-size: var(--font-size-medium);
  font-weight: 400;
  line-height: 1.5;
  margin: var(--spacing-sm) 0 0 15px;
}

/* ────────────────────────────────
   詳細情報エリア（SP用）
   ──────────────────────────────── */
.sp-detail {
  display: none;                    /* デフォルトは非表示 */
  flex-direction: column;
  gap: 8px;
  font-weight: 500;
  font-size: var(--font-size-medium);
}

/* 詳細情報の各行 */
.sp-detail-row {
  display: flex;
  gap: 12px;
}

/* ラベル（左側） */
.sp-detail-row span:first-child {
  min-width: 200px;
  font-weight: 700;
}

/* ────────────────────────────────
   詳細情報グリッド（タブレット用）
   ──────────────────────────────── */
.detail-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 250px 1fr; /* 左250px、右は残り */
  gap: var(--spacing-xs) 25px;
  line-height: 1.2;
  position: relative;
  margin-top: var(--spacing-sm);
}

.detail-grid .detail-text br {
  display: none;
}

/* 左側ラベル */
.detail-label {
  font-weight: 700;
  font-size: 0.9rem;
  margin-left: 14px;
}

/* 右側テキスト */
.detail-text {
  font-weight: 600;
  font-size: 0.9rem;
}

/* グリッド内の縦線（疑似要素） */
.detail-grid::before {
  content: "";
  position: absolute;
  left: 250px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-text-main);
  opacity: 0.3;
}

.plan-col {
  margin-bottom: -20px;
}

.plan-title {
  margin-bottom: 0;
}

/* ────────────────────────────────
   詳細情報エリア（縦並び）
   ──────────────────────────────── */
.sp-detail {
  gap: 0;
  margin: 0;
  width: 100%;
}

/* 詳細情報の各行（縦並び） */
.sp-detail-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: var(--spacing-xs) var(--spacing-sm);
  background: none;
  border-left: none;
  border-bottom: none;
}

.sp-detail-row:last-child {
  border-bottom: none;
}

/* ラベル */
.sp-detail-row span:first-child {
  max-width: 800px;
  width: 100%;
  font-weight: 700;
  color: var(--color-accent-main);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--color-text-light);
  letter-spacing: 0.02em;
}

/* 内容 */
.sp-detail-row span:nth-child(2) {
  width: 100%;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-text-main);
  padding: 0;
  border-top: none;
}

/* 補足（駐車場など） */
.sp-detail-row span:nth-child(3) {
  font-weight: 400;
  color: var(--color-text-main);
  margin-top: -5px;
  padding: 0;
  text-indent: 0;
}

/* ============================================
   4. 予約ボタンエリア（#plan-button-area）
   
   【構成】
   - 予約ボタン（黒）
   - LINEお問い合わせボタン（緑）
   
   【SP版レイアウト】
   - 縦並び（column）
   - レスポンシブなサイズ調整（clamp関数使用）
   ============================================ */

/* ────────────────────────────────
   ボタンエリア全体
   ──────────────────────────────── */
#plan-button-area {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2vw, 12px);       /* レスポンシブな間隔 */
  padding: 0 clamp(15px, 4vw, 40px);
  margin-top: clamp(20px, 5vw, 30px);
  align-items: center;
  margin-bottom: 0;
}

/* ────────────────────────────────
   ボタン共通設定
   ──────────────────────────────── */
.plan-button,
.line-button {
  width: 100%;
  max-width: clamp(260px, 80vw, 320px);
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  transition: var(--transition-normal);
  min-height: clamp(58px, 15vw, 72px);
}

/* ────────────────────────────────
   黒ボタン（予約専用）
   ──────────────────────────────── */
.plan-button {
  background: var(--color-btn-dark);
  color: var(--color-bg-main);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(15px, 4vw, 22px);
}

.plan-button:hover {
  background: var(--color-btn-dark-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

/* ボタン内メインテキスト */
.plan-button .btn-main {
  font-size: clamp(1.1rem, 3.2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: -8px;
}

/* ボタン内サブテキスト */
.plan-button .btn-sub {
  font-size: clamp(0.62rem, 1.8vw, 0.72rem);
  font-weight: 400;
  margin-top: -5px;
}

/* ────────────────────────────────
   LINEボタン
   ──────────────────────────────── */
.line-button {
  padding: 0 clamp(12px, 3.5vw, 20px);
  background: var(--color-btn-line);
  color: var(--color-bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 3vw, 16px);
  position: relative;
  overflow: hidden;
}

.line-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-button);
}

/* ホバー時の白いオーバーレイ効果 */
.line-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: var(--transition-normal);
  pointer-events: none;
}

.line-button:hover::after {
  background: rgba(255, 255, 255, 0.25);
}

/* LINEボタン左側テキスト */
.line-left {
  font-size: clamp(0.95rem, 2.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.2;
  flex: 0 0 auto;
}

/* LINEボタン右側の白いピル */
.line-pill {
  background: var(--color-bg-main);
  color: var(--color-btn-line);
  border-radius: var(--border-radius-pill);
  padding: clamp(6px, 2vw, 9px) clamp(14px, 4vw, 22px);
  font-size: clamp(0.78rem, 2.3vw, 0.95rem);
  font-weight: 700;
  white-space: nowrap;
  flex: 0 0 auto;
}

/* ============================================
   5. 設備の紹介（#room-section）
   
   【機能】
   - スライダー形式で設備写真を表示
   - 上部：設備画像
   - 下部：設備名称・説明文・アメニティリスト
   
   【SP版レイアウト】
   - 縦並び（column）
   - 左右矢印ボタンで切り替え
   ============================================ */

/* ────────────────────────────────
   セクション全体
   ──────────────────────────────── */
#room-section {
  width: 100%;
  padding: 40px;
  background-color: var(--color-bg-main);
}

/* セクション見出し */
#room-section .section-heading {
  text-align: center;
  font-size: var(--font-size-xxlarge);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  padding: 0 auto var(--spacing-sm);
  border-bottom: 1px solid var(--color-text-main);
}

/* ────────────────────────────────
   スライダーコンテナ
   ──────────────────────────────── */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--spacing-xl);     /* 矢印ボタン用の余白 */
}

/* ────────────────────────────────
   スライドアイテム
   ──────────────────────────────── */
.slide-item {
  display: none;                    /* デフォルトは非表示 */
  flex-direction: column;
  gap: var(--spacing-md);
}

.slide-item.active {
  display: flex;                    /* 選択中のみ表示 */
}

/* ────────────────────────────────
   画像エリア
   ──────────────────────────────── */
.slider-image-area {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.slider-image {
  width: 100%;
  aspect-ratio: 16 / 10;            /* アスペクト比16:10 */
  object-fit: cover;
  border-radius: 0;
}

/* ────────────────────────────────
   テキストエリア
   ──────────────────────────────── */
.slider-text-area {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding: 0 var(--spacing-md);
}

/* 施設名 */
.facility-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  text-align: center;
}

/* 施設説明文 */
.facility-description {
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: justify;
  margin-bottom: var(--spacing-sm);
}

/* アメニティタイトル */
.facility-amenity-title {
  font-size: var(--font-size-medium);
  font-weight: 700;
  margin-bottom: 3px;
}

/* アメニティリスト */
.facility-amenity-list {
  font-size: var(--font-size-medium);
  line-height: 1.5;
  margin-bottom: var(--spacing-xs);
}

/* 注意書き */
.facility-note {
  font-size: var(--font-size-small);
  line-height: 1.5;
  color: var(--color-text-main);
}

/* ────────────────────────────────
   スライダー矢印ボタン
   ──────────────────────────────── */
.slider-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: var(--header-height);
  height: var(--header-height);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity var(--transition-normal);
}

.slider-arrow:hover {
  opacity: 0.6;
}

.slider-arrow-left {
  left: var(--spacing-xs);
}

.slider-arrow-right {
  right: var(--spacing-xs);
}

.slider-arrow svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   6. 下部リンクセクション（画像カード）
   
   【構成】
   - 3枚の画像カードを縦並び
   - ホバー時に画像ズーム＆オーバーレイ薄化
   
   【リンク先例】
   - お部屋・設備
   - BBQについて
   - サウナについて
   ============================================ */

/* ────────────────────────────────
   画像カードセクション全体
   ──────────────────────────────── */
.three-image-section {
  display: flex;
  flex-direction: column;           /* 縦並び */
  width: 100%;
}

/* ────────────────────────────────
   画像カード（個別）
   ──────────────────────────────── */
.img-card {
  position: relative;
  height: 150px;
  overflow: hidden;
  cursor: pointer;
  border-bottom: 1px solid var(--color-bg-main);
}

.img-card:last-child {
  border-bottom: none;
}

/* カード内画像 */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* 黒いオーバーレイ */
.img-card .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  transition: var(--transition-normal) ease;
}

/* タイトルテキスト */
.img-card h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--color-bg-main);
  font-size: var(--font-size-xlarge);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 5;
  border-bottom: solid 1px var(--color-bg-main);
  padding-bottom: var(--spacing-xs);
  pointer-events: none;
  opacity: 1;
  transition: opacity var(--transition-slow) ease, transform var(--transition-slow) ease;
}

/* ────────────────────────────────
   ホバー効果
   ──────────────────────────────── */
.img-card:hover .overlay {
  background: rgba(0, 0, 0, 0.3);   /* オーバーレイを薄く */
}

.img-card:hover h3 {
  opacity: 0;                       /* タイトルを消す */
  transform: translate(-50%, -50%) scale(0.95);
}

.img-card:hover img {
  transform: scale(1.05);           /* 画像を5%拡大 */
}

/* ============================================
   7. レスポンシブ調整
   ============================================ */

/* ============================================
   7-1. 640px以下：中間サイズ調整
   ============================================ */
@media screen and (max-width: 640px) {

  /* ────────────────────────────────
     ヒーローセクション
     ──────────────────────────────── */
  #page-top-section {
    margin: 0;
  }

  #page-top-section .section-harf:first-child {
    padding: 25px var(--spacing-lg) 0;
  }

  .TOP-page-title {
    font-size: 1.7rem;
  }

  .TOP-page-title-p {
    font-size: 0.95rem;
  }

  .SP-TOP-page-read {
    font-size: 0.95rem;
  }

  .TOP-page-p {
    font-size: 0.72rem;
  }

  /* ────────────────────────────────
     RADOHRE+α セクション
     ──────────────────────────────── */
  #alfa-sec {
    margin-bottom: 0;
    padding: var(--spacing-xl) var(--spacing-lg) 0;
  }

  #alfa-sec .section-heading {
    font-size: var(--font-size-xlarge);
    margin-bottom: 25px;
  }

  #alfa-sec .tab-button-area {
    margin-bottom: 0;
    padding: 0 var(--spacing-sm);
    flex-wrap: wrap;
  }

  #alfa-sec .tab-button {
    font-size: 0.9rem;
    padding: var(--spacing-sm) 16px;
  }

  #alfa-sec .alfa-content {
    margin-top: var(--spacing-md);
    padding: 0 var(--spacing-sm);
  }

  #alfa-sec .alfa-text h3 {
    font-size: var(--font-size-base);
  }

  #alfa-sec .alfa-text {
    font-size: var(--font-size-medium);
  }

  /* ────────────────────────────────
     プランセクション
     ──────────────────────────────── */
  .detail-grid {
    display: none;                  /* グリッドを非表示 */
  }

  .sp-detail {
    display: block;                 /* SP版詳細を表示 */
  }

  #plan-section {
    margin: 0 auto;
  }

  .small-text {
    font-size: var(--font-size-small);
  }

  .plan-inner {
    padding: 0 var(--spacing-lg) var(--spacing-md);
  }

  .plan-title {
    font-size: 1.3rem;
    margin-bottom: 0;
  }

  .plan-row {
    font-size: var(--font-size-base);
    margin: 6px 0 6px 8px;
  }

  .price-small {
    font-size: var(--font-size-medium);
  }

  .note {
    font-size: var(--font-size-medium);
    margin: 8px 0 0 12px;
  }

  .sp-detail-row {
    font-size: 0.9rem;
  }

  /* ────────────────────────────────
     設備の紹介
     ──────────────────────────────── */
  #room-section {
    padding: var(--spacing-lg);
  }

  .slider-container {
    padding: 0;
  }

  .slider-text-area {
    padding: 0 35px;
  }

  .facility-title {
    font-size: var(--font-size-large);
  }

  .facility-description {
    font-size: var(--font-size-medium);
  }

  .facility-amenity-title,
  .facility-amenity-list {
    font-size: 0.75rem;
  }

  .facility-note {
    font-size: 0.6rem;
  }

  .slider-image-area {
    max-width: 90%;
    padding: 0 var(--spacing-lg);
  }

  .slider-arrow {
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   7-2. 415px以下：小型スマートフォン最適化
   ============================================ */
@media screen and (max-width: 415px) {

  /* ────────────────────────────────
     ヒーローセクション
     ──────────────────────────────── */
  #page-top-section {
    margin: 0;
  }

  #page-top-section .section-harf:first-child {
    padding: var(--spacing-md) 25px;
  }

  .TOP-page-title {
    font-size: 1.6rem;
  }

  .TOP-page-title-p {
    font-size: 0.9rem;
  }

  .SP-TOP-page-read {
    font-size: 0.9rem;
  }

  .TOP-page-p {
    font-size: var(--font-size-small);
    line-height: 1.7;
  }

  /* ────────────────────────────────
     RADOHRE+α セクション
     ──────────────────────────────── */
  #alfa-sec {
    padding: 25px;
  }

  #alfa-sec .section-heading {
    font-size: 1.05rem;
    margin-bottom: var(--spacing-md);
  }

  #alfa-sec .alpha {
    font-size: 1.05rem;
  }

  #alfa-sec .tab-button-area {
    padding: 0 var(--spacing-xs);
    gap: var(--spacing-xs);
  }

  #alfa-sec .tab-button {
    font-size: var(--font-size-medium);
    padding: 8px;
    flex-wrap: wrap;
  }

  .alfa-content {
    padding: 0 var(--spacing-xs);
  }

  #alfa-sec .alfa-text h3 {
    font-size: var(--font-size-base);
  }

  .alfa-text {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  /* ────────────────────────────────
     ご宿泊プラン
     ──────────────────────────────── */
  .plan-col .note {
    padding-bottom: var(--spacing-md);
  }

  .plan-inner {
    padding: 0 25px;
  }

  .plan-title {
    font-size: var(--font-size-large);
    gap: 2px;
  }

  .title-icon {
    width: 6px;
    height: var(--font-size-base);
  }

  .small-text {
    font-size: 0.75rem;
  }

  /* 料金行（ブロック表示に変更） */
  .plan-row {
    display: block;
    margin: 14px 0;
    padding-bottom: var(--spacing-xs);
    border-bottom: 1px solid var(--color-border-soft);
  }

  .plan-row:last-of-type {
    border-bottom: none;
  }

  .plan-row p {
    margin: 0;
    white-space: normal;
    text-align: left;
    line-height: 1.5;
  }

  /* プラン名 */
  .plan-row p:first-child {
    font-size: var(--font-size-base);
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-text-main);
  }

  .plan-row p:first-child .small-text {
    display: inline;
    font-size: var(--font-size-medium);
    font-weight: 500;
    margin-left: 4px;
    opacity: 0.85;
    color: var(--color-text-main);
  }

  /* 金額ブロック */
  .plan-row p:last-child {
    margin-top: 6px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: flex-start;
    text-align: left;
  }

  /* 条件（1名1泊など） */
  .plan-row p:last-child .price-small:first-child {
    display: block;
    width: 100%;
    text-align: right;
    font-size: var(--font-size-small);
    margin-bottom: 4px;
    padding-right: var(--spacing-xs);
    opacity: 0.85;
    font-weight: 500;
  }

  /* 金額 */
  .price {
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.2;
  }

  /* (税込) */
  .plan-row p:last-child .price-small:last-child {
    font-size: var(--font-size-small);
    opacity: 0.85;
    font-weight: 500;
  }

  /* ────────────────────────────────
     詳細情報（SP用）
     ──────────────────────────────── */
  .sp-detail-row {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  /* ────────────────────────────────
     ボタンエリア
     ──────────────────────────────── */
  #plan-button-area {
    gap: 15px;
    padding: var(--spacing-md) var(--spacing-md) 0;
    transform: scale(0.85);         /* 全体を85%に縮小 */
  }

  .plan-button,
  .line-button {
    max-width: 253px;
  }

  .plan-button .btn-main {
    font-size: var(--font-size-base);
  }

  .plan-button .btn-sub {
    text-align: center;
    font-size: 0.62rem;
    margin-top: -3px;
  }

  /* ────────────────────────────────
     設備の紹介
     ──────────────────────────────── */
  #room-section {
    padding: 25px;
  }

  .slider-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }

  .slider-text-area {
    max-width: 92%;
    padding: 0 25px;
  }

  .facility-title {
    font-size: var(--font-size-base);
  }

  .facility-description {
    font-size: var(--font-size-small);
    line-height: 1.6;
  }

  .facility-amenity-title,
  .facility-amenity-list {
    font-size: var(--font-size-small);
  }

  .facility-note {
    font-size: 0.6rem;
  }

  .slider-image-area {
    max-width: 92%;
    padding: 0 var(--spacing-lg);
  }

  .slider-arrow {
    width: 35px;
    height: 35px;
  }

  /* ────────────────────────────────
     下部リンク
     ──────────────────────────────── */
  .img-card {
    height: 140px;
  }

  .img-card h3 {
    font-size: 1.35rem;
  }
}

/* ============================================
   END OF FILE
   ============================================ */