@charset "UTF-8";

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


/* ============================================
   0. ページ共通設定
   ============================================ */

/* --- 主要セクションの横幅 --- */
#page-top-section,
#room-section,
#checkin-flow-section {
  width: 100%;
  margin: 0 auto;
}

/* --- SP用要素を非表示 --- */
.SP-TOP-page-read,
.sp-plan-sheet {
  display: none;
}

/* --- 改行用のspacerクラス --- */
.spacer {
  display: block;
  height: 8px;
}


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

/* --- セクション全体（左右2カラム） --- */
#page-top-section {
  width: 100%;
  height: auto;
  background: var(--color-bg-main);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  padding: 60px 0 0;
  box-sizing: border-box;
  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;
}

/* --- 右カラム：画像エリア --- */
#page-top-section .section-harf:last-child {
  flex: 1;
}

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

/* --- 見出しエリア --- */
.contents-heading {
  margin-top: 30px;
  margin-bottom: 70px;
  padding-bottom: 4px;
  border-bottom: none;
}

/* --- キャッチコピー下の余白 --- */
.contents-copy {
  margin-bottom: 24px;
}

/* --- 右側画像のトリミング --- */
.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用画像は非表示 --- */
.sp_img {
  display: none;
}

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


/* ============================================
   2. 設備の紹介（#room-section）
   ============================================ */

/* --- セクション全体 --- */
#room-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.7rem;
  line-height: 1.3;
  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;
}


/* ============================================
   3. チェックインの流れ（#checkin-flow-section）
   ============================================ */

/* --- セクション全体 --- */
#checkin-flow-section {
  width: 100%;
  background-color: var(--color-bg-beige);
}

/* --- セクション内エリア --- */
.checkin-flow-area {
  max-width: 1080px;
  margin: 0px auto;
  padding: 50px 40px;
}

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

/* 赤文字の強調 */
.highlight {
  color: var(--color-text-red);
  font-weight: 700;
}

/* --- コンテンツエリア（左右2カラム） --- */
.checkin-flow-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: center;
}

/* --- 左側：画像エリア --- */
.checkin-flow-image {
  flex: 0 0 48%;
  max-width: 400px;
  aspect-ratio: 16 / 11;
}

.checkin-flow-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- 右側：テキストエリア --- */
.checkin-flow-text {
  flex: 1;
  padding-top: 20px;
  max-width: 400px;
}

/* 説明テキスト内の赤文字 */
.checkin-flow-description .red-text {
  color: var(--color-text-red);
  font-weight: 700;
}

/* --- PDF案内リンク --- */
.checkin-flow-pdf-link {
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.checkin-flow-pdf-link::before {
  content: "▶ ";
  margin-right: 5px;
}

.checkin-flow-pdf-link a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.checkin-flow-pdf-link a:hover {
  color: var(--color-accent-main);
}

/* --- ボタンエリア --- */
.checkin-flow-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ボタン共通スタイル */
.checkin-flow-btn {
  background: var(--color-bg-black);
  color: var(--color-bg-main);
  padding: 8px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  display: inline-block;
  transition: 0.3s;
  white-space: nowrap;
  margin: 0px;
}

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


/* ============================================
   4. 下部リンクセクション（画像カード）
   ============================================ */

/* --- 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: var(--color-bg-main);
  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);
}


/* ============================================
   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
   ============================================ */