@charset "UTF-8";

/* ============================================
   alfa_pc.css（RADOHRE+α PC版 - 完全最適化版）
   
   【対象画面サイズ】
   841px以上（タブレット・デスクトップ）
      
   【ファイル構成】
   1. CSS変数定義
   2. 基本設定
   3. ヒーローエリア
   4. RADOHRE+α セクション（タブ切り替え）
   5. プランセクション
   6. ボタンエリア
   7. 設備の紹介セクション
   8. 下部リンクセクション
   ============================================ */

/* ============================================
   2. 基本設定
   ============================================ */

/* ページ全体の背景色 */
body {
  background: var(--color-bg-main);
}

/* ────────────────────────────────
   PC/SP 表示切り替え
   ──────────────────────────────── */
.pc-only {
  display: block;                  /* PCでは表示 */
}

.sp-only,
.sp-detail {
  display: none !important;        /* PCでは非表示 */
}

/* ────────────────────────────────
   ユーティリティクラス
   ──────────────────────────────── */
.spacer {
  display: block;
  height: 8px;                     /* 改行用の空白スペース */
}

/* ============================================
   3. ヒーローエリア（#page-top-section）
   
   【構成】
   - 左側：テキスト情報（パンくず、タイトル、説明文）
   - 右側：メイン画像
   
   【レイアウト】
   - 左右2カラムのFlexbox配置
   - 左カラムは最大幅550px、右カラムは残りスペース
   ============================================ */

/* ────────────────────────────────
   パンくずナビゲーション
   ──────────────────────────────── */
.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);
}

/* ────────────────────────────────
   ページタイトル・見出し
   ──────────────────────────────── */

/* メインタイトル（例：RADOHRE+α） */
.TOP-page-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
  color: var(--color-text-main);
}

/* ルビ（ふりがな）のスタイル */
.TOP-page-title rt {
  font-size: var(--font-size-tiny);
  font-weight: 500;
  color: var(--color-text-light);
  white-space: pre;
  text-align: center;
}

/* サブタイトル（英語表記など） */
.TOP-page-title-p {
  font-size: 1.3rem;
  font-weight: 200;
  letter-spacing: 0.075rem;
  color: var(--color-text-main);
}

/* キャッチコピー */
.TOP-page-read {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 var(--spacing-lg) 0;
  padding: 0;
  color: var(--color-text-main);
}

/* 本文テキスト */
.TOP-page-p {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05rem;
  text-align: justify;              /* 両端揃え */
  color: var(--color-text-main);
}

/* ────────────────────────────────
   セクション全体のレイアウト
   ──────────────────────────────── */
#page-top-section {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: var(--spacing-xl) 0 0;
  background: var(--color-bg-main);
  display: flex;                    /* 左右2カラム配置 */
  justify-content: center;
  align-items: stretch;             /* 左右の高さを揃える */
  gap: 0;
  border-bottom: 1px solid var(--color-border-main);
}

/* 左右カラム共通スタイル */
.section-harf {
  flex: 1;
  min-width: 0;                     /* 子要素のはみ出し防止 */
  display: flex;
  flex-direction: column;
}

/* ────────────────────────────────
   左カラム：テキストエリア
   ──────────────────────────────── */
#page-top-section .section-harf:first-child {
  width: 55%;                       /* 全体の55%の幅 */
  max-width: 550px;                 /* 最大幅550px */
  background: var(--color-bg-main);
  padding: 60px var(--spacing-xl);
  box-sizing: border-box;
  justify-content: flex-start;
}

.contents-textbox {
  width: 100%;
}

.contents-heading {
  margin-top: var(--spacing-lg);
  margin-bottom: 70px;
  padding-bottom: 4px;
  border-bottom: none;
}

.contents-copy {
  margin-bottom: 24px;
}

/* ────────────────────────────────
   右カラム：画像エリア
   ──────────────────────────────── */
#page-top-section .section-harf:last-child {
  flex: 1;                          /* 残りスペースを全て使用 */
}

