/* sauna.css - サウナページ専用スタイル */

/* 基本スタイルはそのまま */
.page-hero.sauna-hero {
  position: relative;
  height: 90vh; /* 必要に応じて 60vh～80vh など調整 */
  background: url('images/sauna03.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* メインコンテンツ */
.sauna-page {
  background-color: #fff;
  padding-bottom: 4rem;
}

/* サウナ紹介セクション */
.sauna-intro {
  padding: 4rem 1rem;
  text-align: center;
  background-color: #fff;
}
.sauna-intro .container {
  max-width: 1200px;
  margin: 0 auto;
}
.sauna-intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.sauna-intro p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #333;
}

/* 施設概要セクション */
.sauna-details {
  padding: 2rem 1rem;
  background-color: #f7f7f7;
}
.sauna-details .container {
  max-width: 1200px;
  margin: 0 auto;
}
.sauna-details h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.sauna-details h3 {
  font-size: 1.6rem;
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
}

/* リスト、テーブル、備考 */
.facilities-list,
.features-list {
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style-type: disc;
}
.facilities-list li,
.features-list li {
  margin-bottom: 0.5rem;
}
.overview-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 1rem;
  background-color: #fff;
}
.overview-table thead th,
.overview-table tbody td {
  border: 1px solid #ccc;
  padding: 0.8rem;
  text-align: center;
}
.overview-table thead th {
  background-color: #f7f7f7;
  border-bottom-width: 2px;
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  background-color: #fff;
}
.price-table thead th {
  background-color: #f7f7f7;
  padding: 0.8rem;
  text-align: left;
  border-bottom: 1px solid #ccc;
}
.price-table tbody td {
  padding: 0.8rem;
  border-bottom: 1px solid #ccc;
}
.note {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 2rem;
}
.caution-list {
  margin: 1rem 0;
  padding-left: 1.2rem;
  list-style-type: disc;
}
.caution-list li {
  margin-bottom: 0.5rem;
}

/* ギャラリー */
.sauna-gallery {
  padding: 2rem 1rem;
  background-color: #fff;
}
.sauna-gallery .container {
  max-width: 1200px;
  margin: 0 auto;
}
.sauna-gallery h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* 予約・お問い合わせ */
.sauna-reservation {
  padding: 2rem 1rem;
  text-align: center;
  background-color: #f7f7f7;
}
.sauna-reservation .container {
  max-width: 1200px;
  margin: 0 auto;
}
.sauna-reservation h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.sauna-reservation p {
  font-size: 1rem;
  margin-bottom: 1rem;
}
.sauna-reservation .reserve-btn {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background-color: #008f00;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.sauna-reservation .reserve-btn:hover {
  background-color: #006d00;
}

