/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
}

/* Hamburger Menu */
.hamburger-menu {
    position: fixed;
    top: 32px;
    left: 32px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-menu:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.menu-line {
    width: 24px;
    height: 3px;
    background: #1a202c;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

/* ハンバーガーメニューのアクティブ状態 */
.hamburger-menu.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger-menu.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger-menu.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.hamburger-menu.active {
    background: rgba(255, 255, 255, 1);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    max-width: 480px;
    height: 100vh;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    z-index: 999;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 8px 0 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-menu-content {
    padding: 40px 32px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

.nav-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    padding-bottom: 24px;
    border-bottom: 2px solid #e2e8f0;
}

.nav-menu-header h2 {
    font-family: 'Zen Old Mincho', serif;
    font-size: 2rem;
    font-weight: 900;
    color: #1a202c;
    letter-spacing: 0.1em;
}

.close-menu {
    width: 48px;
    height: 48px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #64748b;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: #f1f5f9;
    color: #1a202c;
    transform: rotate(90deg);
}

.nav-menu-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nav-menu-link {
    display: block;
    padding: 20px 24px;
    font-family: 'Zen Old Mincho', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #374151;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.nav-menu-link:hover::before {
    left: 100%;
}

.nav-menu-link:hover {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: #1e40af;
    transform: translateX(8px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.nav-menu-footer {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.nav-menu-footer p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 20px;
    font-weight: 600;
}

.nav-social-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.nav-social-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.nav-social-btn.twitter {
    background: #000000;
    color: white;
}

.nav-social-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Fixed Header - 高級感のあるデザイン */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    z-index: 900;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
    height: clamp(60px, 10vw, 80px);
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.logo:hover {
    transform: scale(1.05);
}

/* Language Switcher - 右端に配置 */
.language-switcher {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.language-switcher:hover {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.lang-btn {
    background: none;
    border: none;
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(12px, 2vw, 14px);
    font-weight: 700;
    color: #64748b;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.lang-btn.active {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
}

.lang-btn:hover {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.05);
}

.lang-divider {
    color: #cbd5e1;
    font-weight: 300;
    font-size: clamp(12px, 2vw, 14px);
}

/* Top Section */
.top-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    margin: 0;
}

/* Top Video Background */
.top-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: opacity(100%);
    z-index: -1;
    overflow: hidden;
}

.top-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    filter: opacity(100%);
    top: 0;
    left: 0;
}

/* Overlap Section */
.overlap-section {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 110px 70px;
    min-height: 100vh;
}

.overlap-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

/* Video Background */
.video {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.video::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(16, 57, 75, .3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

.text-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    gap: clamp(2rem, 8vw, 150px);
    margin-bottom: 150px;
}

.main-text {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: white;
    font-size: clamp(1.5rem, 4vw, 3rem);
    line-height: 1.5;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 
                0 0 20px rgba(255, 255, 255, 0.1);
    letter-spacing: 0.05em;
}

.description-text {
    max-width: 784px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    line-height: 1.8;
    letter-spacing: 0.1em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Day Pool Section - 画像幅を100px大きく */
.day-pool-section {
    position: relative;
    width: 100%;
    min-height: 700px; /* 600px → 700px */
    background: url('fileadmin/res/osaka/event/pools/2025/image1.jpg') center/cover;
    display: flex;
    align-items: center;
}

.day-pool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.05);
}

.day-pool-content {
    position: relative;
    z-index: 1;
    max-width: 988px;
    margin: 0 auto;
    padding: 80px 40px;
}

.day-pool-content h2 {
    font-family: 'Zen Old Mincho', serif;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.day-pool-content p {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Night Pool Section - 画像幅を100px大きく */
.night-pool-section {
    position: relative;
    width: 100%;
    min-height: 700px; /* 600px → 700px */
    background: url('fileadmin/res/osaka/event/pools/2025/night5.jpg') center/cover;
    display: flex;
    align-items: center;
}

.night-pool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
}

.night-pool-content {
    position: relative;
    z-index: 1;
    max-width: 1060px;
    margin: 0 auto;
    padding: 80px 40px;
}

.night-pool-content h2 {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.night-pool-description {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: white;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 700;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 30px;
}


.reservation-notice span {
    font-family: 'Zen Old Mincho', serif;
    color: #ffeb3b;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: #005133;
    padding: 8px 16px;
    border-radius: 8px;
    border: 2px solid #000000;
    display: inline-block;
}

/* NIGHT POOL予約ボタン - 高級感のあるデザイン */
.night-pool-book-btn {
    width: clamp(250px, 40vw, 320px);
    height: clamp(60px, 10vw, 75px);
    background:#005133;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #ffffff;
    font-size: clamp(14px, 2.5vw, 18px);
    text-shadow: 0px 1px 2px rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 
                inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 40px; /* ここで下部に空白を作成。数値は適宜調整してください */
}

.night-pool-book-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.night-pool-book-btn:hover::before {
    animation: shimmer 0.8s ease-in-out;
}

.night-pool-book-btn:hover {
    background: #005133;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: #daa520;
}

.night-pool-gift span {
    color: white;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

/* Price Section */
.price-section {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 80px 40px;
    min-height: 100vh;
}

.price-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.price-content h2 {
    margin-bottom: 48px;
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 32px;
}

.price-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1),
                0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
                0 4px 16px rgba(0, 0, 0, 0.08);
}

.price-card-header {
    position: relative;
    height: 500px; /* 400px → 500px (100px増加) */
    width: 100%;
}

.price-card-header img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.price-card-header h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.price-card-content {
    padding: 24px;
}

.price-table {
    margin-bottom: 40px;
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ddd;
}

.price-header span {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 900;
}

.price-columns {
    display: flex;
    gap: clamp(2rem, 8vw, 4rem);
}

.price-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #ddd;
}

.category {
    width: 80px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 900;
}

.price-details {
    flex: 1;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
}

.price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.price-item span {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    font-weight: 900;
}

.price-values {
    display: flex;
    gap: clamp(2rem, 8vw, 170px);
    justify-content: flex-start;
}

.price-item a {
    color: black;
    text-decoration: underline;
}

.night-pool .price-header {
    justify-content: space-between;
}

.night-pool .price-item {
    justify-content: space-between;
}

@media screen and (max-width: 768px) {
  /* 外来 / 宿泊見出しを強調 */
  .price-row .category {
    width: 100%;
    color: #007BFF; /* 青系 */
    font-weight: bold;
    margin-bottom: 8px;
  }

  /* price-item を1行で横並びに */
  .price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    border-bottom: none; /* 下線削除してスッキリ */
    padding: 4px 0;
  }
    
@media screen and (max-width: 768px) {
  .price-header .sp-only {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    padding: 0 8px;
  }

  .price-values {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0;
    padding: 0 8px;
  }

  .price-values span {
    flex: 1;
    text-align: center;
  }

  /* モバイル用に category（外来・宿泊）を1行で */
  .price-row {
    flex-direction: column;
  }

  .price-row .category {
    width: 100%;
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 4px;
    text-align: left;
    padding-left: 8px;
  }

  .price-details {
    width: 100%;
  }

  .price-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .price-item span:first-child {
    font-weight: bold;
    padding-left: 8px;
  }
}


  /* price-item 内のテキスト整列 */
  .price-item span:first-child {
    flex: 1;
    white-space: nowrap;
  }

  .price-values {
    display: flex;
    gap: 32px;
    justify-content: flex-end;
  }

  .price-values span {
    white-space: nowrap;
    font-weight: bold;
  }
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 4px 0;
  }

  .sp-only span {
    flex: 1;
    text-align: center;
    font-weight: bold;
  }

  .price-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
    border-bottom: 1px solid #ccc;
  }

  .price-row .category {
    font-weight: bold;
    color: #007BFF;
    margin-bottom: 8px;
    font-size: 1rem;
    padding-left: 4px;
  }

  .price-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border: none;
    padding: 6px 0;
    gap: 4px;
  }

  .price-item span:first-child {
    width: 100%;
    font-weight: bold;
    font-size: 0.9rem;
  }

  .price-values {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-left: 8px;
  }

  .price-values span {
    flex: 1;
    text-align: center;
    font-size: 0.9rem;
  }
}


