@charset "UTF-8";

/* ============================================
   bbq_pc.css（BBQ棟について PC版 - 色のみCSS変数化）
   
   【概要】
   - 841px以上で読み込まれるPC用CSS
   - BBQ棟ページ専用のスタイル定義
   - ヘッダー／フッター共通部分はpublic_all.css側
   
   【前提条件】
   public_all.cssで定義されたCSS変数（色）を使用
   このファイルはpublic_all.cssの後に読み込むこと
   
   【セクション構成】
   0. ページ共通設定
   1. ヒーローエリア（トップビジュアル）
   2. バーベキュー棟のご利用について
   3. 夕食材つき（BBQ食材）
   4. 設備の紹介
   5. 下部リンクセクション
   ============================================ */


/* ============================================
   0. ページ共通設定
   ============================================ */
/* ページtopのセクション全体 */
#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);
}

/* 2.ご利用についてセクション、4.設備セクション */
#bbq-section,
#setubi-section { 
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px 0px;
  display: flex;
  background: var(--color-bg-main);
  flex-direction: column;
}

/* 3.夕食材セクション */
#shokuzai-section { 
  width: 100%; 
  margin: 0 auto;
  padding: 50px 40px 0px;
  background: var(--color-bg-beige);
  display: flex;
  flex-direction: column;
}

/* =========================================
   ▼ 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 ＞ BBQ棟について） */
.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;
}

/* 本文（小） */
.TOP-small-text {
  font-size: 0.65rem;
  font-weight: 400;
}

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


/* 左右カラム共通 */
.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;
}

/* =========================================
   サウナページの誘導：画像入りボタン
   ========================================= */
.pill-imgbtn {
  /* 横幅は最大350px、レスポンシブ */
  width: min(350px, 100%);  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 22px);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(14px, 2.2vw, 20px) clamp(18px, 3vw, 28px);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  color: #fff;
  text-decoration: none;
  /* 動きの基本設定 */
  transition: transform .18s ease, box-shadow .18s ease;
}

/* ボタン配置用ラッパー（中央寄せ） */
.bbq-btn-wrap{  
  display: block;
  width: 100%;
  margin: 30px auto 0;
  text-align: center;
}

/* 背景画像（確実表示）*/
.pill-imgbtn__bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* 黒オーバーレイ（通常時）左：薄め、右：しっかり黒 */
.pill-imgbtn__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(0,0,0,0.10) 0%,
    rgba(0,0,0,0.30) 30%,
    rgba(0,0,0,0.50) 55%,
    rgba(0,0,0,0.70) 75%,
    rgba(0,0,0,0.90) 100%
  );

  transition: background .25s ease;
}

/* ボタンテキスト */
.pill-imgbtn__text{
  position: relative;
  z-index: 2;
  margin-left: auto;
  margin-right: auto;

  font-weight: 500;
  font-size: clamp(13px, 1.8vw, 28px);
  line-height: 1.1;
  letter-spacing: .06em;

  text-shadow:
    0 2px 0 rgba(0,0,0,.35),
    0 0 8px rgba(0,0,0,.35);
}

/* 右矢印 */
.pill-imgbtn__arrow{
  position: relative;
  z-index: 2;
  width: clamp(10px, 1.4vw, 16px);
  height: clamp(10px, 1.4vw, 16px);
  flex: 0 0 auto;
  border-right: 1.75px solid rgba(255,255,255,.9);
  border-top: 1.75px solid rgba(255,255,255,.9);
  transform: rotate(45deg);
  transition: transform .2s ease;
}

/* ホバー時（PC / スマホ共通） */
.bbq-btn-wrap:hover .pill-imgbtn{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
}

.bbq-btn-wrap:hover .pill-imgbtn__arrow{
  transform: translateX(5px) rotate(45deg);
}

.bbq-btn-wrap:hover .pill-imgbtn__overlay{
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.50) 30%,
    rgba(0,0,0,0.70) 55%,
    rgba(0,0,0,0.90) 75%,
    rgba(0,0,0,1.00) 100%
  );
}

/* タップ / クリック時（沈む演出） */
.pill-imgbtn:active{
  transform: translateY(-1px);
  box-shadow: 0 8px 14px rgba(0,0,0,.22);
}