.img-top {
  width: auto;
  height: 100%;
  overflow: hidden;                 /* はみ出し部分を隠す */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* メイン画像 */
.img-top img {
  width: auto;
  height: 100%;                     /* ← 重要：親要素の高さに合わせる */
  object-fit: cover;                /* アスペクト比を保ちながら埋める */
  object-position: center;
  display: block;
}

/* SP用画像はPC版では非表示 */
.sp_img {
  display: none;
}

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

#alfa-sec {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--spacing-xl) 40px 0;
  background-color: var(--color-bg-main);
  display: flex;
  flex-direction: column;
}

/* ────────────────────────────────
   セクション見出し
   ──────────────────────────────── */
.section-heading {
  text-align: center;
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-sm);
  border-bottom: 1px solid var(--color-text-muted);
}

/* ルビ（α → アルファ） */
.section-heading rt {
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--color-text-light);
  white-space: pre;
  text-align: center;
}

/* ────────────────────────────────
   タブボタンエリア
   ──────────────────────────────── */
#alfa-sec .tab-button-area {
  margin-top: var(--spacing-md);
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);           /* ボタン間の隙間 */
  margin-bottom: var(--spacing-lg);
}

/* ────────────────────────────────
   タブボタン（個別）
   ──────────────────────────────── */
#alfa-sec .tab-button {
  width: 100%;
  position: relative;
  display: block;
  margin: 0;
  padding: 8px var(--spacing-lg);
  background: var(--color-bg-main);
  color: var(--color-text-main);
  font-size: var(--font-size-base);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  white-space: nowrap;              /* テキストを改行しない */
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast) ease;
}

/* タブボタン下の下線 */
#alfa-sec .tab-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  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: 500;
  margin-left: var(--spacing-xs);
  color: var(--color-text-light);
}

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

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

/* 選択中のタブ内容 */
.alfa-content.active {
  display: flex;                    /* 表示 */
  animation: fadeIn var(--transition-normal) ease forwards;
}

/* フェードインアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);    /* 下から10px */
  }
  to {
    opacity: 1;
    transform: translateY(0);       /* 元の位置 */
  }
}

/* ────────────────────────────────
   タブ内容：画像エリア
   ──────────────────────────────── */
.alfa-image {
  flex: 1 1 48%;                    /* 幅の48%を占める */
}

.alfa-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: opacity var(--transition-normal) ease;
}

/* ────────────────────────────────
   タブ内容：テキストエリア
   ──────────────────────────────── */
.alfa-text {
  flex: 1 1 48%;                    /* 幅の48%を占める */
  font-size: 0.85rem;
  line-height: 2;
  color: var(--color-text-main);
}

/* タブ内容の見出し（例：愛車と泊まる） */
.alfa-text h3 {
  font-size: var(--font-size-large);
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-main);
}

.alfa-text p {
  color: var(--color-text-main);
}

/* 強調テキスト（例：[注意事項]） */
.alfa-text strong {
  display: inline-block;
  margin-top: 15px;
  font-weight: 700;
  color: var(--color-text-main);
}

/* リンク */
.alfa-text a {
  color: var(--color-text-red);
  font-weight: 700;
  text-decoration: none;
}

.alfa-text a:hover {
  color: var(--color-text-light);
}

/* ============================================
   5. プランセクション（#plan-section）
   
   【構成】
   - 左カラム：ご宿泊プラン（料金表）
   - 右カラム：BBQ・サウナプラン（連携情報）
   
   【背景】
   - ベージュ色で他セクションと差別化
   ============================================ */

#plan-section {
  width: 100%;
  padding-top: var(--spacing-sm);
  background-color: var(--color-bg-beige);
  padding-bottom: var(--spacing-lg);
}

/* スライドショー用コンテナ（使用時） */
#plan-section .container {
  height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* ────────────────────────────────
   2カラムレイアウト
   ──────────────────────────────── */
.plan-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: var(--spacing-md) var(--spacing-lg) 0;
  display: flex;
  gap: var(--spacing-lg);
  flex-wrap: nowrap;
}

.plan-col {
  width: 50%;                       /* 左右均等に50%ずつ */
}

/* ────────────────────────────────
   タイトルアイコン（色付きバー）
   ──────────────────────────────── */
