/* 基本設定 */
body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* ヘッダー */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    max-width: 180px;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo img {
    width: 100%;
    height: auto;
    display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .logo {
        max-width: 150px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .global-nav {
        display: none;
    }
}

/* グローバルナビゲーション */
.global-nav {
    background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    position: relative;
    margin-top: -1px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.global-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

/* PC用のナビゲーション */
@media (min-width: 769px) {
    .global-nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative;
        width: 100%;
        height: auto;
        background: linear-gradient(90deg, #2c3e50 0%, #3498db 100%);
    }

    .global-nav ul {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
        gap: 3rem;
        padding: 0 4rem;
        position: relative;
        z-index: 1;
    }

    .global-nav a {
        display: inline-block;
        padding: 1.5rem 0;
        color: #ffffff;
        font-weight: 500;
        font-size: 1.4rem;
        letter-spacing: 1.5px;
        position: relative;
        transition: all 0.3s ease;
        text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    }

    .global-nav a:hover {
        color: #ffd700;
        text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
    }

    .global-nav a::before {
        content: '';
        position: absolute;
        top: 50%;
        left: -1.5rem;
        width: 4px;
        height: 4px;
        background-color: rgba(255,255,255,0.3);
        border-radius: 50%;
        transform: translateY(-50%);
    }

    .global-nav li:first-child a::before {
        display: none;
    }

    .global-nav a::after {
        content: '';
        position: absolute;
        bottom: 1rem;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #ffd700, #fff8dc);
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        opacity: 0.8;
        box-shadow: 0 0 8px rgba(255,215,0,0.3);
    }

    .global-nav a:hover::after {
        transform: scaleX(1);
        transform-origin: left;
    }

    /* PC表示時はモバイルメニュー用の要素を非表示 */
    .nav-info,
    .nav-container::before {
        display: none;
    }
}

/* メニュートグルボタン */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    position: relative;
    z-index: 100;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #1a1a1a;
    margin: 6px 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .header-inner {
        padding: 1.2rem 2rem;
    }
    
    .global-nav ul {
        padding: 0 2rem;
        gap: 2rem;
    }
}

/* メインビジュアル */
.hero {
    margin-top: 0;
    padding-top: calc(73px + 48px);
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    height: 100%;
    width: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero-slide:nth-child(1) {
    background-image: linear-gradient(90deg, 
        rgba(44, 62, 80, 0.7) 0%,
        rgba(44, 62, 80, 0.4) 50%,
        rgba(44, 62, 80, 0.1) 100%), 
        url('../images/hero-facility.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide:nth-child(2) {
    background-image: linear-gradient(90deg, 
        rgba(44, 62, 80, 0.7) 0%,
        rgba(44, 62, 80, 0.4) 50%,
        rgba(44, 62, 80, 0.1) 100%), 
        url('../images/hero-playing1.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide:nth-child(3) {
    background-image: linear-gradient(90deg, 
        rgba(44, 62, 80, 0.7) 0%,
        rgba(44, 62, 80, 0.4) 50%,
        rgba(44, 62, 80, 0.1) 100%), 
        url('../images/hero-playing2.jpg');
    background-size: cover;
    background-position: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 0 4rem;
    transform: translateX(-30px);
    opacity: 0;
    transition: all 1.2s ease-out;
}

.hero-slide.active .hero-content {
    transform: translateX(0);
    opacity: 1;
}

.hero-content h2 {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 2rem;
    color: #ffffff;
    letter-spacing: 0.05em;
}

.hero-content h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    bottom: 0.8rem;
    width: 6px;
    background: linear-gradient(to bottom, #3498db, #2980b9);
    border-radius: 3px;
    box-shadow: 0 0 15px rgba(52, 152, 219, 0.5);
}

.hero-content p {
    font-size: 2.2rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.8;
    margin-left: 2rem;
    position: relative;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.hero-content p::after {
    content: '';
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right, #3498db, rgba(52, 152, 219, 0));
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.3);
}

/* スライド切り替えインジケーター */
.hero-indicators {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    gap: 1rem;
}

.hero-indicator {
    width: 50px;
    height: 3px;
    background: rgba(52, 152, 219, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 1.5px;
}

.hero-indicator.active {
    background: #3498db;
    box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
}

@media (max-width: 768px) {
    .hero {
        padding-top: 73px;
    }
    
    .hero-content {
        padding: 0 2rem;
    }
    
    .hero-content h2 {
        font-size: 3.6rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .hero-indicators {
        left: 2rem;
        bottom: 2rem;
    }
}

/* セクション共通 */
section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 2rem auto 0;
}

/* 営業時間 */
.business-hours {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f8f8;
    padding: 4rem;
    border-radius: 8px;
}

.business-hours dl {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.business-hours dt {
    font-weight: 700;
}

/* 特徴セクション */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.feature-item {
    text-align: center;
    padding: 3rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    transition: transform 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

/* フッター */
footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 6rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-info h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.footer-nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.copyright {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .header-inner {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.8rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* アニメーション効果を追加 */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-slide.active .hero-content h2 {
    animation: fadeInUp 1s ease-out forwards;
}

.hero-slide.active .hero-content p {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}

/* 営業時間パネルのスタイルを追加 */
.business-hours-panel {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 300px;
    color: #ffffff;
}

.business-hours-panel h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 1rem;
}

.business-hours-panel h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(to right, rgba(255,255,255,0), #ffffff, rgba(255,255,255,0));
}

.business-hours-panel dl {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.4rem;
    padding: 0.5rem 0;
}

.hours-item dt {
    font-weight: 500;
}

.hours-item dd {
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .business-hours-panel {
        position: static;
        width: calc(100% - 4rem);
        margin: 2rem auto;
        background: rgba(255, 255, 255, 0.15);
    }
}

/* 魅力ポイントパネルのスタイルを追加 */
.features-panel {
    position: absolute;
    right: calc(4rem + 320px);
    bottom: 4rem;
    display: flex;
    gap: 2rem;
}

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    width: 220px;
    color: #ffffff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.feature-icon i {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.feature-item h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    position: relative;
    padding-bottom: 0.8rem;
}

.feature-item h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(to right, #ffffff, rgba(255,255,255,0));
}

.feature-item p {
    font-size: 1.4rem;
    line-height: 1.6;
    opacity: 0.9;
}

@media (max-width: 1400px) {
    .features-panel {
        right: calc(4rem + 320px);
        bottom: 4rem;
        flex-direction: column;
        gap: 1rem;
    }

    .feature-item {
        width: 300px;
    }
}

@media (max-width: 1024px) {
    .features-panel {
        position: absolute;
        right: auto;
        left: 4rem;
        bottom: 4rem;
    }

    .business-hours-panel {
        right: 4rem;
    }
}

@media (max-width: 768px) {
    .features-panel,
    .business-hours-panel {
        position: static;
        width: calc(100% - 4rem);
        margin: 2rem auto;
    }

    .feature-item {
        width: 100%;
    }
}

/* 営業状況表示のスタイルを更新 */
.business-status {
    position: absolute;
    top: calc(73px + 48px + 2rem);
    right: 4rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15),
                0 2px 8px rgba(0, 0, 0, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 100;
    transform: translateZ(0);
}

.business-status::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0));
    z-index: -1;
    pointer-events: none;
}

.business-status i {
    font-size: 1.6rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.business-status .status-text {
    position: relative;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.business-status.open {
    background: rgba(39, 174, 96, 0.15);
    border-color: rgba(39, 174, 96, 0.3);
    box-shadow: 0 8px 32px rgba(39, 174, 96, 0.2),
                0 2px 8px rgba(39, 174, 96, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.business-status.closing-soon {
    background: rgba(241, 196, 15, 0.15);
    border-color: rgba(241, 196, 15, 0.3);
    box-shadow: 0 8px 32px rgba(241, 196, 15, 0.2),
                0 2px 8px rgba(241, 196, 15, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.business-status.opening-soon {
    background: rgba(52, 152, 219, 0.15);
    border-color: rgba(52, 152, 219, 0.3);
    box-shadow: 0 8px 32px rgba(52, 152, 219, 0.2),
                0 2px 8px rgba(52, 152, 219, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.business-status.closed {
    background: rgba(231, 76, 60, 0.15);
    border-color: rgba(231, 76, 60, 0.3);
    box-shadow: 0 8px 32px rgba(231, 76, 60, 0.2),
                0 2px 8px rgba(231, 76, 60, 0.1),
                inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.business-status:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2),
                0 4px 12px rgba(0, 0, 0, 0.15),
                inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .business-status {
        top: 73px;
        right: 2rem;
        font-size: 1.2rem;
        padding: 1rem 2rem;
    }
    
    .business-status i {
        font-size: 1.4rem;
    }
}

/* アニメーション */
@keyframes statusPulse {
    0% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.02) translateZ(0); }
    100% { transform: scale(1) translateZ(0); }
}

.business-status.open,
.business-status.closing-soon {
    animation: statusPulse 2s infinite ease-in-out;
}

/* フッターのスタイル */
.site-footer {
    background: linear-gradient(to bottom, #1a1a1a, #2c2c2c);
    color: #ffffff;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.1) 50%,
        rgba(255,255,255,0) 100%);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    max-width: 180px;
    opacity: 0.9;
}

.footer-logo img {
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
}

.footer-address {
    font-style: normal;
    font-size: 1.4rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-address .postal-code {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.footer-address .phone {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.footer-address .phone:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.nav-group h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    padding-bottom: 0.8rem;
}

.nav-group h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20px;
    height: 2px;
    background: linear-gradient(90deg, #3498db, rgba(52, 152, 219, 0));
}

.nav-group ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-group a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-group a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-bottom {
    margin-top: 4rem;
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
}

.copyright {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 3rem;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo {
        max-width: 150px;
    }
}

/* モバイルヘッダーとナビゲーションのスタイル */
@media (max-width: 768px) {
    .header-inner {
        padding: 1rem 2rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .logo {
        max-width: 140px;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 44px;
        height: 44px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        position: relative;
        z-index: 1000;
    }

    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #1a1a1a;
        margin: 2px 0;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        border-radius: 1px;
    }

    .menu-toggle.active span {
        background-color: #ffffff;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .global-nav {
        position: fixed;
        top: 0;
        right: -300px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, rgba(44, 62, 80, 0.98), rgba(52, 152, 219, 0.98));
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 999;
        overflow-y: auto;
        display: block;
        visibility: hidden;
        opacity: 0;
    }

    .global-nav.active {
        right: 0;
        visibility: visible;
        opacity: 1;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.2);
    }

    .nav-container {
        padding: 8rem 3rem 4rem;
        display: flex;
        flex-direction: column;
        gap: 4rem;
        position: relative;
    }

    .nav-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
        pointer-events: none;
    }

    .global-nav ul {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        padding: 0;
    }

    .global-nav a {
        display: block;
        font-size: 1.6rem;
        color: #ffffff;
        padding: 1.2rem 0;
        position: relative;
        transition: all 0.3s ease;
        opacity: 0.9;
        letter-spacing: 0.05em;
    }

    .global-nav a:hover {
        opacity: 1;
        transform: translateX(10px);
    }

    .global-nav a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: linear-gradient(to right, rgba(255,255,255,0.2), rgba(255,255,255,0));
    }

    .nav-info {
        padding-top: 3rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
    }

    .nav-address {
        font-size: 1.3rem;
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.8;
        margin-bottom: 2.5rem;
        padding-left: 2.5rem;
        position: relative;
    }

    .nav-address::before {
        content: '\f3c5';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0;
        color: rgba(255, 255, 255, 0.6);
    }

    .nav-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 1.2rem;
        color: #ffffff;
        font-size: 1.6rem;
        padding: 1.5rem 2rem;
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.2), rgba(255, 255, 255, 0.1));
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1),
                    inset 0 1px 1px rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .nav-phone::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
            45deg,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent
        );
        transform: rotate(45deg);
        transition: 0.6s;
        opacity: 0;
    }

    .nav-phone:hover {
        background: linear-gradient(135deg, rgba(52, 152, 219, 0.3), rgba(255, 255, 255, 0.15));
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15),
                    inset 0 1px 1px rgba(255, 255, 255, 0.2);
    }

    .nav-phone:hover::before {
        left: 100%;
        opacity: 1;
    }

    .nav-phone i {
        font-size: 1.8rem;
        color: rgba(255, 255, 255, 0.9);
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        transition: transform 0.3s ease;
    }

    .nav-phone:hover i {
        transform: scale(1.1);
    }

    .nav-phone span {
        font-weight: 500;
        letter-spacing: 0.05em;
        position: relative;
        text-align: center;
        flex: 1;
        margin-left: -24px;
    }

    .nav-phone:hover span::after {
        content: 'タップして電話をかける';
        position: absolute;
        bottom: -2.2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
    }

    /* メニューアイテムのアニメーション */
    .global-nav.active .nav-container > * {
        animation: slideIn 0.4s ease forwards;
        opacity: 0;
    }

    @keyframes slideIn {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* アニメーションの遅延を設定 */
    .global-nav.active ul {
        animation-delay: 0.2s;
    }

    .global-nav.active .nav-info {
        animation-delay: 0.3s;
    }
}

/* スクロール制御のスタイルを追加 */
body {
    overflow-x: hidden;
}

@media (max-width: 768px) {
    body.menu-open {
        overflow: hidden;
    }
}

/* フッターのスマートフォン対応を更新 */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        padding: 0 2rem;
        gap: 2.5rem;
    }

    .footer-info {
        text-align: center;
        align-items: center;
    }

    .footer-logo {
        max-width: 120px;
        margin-bottom: 1.5rem;
    }

    .footer-address {
        position: relative;
        padding-top: 0;
    }

    .footer-address .postal-code {
        font-size: 1.1rem;
        margin-bottom: 0.3rem;
    }

    .footer-address .address {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }

    .footer-address .phone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.8rem;
        width: auto;
        min-width: 200px;
        padding: 0.8rem 1.5rem;
        font-size: 1.3rem;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
        padding-top: 2rem;
    }

    .nav-group {
        text-align: left;
        padding: 0 1rem;
    }

    .nav-group h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
    }

    .nav-group ul {
        gap: 0.8rem;
    }

    .nav-group a {
        font-size: 1.2rem;
        padding: 0.3rem 0;
    }

    .footer-bottom {
        margin-top: 2.5rem;
        padding: 1.5rem;
    }

    .copyright {
        font-size: 1rem;
    }

    /* 装飾的な要素を簡素化 */
    .footer-nav::before,
    .footer-address::before,
    .nav-group h3::after {
        display: none;
    }
}