/* フォーカス（キーボード対応） */
.pill-imgbtn:focus-visible{
  outline: 3px solid rgba(255,255,255,.7);
  outline-offset: 3px;
}

/* ============================================
   2. バーベキュー棟のご利用について
   ============================================ */

/* セクション内 */
.bbq-flow-area {  
  max-width: 1000px;
  margin: 0px auto; }

/* 説明文（赤文字含む） */
.bbq-flow-intro { 
  text-align: center;
  font-size: 0.8rem;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
}

/* 注意書き */
.note { 
  color: #D32F2F;
  font-size: 0.7rem;
  margin: 5px 0px 20px;  
  line-height: 1.4;
  font-weight: 500;
}

/* PDF案内 */
.bbq-flow-intro a{ 
  color: var(--color-text-red);
  font-weight: 700;
  text-decoration: none; 
}

.bbq-flow-intro a:hover { color: var(--color-text-muted);}

/* 左画像＋右テキスト */
.bbq-price-top {
  width: 100%;
  display: flex;
  margin: 30px auto 60px;
  gap: 30px;
  align-items: stretch; 
}

.bbq-price-left,
.bbq-price-right{
  flex: 1;        /* 左右同じ幅 */
  width: auto;    
}

/* 左は画像を“高さ100%で埋める箱”にする */
.bbq-price-left{
  display: flex;
}

/* 連携プラン画像 */
.bbq-img{
  width: 100%;
  height: 100%;       
  object-fit: cover;
  object-position: center 85%;
  display: block;
}

/* 左右カラム */
.bbq-price-col { width: 100%; }

/* タイトル左の色付きバー */
.title-icon {
    display: inline-block;
    width: 8px;
    height: 1.0em;    
	margin: auto 8px auto 0px;
    background: var(--color-accent-main);
    flex-shrink: 0;
}

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

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

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

/* 料金行 */
.bbq-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0px 0px 0px 14px;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 600;
}

/* 中央の点線（dotted） */
.bbq-price-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  border-bottom: 2px dotted var(--color-text-dark); 
  z-index: 0;
}

/* テキスト側に背景を持たせて点線を切る */
.bbq-price-row p {
  background: var(--color-bg-main);
  padding: 0 5px;
  position: relative;
  z-index: 1;
  margin: 0;
}

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

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

/* =========================================
   利用の詳細表
   ========================================= */
/* 表全体：外枠を作る */
.bbq-list-area{
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 0.8rem;
  border-top: 1px solid #666;  /* 外枠（薄いグレー） */
  background: var(--color-bg-main);
}

/* 1行：上下の区切り線 */
.bbq-list{
  display: flex;
  align-items: stretch;     
  border-bottom: 1px solid #666;
}

/* 左ラベル */
.bbq-list-label{
  width: 110px;
  background: var(--color-bg-beige);
  font-weight: 700;

  /* flex中央寄せはやめる */
  padding: 8px 10px;  /* 右と同じ高さに揃える */
  display: flex;
  align-items: center; 
}

/* 右本文 */
.bbq-list-text{
  flex: 1;
  text-align: left;
  padding-left: 10px;
  padding-top: 8px;
  padding-bottom: 8px;
}

/* pのデフォルト余白を消してズレ防止 */
.bbq-list-label p,
.bbq-list-text p{
  margin: 0;
}

/* ラベル文字 */
.bbq-label-font{
  font-size: 0.7rem;
  font-weight: 700;
}

/* 本文文字 */
.bbq-letterfont{
  font-size: 0.7rem;
  line-height: 1.3;
}


/* ============================================
   3. 夕食材つき（BBQ食材）
   ============================================ */
#shokuzai-section .shokuzai-inner{
  margin: 0px auto 80px; 
  max-width: 1000px;
}

/* 説明文：夕食材つき専用 */
#shokuzai-section .bbq-flow-intro{
  text-align: center;
  margin: 20px auto 0;
  width: min(1000px, 80%);
}

/* カード2段（画像＋白カード） */
#shokuzai-section .set-card{
    display: flex;
    align-items: stretch;
    justify-content: center;
    max-width: 1000px;
    margin: 20px auto 0px;
    gap: 0;
}

/* 2段目を左右反転 */
#shokuzai-section .set-card.mirror{
  flex-direction: row-reverse; 
  margin: 30px auto 0px;
}