.title-icon {
  display: inline-block;
  width: 8px;
  height: 1.0em;
  margin: auto 8px auto 0;
  background: var(--color-accent-main);
  flex-shrink: 0;                   /* 縮小しない */
}

/* ────────────────────────────────
   プランタイトル
   ──────────────────────────────── */
.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  margin-top: auto;
  margin-bottom: 0;
  letter-spacing: 0.08rem;
  color: var(--color-text-main);
}

.plan-title .title-icon {
  width: 9px;
  height: 1.0em;
}

/* サブタイトル（補足説明） */
.plan-sub {
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 8px;
  color: var(--color-text-main);
}

/* 注意書き */
.note {
  font-size: var(--font-size-tiny);
  margin: 0 0 15px var(--spacing-md);
  line-height: 1.4;
  font-weight: 400;
  color: var(--color-text-main);
}

/* 詳細情報タイトル */
.detail-title {
  font-size: var(--font-size-base);
  font-weight: bold;
  margin: auto 0;
  display: flex;
  align-items: center;
  letter-spacing: 0.09rem;
  color: var(--color-text-main);
}

/* 小見出し */
.plan-small-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin: 0 0 0 8px;
  padding-top: var(--spacing-xs);
  color: var(--color-text-main);
}

/* マージン調整用 */
.mt20 {
  margin-top: var(--spacing-sm);
}

/* 補足テキスト */
.small-text {
  font-size: var(--font-size-tiny);
  font-weight: 500;
  margin: auto 0;
  color: var(--color-text-main);
}

/* 電話番号リンク */
.tell-text {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast) ease;
}

.tell-text:hover {
  color: var(--color-text-main);
}

/* ────────────────────────────────
   料金行（項目名と金額を点線でつなぐ）
   ──────────────────────────────── */
.plan-row {
  display: flex;
  justify-content: space-between;   /* 左右端に配置 */
  align-items: center;
  position: relative;
  margin: var(--spacing-xs) 0 var(--spacing-xs) 14px;
  padding: 0;
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--color-text-main);
}

.plan-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: var(--spacing-xs) 0 var(--spacing-xs) 14px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-main);
}

/* 中央の点線（疑似要素で作成） */
.plan-row::before,
.plan-row-2::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  border-bottom: 2px dotted var(--color-text-dark);
  z-index: 0;                       /* テキストの背後に配置 */
}

/* テキストに背景を持たせて点線を切る */
.plan-row p,
.plan-row-2 p {
  background: var(--color-bg-beige);
  padding: 0 var(--spacing-xs);
  position: relative;
  z-index: 1;                       /* 点線より前面に配置 */
  margin: 0;
  color: var(--color-text-main);
}

/* 金額部分 */
.price {
  font-weight: 700;
  color: var(--color-text-main);
}

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

/* ────────────────────────────────
   詳細情報グリッド
   ──────────────────────────────── */
.detail-grid {
  display: grid;
  grid-template-columns: 200px 1fr; /* 左200px、右は残り */
  gap: var(--spacing-xs) 25px;
  line-height: 1.2;
  position: relative;
  margin-top: var(--spacing-sm);
}

/* 左側ラベル */
.detail-label {
  font-weight: 700;
  font-size: var(--font-size-medium);
  margin-left: 14px;
  color: var(--color-text-main);
}

/* 右側テキスト */
.detail-text {
  font-weight: 600;
  font-size: var(--font-size-medium);
  color: var(--color-text-main);
}

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

/* ============================================
   6. ボタンエリア（#plan-button-area）
   
   【構成】
   - 予約ボタン（黒）
   - LINEお問い合わせボタン（緑）
   ============================================ */

#plan-button-area {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: var(--spacing-xl);
  flex-wrap: wrap;
  transform: scale(0.90);           /* 全体を90%に縮小 */
}

.plan-button,
.line-button {
  width: 100%;
  max-width: 310px;
}

.plan-button a,
.line-button a {
  color: var(--color-text-main);
}

/* ────────────────────────────────
   黒ボタン（予約専用）
   ──────────────────────────────── */
