@charset "UTF-8";

/* ============================================
   plan_pc.css（ご宿泊プラン PC版 - 色のみCSS変数化）
   
   【概要】
   - 841px以上で読み込まれるPC用CSS
   - ご宿泊プランページ専用のスタイル定義
   - ヘッダー／フッター共通部分はpublic_all.css側
   
   【前提条件】
   public_all.cssで定義されたCSS変数（色）を使用
   このファイルはpublic_all.cssの後に読み込むこと
   
   【セクション構成】
   0. ページ共通設定
   1. ヒーローエリア（トップビジュアル）
   2. プランセクション（料金表）
   3. 予約ボタンエリア
   4. 町内連携プラン
   5. 他のプランセクション
   6. 下部リンクセクション
   ============================================ */


/* ============================================
   0. ページ共通設定
   ============================================ */
#page-top-section,
#plan-section,
#another-plan-sec,
#abrest-rink-sec {
  width: 100%;
  margin: 0 auto;
}

.SP-TOP-page-read,
.sp-plan-sheet {
  display: none;
}


/* ============================================
   レスポンシブ調整（950px以下）
   ============================================ */

/* =========================================
   ▼ 950〜841px：SPヘッダー×PC本文の混在帯を安定化
   ========================================= */
@media screen and (max-width: 950px) {
	#page-top-section { padding-top: 60px; }/* 固定ヘッダー(60px)に合わせる */
}


/* ============================================
   1. ヒーローエリア（#page-top-section）
   ============================================ */

/* ============================================
   1. ご宿泊 TOP ヒーローエリア（PC）
   - 左：テキストボックス
   - 右：メイン画像
   ============================================ */

/* パンくず（TOP ＞ ご宿泊プラン） */
.section-stay1-Link {
  padding-top: 0px;
  font-size: 0.7rem;
  font-weight: 500; 
  color: var(--color-text-muted);
}

/* パンくず：通常時 */
.section-stay1-Link a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color .15s ease;
}

/* パンくず：ホバー時 */
.section-stay1-Link a:hover {
  color: var(--color-text-main);
}

/* 見出し・読み物テキスト */
.TOP-page-title {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 0.075rem;
}

.TOP-page-title-p {
  font-size: 1.3rem; 
  font-weight: 200; 
  letter-spacing: 0.075rem;
}

.TOP-page-read { 
  font-size: 1.15rem; 
  font-weight: 700;
  margin: 0px 0 30px 0; 
  padding: 0;
}

.TOP-page-p { 
  font-size: 0.75rem; 
  font-weight: 400; 
  line-height: 1.5;
  letter-spacing: 0.05rem;
  text-align: justify;
}

/* <span>改行の高さを指定する */
.spacer {
display: block;
height: 8px;
}

/* セクション全体（左右2カラム） */
#page-top-section {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  padding: 50px 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%;
  max-width: 550px;    /* 白いテキスト箱の最大幅 */
  background: var(--color-bg-main);
  padding: 60px 50px 60px;
  box-sizing: border-box;
  justify-content: flex-start;
}

/* テキストボックス内のラッパー */
.contents-textbox {
  width: 100%;
}

/* 見出しエリア（下線などは不要なのでリセット） */
.contents-heading {
  margin-top: 30px;
  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;
}

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


/* ============================================
   2. プランセクション（#plan-section）
   ============================================ */

/* ============================================
   2. ご宿泊プランセクション
   - 上：大きなイメージ（フェードスライドショー）
   - 下：2カラム（ご宿泊プラン / BBQ・サウナ）
   ============================================ */

#plan-section {
  width: 100%;
  background-color: var(--color-bg-beige);
  padding-bottom: 40px;
}
/* 上部の大きなイメージ（スライドショー）
   #plan-section に統一（PC）
---------------------------------------------- */
#plan-section .container{
  height: 350px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

/* 画像の上に暗めのオーバーレイを被せる */
#plan-section .container::before{
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.20);
  pointer-events: none;
  z-index: 2;
}

/* 各スライド画像 */
#plan-section .container .image{
  position: absolute;
  inset: 0;
  opacity: 0;
  background-size: cover;
  background-position: center 60%;
  z-index: 1;

  animation-name: image-switch-animation;
  animation-duration: 16s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: both;

  will-change: opacity;
}

/* 画像ソース（パスは今のまま踏襲） */
#plan-section .container .src1{ background-image: url("../../img/plan/P_img-plan-1.jpg"); }
#plan-section .container .src2{ background-image: url("../../img/plan/P_img-plan-2.jpg"); }
#plan-section .container .src3{ background-image: url("../../img/plan/P_img-plan-3.jpg"); }
#plan-section .container .src4{ background-image: url("../../img/plan/P_img-plan-4.jpg"); }

