@charset "UTF-8";
:root {
  --color-bg-main: #f9f8f4;
  --color-bg-beige: #fdf5e3;
  --color-bg-card: #ffffff;
  --color-bg-accent: #eaddcf;
  --color-text-main: #2b3324;
  --color-text-muted: #73786c;
  --color-primary: #659a35;
  --color-secondary: #ea8238;
  --font-heading: "Shippori Mincho", serif;
  --font-body: 'Zen Kaku Gothic New', sans-serif;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--color-bg-main);
  color: var(--color-text-main);
  font-family: var(--font-body);
  line-height: 1.7;
  background-image: url('./img/camerialoghouse-bg.png');
  background-repeat: repeat;
}
a {
  text-decoration: none;
  color: inherit;
}
.bg-beige {
  background-color: var(--color-bg-beige);
  background-image: none;
}
/* Header */
header {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(247, 245, 240, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}
.logo img {
  width: 40px;
  height: auto;
  margin-right:4px;
}
nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}
nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text-main);
  transition: color 0.3s;
}
nav a:hover {
  color: var(--color-secondary);
}
.has-dropdown {
  position: relative;
}
/* ドロップダウンメニュー本体（初期状態は非表示） */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background-color: #ffffff;
  min-width: 240px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: block;
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dropdown-menu a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  color: var(--color-text-main);
  transition: background-color 0.2s, color 0.2s;
  font-weight: 500;
}
.dropdown-menu a:hover {
  background-color: var(--color-bg-main);
  color: var(--color-primary);
}
.header-btn {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  transition: opacity 0.3s;
}
.header-btn:hover {
  opacity: 0.9;
}
/* =========================================
   スマホ対応（ハンバーガーメニュー）
   ========================================= */
.hamburger, .mobile-only-btn {
  display: none;
}
@media (max-width: 768px) {
  /* ヘッダー全体 */
  header {
    padding: 15px 20px;
  }
  .header-btn {
    display: none;
  }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
  }
  .hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
  }
  .hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(247, 245, 240, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1500;
  }
  header nav.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  header nav ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
  }
  header nav > ul > li > a {
    font-size: 18px;
    font-weight: 700;
    display: inline-block;
    padding: 5px 15px;
  }
  .has-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: var(--color-bg-beige);
    border-radius: 12px;
    padding: 15px 20px;
    margin: 10px auto 0;
    width: 85%;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .has-dropdown .dropdown-menu a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
  .has-dropdown .dropdown-menu li:last-child a {
    border-bottom: none;
  }
  .has-dropdown .dropdown-menu a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--color-secondary);
    font-size: 12px;
    margin-right: 8px;
  }
  .mobile-only-btn {
    display: block;
    margin-top: 20px;
  }
  .mobile-only-btn a {
    background-color: var(--color-secondary);
    color: #fff;
    padding: 15px 40px;
    border-radius: 30px;
    display: inline-block;
  }
}
/* ==========================================
   スマホメニュー用：母体（カメリア温泉）ロゴリンク
========================================== */
/* デスクトップ表示では隠す */
.mobile-parent-link {
  display: none; 
}

