:root { --ver: 20251018_4; }
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: "Segoe UI", "Hiragino Kaku Gothic ProN", "Noto Sans JP", system-ui, -apple-system, Arial, sans-serif;
  color: #222;
  overflow-x: hidden;
  /* 背景画像は専用のdivに移動するため、bodyからは削除 */
  /*background: url('../img/kaminarimon.png') no-repeat center top fixed;*/
  /*background-size: contain;*/
  /* 新しく背景画像用のスタイルを追加 */
.fixed-background {
  position: fixed; /* 画面に固定 */
  top: 0;
  left: 0;
  width: 100vw; /* ビューポート幅いっぱいに */
  height: 100vh; /* ビューポート高さいっぱいに */
  z-index: -10; /* 他の要素の背後に配置 */
  background-image: url('../img/kaminarimon.png');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain; /* 元の指定を適用 */
}
  background-color: #c99f58;
  position: relative;
  -webkit-text-size-adjust: 100%;
}

header {
  position: fixed;
  top: 0;
  left: -20;
  width: 100%;
  background:transparent;
  text-align: center;
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2px 0 4px;
  padding-bottom: 0px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .1);
}

.header-title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #ffffff;
  background: rgba(26, 89, 148, 0.8);
  border: 3px solid #73b9ff;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.legal-links-group {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.top-legal-nav a {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 700;
}

.top-legal-nav a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.lang-switch {
  position: fixed;
  top: 95px;
  right: 65px;
  display: flex;
  gap: 8px;
  z-index: 38;
}