/* 画像側 */
#shokuzai-section .set-card-img{
  flex: 0 0 50%;
  overflow: hidden;
}
#shokuzai-section .set-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 白カード側 */
#shokuzai-section .set-card-text{
  flex: 0 0 50%;
  background: var(--color-bg-main);
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* 見出し（色バー＋タイトル＋（食材編/道具編）） */
#shokuzai-section .stay-ap-text{
  display: flex;         
  align-items: center;
  gap: 10px;
  line-height: 1.2;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 8px;
}

/* 色付きバー */
#shokuzai-section .stay-ap-text .title-icon{
  height: 1em;           
  margin: 0;
}

/* （食材編）（道具編）が前提 */
#shokuzai-section .stay-ap-text .bbq-price-small-title{
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  margin-left: -12px;
}

/* 注釈 */
#shokuzai-section .set-card-text .note-small{
  line-height: 1.3;
  margin: 0 0px 5px 17px;
}

/* 2行目以降を頭落とし（ぶら下げインデント） */
#shokuzai-section .hanging{
  padding-left: 1.4em;
  text-indent: -1.4em;
}

/* 本文リスト */
#shokuzai-section .set-card-text .letterfont{
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.5;
  margin: 0 0 10px 13px;
}

/* 「例：〜」みたいな補足は “本文リスト内の span だけ” に限定 */
#shokuzai-section .set-card-text .letterfont span{
  font-size: 0.7rem;
  font-weight: 400;
  margin-left: 8px;
  margin-bottom: 12px;
}

/* spacerクラス（例：〜の部分）を改行させる */
#shokuzai-section .set-card-text .letterfont .spacer {
  display: block;
  margin-bottom: 5px;
  margin-left: 0px;
}

/* 下線（文字幅に合わせる） */
#shokuzai-section .bbq-note-p{
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  width: fit-content;   
  max-width: 100%;
  padding-bottom: 0px;
  margin: 20px 0px 10px; 
  text-align: left;
}


/* 赤文字 */
#shokuzai-section .redtext{
  color: #D32F2F;
  text-align: left;
  font-size: 0.8rem; 
  display: inline-block;
  font-weight: 600; 
  width: fit-content;   
  border-bottom: 1px solid var(--color-border-main);
}

/* ============================================
   4. 設備の紹介（#setubi-section）
   ============================================ */
/* --- セクション全体 --- */
#setubi-section {
  max-width: 1080px;
  margin: 0px auto;
  padding: 50px 40px 0px;
  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: 0px;
  margin: 30px auto 50px;
}

/* 左側：画像エリア */
.slider-image-area {
  flex: 0 0 50%;
  position: relative;
  padding: 0px 0px 0px 50px;
}

.slider-image {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* 右側：テキストエリア */
.slider-text-area {
  flex: 1;
  padding: 0px 50px 0px 30px;
  margin: 0px;
}

/* タイトル */
.facility-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 5px;
  text-align: center;
}

/* 説明文 */
.facility-description {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: justify;
}

/* アメニティタイトル */
.facility-amenity-title {
  font-size: 0.7rem;
  font-weight: 700;
  margin-bottom: 2px;
}

/* アメニティリスト */
.facility-amenity-list {
  font-size: 0.7rem;
  line-height: 1.3;
  margin-bottom: 5px;
}

/* 矢印ボタン */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: opacity 0.3s;
}

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

.slider-arrow-left {
  left: 10px;
}

.slider-arrow-right {
  right: 10px;
}

/* 矢印のSVG */
.slider-arrow svg {
  width: 100%;
  height: 100%;
}

/* スライドアイテム（非表示） */
.slide-item {
  display: none;
}

.slide-item.active {
  display: flex;
  max-width: 850px;
  margin: auto;
  padding: 0px;
}

/* ============================================
   5. 下部リンクセクション
      （お部屋・設備）
   ============================================ */

/* 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);      /* ほんの少し明るく */
}


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

/* --- スライダーの縦並び調整 --- */
@media screen and (max-width: 1100px) {
  
  .slider-container {
    flex-direction: column;
    padding: 0 60px;
    gap: 30px;
  }
  
  .slider-image-area {
    flex: 0 0 auto;
    max-width: 400px;
    width: 100%;
  }
  
  .slider-text-area {
    padding: 0 20px;
  }
}

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