/* 設備案内ページ */
.facility-page {
    background-color: #f8f8f8;
    padding-top: 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    letter-spacing: 0.05em;
}

.facility-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.facility-container {
    display: grid;
    gap: 4rem;
}

.facility-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    transition: transform 0.3s ease;
}

.facility-item:hover {
    transform: translateY(-5px);
}

.facility-image {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 1rem;
}

.facility-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #d4af37;
}

.facility-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #666;
}

.facility-features {
    list-style: none;
    padding: 0;
}

.facility-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: #333;
}

.facility-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .facility-item {
        grid-template-columns: 1fr;
    }

    .facility-image {
        min-height: 300px;
    }

    .facility-content {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .facility-section {
        padding: 2rem 1rem;
    }

    .facility-content h3 {
        font-size: 1.5rem;
    }
}

/* 料金案内ページ */
.price-page {
    background-color: #f8f8f8;
    padding-top: 2rem;
}

.price-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.price-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.price-card:hover {
    transform: translateY(-5px);
}

.price-card-header {
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
    position: relative;
}

.price-card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.price-period {
    display: inline-block;
    background: #d4af37;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 500;
}

.price-card-body {
    padding: 2rem;
}

.price-list {
    list-style: none;
}

.price-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.price-list li:last-child {
    border-bottom: none;
}