.plan-button {
  width: 50%;
  padding: 12px 6px;
  background: var(--color-btn-dark);
  color: var(--color-bg-main);
  border-radius: var(--border-radius-pill);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  cursor: pointer;
}

/* ホバー時の効果 */
.plan-button:hover {
  background: var(--color-btn-dark-hover);
  transform: translateY(-2px);      /* 上に2px浮く */
  box-shadow: 0 3px 10px var(--color-border-soft);
}

/* ボタン内のメインテキスト */
.plan-button .btn-main {
  font-size: var(--font-size-xlarge);
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 0;
  line-height: 1.2;
  color: var(--color-bg-main);
}

/* ボタン内のサブテキスト */
.plan-button .btn-sub {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2px;
  color: var(--color-bg-main);
}

/* ────────────────────────────────
   LINEボタン
   ──────────────────────────────── */
.line-button {
  width: 50%;
  background: var(--color-btn-line);
  padding: var(--spacing-sm) 18px;
  border-radius: var(--border-radius-pill);
  color: var(--color-btn-line-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px var(--color-border-soft);
}

/* ホバー時の白いオーバーレイ効果 */
.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: var(--font-size-large);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 auto;
  color: var(--color-btn-line-text);
}

/* LINEボタン右側の白いピル */
.line-pill {
  background: var(--color-bg-main);
  color: var(--color-btn-line);
  border-radius: var(--border-radius-pill);
  padding: 8px 18px;
  font-size: var(--font-size-base);
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================
   7. 設備の紹介セクション（#room-section）
   
   【機能】
   - スライダー形式で設備写真を表示
   - 左側：設備画像
   - 右側：設備名称・説明文・アメニティリスト
   ============================================ */

#room-section {
  max-width: 1080px;
  margin: 0 auto;
  padding: var(--spacing-xl) 40px 0;
  background-color: var(--color-bg-main);
  display: flex;
  flex-direction: column;
}

/* ────────────────────────────────
   スライダーコンテナ
   ──────────────────────────────── */
.slider-container {
  max-width: 950px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  margin: var(--spacing-lg) auto 70px;
}

/* 左側：画像エリア */
.slider-image-area {
  flex: 0 0 50%;                    /* 幅の50%を固定 */
  position: relative;
  padding: 0 0 0 var(--spacing-xl);
}

.slider-image {
  aspect-ratio: 16 / 10;            /* アスペクト比16:10 */
  object-fit: cover;
  display: block;
}

/* 右側：テキストエリア */
.slider-text-area {
  flex: 1;
  padding: 0 var(--spacing-xl) 0 var(--spacing-lg);
  margin: 0;
}

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

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

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

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

/* ────────────────────────────────
   スライダー矢印ボタン
   ──────────────────────────────── */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  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-sm);
}

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

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

/* ────────────────────────────────
   スライドアイテム
   ──────────────────────────────── */
.slide-item {
  display: none;                    /* デフォルトは非表示 */
}

.slide-item.active {
  display: flex;                    /* 選択中のみ表示 */
  max-width: 850px;
  margin: auto;
  padding: 0;
}

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

.three-image-section {
  display: flex;
  width: 100%;
}

/* ────────────────────────────────
   画像カード（個別）
   ──────────────────────────────── */
.img-card {
  position: relative;
  flex: 1;                          /* 均等に幅を分ける */
  overflow: hidden;
  border-right: 1px solid var(--color-bg-main);
  height: 180px;
  cursor: pointer;
}

.img-card:last-child {
  border-right: none;               /* 最後のカードは右ボーダーなし */
}

/* カード内画像 */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow) ease, 
              filter var(--transition-slow) ease;
  transform: scale(1);              /* 通常は等倍 */
}

/* 黒いオーバーレイ */
.img-card .overlay {
  position: absolute;
  inset: 0;                         /* top/right/bottom/left: 0 */
  background: rgba(0, 0, 0, 0.6);
  transition: var(--transition-slow) 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);
}

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

/* 画像をズーム */
.img-card:hover img {
  transform: scale(1.08);           /* 8%拡大 */
  filter: brightness(1.05);         /* 少し明るく */
}

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