/* Price Section内の予約ボタン */
.price-booking-section {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 2px solid #e2e8f0;
    text-align: center;
}

.price-night-pool-book-btn {
    width: clamp(220px, 35vw, 280px);
    height: clamp(50px, 8vw, 65px);
    background: #005133;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #ffffff;
    font-size: clamp(12px, 2vw, 16px);
    text-shadow: 0px 1px 2px rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 
                inset 0 1px 0 rgba(255,255,255,0.6);
    position: relative;
    overflow: hidden;
    margin-bottom: 40px; /* ここで下部に空白を作成。数値は適宜調整してください */
}

.price-night-pool-book-btn:hover {
    background: #005133;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.8);
    border-color: #daa520;
}

.price-note {
    margin-top: 32px;
    font-family: 'Zen Old Mincho', serif;
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 900;
    color: white;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* NIGHT POOL予約ボタン */
.price-night-pool-gift {
    color: white;
    display: block; /* ブロックレベル要素として表示させる */
    margin-left: auto; /* ボタンを中央寄せにしたい場合 */
    margin-right: auto; /* ボタンを中央寄せにしたい場合 */
    
        /* ここからが縦並びのためのFlexboxの設定 */
    display: flex; /* Flexboxコンテナにする */
    flex-direction: column; /* 子要素を縦方向に並べる */
    align-items: center; /* 子要素を水平方向の中央に揃える */
    justify-content: center; /* 子要素を垂直方向の中央に揃える（必要であれば） */
    
    /* ここに1行追加 */
    text-align: center; /* テキストを中央揃えにする */
}

/* Video Section for Price */
.video2 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
}