.lang-switch a {
  background: #5c3a00;
  color: #fff;
  padding: 6px 10px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.lang-switch a:hover {
  background: #bf9450;
  color: #000;
}

main {
  text-align: center;
  padding: 105px 20px 60px;
  max-width: 1024px;
  margin: 0 auto;
  position: relative;
  z-index: 20;
}

h1 {
  font-size: 2.3rem;
  line-height: 1.35;
  font-weight: 800;
  background: rgba(255, 255, 255, .8);
  display: inline-block;
  padding: 14px 22px;
  border-radius: 12px;
  text-align: center;
}
h1 small {
  display: block;
  font-size: 1rem;
  color: #444;
  margin-top: 10px;
}

.description {
  margin: 34px auto;
  max-width: 820px;
}
.description p {
  font-size: 1.06rem;
  line-height: 1.7;
  color: #000;
  font-weight: 500;
  background: rgba(119, 171, 216, 0.75);
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  margin: 0;
  text-shadow: 0 1px 2px rgba(255, 255, 255, .55);
  overflow-wrap: anywhere;
  word-break: break-word;
}

.notice {
  margin: 24px auto;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 14px;
  max-width: 820px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-size: 1rem;
  line-height: 1.6;
  text-align: left;
}

.notice strong { font-weight: 800; }

@media (max-width: 1400px) {
  h1 { font-size: 2rem; padding: 12px 18px; }
  .description p { font-size: 1rem; padding: 12px 14px; }
}
@media (max-width: 1000px) {
  h1 { font-size: 1.8rem; }
  .description p { font-size: .95rem; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.6rem; }
  .description p { font-size: .92rem; }
}

.book-button {
  display: inline-block;
  margin: 26px 0;
  padding: 14px 28px;
  background: #e63946;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  transition: background .25s;
}
.book-button:hover { background: #c92d3a; }

.gallery {
  position: fixed;
  top: 110px; left: 0;
  width: 420px;
  padding: 4px 6px 4px 10px;
  height: calc(100vh - 184px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 10px;
  row-gap: 10px;
  align-content: start;
  justify-items: center;
  z-index: 15;
  pointer-events: none;
  --gap: 10px;
  --avail: calc(100vh - 124px);
  --cell: calc((var(--avail) - (4 * var(--gap))) / 5);
}
.gallery img {
  width: min(var(--cell), 150px);
  height: min(var(--cell), 150px);
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
}

.skytree {
  position: fixed;
  top: 0px;
  bottom: 0;
  right: -70px;
  height: auto;
  transform: scaleX(1.2);
  opacity: .45;
  z-index: 5;
  pointer-events: none;
}


@media (max-width: 768px) {
  .skytree {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    right: 120px;
    bottom: auto;
    object-fit: cover;
    opacity: 0.22;
    transform: none;
    z-index: 0;
    filter: blur(2px) brightness(1.05);
  }
}


.terms {
  margin: 64px auto;
  padding: 22px 24px;
  max-width: 820px;
  background: rgba(186, 230, 186, .78);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
  font-size: 1rem;
  line-height: 1.7;
  color: #222;
  text-align: left;
  backdrop-filter: blur(1px);
  position: relative;
  z-index: 18;
}
.terms h2 { text-align: center; font-size: 1.5rem; margin: 6px 0 16px; font-weight: 800; }
.terms h3 { margin: 1.2em 0 .4em; font-size: 1.07rem; color: #333; font-weight: 700; }

footer.site-footer {
  position: relative;
  z-index: 25;
  margin: 40px auto 18px;
  padding: 14px 16px;
  max-width: 1024px;
  text-align: center;
  background: rgba(255, 255, 255, .9);
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
}

.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.footer-links a {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 10px;
  text-decoration: none;
  border: 1px solid #ddd;
  background: #fff;
  font-weight: 700;
}
.footer-links a:focus {
  outline: 2px solid #000;
  outline-offset: 2px;
}

.leaf {
  position: fixed;
  top: -12%;
  width: 86px;
  height: 86px;
  opacity: .28;
  border-radius: 50%;
  z-index: 10;
  pointer-events: none;
  animation: fall 18s linear infinite;
  -webkit-animation: fall 18s linear infinite;
  will-change: transform;
}

@keyframes fall {
  0% { transform: translate3d(0,-12%,0) rotate(0deg); opacity: .30; }
  50% { transform: translate3d(0,50vh,0) rotate(180deg); opacity: .22; }
  100% { transform: translate3d(0,112vh,0) rotate(360deg); opacity: .15; }
}

.message-block {
  background: rgba(233, 230, 183, 0.93);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 28px 30px;
  margin: 60px auto;
  max-width: 820px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #222;
  text-align: left;
  border-left: 6px solid #1a5994;
  backdrop-filter: blur(1px);
}
.message-block h2 {
  text-align: center;
  color: #1a5994;
  font-weight: 800;
  margin-bottom: 18px;
}
.message-block p {
  margin-bottom: 1.2em;
}


.note-block {
  position: relative;
  background: radial-gradient(circle at top left, rgba(245, 241, 232, 0.98) 0%, rgba(240, 236, 222, 0.95) 100%);
  border: 4px solid rgba(191, 148, 80, 0.8);
  padding: 20px 40px;
  margin: 60px auto;
  max-width: 680px;
  border-radius: 200px / 300px; 
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
  color: #333;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(3px);
}
.note-block h3 {
  color: #1a5994;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}
.note-block::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border: 18px solid transparent;
  border-top-color: rgba(245, 241, 232, 0.98);
  filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.05));
}



body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 410px; 
  width: 80px;
  height: 100vh;
  background: url('../img/bamboo.png') no-repeat center;
  background-size: cover;
  opacity: 0.85;
  z-index: 12;
  pointer-events: none;
  filter: blur(0.4px) brightness(1.05) contrast(0.8);
}


body::after {
  content: "";
  position: fixed;
  top: 0;
  right: 410px;
  width: 80px;
  height: 100vh;
  background: url('../img/bamboo.png') no-repeat center;
  background-size: cover;
  opacity: 0.85;
  z-index: 12;
  pointer-events: none;
  filter: blur(0.4px) brightness(1.05) contrast(0.8);
}

@media (max-width: 768px) {
  
  .skytree {
    display: none;
  }

  
  .gallery {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; 
    opacity: 0.22; 
    display: grid; 
    filter: blur(2px) brightness(1.05) contrast(0.8);
    grid-template-columns: repeat(3, 1fr); 
    align-content: center;
    padding: 0;
    column-gap: 5px;
    row-gap: 5px;
  }

  .gallery img {
    width: 25vw; 
    height: 25vw;
  }

  
  body::before,
  body::after {
    display: none;
  }
}
/* ▼ ヘッダー下の法的リンク群 */
.legal-links-group {
margin-top: 4px;
margin-bottom: 12px;  /* ← 現在の値より+10pxほど増やすと◎ */
}

/* ▼ 言語切り替えボタン群 */
.lang-switch {
  margin-top: 5px;  /* ← 現在より+5〜10px程度で調整 */
}
/* ▼ 白い大きなブロックを消す */
footer.site-footer {
  display: none;
}

/* ===== 法的リンク群 共通デザイン ===== */

/* 上部（.legal-links-group）と下部（.footer-legal-links）両方に共通化 */
.legal-links-group,
.footer-legal-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;     /* ヘッダーとの距離 */
  margin-bottom: 12px; /* 次の要素との距離 */
  font-weight: 600;
  font-size: 0.8rem;
  flex-wrap: wrap;
}