/* スマホ表示時（768px以下） */
@media screen and (max-width: 768px) {
  .mobile-parent-link {
    display: block;
    margin-top: 20px;
    padding-top: 20px;
    /* メニューのデザインに合わせて、線を消したい場合は下の1行を削除してください */
    border-top: 1px solid rgba(150, 150, 150, 0.3); 
    text-align: center;
  }
  
  .mobile-parent-link a {
    display: inline-block !important;
    padding: 0 !important; /* メニュー標準の余白をリセット */
  }

  .mobile-parent-logo {
    max-width: 160px; /* スマホのメニュー幅に合わせてフッターより少し小さめに設定 */
    height: auto;
  }
}
/* =========================================
       1. ヒーローセクション（トップ画像）
========================================= */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/img_4439.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  margin-top: 60px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: 56px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}
.hero p {
  font-size: 22px;
  margin-bottom: 40px;
  max-width: 800px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
.cta-btn {
  background-color: var(--color-secondary);
  color: #fff;
  padding: 18px 45px;
  border-radius: 35px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s, background-color 0.2s;
}
.cta-btn:hover {
  transform: translateY(-2px);
  background-color: #a85a2d;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 28px;
    line-height: 1.5;
    margin-bottom: 15px;
  }
  .hero p {
    font-size: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .cta-btn {
    font-size: 16px;
    padding: 15px 30px;
    width: 90%;
    max-width: 320px;
  }
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
}
/* =========================================
       2. 共通見出し ＆ ABOUTセクション
========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.section-header {
  position: relative;
  text-align: center;
  margin-bottom: 50px;
  padding-top: 30px;
  z-index: 1;
}
.section-header::before {
  content: attr(data-en);
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 900;
  color: var(--color-primary);
  opacity: 0.05;
  font-family: var(--font-body);
  letter-spacing: 0.2em;
  z-index: -1;
  white-space: nowrap;
  pointer-events: none;
}
.subtitle {
  font-family: var(--font-body);
  display: inline-block;
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 15px;
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  padding: 6px 20px;
}
section h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
}
section h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 4px;
  background-color: var(--color-secondary);
  margin-top: 15px;
  border-radius: 2px;
}
.section-desc {
  text-align: center;
  font-size: 16px;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .section-header::before {
    font-size: 50px;
    top: 0;
  }
}
.pickup {
  font-family: var(--font-body);
  display: block;
  color: var(--color-secondary);
  font-size: 14px;
  letter-spacing: 4px;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}
.section-desc {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-muted);
  font-family: var(--font-heading);
  font-weight: 300;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  section h2 {
    font-size: 26px;
  }
  .section-desc {
    font-size: 14px;
    margin-bottom: 40px;
  }
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .about-grid p {
    font-size: 15px;
  }
}
.info-boxes-wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
}
.info-box {
  background-color: #ffffff;
  border-radius: 30px;
  padding: 30px 40px 40px;
  margin-bottom: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  flex: 1;
}
.box-title {
  text-align: center;
  font-size: 22px;
  color: var(--color-text-main);
  margin: 0 0 10px 0;
  font-family: 'Yu Mincho', serif;
  letter-spacing: 1px;
}
.separator {
  border: none;
  border-top: 1px dashed #cccccc;
  width: 70%;
  margin: 0 auto 20px;
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 15px;
}
th, td {
  padding: 10px 15px;
  border-bottom: 1px solid #eeeeee;
}
.pricing-table th {
  background-color: #efece3;
  font-weight: 500;
  color: #333;
  border-bottom: none;
}
.pricing-table th:first-child, .pricing-table td:first-child {
  text-align: center;
  width: 30%;
}
.pricing-table th:nth-child(2), .pricing-table td:nth-child(2) {
  text-align: center;
  width: 30%;
}
.pricing-table th:last-child, .pricing-table td:last-child {
  text-align: left;
  width: 40%;
}
.hours-table td:first-child {
  width: 32%;
  text-align: center;
  font-weight: 500;
}
.hours-table td:last-child {
  width: 70%;
  text-align: left;
}
@media (max-width: 768px) {
  .info-boxes-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .info-box {
    padding: 40px 20px;
    border-radius: 20px;
    margin-bottom: 40px;
  }
  .pricing-table th, .pricing-table td, .hours-table td {
    padding: 15px 10px;
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .pricing-table th, .pricing-table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    padding: 10px;
  }
  .pricing-table tr {
    border-bottom: 2px solid #ddd;
    display: block;
    margin-bottom: 10px;
  }
  .pricing-table th {
    display: none;
  }
  .hours-table td {
    display: block;
    width: 100% !important;
    text-align: left !important;
    border-bottom: none;
    padding: 5px 10px;
  }
  .hours-table tr {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 10px;
    display: block;
  }
}
/* =========================================
       3. FACILITIES ＆ ギャラリー
========================================= */
.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 10px;
}
.facility-card {
  background: #fff;
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--color-bg-accent);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.facility-card i {
  font-size: 36px;
  color: var(--color-secondary);
  text-align: center;
}
.facility-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 600;
  text-align:center;
}
.facility-card p {
  font-size: 14px;
}
@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }
  .facility-card {
    padding: 20px 15px;
    gap: 10px;
  }
  .facility-card i {
    font-size: 28px;
  }
  .facility-card h3 {
    font-size: 16px;
    line-height: 1.4;
    text-align: center;
  }
  .facility-card p {
    font-size: 12px;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  margin-top: 30px;
}
.gallery-item {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 4px;
  transform: translateZ(0);
  will-change: transform;
  image-rendering: auto;
}
.gallery-item {
  cursor: pointer;
  transition: opacity 0.3s;
}
.gallery-item:hover {
  opacity: 0.8;
}
/* ==========================================
   ギャラリーの「タップできる」アフォーダンス
========================================== */
.gallery-wrap {
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.gallery-wrap:active {
  transform: scale(0.96);
  opacity: 0.8;
}
.gallery-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.zoom-icon {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  pointer-events: none;
}
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.gallery-modal.active {
  opacity: 1;
  visibility: visible;
}
.gallery-modal-content {
  position: relative;
  max-width: 80%;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery-modal-content img {
  max-width: 80%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .gallery-modal-content {
    max-width: 95%;
    max-height: 95vh;
  }
  .gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
  }
}
.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: #fff;
  padding: 30px 20px 15px;
  text-align: center;
  font-size: 15px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  pointer-events: none;
}
.gallery-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.gallery-close:hover {
  color: #ccc;
}
@media (max-width: 768px) {
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px;
  }
  .gallery-item {
    height: 140px;
  }
  .zoom-icon {
    width: 44px;
    height: 44px;
    font-size: 18px;
    bottom: 10px;
    right: 10px;
  }
}
.equipment-container {
  background-color: #ffffff;
  border-radius: 40px;
  padding: 40px 60px;
  max-width: 900px;
  width: 100%;
  box-sizing: border-box;
  margin: 40px auto;
}
.equipment-title {
  text-align: center;
  font-size: 18px;
  color: var(--color-text-main);
  margin-bottom: 10px;
  font-family: 'Yu Mincho', 'Shirokuro', serif;
  letter-spacing: 2px;
}
.separator {
  border: none;
  border-top: 1px dashed #7a7a7a;
  width: 80%;
  margin: 0 auto 40px;
}
.equipment-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}
.equipment-item h4 {
  color: #556b2f;
  font-size: 16px;
  margin: 0 0 8px 0;
  letter-spacing: 0.5px;
}
.equipment-item p {
  color: #333333;
  font-size: 14px;
  margin: 0;
}
@media (max-width: 768px) {
  .equipment-container {
    padding: 40px 30px;
    border-radius: 20px;
  }
  .equipment-list {
    padding: 0;
  }
}
/* Timeline Flow */
.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  position: relative;
}
.time-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  border-top: 5px solid var(--color-primary);
}
.time-card .time {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.time-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--color-primary);
}
.feature-block {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 80px;
}
.feature-block.reverse {
  flex-direction: row-reverse;
}
.feature-text {
  flex: 1;
}
.feature-image {
  flex: 1;
  width: 400px;
}
.feature-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
  object-fit: contain;
}
.feature-title {
  font-family: 'Yu Mincho', serif;
  font-size: 24px;
  color: #222;
  margin: 0 0 20px 0;
  text-align: center;
}
.feature-desc {
  font-size: 14px;
  margin-bottom: 30px;
}
.btn-outline {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 10px 30px;
  border: 1px solid #777;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-outline::after {
  content: '▶';
  font-size: 10px;
  margin-left: 10px;
}
.btn-outline:hover {
  background-color: #777;
  color: #fff;
}
/* オプション一覧 */
.options-section {
  margin-top: 100px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.option-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.option-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.option-content {
  padding: 15px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.option-info h4 {
  margin: 0 0 5px 0;
  font-size: 15px;
  color: #222;
}
.option-info p {
  margin: 0;
  font-size: 13px;
  color: #666;
}
.btn-detail {
  background-color: #d68f3a;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: background-color 0.3s;
  white-space: nowrap;
}
.btn-detail:hover {
  background-color: #bf7d32;
}
@media (max-width: 768px) {
  .option-content {
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 12px 10px !important;
    gap: 12px;
  }
  .option-info {
    text-align: center;
  }
  .option-info h4 {
    font-size: 13px !important;
    line-height: 1.4;
  }
  .option-info p {
    font-size: 11px !important;
  }
  .btn-detail {
    width: 100%;
    padding: 8px 0 !important;
    text-align: center;
  }
  .option-img {
    height: 120px !important;
  }
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.modal-overlay.active {
  display: flex;
  opacity: 1;
}
.modal-content {
  background: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}
.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
}
.modal-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.modal-body {
  padding: 30px;
}
.modal-title {
  font-family: 'Yu Mincho', serif;
  font-size: 22px;
  margin: 0 0 10px 0;
  color: #222;
}
.modal-price {
  color: #d68f3a;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 20px;
}
.modal-text {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .feature-block, .feature-block.reverse {
    flex-direction: column;
    gap: 30px;
  }
  .options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Reservation Section */
.reservation-section {
  background: #fff;
  border-radius: 20px;
  padding: 50px;
  border: 2px solid var(--color-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
}
.rules-box {
  background: var(--color-bg-main);
  border: 1px solid var(--color-bg-accent);
  padding: 30px;
  height: 280px;
  overflow-y: scroll;
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 10px;
}
@media(max-width: 768px) {
  .reservation-section {
    padding: 20px;
  }
  .rules-box {
    padding: 10px;
  }
}
.rules-box strong {
  display: block;
  font-size: 18px;
  color: var(--color-primary);
  border-bottom: 1px solid var(--color-bg-accent);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.rules-box p {
  margin-bottom: 15px;
}
.download-area {
  text-align: right;
  margin-bottom: 30px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-text-muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s;
}
.download-btn:hover {
  color: var(--color-secondary);
}
.checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  margin-bottom: 25px;
}
.checkbox-label input {
  width: 22px;
  height: 22px;
  accent-color: var(--color-primary);
  cursor: pointer;
}
.reserve-action-btn {
  display: block;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background-color: #ccc;
  color: #fff;
  padding: 18px;
  border-radius: 35px;
  font-size: 20px;
  font-weight: 700;
  pointer-events: none;
  transition: background-color 0.3s;
}
.reserve-action-btn.active {
  background-color: var(--color-secondary);
  pointer-events: auto;
}
.reserve-action-btn.active:hover {
  opacity: 0.9;
}
/* ==========================================
   フッター
========================================== */
footer {
  background-color: #2c2925;
  color: #dcd8ce;
  padding: 60px 20px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-heading);
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  list-style: none;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #dcd8ce;
  font-size: 15px;
}
.footer-links a:hover {
  color: #fff;
}
/* ==========================================
   フッター：母体（カメリア温泉）リンク用
========================================== */
.parent-facility {
  text-align: center;
  margin: 50px auto 30px; /* 上のリンクや下のコピーライトとの余白 */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px; /* 文字とロゴの隙間 */
}

.parent-text {
  font-size: 13px;
  color: #777; /* 少し控えめな文字色 */
  letter-spacing: 0.05em;
  margin: 0;
}

.parent-link {
  display: inline-block;
  transition: opacity 0.3s ease;
}

/* ホバー（マウスを乗せた時）に少し薄くしてクリックできる感を出す */
.parent-link:hover {
  opacity: 0.7;
}

.parent-logo {
  max-width: 220px; /* カメリア温泉のロゴの横幅（画像に合わせて調整してください） */
  height: auto;
}
.copyright {
  font-size: 14px;
  color: #999;
}
.bg-blob {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.bg-blob::before {
  content: '';
  position: absolute;
  top: 5%;
  left: -10%;
  width: 450px;
  height: 350px;
  background-color: rgba(139, 90, 43, 0.03);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  box-shadow:
    inset 0 0 0 40px rgba(139, 90, 43, 0.02), inset 0 0 0 80px rgba(139, 90, 43, 0.02);
  transform: rotate(-15deg);
}
.bg-blob::after {
  content: '';
  position: absolute;
  bottom: -5%;
  right: -10%;
  width: 500px;
  height: 400px;
  background-color: rgba(184, 134, 75, 0.03);
  border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  z-index: -1;
  box-shadow:
    inset 0 0 0 45px rgba(184, 134, 75, 0.02), inset 0 0 0 90px rgba(184, 134, 75, 0.02);
  transform: rotate(10deg);
}
.bg-tree {
  position: relative;
  overflow: hidden;
}
.bg-tree::before {
  content: '\f1bb';
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  position: absolute;
  top: 5%;
  right: 2%;
  font-size: 150px;
  color: var(--color-primary);
  opacity: 0.04;
  z-index: -1;
  transform: rotate(8deg);
  pointer-events: none;
}
.bg-tree::after {
  content: '\f1bb';
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  position: absolute;
  bottom: 5%;
  left: -2%;
  font-size: 200px;
  color: var(--color-primary);
  opacity: 0.04;
  z-index: -1;
  transform: rotate(-5deg);
  pointer-events: none;
}


/* ==========================================
   Googleカレンダーのレスポンシブ対応
========================================== */
.calendar-wrapper {
  position: relative;
  width: 100%;
  /* パソコンでの縦横比のベース */
  padding-top: 75%; 
  height: 0;
  overflow: hidden;
  border-radius: 8px; /* 角を少し丸める */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* 軽い影をつける */
}

.calendar-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* スマホ表示時の調整（縦長にして見やすくする） */
@media screen and (max-width: 768px) {
  .calendar-wrapper {
    padding-top: 100%; /* スマホではカレンダーを正方形〜縦長に近づける */
  }
}

.sub-hero {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('../img/img_4439.jpg') no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  margin-top: 60px;
}
.sub-hero h1 {
  font-family: 'Shippori Mincho', serif;
  font-size: 46px;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}
.sub-hero p {
  font-size: 20px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}
.step-container {
  max-width: 800px;
  margin: 40px auto 0;
}
.step-card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  margin-bottom: 30px;
}
.step-img {
  width: 40%;
  object-fit: cover;
}
.step-text {
  width: 60%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.step-num {
  color: #c06c3a;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  letter-spacing: 2px;
}
.step-text h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #4a5d23;
}
/* 注意事項ボックス */
.notes-box {
  background: #f4efeb; 
  border: none; 
  border-radius: 12px; 
  padding: 35px 30px;
  margin-top: 50px;
}
.notes-box h4 {
  color: #b34d4d; 
  margin-bottom: 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.notes-box ul {
  list-style: none;
  margin: 0;
  padding:0 40px;
}

.notes-box li {
  margin-bottom: 24px; 
  color: #3e3a35;
  line-height: 1.8; 
}

.notes-box li:last-child {
  margin-bottom: 0;
}
.notes-box li strong {
  display: inline-block;
  margin-bottom: 6px; 
  font-size: 15px;
}

/* アクションボタンエリア */
.action-area {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 60px 0 20px;
}
.btn-back {
  background-color: #fff;
  color: #3e3a35;
  border: 2px solid #e9e5db;
  padding: 18px 45px;
  border-radius: 35px;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-back:hover {
  background-color: #f7f5f0;
}
@media(max-width: 768px) {
  .step-card {
    flex-direction: column;
  }
  .step-img, .step-text {
    width: 100%;
  }
  .step-img {
    height: 250px;
  }
  .action-area {
    flex-direction: column;
    padding: 0 20px;
  }
}


/* ==========================================
   レスポンシブ用 改行コントロール
========================================== */

.sp-br {
  display: none;
}

.pc-br {
  display: inline; 
}


@media screen and (max-width: 768px) {
  .sp-br {
    display: inline; 
  }
  .pc-br {
    display: none; 
  }
}