.video2::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(16, 57, 75, .3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.video2 video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Stay Section - 縦幅拡張とスクロール不要に修正 */
.stay-section {
    position: relative;
    width: 100%;
    min-height: 100vh; /* 140vh → 100vh に戻す */
    overflow: hidden;
}

.stay-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.stay-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stay-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    box-sizing: border-box;
    padding-right: 100px;
}

.stay-content {
    max-width: 500px;
    width: 100%;
}

@media (max-width: 768px) {
  .stay-overlay {
    width: 100vw;        /* ← スマホでは全幅 */
    right: 0;
    left: 0;             /* 念のためリセット */
    padding-right: 30px; /* モバイル向けに余白も調整 */
    padding-left: 30px;  /* 左右余白バランスよく */
    justify-content: center; /* 真ん中寄せしたい場合 */
  }

  .stay-content {
    max-width: 100%;
    width: 100%;
  }
}


.stay-content h2 {
    font-size: clamp(1.5rem, 4.0vw, 2.5rem); /* さらに小さく */
    font-weight: 900;
    color: #ffffff;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.stay-text {
    font-size: clamp(0.85rem, 0.8vw, 1.5rem); /* さらに小さく */
    font-weight: 700;
    color: #ffffff;
    line-height: 1.4; /* 行間をさらに詰める */
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: clamp(0.4rem, 1vw, 0.6rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Stay Section予約ボタン群 */
.stay-booking-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px; /* さらに小さく */
    margin: 10px 0;
}

.stay-general-btn,
.stay-day-pool-btn,
.stay-night-pool-btn,
.stay-privilege-btn {
    width: 100%;
    height: clamp(30px, 4vw, 40px);
    background:#005133;
    border: 2px solid #ffffff;
    border-radius: 30px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #ecf0f1;
    font-size: clamp(7px, 1.1vw, 10px);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.5);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3), 
                inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.stay-general-btn:hover,
.stay-day-pool-btn:hover,
.stay-night-pool-btn:hover,
.stay-privilege-btn:hover {
    background: linear-gradient(135deg, #34495e 0%, #4a6741 50%, #34495e 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.4), 
                inset 0 1px 0 rgba(255,255,255,0.2);
    border-color: #2c3e50;
}

/* Premium Seat Section */
.premium-seat-section {
    width: 100%;
}

.premium-seat-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
}

.premium-seat-text,
.premium-seat-price,
.premium-seat-benefits {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.premium-seat-book-btn {
    width: clamp(200px, 35vw, 250px);
    height: clamp(50px, 8vw, 60px);
    background: #005133;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #f8f9fa;
    font-size: clamp(14px, 2.5vw, 18px);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 20px;
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.premium-seat-book-btn:hover {
    background: #005133;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #daa520;
}

.reservation-note {
  font-size: 0.75rem; /* 小さめの文字サイズ */
  display: block;
  margin-top: 1em;
  color: #fff; /* 白にしたい場合は指定 */
}
.reservation-note a {
  color: #fff; /* 電話番号リンクの色 */
  text-decoration: underline;
}


/* Special Offer Section */
.special-offer-section {
    width: 100%;
}

.special-offer-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
}

.special-offer-text {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Unified Section Styles - モバイル隙間修正 */
.section-container {
    display: flex;
    min-height: 600px;
    width: 100%;
}

.image-container {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-container:hover img {
    transform: scale(1.05);
}

.content-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.content-overlay {
    padding: clamp(2rem, 5vw, 4rem);
    max-width: 100%;
    width: 100%;
    margin: 0;
}

.content-overlay h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: #ffffff;
    margin-bottom: clamp(1.5rem, 3vw, 2rem);
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.content-overlay p {
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.8;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    margin-bottom: clamp(1rem, 2vw, 1.5rem);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Food & Beverage Section - 画像左、文字右に変更 */
.food-beverage-section {
    width: 100%;
}

.food-beverage-section .section-container {
    flex-direction: row; /* 画像左、文字右 */
}

/* 背景画像あり */
/* .food-beverage-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('fileadmin/res/osaka/event/pools/2025/food1.jpg') center/cover;
} */

/* 背景画像なし */
.food-beverage-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
}

/* SATSUKIday Section - 文字左、画像右に変更 */
.satsukiday-section {
    width: 100%;
}

/* 背景画像なし */
.satsukiday-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
}

.satsukiday-btn {
    width: clamp(200px, 35vw, 250px);
    height: clamp(60px, 10vw, 70px);
    background: #005133;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #f8f9fa;
    font-size: clamp(16px, 2.5vw, 20px);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4), 
                inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.satsukiday-btn:hover {
    background: #005133;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #ffffff;
}


/* VIP Section - 文字左、画像右に変更 */
.vip-section {
    width: 100%;
}

.vip-section .section-container {
    flex-direction: row; /* 画像左、文字右 */
}

/* 背景画像あり */
/* .vip-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('fileadmin/res/osaka/event/pools/2025/food1.jpg') center/cover;
} */

/* 背景画像なし */
.vip-section .content-container {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85))!important;
}