.legal-links-group a,
.footer-legal-links a {
  color: #4b3b30;
  text-decoration: none;
  background: rgba(234, 235, 184, 0.8);
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  border: 1px solid rgba(0,0,0,0.05);
}

.legal-links-group a:hover,
.footer-legal-links a:hover {
  background: rgba(255,255,255,1);
  text-decoration: underline;
}

/* 下部の小さな著作権表示 */
.footer-min {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 18px;
  font-size: 1rem;
  color: #333;
}

/* モバイル対応（狭い画面で折り返す） */
@media (max-width: 768px) {
  .legal-links-group,
  .footer-legal-links {
    gap: 10px;
    font-size: 0.85rem;
  }
}
/* ========================================================== */
/* ▼ 言語切り替えボタン (ITからENへ転用) の修正 */
/* ========================================================== */

/* HTMLで「class="current-lang"」が付いているボタンのデザイン */
.lang-switch a.current-lang {
    background: #444 !important; /* 背景色を濃いグレーに変更 */
    color: #eee !important; /* 文字色を薄い色に変更 */
    cursor: default; /* マウスカーソルをデフォルトに戻す */
    opacity: 0.8;
    pointer-events: none; /* クリックやタップを完全に無効化 */
    box-shadow: none;
}

/* ホバー時のスタイルを上書きして無効化する */
.lang-switch a.current-lang:hover {
    background: #444 !important;
    color: #eee !important;
}/* === Remove focus outline from language switch buttons === */
.lang-switch a:focus,
.lang-switch a:focus-visible {
  outline: none !important;
  box-shadow: none !important;
}
/* === 強制中央揃え修正 === */
.description {
  display: flex;
  justify-content: center;
}
.description p {
  text-align: center !important;
  margin: 0 auto !important;
}
/* ========================================================== */
/* ▼ FIXED BOOKING BUTTONS (Sale/Normal) */
/* ========================================================== */

.book-button-fixed {
  position: fixed;
  z-index: 50; /* Ensure it's above most other elements */
  pointer-events: none; /* Allow clicks to pass through to the buttons inside */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Default to bottom alignment for mobile */
}

/* Common Box Styles */
.normal-box,
.sale-box {
  pointer-events: auto; /* Re-enable clicks for the box content */
  position: absolute;
  background: rgba(97, 250, 245, 0.0); /* #61faf5 bright cyan base */
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 14px 16px;
  max-width: 320px;
  margin-bottom: 24px; /* Space from the bottom on mobile */
  transform: translateY(120%); /* Initial off-screen for JS transition */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

/* Desktop Positioning */
@media (min-width: 769px) {
  .book-button-fixed {
    align-items: flex-start; /* Align to top for desktop */
  }
  .normal-box,
  .sale-box {
    top: auto;
    bottom: 0;
    left: auto;
    right: 40px; /* 40px from the right edge, near Skytree foot */
    bottom: 200px; /* Position it higher up */
    margin-bottom: 0;
    max-width: 300px;
  }
}

/* Visibility Control */
.normal-box.is-active,
.sale-box.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Sale Box Specific Styles */
.sale-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-bottom: 12px;
}