.price-type {
    font-weight: 500;
    color: #333;
    font-size: 1.4rem;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #d4af37;
}

.price-value small {
    font-size: 1.2rem;
    margin-left: 0.2rem;
}

.price-unit {
    font-size: 1.3rem;
    color: #666;
}

.price-sub {
    background: #f8f8f8;
    margin: 1rem -2rem -2rem;
    padding: 1rem 2rem !important;
}

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-header {
    background: linear-gradient(135deg, #d4af37, #b38f1d);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.service-header i {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.service-body {
    padding: 1.5rem;
    text-align: center;
}

.service-price {
    font-size: 2.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-price small {
    font-size: 1.4rem;
}

.service-note {
    color: #666;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.service-detail {
    color: #d4af37;
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.family-price-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.family-price-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
}

.family-price-list li:last-child {
    border-bottom: none;
}

.member-type {
    display: block;
    font-weight: 500;
    color: #333;
    margin-bottom: 0.3rem;
    font-size: 1.4rem;
}

.member-price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 0.3rem;
}

.member-note {
    display: block;
    font-size: 1.3rem;
    color: #666;
}

.price-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-details > div {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-label {
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 1.3rem;
    color: #666;
}

.price-note {
    font-size: 1.2rem;
    color: #d4af37;
    margin-left: 0.5rem;
}

.service-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.special-price {
    color: #d4af37;
    margin-top: 1rem;
}

.member-price-details {
    text-align: left;
    margin-top: 0.5rem;
}

.member-special {
    color: #d4af37;
    font-size: 1.3rem;
    margin: 0.8rem 0 0.3rem;
}

/* 新しい料金テーブルスタイル */
.price-table-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.price-table-wrapper {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.4rem;
}

.price-table th {
    color: #fff;
    padding: 1rem 0.8rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.4rem;
    line-height: 1.3;
}

.price-table tbody tr:nth-child(even) {
    background: #f5f0e6;
}

.price-table tbody tr:nth-child(odd) {
    background: #fff;
}

.price-table td {
    padding: 0.9rem 0.6rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.price-table td.label-cell {
    color: #fff;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

.price-table td.price-cell {
    font-weight: 700;
    color: #333;
    font-size: 1.4rem;
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

/* 青色テーブル（通常料金） */
.price-table-blue .price-table thead tr {
    background: #0066cc;
}

.price-table-blue .price-table th.label-header {
    background: #3399ff;
}

.price-table-blue .price-table td.label-cell {
    background: #3399ff;
}

/* 緑色テーブル（団体予約料金） */
.price-table-green .price-table thead tr {
    background: #006633;
}

.price-table-green .price-table th.label-header {
    background: #339966;
}

.price-table-green .price-table td.label-cell {
    background: #339966;
}

/* GOGOパックバナー */
.gogo-pack-banner {
    background: #cc0000;
    border-radius: 8px;
    padding: 1.5rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.gogo-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffff00;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.gogo-time {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.gogo-price {
    font-size: 1.6rem;
    color: #fff;
    font-weight: 500;
}

.gogo-price .price-highlight {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

@media (max-width: 768px) {
    .price-section {
        padding: 2rem 1rem;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .service-cards {
        grid-template-columns: 1fr;
    }

    .price-value {
        font-size: 1.9rem;
    }

    .service-price {
        font-size: 2.2rem;
    }

    .price-card-header h3 {
        font-size: 1.8rem;
    }

    .member-price {
        font-size: 1.8rem;
    }

    /* テーブルのレスポンシブ */
    .price-table-row {
        grid-template-columns: 1fr;
    }

    .price-table th,
    .price-table td {
        padding: 0.7rem 0.4rem;
        font-size: 1.2rem;
    }

    .price-table td.price-cell {
        font-size: 1.2rem;
    }

    .gogo-title {
        font-size: 1.8rem;
    }

    .gogo-price .price-highlight {
        font-size: 1.6rem;
    }
} 

.service-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.5rem;
}

.special-price {
    color: #d4af37;
    margin-top: 1rem;
}

.member-price-details {
    text-align: left;
    margin-top: 0.5rem;
}

.member-special {
    color: #d4af37;
    font-size: 0.9rem;
    margin: 0.8rem 0 0.3rem;
}

.price-note {
    font-size: 1.3rem;
    color: #d4af37;
    margin-left: 0.5rem;
} 

/* スケジュールページ */
.schedule-page {
    background-color: #f8f8f8;
    padding-top: 2rem;
}

.schedule-section {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.schedule-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.schedule-nav-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    padding: 0.5rem 2rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.schedule-nav-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #d4af37;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.schedule-nav-btn.active {
    color: #333;
}

.schedule-nav-btn.active::after {
    transform: scaleX(1);
}

.schedule-content {
    display: none;
}

.schedule-content.active {
    display: block;
}

.month-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.month-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.month-btn:hover {
    color: #d4af37;
}

.current-month {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
}

.tournament-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tournament-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.tournament-card:hover {
    transform: translateY(-5px);
}

.tournament-date {
    text-align: center;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #1a1a1a, #333);
    color: #fff;
    border-radius: 8px;
}

.tournament-date .date {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tournament-date .day {
    font-size: 1rem;
}

.tournament-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
}

.tournament-time {
    color: #666;
    margin-bottom: 1rem;
}

.tournament-details {
    list-style: none;
    padding: 0;
}

.tournament-details li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.2rem;
    position: relative;
}

.tournament-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #d4af37;
}

.tournament-status {
    text-align: center;
}

.status-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: #d4af37;
    color: #fff;
    border-radius: 20px;
    font-weight: 500;
}

.business-hours {
    background: #fff;
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.hours-item {
    text-align: center;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.hours-item:hover {
    transform: translateY(-5px);
}

.hours-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.hours-item .time {
    font-size: 1.5rem;
    color: #d4af37;
    font-weight: 500;
}

@media (max-width: 768px) {
    .schedule-section {
        padding: 2rem 1rem;
    }

    .tournament-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem;
    }

    .tournament-date {
        width: fit-content;
        margin: 0 auto;
    }

    .tournament-details {
        display: inline-block;
        text-align: left;
    }

    .hours-item {
        padding: 1.5rem;
    }
} 

.no-tournament {
    text-align: center;
    padding: 3rem;
    background: #fff;
    border-radius: 12px;
    color: #666;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
} 

/* イベントグリッドスタイル */
.event-grid {
    margin-bottom: 2rem;
}

.event-page {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    padding: 2rem;
    display: none;
}

.event-page.active {
    display: grid;
}

.event-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
}

.event-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.event-card h3 {
    padding: 1.5rem;
    margin: 0;
    font-size: 1.8rem;
    color: #333;
    background: #f8f8f8;
    border-bottom: 1px solid #eee;
}

.event-details {
    padding: 1.5rem;
}

.event-details p {
    margin: 0.5rem 0;
    font-size: 1.4rem;
    color: #666;
}

/* ���ージネーション */
.event-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
}

.page-numbers {
    display: flex;
    gap: 0.5rem;
}

.page-btn,
.page-number {
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.page-btn:disabled {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}

.page-number.active {
    background: #d4af37;
    color: #fff;
    border-color: #d4af37;
}

.page-btn:hover:not(:disabled),
.page-number:hover:not(.active) {
    background: #f5f5f5;
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .event-page {
        grid-template-columns: 1fr;
        padding: 1rem;
    }
    
    .event-card h3 {
        font-size: 1.6rem;
        padding: 1rem;
    }
    
    .event-details {
        padding: 1rem;
    }
    
    .event-pagination {
        padding: 1rem;
    }
} 

/* 特別営業時間のスタイル */
.special-hours {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.special-hours h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
}

.special-period {
    font-size: 1.6rem;
    color: #e74c3c;
    text-align: center;
    font-weight: 500;
    margin-bottom: 2rem;
}

.special-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.special-hours-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.special-hours-item:hover {
    transform: translateY(-3px);
}

.special-hours-item .date {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
}

.special-hours-item .time {
    font-size: 1.6rem;
    color: #e74c3c;
    font-weight: 500;
}

.special-note {
    text-align: center;
    color: #e74c3c;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 1rem;
    background: rgba(231, 76, 60, 0.1);
    border-radius: 6px;
}

@media (max-width: 768px) {
    .special-hours {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .special-hours h3 {
        font-size: 1.8rem;
    }

    .special-period {
        font-size: 1.4rem;
    }

    .special-hours-grid {
        grid-template-columns: 1fr;
    }

    .special-hours-item {
        padding: 1.2rem;
    }

    .special-note {
        font-size: 1.2rem;
    }
} 