/* 表示タイミング（4秒ごと） */
#plan-section .container .image{ animation-delay: calc(var(--i) * 4s); }

@keyframes image-switch-animation{
  0%   { opacity: 0; }
  2%   { opacity: 1; }
  25%  { opacity: 1; }
  35%  { opacity: 0; }
  100% { opacity: 0; }
}


/* ▼ 下部：2カラム本体 */
.plan-inner {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 30px 10px 30px;
  display: flex;
  gap: 30px;              /* カラム間余白 */
  flex-wrap: nowrap;      /* PCでは横並び固定 */
}

/* 左右カラム */
.plan-col {
  width: 50%;
}

/* 見出し（ご宿泊プラン / BBQ・サウナプラン） */
.plan-title {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  margin-top: auto;
  margin-bottom: 0px;
  letter-spacing: 0.08rem;
}

/* タイトル右の小さな補足テキスト */
.plan-sub {
  font-size: 1.3rem;
  font-weight: 400;
  margin-left: 8px;
}

/* 注意書き */
.note {
  font-size: 0.65rem;
  margin: 0px 0 15px 20px;  
  line-height: 1.4;
  font-weight: 400;
}

/* 「詳細情報」タイトル */
.detail-title {
  font-size: 1rem;
  font-weight: bold;
  margin: auto 0px;
  display: flex;
  align-items: center;
  letter-spacing: 0.09rem;
}

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

/* 小見出し（BBQのご利用 等） */
.plan-small-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0 8px;
  padding-top: 5px;
}

/* ちょっと余白を足したい時のユーティリティ */
.mt20 { margin-top: 10px; }

/* 補足テキスト共通 */
.small-text {
  font-size: 0.65rem;
  font-weight: 500;
  margin: auto 0px;
}

.tell-text {
  color: var(--color-text-muted);
  text-decoration: none;
}

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

/* ===========================================================
   料金行（両端に文字＋中央を点線でつなぐ）
   - .plan-row   ：ご宿泊プラン
   - .plan-row-2 ：BBQ / サウナプラン
=========================================================== */
.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 5px 0 5px 14px;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
}
.plan-row-2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 5px 0 5px 14px;
  padding: 0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* 中央の点線（dotted） */
.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 5px;
  position: relative;
  z-index: 1;
  margin: 0;
}

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

/* （税込）などの小さめ文字 */
.price-small {
  font-size: 0.75rem;
  margin-left: 0px;
  font-weight: 400;
}


/* =============================
   詳細情報（ラベル＋内容の2列）
   - 左 200px 固定／右は自動
   ============================= */
.detail-grid {
  display: grid;
  grid-template-columns: 200px 1fr; /* 左固定／右は残り全部 */
  gap: 5px 25px;                    /* 上下・左右の余白 */
  line-height: 1.2;
  position: relative;
  margin-top: 10px;
}

/* 左側ラベル（お部屋／定員など） */
.detail-label {
  font-weight: 700;
  font-size: 0.8rem;
  margin-left: 14px;
}

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

/* 縦線（ラベルと本文の境界） */
.detail-grid::before {
  content: "";
  position: absolute;
  left: 208px;      /* 左列の幅と同じ */
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--color-bg-black);
  opacity: 0.3;
}

/* ============================================
   3. プラン下部ボタン（予約専用WEB／LINE）
   ============================================ */

#plan-button-area {
  margin: 15px auto 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 50px;
  flex-wrap: wrap;
  transform: scale(0.90); 
}

/* 両ボタン共通の幅 */
.plan-button,
.line-button {
  width: 100%;
  max-width: 310px;
}

/* 念のため：ボタン内リンク文字色の基本 */
.plan-button a,
.line-button a {
  color: var(--color-text-main);
}

/* ------------------------------
   ■ 黒ボタン（予約専用WEB）
   ------------------------------ */
