@charset "UTF-8";

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


/* ============================================
   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.ご利用についてセクション */
#sauna-section { 
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px 0px;
  display: flex;
  background: var(--color-bg-main);
  flex-direction: column;
}

/* 3.設備セクション */
#setubi-section {
  background: var(--color-bg-beige);
  width: 100%;
  margin: 0 auto;
  padding: 50px 40px 0px;
  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 ＞ サウナ棟について） */
.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;
}


/* =========================================
   BBQページの誘導：画像入りボタン
   ========================================= */
.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: var(--color-btn-line-text);
  text-decoration: none;
  /* 動きの基本設定 */
  transition: transform .18s ease, box-shadow .18s ease;
}

/* ボタン配置用ラッパー（中央寄せ） */
.sauna-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 / スマホ共通） */
.sauna-btn-wrap:hover .pill-imgbtn{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.26);
}

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

.sauna-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. サウナのご利用について
   ============================================ */

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

/* 説明文（赤文字含む） */
.sauna-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案内 */
.sauna-flow-intro a{ 
  color: var(--color-text-muted);
  font-weight: 700;
  text-decoration: none; 
}

.sauna-flow-intro a:hover { color: var(--color-accent-main);}

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

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

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

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

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

/* 見出し（ご宿泊プラン / サウナプラン） */
.sauna-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;
}

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

/* 料金行 */
.sauna-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） */
.sauna-price-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 55%;
  border-bottom: 2px dotted var(--color-text-dark); 
  z-index: 0;
}

/* テキスト側に背景を持たせて点線を切る */
.sauna-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;
}

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

/* 1行：上下の区切り線 */
.sauna-list{
  display: flex;
  align-items: stretch;     
  border-bottom: 1px solid var(--color-text-light);
}

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

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

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

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

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

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


/* ============================================
   4. 設備の紹介（#setubi-section）
   ============================================ */
/* スライド */
#setubi-section .section-heading {
width: 1000px;
}

/* スライダーコンテナ */
.slider-container {
	max-width: 800px;
	width: 100%;
	position: relative;
	display: flex;
	align-items: center;
	padding: 0px;
	margin: 30px auto 50px;
}

/* 画像エリア */
.slider-image-area {
	position: relative;  
	padding: 0px;
	margin: auto;
}

.slider-image {
	max-width: 600px;
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
	display: block;
}

/* 画像の説明 */
.slider-image-text {
	margin-top: 5px;
	font-size: 0.75rem;
	text-align: center;
}

/* 矢印ボタン */
.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;
	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 var(--color-bg-main);
  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 var(--color-bg-main);
  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
   ============================================ */