/* 各セクションの初期状態（アニメーション用） */
.sauna-page section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.sauna-page section.animate {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================================= */
/* 以下、レスポンシブ調整：各サイズ×orientation */

/* ---------- 1024px以下 ---------- */
/* 1024px以下 - Portrait */
@media (max-width: 1024px) and (orientation: portrait) {
  .sauna-intro {
    padding: 3.5rem 1rem;
  }
  .sauna-intro h2 {
    font-size: 1.9rem;
  }
  .sauna-details {
    padding: 2rem 1rem;
  }
  .sauna-details h2 {
    font-size: 1.9rem;
  }
  .sauna-details h3 {
    font-size: 1.5rem;
  }
  .price-table {
    font-size: 0.92rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.65rem;
  }
  .note {
    font-size: 0.82rem;
  }
  .sauna-gallery {
    padding: 1.8rem 1rem;
  }
  .sauna-gallery h3 {
    font-size: 1.7rem;
  }
  .gallery-grid {
    gap: 0.9rem;
  }
  .sauna-reservation {
    padding: 1.8rem 1rem;
  }
  .sauna-reservation h3 {
    font-size: 1.7rem;
  }
  .sauna-reservation p {
    font-size: 1rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
}

/* 1024px以下 - Landscape */
@media (max-width: 1024px) and (orientation: landscape) {
  .sauna-intro {
    padding: 3.8rem 1.2rem;
  }
  .sauna-intro h2 {
    font-size: 2rem; /* やや大きく */
  }
  .sauna-details {
    padding: 2.2rem 1.2rem;
  }
  .sauna-details h2 {
    font-size: 2rem;
  }
  .sauna-details h3 {
    font-size: 1.6rem;
  }
  .price-table {
    font-size: 0.94rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.68rem;
  }
  .note {
    font-size: 0.84rem;
  }
  .sauna-gallery {
    padding: 1.9rem 1.2rem;
  }
  .sauna-gallery h3 {
    font-size: 1.8rem;
  }
  .gallery-grid {
    gap: 1rem;
  }
  .sauna-reservation {
    padding: 1.9rem 1.2rem;
  }
  .sauna-reservation h3 {
    font-size: 1.8rem;
  }
  .sauna-reservation p {
    font-size: 1.02rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.8rem 1.1rem;
    font-size: 1.02rem;
  }
}

/* ---------- 768px以下 ---------- */
/* 768px以下 - Portrait */
@media (max-width: 768px) and (orientation: portrait) {
  .sauna-intro {
    padding: 3rem 1rem;
  }
  .sauna-intro h2 {
    font-size: 1.8rem;
  }
  .sauna-intro p {
    font-size: 0.95rem;
  }
  .sauna-details {
    padding: 1.5rem 1rem;
  }
  .sauna-details h2 {
    font-size: 1.8rem;
  }
  .sauna-details h3 {
    font-size: 1.4rem;
  }
  .price-table {
    font-size: 0.9rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.6rem;
  }
  .note {
    font-size: 0.8rem;
  }
  .sauna-gallery {
    padding: 1.5rem 1rem;
  }
  .sauna-gallery h3 {
    font-size: 1.6rem;
  }
  .gallery-grid {
    gap: 0.8rem;
  }
  .sauna-reservation {
    padding: 1.5rem 1rem;
  }
  .sauna-reservation h3 {
    font-size: 1.6rem;
  }
  .sauna-reservation p {
    font-size: 0.95rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
  }
}

/* 768px以下 - Landscape */
@media (max-width: 768px) and (orientation: landscape) {
  .sauna-intro {
    padding: 3.2rem 1rem;
  }
  .sauna-intro h2 {
    font-size: 1.85rem;
  }
  .sauna-intro p {
    font-size: 0.98rem;
  }
  .sauna-details {
    padding: 1.6rem 1rem;
  }
  .sauna-details h2 {
    font-size: 1.85rem;
  }
  .sauna-details h3 {
    font-size: 1.45rem;
  }
  .price-table {
    font-size: 0.91rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.62rem;
  }
  .note {
    font-size: 0.81rem;
  }
  .sauna-gallery {
    padding: 1.6rem 1rem;
  }
  .sauna-gallery h3 {
    font-size: 1.65rem;
  }
  .gallery-grid {
    gap: 0.82rem;
  }
  .sauna-reservation {
    padding: 1.6rem 1rem;
  }
  .sauna-reservation h3 {
    font-size: 1.65rem;
  }
  .sauna-reservation p {
    font-size: 0.97rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.72rem 1rem;
    font-size: 0.97rem;
  }
}

/* ---------- 480px以下 ---------- */
/* 480px以下 - Portrait */
@media (max-width: 480px) and (orientation: portrait) {
  .sauna-intro {
    padding: 2.5rem 0.5rem;
  }
  .sauna-intro h2 {
    font-size: 1.6rem;
  }
  .sauna-intro p {
    font-size: 0.9rem;
  }
  .sauna-details {
    padding: 1.2rem 0.5rem;
  }
  .sauna-details h2 {
    font-size: 1.6rem;
  }
  .sauna-details h3 {
    font-size: 1.3rem;
  }
  .price-table {
    font-size: 0.85rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.5rem;
  }
  .note {
    font-size: 0.75rem;
  }
  .sauna-gallery {
    padding: 1.2rem 0.5rem;
  }
  .sauna-gallery h3 {
    font-size: 1.4rem;
  }
  .gallery-grid {
    gap: 0.5rem;
  }
  .sauna-reservation {
    padding: 1rem 0.5rem;
  }
  .sauna-reservation h3 {
    font-size: 1.4rem;
  }
  .sauna-reservation p {
    font-size: 0.85rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
  }
}

/* 480px以下 - Landscape */
@media (max-width: 480px) and (orientation: landscape) {
  .sauna-intro {
    padding: 2.7rem 0.5rem;
  }
  .sauna-intro h2 {
    font-size: 1.7rem;
  }
  .sauna-intro p {
    font-size: 0.92rem;
  }
  .sauna-details {
    padding: 1.3rem 0.5rem;
  }
  .sauna-details h2 {
    font-size: 1.7rem;
  }
  .sauna-details h3 {
    font-size: 1.35rem;
  }
  .price-table {
    font-size: 0.87rem;
  }
  .price-table thead th,
  .price-table tbody td {
    padding: 0.52rem;
  }
  .note {
    font-size: 0.77rem;
  }
  .sauna-gallery {
    padding: 1.3rem 0.5rem;
  }
  .sauna-gallery h3 {
    font-size: 1.45rem;
  }
  .gallery-grid {
    gap: 0.52rem;
  }
  .sauna-reservation {
    padding: 1.1rem 0.5rem;
  }
  .sauna-reservation h3 {
    font-size: 1.45rem;
  }
  .sauna-reservation p {
    font-size: 0.87rem;
  }
  .sauna-reservation .reserve-btn {
    padding: 0.62rem 0.85rem;
    font-size: 0.87rem;
  }
}