.sale-box p.top-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  margin: 0;
  line-height: 1.4;
}

.sale-box .book-button {
  background: #e63946; /* Reusing existing button style */
  font-size: 1.15rem; /* Slightly larger for emphasis */
  padding: 12px 24px;
  margin: 0; /* Override main margin */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sale-box p.bottom-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin: 0;
}

/* Normal Box Specific Styles (Reusing main book-button) */
.normal-box .book-button {
  margin: 0; /* Override main margin */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .normal-box,
  .sale-box {
    margin-bottom: calc(1px + env(safe-area-inset-bottom)); /* Safe-area-aware spacing */
    max-width: 90%;
    width: 100%;
  }
  .sale-box .book-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
/* ========================================================== */
/* ▼ FIXED BOOKING BUTTONS (Sale/Normal) */
/* ========================================================== */

.book-button-fixed {
  position: fixed;
  z-index: 50; /* Ensure it's above most other elements */
  pointer-events: none; /* Allow clicks to pass through to the buttons inside */
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end; /* Default to bottom alignment for mobile */
}

/* Common Box Styles */
.normal-box,
.sale-box {
  pointer-events: auto; /* Re-enable clicks for the box content */
  position: absolute;
  background: rgba(97, 250, 245, 0.979); /* #61faf5 bright cyan base */
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  padding: 14px 16px;
  max-width: 320px;
  margin-bottom: 24px; /* Space from the bottom on mobile */
  transform: translateY(120%); /* Initial off-screen for JS transition */
  transition: opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
}

/* Desktop Positioning */
@media (min-width: 769px) {
  .book-button-fixed {
    align-items: flex-start; /* Align to top for desktop */
  }
  .normal-box,
  .sale-box {
    top: auto;
    bottom: 0;
    left: auto;
    right: 12px; /* 40px from the right edge, near Skytree foot */
    bottom: 200px; /* Position it higher up */
    margin-bottom: 0;
   }
  .normal-box {
    max-width: 350px; /* ← 通常ボックスの幅 */
  }
  .sale-box {
    max-width: 380px; /* ← セールボックスの幅 */
  }
  }


/* Visibility Control */
.normal-box.is-active,
.sale-box.is-active {
  opacity: 1;
  transform: translateY(0);
}

/* Sale Box Specific Styles */
.sale-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding-bottom: 12px;
}

.sale-box p.top-text {
  font-size: 0.9rem;
  font-weight: 500;
  color: #222;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
}

.sale-box .book-button {
  background: #e63946; /* Reusing existing button style */
  font-size: 1.15rem; /* Slightly larger for emphasis */
  padding: 12px 24px;
  margin: 0; /* Override main margin */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.sale-box p.bottom-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin: 0;
}

/* Normal Box Specific Styles (Reusing main book-button) */
.normal-box .book-button {
  margin: 0; /* Override main margin */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .normal-box,
  .sale-box {
    margin-bottom: calc(1px + env(safe-area-inset-bottom)); /* Safe-area-aware spacing */
    max-width: 90%;
    width: 100%;
  }
  .sale-box .book-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}