.vip-btn {
    width: clamp(200px, 35vw, 250px);
    height: clamp(60px, 10vw, 70px);
    background: #005133;
    border: 2px solid #ffffff;
    border-radius: 50px;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    color: #f8f9fa;
    font-size: clamp(16px, 2.5vw, 20px);
    text-shadow: 0px 1px 2px rgba(0,0,0,0.6);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: clamp(1rem, 2vw, 1.5rem);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4), 
                inset 0 1px 0 rgba(255,255,255,0.2);
    position: relative;
    overflow: hidden;
}

.vip-btn:hover {
    background: #005133;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(218, 165, 32, 0.6), 
                inset 0 1px 0 rgba(255,255,255,0.3);
    border-color: #ffffff;
}

/* Gallery Section - 写真中央揃え、ボタン左右配置 */
.gallery-section {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 80px 40px;
    min-height: 100vh;
}

/* Gallery Video Background - background.mp4を使用 */
.gallery-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.gallery-video::after {
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(16, 57, 75, .3);
    display: block;
    position: absolute;
    left: 0;
    top: 0;
}

.gallery-video video {
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
}

/* Gallery Title - 左揃え */
.gallery-title {
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 60px;
}

.gallery-title h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
    font-family: 'Zen Old Mincho', serif;
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Slider - 写真中央揃え */
.welcome-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.slider-track {
    position: relative;
    width: 100%;
    height: clamp(350px, 45vw, 500px);
    display: flex;
    align-items: center;
    justify-content: center; /* 中央揃えに変更 */
    padding: 0; /* パディングを削除 */
}

.slide {
    position: absolute;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.slide.active {
    z-index: 10;
}

.slide.active img {
    transform: scale(1.05);
}

.slide:hover img {
    transform: scale(1.02);
}

.slide.active:hover img {
    transform: scale(1.08);
}

/* ナビゲーションボタン - 左右に配置 */
.slider-nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 20;
    padding: 0 20px;
}

.slider-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    color: #1a202c;
}

.slider-nav-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slider-nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
}

.pagination {
    text-align: left; /* 左揃えに変更 */
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px; /* 左側にパディング追加 */
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 0 8px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dot.active {
    background-color: white;
    transform: scale(1.2);
}

.pagination-text {
    color: white;
    font-family: 'Zen Old Mincho', serif;
    font-weight: 900;
    font-size: 1.25rem;
    text-align: left; /* 左揃えに変更 */
    margin-top: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px; /* 左側にパディング追加 */
}

/* Access Section - 動画背景を暗めに設定、文字を見やすく、ホテルロゴを小さく */
.access-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 56px 40px;
    overflow: hidden;
}