.plan-button {
  width: 50%;
  padding: 12px 6px;
  background: var(--color-bg-black);
  color: var(--color-bg-main);
  border-radius: 999px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.plan-button:hover {
  background: var(--color-accent-main);
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

.plan-button .btn-main {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-top: 0px;
  line-height: 1.2;
}

.plan-button .btn-sub {
  font-size: 0.75rem;
  font-weight: 400;
  margin-top: 2px;
}


/* ------------------------------
   ■ LINEボタン（黒ボタンと動作を統一）
   ------------------------------ */
.line-button {
  width: 50%;
  background: #00B900;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--color-bg-main);
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

/* ▼ 黒ボタンと同じ浮き上がる動き */
.line-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(0,0,0,0.18);
}

/* ▼ 既存の白オーバーレイ効果も残す（自然な光感） */
.line-button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: 0.3s;
  pointer-events: none;
}
.line-button:hover::after {
  background: rgba(255,255,255,0.25);
}

.line-left {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0px auto;
}

.line-pill {
  background: var(--color-bg-main);
  color: #00B900;
  border-radius: 9999px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ============================================
   4. 冬季限定・町内連携プラン（安定版）
   ============================================ */

.another-plan-sec {
  width: 100%;
  margin: 50px auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  background: var(--color-bg-main);
}

/* 見出し */
.another-plan-sec .section-heading {
  max-width: 1000px;
  margin: 0 auto;
}

/* メインレイアウト */
.another-plan-top {
  max-width: 1000px;
  margin: 30px auto 0;
  display: flex;
  gap: 50px;
}

/* 左右カラム（PC基準） */
.another-plan-left,
.another-plan-right {
  width: 50%;
}

/* =========================
   カニプランだけ高さ揃え
   ========================= */
.kani-plan .another-plan-top {
  align-items: stretch;
}

.kani-plan .another-plan-left {
  display: flex;
}

.kani-plan .kani-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

/* 通常画像 */
.kani-img,
.golf-img {
  max-width: 380px;
  width: 100%;
  display: block;
}
/* =========================================
   another-plan：ズレ修正（PC）
   左＝固定幅 / 右＝残り全部
   ========================================= */

.another-plan-top{
  justify-content: center;  /* 全体を中央基準に */
  align-items: flex-start;
}

.another-plan-left{
  width: auto;              /* 50%を殺す */
  flex: 0 0 380px;          /* 左を画像基準で固定 */
}

.another-plan-right{
  width: auto;              /* 50%を殺す */
  flex: 1;                  /* 右は残り全部 */
  min-width: 0;             /* テキストはみ出し防止 */
}

/* 画像は列幅いっぱい */
.kani-img,
.golf-img{
  max-width: 100%;
  width: 100%;
}

/* ============================================
   950px〜841px（横並び維持）
   ============================================ */
@media screen and (max-width: 950px) {

  .another-plan-sec {
    padding: 40px 30px;
  }

  .another-plan-top {
    gap: 30px;
  }
 .another-plan-left{
    flex: 0 0 330px;   /* 少し細くする */
  }
  .another-plan-right {
    width: 55%;
  }
}

/* ============================================
   840px以下（縦並び）
   ============================================ */
@media screen and (max-width: 840px) {

  .another-plan-top {
    flex-direction: column;
  }
  .another-plan-left{
    flex: none;
    margin: 0 auto;    /* 画像ブロックを中央へ */
  }
  .another-plan-left,
  .another-plan-right {
    width: 100%;
  }

  .kani-img,
  .golf-img {
    height: auto !important;
    max-width: 100%;
  }

  .list {
    flex-direction: column;
  }

  .list-label,
  .list-text {
    width: 100%;
    text-align: center;
  }
}


.another-plan-sec {
  flex-direction: column;
  background: var(--color-bg-main);
  width: 100%;
  margin: 50px auto;
  padding: 0 40px;
  display: flex;
}

/* セクション見出し */
.another-plan-sec .section-heading {
  max-width: 1000px;
  margin: 0 auto;
}

/* 左画像＋右テキスト */
.another-plan-top {
  max-width: 1000px;
  width: 100%;
  display: flex;
  margin: 30px auto 0;
  gap: 50px;
  align-items: flex-start;
}

/* 左右カラム */
.another-plan-left {
  width: 50%;
}

.another-plan-right {
  width: 50%;
}

/* =========================================
   カニプランだけ高さを揃える（PC）
   ========================================= */

.kani-plan .another-plan-top {
  align-items: stretch;
}

.kani-plan .another-plan-left {
  display: flex;
}

.kani-plan .kani-img {
  width: 100%;
  height: 100% !important; /* public_all.css の height:auto を上書き */
  object-fit: cover;
  display: block;
}

/* 通常のカニ画像（高さ揃えしない時の基準） */
.kani-img {
  width: 100%;
  max-width: 380px;
  display: block;
}

/* ゴルフ画像 */
.golf-img {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center 85%;
  display: block;
}

/* =========================================
   テキストエリア
   ========================================= */

.otoku-plan-text {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.otoku-plan-read {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: justify;
  margin-bottom: 10px;
}

/* =========================================
   ゴルフ公式サイトバナー
   ========================================= */

.golf-btn-frame {
  width: 100%;
  display: flex;
  margin: 20px 0 0;
  border-radius: 14px;
  background-color: #0E5A3C;
  transition: 0.25s ease;
}

.banner {
  width: 100%;
  display: flex;
  margin: 10px;
  background-color: #C38C00;
  padding: 1.5px;
  mask:
    radial-gradient(circle at 0 0, transparent 15px, black 15px) 0 0,
    radial-gradient(circle at 100% 0, transparent 15px, black 15px) 100% 0,
    radial-gradient(circle at 0 100%, transparent 15px, black 15px) 0 100%,
    radial-gradient(circle at 100% 100%, transparent 15px, black 15px) 100% 100%;
  mask-size: 50% 50%;
  mask-repeat: no-repeat;
  transition: 0.25s ease;
}

.banner-1 {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0E5A3C;
  color: var(--color-bg-main);
  font-size: 1.2em;
  font-weight: 600;
  padding: 10px;
  mask:
    radial-gradient(circle at 0 0, transparent 15px, black 15px) 0 0,
    radial-gradient(circle at 100% 0, transparent 15px, black 15px) 100% 0,
    radial-gradient(circle at 0 100%, transparent 15px, black 15px) 0 100%,
    radial-gradient(circle at 100% 100%, transparent 15px, black 15px) 100% 100%;
  mask-size: 50% 50%;
  mask-repeat: no-repeat;
  transition: 0.25s ease;
}

/* ホバー */
.golf-btn-frame:hover {
  background-color: #147048;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
}

.golf-btn-frame:hover .banner {
  background-color: #E5A500;
}

.golf-btn-frame:hover .banner-1 {
  background-color: #147048;
}

/* =========================================
   詳細表
   ========================================= */

.list-area {
  margin-top: 12px;
  font-size: 0.8rem;
  border-top: 1px solid #000;
}

.list {
  border-bottom: 1px solid #000;
  display: flex;
}

.list-label {
  width: 100px;
  background: var(--color-bg-beige);
  font-weight: 700;
  text-align: center;
}

.list-label,
.list-text {
  padding: 10px 15px;
}

.list-text {
  flex: 1;
  text-align: justify;
}

.plan-label-font,
.plan-letterfont {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.3;
  letter-spacing: 0.025rem;
}

.note-small {
  font-size: 0.65rem;
  font-weight: 400;
  margin-top: 6px;
}

@media screen and (max-width: 950px) and (min-width: 841px) {

  .another-plan-sec {
    padding: 40px 30px;
    margin: 40px auto;
  }

  .another-plan-top {
    gap: 30px;
    margin-top: 25px;
    align-items: flex-start;
  }

  .another-plan-left {
    width: 45%;
    flex-shrink: 0;
  }

  .another-plan-right {
    flex: 1;
  }

  .kani-img,
  .golf-img {
    width: 100%;
  }

  .otoku-plan-text {
    font-size: 1.3rem;
  }

  .otoku-plan-read {
    font-size: 0.78rem;
    line-height: 1.7;
  }

  .banner-1 {
    font-size: 0.95em;
    padding: 9px 10px;
  }

  .list-label {
    width: 90px;
  }
}

@media screen and (max-width: 840px) {

  .another-plan-sec {
    padding: 40px 30px;
    margin: 40px auto;
  }

  .another-plan-top {
    flex-direction: column;
    gap: 25px;
  }

  .another-plan-left,
  .another-plan-right {
    width: 100%;
  }

  /* 画像 */
  .kani-img,
  .golf-img {
    max-width: 100%;
    width: 100%;
    height: auto !important; /* PCの height:100% を無効化 */
  }

  .golf-btn-frame {
    margin-top: 18px;
  }

  .otoku-plan-text {
    font-size: 1.4rem;
  }

  .otoku-plan-read {
    font-size: 0.85rem;
    line-height: 1.8;
  }

  /* 詳細表を縦並びに */
  .list {
    flex-direction: column;
  }

  .list-label,
  .list-text {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 750px) {

  .another-plan-sec {
    padding: 35px 25px;
    margin: 30px auto;
  }

  .another-plan-top {
    gap: 20px;
  }

  .otoku-plan-text {
    font-size: 1.3rem;
  }

  .otoku-plan-read {
    font-size: 0.8rem;
  }

  .banner-1 {
    font-size: 1rem;
    padding: 9px 12px;
  }
}


/* ============================================
   6. 下部リンクセクション
      （BBQ・サウナ・お部屋設備）
   ============================================ */

/* 3枚の画像を横に並べるラッパー */
.three-image-section {
  display: flex;
  width: 100%;
}

/* 各カード（画像＋オーバーレイ＋タイトル） */
.img-card {
  position: relative;
  flex: 1;
  overflow: hidden;
  border-right: 1px solid #fff;
  height: 180px;
}

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

/* カード内画像 */
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease, filter .5s ease;
  transform: scale(1); /* 初期状態 */
}

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

/* タイトルテキスト */
.img-card h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  z-index: 5;
  border-bottom: solid 1px #fff;
  padding-bottom: 5px; 
  pointer-events: none;
  opacity: 1;
  transition: opacity .35s ease, transform .35s 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);        /* 拡大率 */
  filter: brightness(1.05);      /* ほんの少し明るく */
}


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