h1 {
  max-width: 720px;   /* ← 横幅制限（820〜850px → 720px） */
  margin: 0 auto;
  line-height: 1.3;
  text-align: center;
  word-wrap: break-word;
}
.contact-cta {
  text-align: center;
  margin-top: 2em;
  background: rgba(97, 204, 247, 0.671);
  padding: 1.2em;
  border-radius: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.booking-note {
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1em;
  color: #222;
}

.booking-note strong {
  color: #b85c00;
}

.contact-btn {
  display: inline-block;
  padding: 12px 24px;
  font-weight: bold;
  background-color: #f1c342;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.sale-box {
  position: fixed;
  bottom: 32px;
  right: 32px;
  background: rgba(97, 250, 245, 0.88); /* シアン背景＋少し透過 */
  color: #222;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-width: 340px;
  opacity: 1; /* 常時表示 */
  transform: translateY(0);
  z-index: 100;
}
/* style.css の末尾、またはモバイル対応の @media (max-width: 768px) ブロック内に追記 */
@media (max-width: 768px) {
  /* 固定ボタンが legal links を隠さないように、メインコンテンツに余白を追加 */
  main {
    /*
      現在の main の padding-bottom: 60px; を上書きします。
      固定ボタンの高さ（約80px）に、余裕分とiOSのセーフエリア(env(safe-area-inset-bottom))を足した余白を設定します。
      この 120px は、既存の 60px に加えて約 60px のクリアランスを追加するイメージです。
    */
    padding-bottom: calc(200px + env(safe-area-inset-bottom));
  }
}
/* style.css の末尾に追記 */

/* --- Chopsticks Banner Styling --- */

.chopstick-banner {
  /* 中央寄せ */
  text-align: center;
  /* 上下に少しスペースを追加 */
  margin: 1.5em auto; 
  /* コンテンツ幅に制限を設ける */
  max-width: 720px; 
}

.chopstick-banner img {
  /* 親要素の幅に合わせて最大サイズを設定 */
  max-width: 100%;
  height: auto;
  /* 画像が大きく見えすぎないように、画像を縮小 (85%は調整可能) */
  width: 85%;
  /* 影を薄く追加して、背景からわずかに浮き上がらせる */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  /* 角を少し丸くする (オプション) */
  border-radius: 8px;
}

/* モバイル表示での調整 */
@media (max-width: 768px) {
  .chopstick-banner {
    /* モバイルではコンテンツ幅いっぱいに広げる */
    max-width: 95%; 
  }
  .chopstick-banner img {
    /* モバイルでは、画面いっぱいに広げすぎないよう max-width を設定 */
    max-width: 90vw; /* 画面幅の90% */
    width: 90%;
  }
}
/* --- Location Details Section (2 Rooms) --- */

.location-details {
    margin: 40px auto;
    padding: 0 10px;
    max-width: 960px;
    text-align: center;
}

.room-cards-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 30px 0;
}

.room-card {
    background: rgba(245, 223, 223, 0.685); /* Light transparent background */
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px; 
    padding: 20px; 
    max-width: 540px;
    width: 100%;
    text-align: left;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.room-card h3 {
    text-align: center;
    margin-top: 0;
    color: var(--accent-color, #6d3d0a); /* Adjust if needed */
}

.room-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4つの列を作成し、等しい幅にする */
    gap: 8px; /* 画像間の隙間を少し調整 */
    margin-bottom: 15px;
    overflow: hidden; /* Ensure images stay within card bounds */
}

.room-images img {
   /* 修正後: グリッドに合わせて幅を自動調整。高さを固定して統一感を出す */
    width: 100%; /* グリッドセル幅いっぱいに広げる */
    height: 90px;
    border-radius: 6px;
    object-fit: cover; /* Crop to cover the area */
    transition: transform 0.3s ease;
}

.room-images img:hover {
    transform: scale(1.05);
}

.location-heading {
    color: #f35d5d;
    margin: 10px 0 5px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

.room-card p {
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.access-list {
    list-style-type: disc; 
    padding-left: 20px; 
    margin: 0;
}

.booking-note-location {
    color: var(--accent-color, #060ae2);
    font-weight: bold; 
    text-align: center; 
    margin-top: 20px;
}

/* Mobile Adjustments */
@media (max-width: 880px) {
    .room-cards-container {
        flex-direction: column;
        align-items: center;
    }
    .room-card {
        max-width: 95%;
    }
}
@media (max-width: 480px) {
     .room-images {
        /* モバイルでは1列にして縦に並べるように再修正 */
        display: flex; /* gridからflexに戻します */
        flex-direction: column; /* 縦に並べる */
        gap: 15px;
    }
    .room-images img {
        width: 100%;
        height: auto; /* Allow height to adjust naturally on small screens */
    }
}