/* Access Video Background - 暗めのオーバーレイ */
.access-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.access-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.access-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.access-content {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.access-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    font-family: 'Zen Old Mincho', serif;
    color: white;
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.address {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 900;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: white;
    line-height: 1.6;
    margin-bottom: 24px;
    padding: 0;
    border-radius: 0;
    display: block;
    box-shadow: none;
    background: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.map-container {
    margin: 40px 0;
    overflow: hidden;
}

/* Transportation Section */
.transportation {
    margin-bottom: 80px;
}

.transportation h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: white;
    font-family: 'Zen Old Mincho', serif;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.car-note {
    font-size: clamp(0.875rem, 1.5vw, 1rem);
    font-weight: 900;
    color: white;
    margin-bottom: 32px;
    padding: 0;
    border-radius: 0;
    display: block;
    box-shadow: none;
    background: none;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Transport Block Layout */
.transport-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 8vw, 5rem);
    flex-wrap: wrap;
}

/* Stations Block */
.stations-block {
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 300px;
}

.transport-item {
    display: flex;
    align-items: center;
    gap: clamp(1rem, 3vw, 2.5rem);
}

.station-card {
    width: clamp(240px, 40vw, 320px);
    height: clamp(70px, 12vw, 96px);
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-weight: 900;
    color: white;
    font-family: 'Zen Old Mincho', serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.walk-time {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.walk-time span {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    font-weight: 900;
    color: white;
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.arrow {
    font-size: clamp(1.5rem, 3vw, 3rem);
    color: white;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.5rem;
    transform: scaleX(2);
}

/* Hotel Logo - サイズを小さく */
.hotel-destination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hotel-logo {
    width: clamp(200px, 35vw, 400px); /* 280px → 200px, 665px → 400px に縮小 */
    height: clamp(120px, 20vw, 150px); /* 160px → 120px, 209px → 150px に縮小 */
    background: none;
    overflow: hidden;
}

.hotel-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ここからメディアクエリ：モバイル画面に適用されるスタイル */
@media (max-width: 1024px) { /* 768px以下をモバイルと想定 */

    .transport-block {
        flex-direction: column; /* これは以前と同じく、主要ブロックを縦に並べます */
        gap: 40px;
    }

    .stations-block {
        min-width: unset;
        width: 100%;
        max-width: none; /* ここでmax-widthを解除し、駅カードとロゴの横並びに対応 */
        align-items: flex-start; /* 左寄せに変更します */
        padding: 0 5%; /* 左右に少し余白を追加して、端に寄りすぎないようにします */
    }

    .station-card-container {
        display: flex; /* これを追加して、駅カードとロゴを横並びにします */
        flex-wrap: wrap; /* 画面が小さすぎる場合は折り返します */
        justify-content: center; /* 横並びになったアイテムを中央に配置 */
        width: 100%; /* 親要素の幅いっぱいに広がるようにします */
        gap: 20px; /* 駅カードとロゴの間隔 */
    }

    .transport-item {
        flex-direction: column; /* 駅名カードと徒歩時間は引き続き縦に並べます */
        align-items: center;
        gap: 16px;
        width: calc(50% - 10px); /* ロゴと横並びにするため、幅を50%に設定し、gap分を引きます */
        min-width: 150px; /* これ以上小さくならないように最小幅を設定（調整してください） */
    }

    .station-card {
        width: 100%; /* 親であるtransport-itemの幅いっぱいにします */
        max-width: none; /* station-card自体の最大幅を解除 */
        height: auto;
        padding: 15px 10px; /* 左右の余白をさらに小さく調整 */
        font-size: clamp(0.8rem, 2vw, 1.1rem); /* フォントサイズも調整 */
    }

    .walk-time {
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    .walk-time span {
        font-size: 0.9rem; /* フォントサイズ調整 */
    }
    .arrow {
        font-size: 1.8rem; /* 矢印サイズ調整 */
        transform: none;
    }

    /* モバイルではPC用のロゴを非表示にし、SP用のロゴを表示します */
    .pc-only {
        display: none;
    }
    .sp-only {
        display: flex; /* ロゴを表示 */
        align-items: center; /* ロゴを中央揃えに */
        justify-content: center; /* ロゴを中央揃えに */
        margin-top: 0; /* Station Card Container内でgapを使うため、不要になります */
        margin-bottom: 0;
        width: calc(50% - 10px); /* 駅カードと横並びにするため、幅を50%に設定し、gap分を引きます */
        min-width: 120px; /* これ以上小さくならないように最小幅を設定（調整してください） */
    }

    .hotel-logo {
        width: 100%; /* 親要素 (sp-only) の幅いっぱいに広げます */
        height: auto; /* 高さは自動調整 */
        max-height: 100px; /* ロゴが縦に伸びすぎないように最大高さを設定 */
    }
}

/* ここからメディアクエリ：モバイル画面に適用されるスタイル */
@media (max-width: 1024px) { /* 768px以下をモバイルと想定 */

    /* その他の既存のモバイル用スタイルはここに保持 */

    .transport-item {
        flex-direction: column; /* 駅名カードと徒歩時間は引き続き縦に並べます */
        align-items: center;
        gap: 16px;
        width: calc(50% - 10px);
        min-width: 150px;
    }

    .walk-time {
        flex-direction: column; /* ここを 'column' に変更し、矢印を下向きに配置しやすくします */
        align-items: center;
        gap: 8px; /* 必要に応じて調整 */
    }
    .walk-time span {
        font-size: 0.9rem;
    }
    .arrow {
        font-size: 1.8rem;
        /* ここを修正・追加: 矢印を下向きに回転 */
        transform: rotate(90deg); /* 元々右を向いている「→」を90度回転させて下向きにします */
        letter-spacing: 0; /* 下向きになったらレタースペーシングは不要になることが多い */
    }

    /* その他の既存のモバイル用スタイルはここに保持 */
}

/* Information Section */
.information-section {
    position: relative;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 64px 40px;
    overflow: hidden;
}

/* Information Video Background */
.information-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.information-video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.information-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.information-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.information-content h2 {
    margin-bottom: 48px;
    font-weight: 900;
    color: white;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-family: 'Zen Old Mincho', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.info-text {
    font-size: clamp(0.75rem, 1.2vw, 0.875rem);
    color: white;
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 500;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-text p {
    margin-bottom: 24px;
}

.info-text a {
    color: #87ceeb;
    text-decoration: underline;
    display: block;
    margin: 16px 0;
    transition: color 0.3s ease;
}

.info-text a:hover {
    color: #b0e0e6;
}

/* Footer Section */
.footer-section {
    width: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 40px 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

/* Footer Center - Logo & Contact */
.footer-center {
    display: flex;
    flex-direction: column;
    gap: 32px;
    text-align: center;
}

.logo-container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.footer-logo-link {
    display: block;
    text-decoration: none;
}

.footer-logo {
    width: 100%;
    height: auto;
    max-height: 120px;
    object-fit: contain;
}

.contact-info {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    color: #1a202c;
}

.footer-center .address {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    color: #2d3748;
    background: none;
    padding: 0;
    box-shadow: none;
    display: block;
    text-shadow: none;
}

.phone {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
}

.phone a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 900;
    transition: color 0.3s ease;
}

.phone a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.hours {
    color: #64748b;
    font-weight: 500;
    font-size: 16px;
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    gap: 40px;
    grid-column: span 2;
}

.nav-column {
    flex: 1;
}

.nav-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-column a {
    font-family: 'Zen Old Mincho', serif;
    font-weight: 700;
    color: #374151;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.nav-column a:hover {
    color: #1f2937;
    border-bottom-color: #2563eb;
    transform: translateX(4px);
}

/* Footer Social */
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.social-text {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-weight: 600;
    color: #374151;
    font-size: 16px;
    line-height: 1.5;
}

.social-buttons {
    display: flex;
    gap: 16px;
}

.social-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-btn.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-btn.twitter {
    background: #000000;
    color: white;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.social-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer Bottom */
.footer-bottom {
    text-align: center;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #cbd5e1 50%, transparent 100%);
    margin-bottom: 32px;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    text-align: center;
}

.terms-link {
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 12px;
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.terms-link:hover {
    color: #6b7280;
    text-decoration: underline;
}

/* PC用動画 - タブレット以上で表示 */
.pc-video {
    display: block;
}

/* SP用動画 - スマートフォンで表示 */
.sp-video {
    display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        height: 90px;
        padding: 0 24px;
    }
    
    .hamburger-menu {
        top: 24px;
        left: 24px;
        width: 55px;
        height: 55px;
    }
    
    .language-switcher {
        right: 24px;
    }
    
    .text-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .section-container {
        flex-direction: column;
    }
    
    .image-container,
    .content-container {
        min-height: 400px;
    }
    
    /* Price section improvements for tablet */
    .price-columns {
        gap: clamp(1rem, 4vw, 2rem);
    }
    
    .price-values {
        gap: clamp(1rem, 4vw, 2rem);
        padding-right: 5px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-nav {
        grid-column: span 1;
        gap: 30px;
    }
    
    .footer-social {
        grid-column: span 1;
    }
    
    /* Slider responsive adjustments for tablet */
    .slider-track {
        height: clamp(300px, 40vw, 450px);
    }
    
    /* Stay booking buttons responsive */
    .stay-booking-buttons {
        gap: 12px;
    }
    
    /* Stay section responsive - モバイル隙間修正 */
    .stay-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
        justify-content: center;
        padding: 0;
    }
    
    .stay-content {
        width: 80%;
        margin: 0;
        max-width: 600px;
    }
    
    /* Hotel logo responsive for tablet */
    .hotel-logo {
        width: clamp(180px, 30vw, 350px);
        height: clamp(100px, 18vw, 130px);
    }
}

.pc-only{
    display: block;
}

.sp-only{
    display: none;
}

.day-pool-section-container{
    position: relative;
}

/* day-pool-sectionの上に薄く黒いオーバーレイを被せる */
.day-pool-section-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none; /* クリックイベントを通す */
}

/* day-pool-contentがオーバーレイの上に表示されるようにする */
.day-pool-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {

    .pc-video {
        display: none!important;
    }
    
    .sp-video {
        display: block;
    }

    .pc-only{
        display: none!important;
    }

    .sp-only{
        display: block;
    }

    .image-container img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.3s ease;
    }

    .content-change{
        display: flex!important;
        flex-direction: column-reverse!important;
    }

    .stay-section{
        display: block!important;
        min-height: initial;
    }

    .stay-background{
        height: auto; /* 画像の高さに合わせる */
    }

    .stay-background,
    .stay-overlay{
        position: initial;
    }

    .stay-background img {
        width: 100%;
        height: auto; /* 画像の自然な高さを保持 */
        display: block; /* 余分な隙間を削除 */
        object-fit: contain; /* 画像の比率を保持 */
    }

    .station-card-container{
        display: flex;
    }

    .text-content{
        margin-bottom: 20px;
    }

    .overlap-section{
        min-height: initial;
    }
    
    .description-text {
        font-size: clamp(0.800rem, 1.5vw, 1.25rem);
    }

    .image-container,
    .gallery-section{
        min-height: initial;
    }

    .content-container{
        background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85));
    }

    .section-container{
        display: block;
        flex-direction: column-reverse!important;
    }

    .price-item,
    .price-values{
        flex-direction: initial!important;
    }

    .hotel-destination{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header {
        height: 80px;
        padding: 0 20px;
        justify-content: center; /* モバイル時は中央揃え */
        align-items: center;
    }
    
    .hamburger-menu {
        top: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
    }
    
    .nav-menu {
        max-width: 100%;
    }
    
    .nav-menu-content {
        padding: 32px 24px;
    }
    
    .nav-menu-header {
        margin-bottom: 40px;
    }
    
    .nav-menu-header h2 {
        font-size: 1.5rem;
    }
    
    .nav-menu-link {
        font-size: 1.1rem;
        padding: 16px 20px;
    }
    
    .logo {
        height: clamp(50px, 12vw, 70px);
        max-width: 60%;
    }
    
    .language-switcher {
        right: 20px;
        padding: 6px 12px;
        gap: 6px;
    }
    
    .lang-btn {
        padding: 3px 6px;
        font-size: clamp(10px, 2vw, 12px);
    }
    
    .lang-divider {
        font-size: clamp(10px, 2vw, 12px);
    }
    
    .overlap-section,
    .price-section {
        padding: 60px 20px;
    }
    
    .day-pool-content,
    .night-pool-content {
        padding: 60px 20px;
    }
    
    .night-pool-gift {
        padding: 0px 0px;
    } 
    
    .access-section {
        padding: 40px 20px;
    }
    
    .transport-block {
        flex-direction: column;
        gap: 40px;
    }
    
    .stations-block {
        align-items: center;
    }
    
    .transport-item {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .transportation {
        margin-bottom: 60px;
    }
    
    .footer-section {
        padding: 60px 20px 30px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-column ul {
        align-items: center;
    }
    
    .footer-social {
        align-items: center;
    }
    
    .social-buttons {
        justify-content: center;
    }
    
    /* Price section mobile improvements */
    .price-card-content {
        padding: 16px;
    }
    
    .price-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-columns {
        /* flex-direction: column; */
        gap: 8px;
    }
    
    .price-columns{
        display: flex;
    }
    
    .price-columns.sp-only,
    .adult-18-label {
        justify-content: flex-end;
        margin-left: auto;
        align-self: flex-end;
        text-align: right;
    }

    .price-columns.sp-only span {
        font-size: 0.7rem;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .price-values {
        flex-direction: column;
        gap: 4px;
    }
    

    }
    
    /* Slider responsive adjustments for mobile */
    .slider-track {
        height: clamp(280px, 50vw, 350px);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    /* Stay booking buttons mobile */
    .stay-booking-buttons {
        gap: 10px;
    }
    
    .stay-general-btn,
    .stay-day-pool-btn,
    .stay-night-pool-btn,
    .stay-privilege-btn {
        height: clamp(45px, 7vw, 55px);
        font-size: clamp(10px, 1.8vw, 14px);
    }
    
    /* Stay section mobile adjustments - モバイル隙間修正 */
    .stay-overlay {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
        justify-content: center;
        padding: 0;
    }
    
    .stay-content {
        width: 90%;
        margin: 0;
        max-width: 500px;
        padding: clamp(1.25rem, 3vw, 2.5rem);
    }
    
    /* Content container padding adjustment for mobile */
    .content-container {
        padding: 0;
    }
    
    .content-overlay {
        padding: clamp(1.5rem, 4vw, 3rem);
        margin: 0;
    }
    
    /* Gallery responsive */
    .gallery-title {
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .pagination {
        padding-left: 20px;
    }
    
    .pagination-text {
        padding-left: 20px;
    }
    
    .slider-nav-buttons {
        padding: 0 10px;
    }
    
    .slider-nav-btn {
        width: 50px;
        height: 50px;
    }
    
    /* Hotel logo responsive for mobile */
    .hotel-logo {
        width: clamp(160px, 25vw, 300px);
        height: clamp(90px, 15vw, 110px);
    }
}

@media (max-width: 480px) {
    .header {
        height: 70px;
        padding: 0 16px;
        gap: 8px;
        justify-content: center; /* モバイル時は中央揃え */
    }
    
    .hamburger-menu {
        width: 45px;
        height: 45px;
        top: 16px;
        left: 16px;
    }
    
    .menu-line {
        width: 20px;
        height: 2px;
    }
    
    .nav-menu-content {
        padding: 24px 20px;
    }
    
    .nav-menu-link {
        font-size: 1rem;
        padding: 14px 16px;
    }
    
    .logo {
        height: clamp(40px, 15vw, 60px);
        max-width: 55%;
    }
    
    .language-switcher {
        right: 16px;
        padding: 4px 8px;
        gap: 4px;
    }
    
    .lang-btn {
        padding: 2px 4px;
        font-size: clamp(8px, 2vw, 10px);
    }
    
    .lang-divider {
        font-size: clamp(8px, 2vw, 10px);
    }
    
    .overlap-section,
    .price-section {
        padding: 40px 16px;
    }
    
    .day-pool-content,
    .night-pool-content {
        padding: 40px 16px;
    }
    
    .access-section {
        padding: 32px 16px;
    }
    
    .footer-section {
        padding: 40px 16px 20px;
    }
    
    .footer-top {
        gap: 30px;
    }
    
    .footer-center {
        gap: 24px;
    }
    
    .footer-center .address,
    .phone {
        font-size: 16px;
    }
    
    .nav-column a {
        font-size: 15px;
    }
    
    .social-text {
        font-size: 14px;
    }
    
    .social-btn {
        width: 48px;
        height: 48px;
    }
    
    .social-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Enhanced mobile price section */
    .price-table {
        margin-bottom: 24px;
    }
    
    .price-header span {
        font-size: 0.875rem;
        font-weight: 900;
        color: #1a202c;
    }
    
    .price-item span {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .price-note {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    
    /* Enhanced mobile slider */
    .slider-track {
        height: clamp(250px, 60vw, 320px);
    }
    
    .slide img {
        border-radius: 8px;
    }
    
    /* Stay booking buttons mobile small */
    .stay-general-btn,
    .stay-day-pool-btn,
    .stay-night-pool-btn,
    .stay-privilege-btn {
        height: clamp(40px, 6vw, 50px);
        font-size: clamp(9px, 1.6vw, 12px);
    }
    
    /* Stay section mobile small adjustments - モバイル隙間修正 */
    .stay-overlay {
        padding: 0;
    }
    
    .stay-content {
        width: 95%;
        margin: 0;
        max-width: 400px;
        padding: clamp(1rem, 3vw, 2rem);
        max-height: 85vh;
        background: initial;
    }
    
    .stay-content h2 {
        font-size: clamp(1.5rem, 4vw, 2.5rem);
        margin-bottom: clamp(0.75rem, 2vw, 1.25rem);
    }
    
    .stay-text {
        font-size: clamp(0.7rem, 0.9vw, 0.85rem);
        line-height: 1.5;
        margin-bottom: clamp(0.5rem, 1.25vw, 0.75rem);
    }
    
    .stay-booking-buttons {
        gap: 8px;
        margin: 12px 0;
    }
    
    /* Content overlay padding adjustment for mobile small */
    .content-overlay {
        padding: clamp(1.25rem, 3.5vw, 2.5rem);
        margin: 0;
    }
    
    /* Gallery responsive small */
    .gallery-title {
        padding: 0 16px;
        margin-bottom: 30px;
    }
    
    .pagination {
        padding-left: 16px;
    }
    
    .pagination-text {
        padding-left: 16px;
    }
    
    .slider-nav-buttons {
        padding: 0 5px;
    }
    
    .slider-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .slider-nav-btn svg {
        width: 20px;
        height: 20px;
    }
    
    /* Hotel logo responsive for mobile small */
    .hotel-logo {
        width: clamp(140px, 20vw, 250px);
        height: clamp(80px, 12vw, 95px);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hamburger-menu,
    .menu-line,
    .nav-menu,
    .nav-menu-link,
    .nav-social-btn,
    .menu-overlay,
    .station-card,
    .footer-logo,
    .social-btn,
    .nav-column a,
    .stay-general-btn,
    .stay-day-pool-btn,
    .stay-night-pool-btn,
    .stay-privilege-btn,
    .premium-seat-book-btn,
    .vip-btn,
    .night-pool-book-btn,
    .price-night-pool-book-btn,
    .slide,
    .header,
    .logo,
    .slider-nav-btn {
        transition: none;
    }
    
    .nav-menu-link::before {
        transition: none;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.hamburger-menu:focus,
.nav-menu-link:focus,
.stay-general-btn:focus,
.stay-day-pool-btn:focus,
.stay-night-pool-btn:focus,
.stay-privilege-btn:focus,
.premium-seat-book-btn:focus,
.vip-btn:focus,
.night-pool-book-btn:focus,
.price-night-pool-book-btn:focus,
.social-btn:focus,
.footer-logo-link:focus,
.lang-btn:focus,
.slider-nav-btn:focus,
.dot:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}