/* ============================================
   リセット & ベース設定
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic', 'Meiryo', sans-serif;
    line-height: 1.8;
    color: #2c2c2c;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ============================================
   ハンバーガーメニュー
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    padding: 20px;
}

.hamburger {
    background: transparent;
    border: none;
    border-radius: 0;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    padding: 10px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: transparent;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #ffffff;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* CONCEPTセクション以降でハンバーガーメニューをブラック系に変更 */
.navbar.scrolled .hamburger-line {
    background-color: #1a1a1a;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    transition: right 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

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

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

.nav-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-link {
    display: block;
    padding: 20px 30px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.9) 0px,
            rgba(255, 255, 255, 0.9) 10px,
            rgba(255, 255, 255, 0.7) 10px,
            rgba(255, 255, 255, 0.7) 20px,
            rgba(255, 255, 255, 0.9) 20px,
            rgba(255, 255, 255, 0.9) 30px,
            rgba(255, 255, 255, 0.7) 30px,
            rgba(255, 255, 255, 0.7) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.9) 0px,
            rgba(255, 255, 255, 0.9) 10px,
            rgba(255, 255, 255, 0.7) 10px,
            rgba(255, 255, 255, 0.7) 20px,
            rgba(255, 255, 255, 0.9) 20px,
            rgba(255, 255, 255, 0.9) 30px,
            rgba(255, 255, 255, 0.7) 30px,
            rgba(255, 255, 255, 0.7) 40px
        );
    background-size: 40px 40px, 40px 40px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    padding-left: 40px;
    background-image: 
        repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.9) 0px,
            rgba(255, 255, 255, 0.9) 10px,
            rgba(255, 255, 255, 0.7) 10px,
            rgba(255, 255, 255, 0.7) 20px,
            rgba(255, 255, 255, 0.9) 20px,
            rgba(255, 255, 255, 0.9) 30px,
            rgba(255, 255, 255, 0.7) 30px,
            rgba(255, 255, 255, 0.7) 40px
        ),
        repeating-linear-gradient(
            -45deg,
            rgba(255, 255, 255, 0.9) 0px,
            rgba(255, 255, 255, 0.9) 10px,
            rgba(255, 255, 255, 0.7) 10px,
            rgba(255, 255, 255, 0.7) 20px,
            rgba(255, 255, 255, 0.9) 20px,
            rgba(255, 255, 255, 0.9) 30px,
            rgba(255, 255, 255, 0.7) 30px,
            rgba(255, 255, 255, 0.7) 40px
        );
    background-size: 40px 40px, 40px 40px;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* メニューオープン時の背景オーバーレイ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

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


/* ============================================
   コンテナ
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0 0 20px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    height: 100vh;
    height: -webkit-fill-available;
    height: calc(var(--vh, 1vh) * 100);
    min-height: 0;
    max-height: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    position: relative;
    padding: 0;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

/* 縦長動画の背景 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    z-index: 0;
}

/* スマホ表示: 縦長動画を中央に配置 */
@media screen and (max-width: 767px) {
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    
    .hero-top-left {
        top: 20px;
        left: 15px;
    }
    
    .hero-snack {
        width: 65px;
    }

    .hero-lounge {
        width: 100px;
    }
    
    .hero-center {
        top: calc(45% - 15px);
        padding: 0 0 0 15px;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }
    
    .hero-title {
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        width: 100%;
        margin-bottom: 15px;
        -webkit-align-self: center;
        align-self: center;
    }
    
    .chulip-logo {
        max-width: 280px;
    }
    
    .hero-subtitle-top {
        width: 120px;
        left: 15px;
        top: 39%;
    }

    .hero-subtitle-bottom {
        width: 220px;
        top: 60%;
    }
    
    @keyframes drawLineMobile {
        from {
            width: 0;
        }
        to {
            width: calc(100vw - 70px);
        }
    }
    
    .hero-description {
        bottom: 70px;
        left: 15px;
        font-size: 0.9rem;
        max-width: 85%;
        -webkit-animation: slideInFromLeftMobile 1s ease-out 0.6s forwards;
        animation: slideInFromLeftMobile 1s ease-out 0.6s forwards;
    }
    
    @-webkit-keyframes slideInFromLeftMobile {
        from {
            opacity: 0;
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes slideInFromLeftMobile {
        from {
            opacity: 0;
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
}

/* オーバーレイ（テキストの可読性向上） */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 100%;
    padding: 20px;
    width: 100%;
    height: 100vh;
    height: -webkit-fill-available;
    height: calc(var(--vh, 1vh) * 100);
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    margin: 0 auto;
}

/* 左上のLOUNGE SNACK */
.hero-top-left {
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 3;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    gap: 5px;
}

.hero-snack,
.hero-lounge {
    display: block;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.hero-snack {
    width: 80px;
}

.hero-lounge {
    width: 120px;
}

.hero-center {
    position: absolute;
    top: calc(50% - 15px);
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 100%;
    padding: 0 0 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    align-items: flex-end;
}


/* h1 SEOテキスト（視覚的に非表示、スクリーンリーダー・検索エンジン向け） */
.hero-title-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-title {
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin: 0 auto 20px;
    line-height: 1.4;
    text-transform: uppercase;
    text-shadow: 
        0 0 20px rgba(255, 255, 255, 0.3),
        0 4px 15px rgba(0, 0, 0, 0.6),
        0 8px 25px rgba(0, 0, 0, 0.4);
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: center;
    padding: 0;
    width: 100%;
    max-width: 100%;
    -webkit-align-self: center;
    align-self: center;
}

.title-line {
    display: block;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    line-height: 1.3;
}

.title-line:not(.chulip-image) {
    margin-bottom: 5px;
}

.title-line.chulip-image {
    margin-top: -10px;
    line-height: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.chulip-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)) 
            drop-shadow(0 4px 15px rgba(0, 0, 0, 0.6)) 
            drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
    object-fit: contain;
}

.hero-title::before {
    display: none;
}

/* 静かな夜に - CHULIPロゴの左上 */
.hero-subtitle-top {
    display: block;
    width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    position: absolute;
    top: 36%;
    left: 15px;
    z-index: 3;
    opacity: 0;
    -webkit-animation: subtitleFadeInTop 1s ease-out 0.3s forwards;
    animation: subtitleFadeInTop 1s ease-out 0.3s forwards;
}

/* 賑やかに、今夜はここで。 - CHULIPロゴの右下 */
.hero-subtitle-bottom {
    display: block;
    width: 220px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    position: absolute;
    top: 57%;
    left: calc(50% + 20px);
    -webkit-transform: translateX(-30%);
    transform: translateX(-30%);
    z-index: 3;
    opacity: 0;
    -webkit-animation: subtitleFadeInBottom 1s ease-out 1.8s forwards;
    animation: subtitleFadeInBottom 1s ease-out 1.8s forwards;
}

@-webkit-keyframes subtitleFadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes subtitleFadeInTop {
    from {
        opacity: 0;
        -webkit-transform: translateX(-80px);
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes subtitleFadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translateX(-110px);
        transform: translateX(-110px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
}
@keyframes subtitleFadeInBottom {
    from {
        opacity: 0;
        -webkit-transform: translateX(-110px);
        transform: translateX(-110px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(-30%);
        transform: translateX(-30%);
    }
}

.hero-divider {
    font-size: 1.2rem;
    color: #ffffff;
    margin: 30px 0;
    letter-spacing: 0.3em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: center;
    width: 100%;
}

.hero-description {
    font-size: 0.95rem;
    line-height: 2;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    text-align: left;
    position: absolute;
    bottom: 60px;
    left: 20px;
    max-width: 400px;
    word-break: keep-all;
    overflow-wrap: break-word;
    opacity: 0;
    -webkit-animation: slideInFromLeft 1s ease-out 0.6s forwards;
    animation: slideInFromLeft 1s ease-out 0.6s forwards;
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero-description.hide-down {
    opacity: 0 !important;
    -webkit-transform: translateY(60px) !important;
    transform: translateY(60px) !important;
}

@-webkit-keyframes slideInFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

.mobile-br {
    display: block;
}

@media screen and (min-width: 768px) {
    .mobile-br {
        display: none;
    }
}

/* ============================================
   セクション共通スタイル
   ============================================ */
.section {
    padding: 80px 0;
    position: relative;
}

.section:nth-child(even):not(.information) {
    background-color: #ffffff;
}

.section:nth-child(odd):not(.hero):not(.information) {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
}


.section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    display: block;
    width: 100%;
    padding: 0 20px 15px;
    word-break: break-word;
    line-height: 1.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #1a1a1a;
}

.section-divider {
    display: none;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    color: #2c2c2c;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.6;
}

.section-text {
    font-size: 0.95rem;
    line-height: 2;
    color: #444;
    text-align: center;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    word-break: keep-all;
    overflow-wrap: break-word;
}

/* ============================================
   各セクション固有スタイル
   ============================================ */
/* ============================================
   INFORMATION セクション
   ============================================ */
.section.information {
    background: #1a1a1a !important;
    padding: 50px 0 40px;
}

.information .section-title {
    color: #ffffff;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.information .section-divider {
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 25px;
}

.info-list {
    max-width: 700px;
    margin: 0 auto;
}

.info-loading {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    padding: 20px 0;
}

.info-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* スマホ: 1行目に日付+カテゴリ、2行目にタイトル */
@media screen and (max-width: 767px) {
    .info-item {
        gap: 6px 10px;
    }

    .info-title {
        width: 100%;
    }
}

@supports (display: grid) {
    .info-item {
        display: grid;
        grid-template-columns: auto auto 1fr;
        gap: 10px;
    }

    @media screen and (max-width: 767px) {
        .info-item {
            grid-template-columns: auto auto;
            grid-template-rows: auto auto;
            gap: 6px 10px;
        }

        .info-title {
            grid-column: 1 / -1;
            width: auto;
        }
    }
}

.info-item:last-child {
    border-bottom: none;
}

.info-item.pinned {
    border-left: 3px solid #e6683c;
    padding-left: 12px;
}

.info-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.info-category {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    padding: 2px 10px;
    border-radius: 2px;
    white-space: nowrap;
}

.info-category.cat-event {
    background: rgba(230, 104, 60, 0.2);
    color: #e6683c;
    border: 1px solid rgba(230, 104, 60, 0.4);
}

.info-category.cat-closure {
    background: rgba(220, 39, 67, 0.2);
    color: #dc2743;
    border: 1px solid rgba(220, 39, 67, 0.4);
}

.info-category.cat-news {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    color: #ffffff;
    letter-spacing: 0.03em;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
}

.info-empty {
    color: rgba(255, 255, 255, 0.4);
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 0.95rem;
    padding: 20px 0;
}

@media screen and (min-width: 768px) {
    .information {
        padding: 60px 0 50px;
    }

    .information .section-title {
        font-size: 1.6rem;
    }

    .info-item {
        grid-template-columns: 90px auto 1fr;
        gap: 20px;
        padding: 16px 0;
    }

    .info-date {
        font-size: 0.9rem;
    }

    .info-title {
        font-size: 1rem;
    }
}

@media screen and (min-width: 1200px) {
    .information {
        padding: 70px 0 60px;
    }

    .info-item {
        grid-template-columns: 95px auto 1fr;
        gap: 25px;
        padding: 18px 0;
    }
}

/* ============================================ */
.concept {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
}

.concept .section-subtitle {
    opacity: 0;
}

.concept.animate .section-subtitle {
    animation: slideInFromRightConcept 1s ease-out 0.3s forwards;
}

.concept .section-text {
    opacity: 0;
}

.concept.animate .section-text {
    animation: slideInFromRightConcept 1s ease-out 0.5s forwards;
}

.concept.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

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

.space {
    background-color: #f5f5f5;
    position: relative;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.space .section-subtitle {
    opacity: 0;
}

.space.animate .section-subtitle {
    animation: slideInFromLeftSpace 1s ease-out 0.3s forwards;
}

.space .section-text {
    opacity: 0;
}

.space.animate .section-text {
    animation: slideInFromLeftSpace 1s ease-out 0.5s forwards;
}

.space.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

@keyframes slideInFromLeftSpace {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.space-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/space-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    text-shadow: none !important;
}

.space-bg-image::before,
.space-bg-image::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.space * {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.space *::before,
.space *::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* SPACEセクションのオーバーレイ（テキストの可読性向上） */
.space::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.space .container {
    position: relative;
    z-index: 2;
}

/* SPACEセクションのテキストを強調（可読性向上） */
.space .section-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

.space .section-title::after {
    background-color: #ffffff;
}

.space .section-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

.space .section-text {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 2.2;
}

.space .section-divider {
    color: #ffffff;
}

/* SPACEセクションのシェイプディバイダー */
.space .custom-shape-divider-bottom-1769096701 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.space .custom-shape-divider-bottom-1769096701 svg {
    position: relative;
    display: block;
    width: calc(202% + 1.3px);
    height: 114px;
}

/* SPACE → DRINK（グラデーション: #fafafa 0%, #ffffff 100%） */
.space .custom-shape-divider-bottom-1769096701 .shape-fill {
    fill: #fafafa;
}

.space .custom-shape-divider-bottom-1769096701 .shape-stroke {
    fill: none;
    stroke: #d4ac0d;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.drink {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.drink .section-subtitle {
    opacity: 0;
}

.drink.animate .section-subtitle {
    animation: slideInFromRightDrink 1s ease-out 0.3s forwards;
}

.drink .section-text {
    opacity: 0;
}

.drink.animate .section-text {
    animation: slideInFromRightDrink 1s ease-out 0.5s forwards;
}

.drink.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

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

/* PRICEボタン */
.price-button-container {
    margin-top: 50px;
    text-align: center;
}

.price-button {
    display: inline-block;
    padding: 18px 50px;
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #1a1a1a;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid #1a1a1a;
    background-color: transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.price-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    transition: left 0.3s ease;
    z-index: -1;
}

.price-button.animate::before {
    left: 0;
}

.price-button.animate {
    color: #ffffff;
    border-color: #1a1a1a;
}

.price-button:hover {
    color: #ffffff;
    border-color: #1a1a1a;
}

.price-button:hover::before {
    left: 0;
}

.price-button:active {
    transform: scale(0.98);
}

.talk-time {
    background-color: #ffffff;
    position: relative;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.talk-time-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/talk-time-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    text-shadow: none !important;
}

.talk-time-bg-image::before,
.talk-time-bg-image::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.talk-time * {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.talk-time *::before,
.talk-time *::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* TALK & TIMEセクションのオーバーレイ（テキストの可読性向上） */
.talk-time::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.talk-time .container {
    position: relative;
    z-index: 2;
}

/* TALK & TIMEセクションのテキストを強調（可読性向上） */
.talk-time .section-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

.talk-time .section-title::after {
    background-color: #ffffff;
}

.talk-time .section-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.talk-time.animate .section-subtitle {
    animation: slideInFromLeftTalkTime 1s ease-out 0.3s forwards;
}

.talk-time .section-text {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 2.2;
    opacity: 0;
}

.talk-time.animate .section-text {
    animation: slideInFromLeftTalkTime 1s ease-out 0.5s forwards;
}

.talk-time.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

@keyframes slideInFromLeftTalkTime {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.talk-time .section-divider {
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
}

/* TALK & TIMEセクションのシェイプディバイダー */
.talk-time .custom-shape-divider-bottom-1769096701 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.talk-time .custom-shape-divider-bottom-1769096701 svg {
    position: relative;
    display: block;
    width: calc(202% + 1.3px);
    height: 114px;
}

/* TALK & TIME → KARAOKE（グラデーション: #fafafa 0%, #ffffff 100%） */
.talk-time .custom-shape-divider-bottom-1769096701 .shape-fill {
    fill: #fafafa;
}

.talk-time .custom-shape-divider-bottom-1769096701 .shape-stroke {
    fill: none;
    stroke: #d4ac0d;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.karaoke {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.karaoke .section-subtitle {
    opacity: 0;
}

.karaoke.animate .section-subtitle {
    animation: slideInFromRightKaraoke 1s ease-out 0.3s forwards;
}

.karaoke .section-text {
    opacity: 0;
}

.karaoke.animate .section-text {
    animation: slideInFromRightKaraoke 1s ease-out 0.5s forwards;
}

.karaoke.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

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

.first-visit {
    background-color: #ffffff;
    position: relative;
    min-height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.first-visit-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/irst-visit-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-filter: none !important;
    -moz-filter: none !important;
    text-shadow: none !important;
}

.first-visit-bg-image::before,
.first-visit-bg-image::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.first-visit * {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.first-visit *::before,
.first-visit *::after {
    box-shadow: none !important;
    filter: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* FIRST VISITセクションのオーバーレイ（テキストの可読性向上） */
.first-visit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    display: none;
}

.first-visit .container {
    position: relative;
    z-index: 2;
}

/* FIRST VISITセクションのテキストを強調（可読性向上） */
.first-visit .section-title {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
}

.first-visit .section-title::after {
    background-color: #ffffff;
}

.first-visit .section-subtitle {
    color: #ffffff;
    font-weight: 700;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
}

.first-visit.animate .section-subtitle {
    animation: slideInFromLeftFirstVisit 1s ease-out 0.3s forwards;
}

.first-visit .section-text {
    color: #ffffff;
    font-weight: 500;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6),
        0 1px 3px rgba(0, 0, 0, 0.5);
    line-height: 2.2;
    opacity: 0;
}

.first-visit.animate .section-text {
    animation: slideInFromLeftFirstVisit 1s ease-out 0.5s forwards;
}

.first-visit.animate .section-text:nth-of-type(2) {
    animation-delay: 0.7s;
}

@keyframes slideInFromLeftFirstVisit {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.first-visit .section-divider {
    color: #ffffff;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.8),
        0 4px 12px rgba(0, 0, 0, 0.6);
}

/* FIRST VISITセクションのシェイプディバイダー */
.first-visit .custom-shape-divider-bottom-1769096701 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.first-visit .custom-shape-divider-bottom-1769096701 svg {
    position: relative;
    display: block;
    width: calc(202% + 1.3px);
    height: 114px;
}

/* FIRST VISIT → ACCESS（グラデーション: #fafafa 0%, #ffffff 100%） */
.first-visit .custom-shape-divider-bottom-1769096701 .shape-fill {
    fill: #fafafa;
}

.first-visit .custom-shape-divider-bottom-1769096701 .shape-stroke {
    fill: none;
    stroke: #d4ac0d;
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.access {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding-bottom: 100px;
}

.access .section-subtitle {
    opacity: 0;
}

.access.animate .section-subtitle {
    animation: slideInFromRightAccess 1s ease-out 0.3s forwards;
}

.access .section-text {
    opacity: 0;
}

.access.animate .section-text {
    animation: slideInFromRightAccess 1s ease-out 0.5s forwards;
}

.access.animate .section-text.access-invitation {
    animation-delay: 0.7s;
}

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

.access-invitation {
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 30px;
    color: #1a1a1a;
    word-break: keep-all;
    overflow-wrap: break-word;
}

@media screen and (max-width: 767px) {
    .access-invitation .mobile-br {
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .access-invitation .mobile-br {
        display: none;
    }
}

/* Google Map コンテナ */
.map-container {
    margin-top: 50px;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

.map-container {
    filter: grayscale(100%);
    transition: filter 0.5s ease;
}

.map-container:hover {
    filter: grayscale(0%);
}

.map-container iframe {
    width: 100%;
    height: 450px;
    display: block;
    border: none;
}

/* Access Info */
.access-info {
    margin-top: 30px;
    padding: 30px 15px 40px;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.access-info-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/access-info-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    filter: brightness(0.7) contrast(1.1);
}

@media screen and (max-width: 767px) {
    .access-info-bg-image {
        opacity: 0;
        display: none;
    }
    
    .access-info {
        background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
        padding: 25px 15px 35px;
        margin-top: 30px;
    }
    
    .access-info::after {
        display: none;
    }
    
    .access-info-container {
        max-width: 100%;
        gap: 15px;
    }
    
    .access-info-address {
        margin-bottom: 10px;
    }
    
    .access-info-address-line {
        font-size: 0.85rem;
        font-weight: 500;
        color: #000000;
        line-height: 1.5;
        text-shadow: 
            0 1px 3px rgba(255, 255, 255, 1),
            0 2px 4px rgba(255, 255, 255, 0.8);
    }
    
    .access-info-item {
        gap: 12px;
        padding: 12px 0;
    }
    
    .access-info-label {
        min-width: 45px;
        font-size: 1rem;
        font-weight: 900;
        color: #000000;
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 1),
            0 3px 6px rgba(255, 255, 255, 0.8);
        letter-spacing: 0.05em;
        -webkit-text-stroke: 0.3px #000000;
        text-stroke: 0.3px #000000;
    }
    
    .access-info-value {
        font-size: 1.2rem;
        font-weight: 900;
        color: #000000;
        text-shadow: 
            0 2px 4px rgba(255, 255, 255, 1),
            0 3px 6px rgba(255, 255, 255, 0.8);
        letter-spacing: 0.05em;
        -webkit-text-stroke: 0.4px #000000;
        text-stroke: 0.4px #000000;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .access-info::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.7);
        z-index: 1;
        pointer-events: none;
    }
}


.access-info-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.access-info-address {
    text-align: center;
    margin-bottom: 15px;
    font-family: 'Cormorant Garamond', serif;
}

.access-info-address-line {
    font-size: 0.9rem;
    color: #1a1a1a;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.access-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 0;
    position: relative;
    transition: all 0.3s ease;
}

.access-info-item::after {
    display: none;
}

.access-info-item:hover::after {
    display: none;
}

.access-info-label {
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #1a1a1a;
    text-transform: uppercase;
    min-width: 70px;
    text-align: right;
    position: relative;
    padding-right: 20px;
}

.access-info-label::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 20px;
    background-color: #1a1a1a;
    opacity: 0.3;
}

.access-info-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    color: #1a1a1a;
    flex: 1;
    text-align: left;
}

@media screen and (min-width: 768px) {
    .access-info {
        margin-top: 60px;
        padding: 60px 40px 70px;
    }

    .access-info-container {
        flex-direction: column;
        gap: 40px;
        max-width: 700px;
    }

    .access-info-address {
        margin-bottom: 30px;
        padding-bottom: 30px;
        border-bottom: 1px solid rgba(26, 26, 26, 0.1);
    }

    .access-info-address-line {
        font-size: 1.1rem;
        font-weight: 400;
        color: #1a1a1a;
        letter-spacing: 0.05em;
    }

    .access-info-container > .access-info-item:first-of-type {
        margin-top: 0;
    }

    .access-info-item {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 30px;
        padding: 25px 0;
        flex: none;
        max-width: none;
    }

    .access-info-item::after {
        display: none;
    }

    .access-info-item:hover::after {
        display: none;
    }

    .access-info-label {
        font-size: 1.1rem;
        min-width: 80px;
        text-align: right;
        padding-right: 20px;
        padding-bottom: 0;
        font-weight: 700;
    }

    .access-info-label::after {
        right: 0;
        top: 50%;
        bottom: auto;
        left: auto;
        transform: translateY(-50%);
        width: 1px;
        height: 24px;
        opacity: 0.3;
    }

    .access-info-value {
        font-size: 1.5rem;
        text-align: left;
        font-weight: 400;
    }
}

@media screen and (min-width: 1024px) {
    .access-info {
        margin-top: 70px;
        padding: 70px 60px 80px;
    }

    .access-info-container {
        gap: 45px;
        max-width: 800px;
    }

    .access-info-address {
        margin-bottom: 35px;
        padding-bottom: 35px;
    }

    .access-info-address-line {
        font-size: 1.2rem;
    }

    .access-info-item {
        padding: 30px 0;
        gap: 40px;
    }

    .access-info-label {
        font-size: 1.2rem;
        min-width: 100px;
    }

    .access-info-value {
        font-size: 1.6rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background-color: #1a1a1a;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.footer-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/footer-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.3;
}

.footer::before {
    display: none;
}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-text {
    text-align: center;
    color: #ffffff;
    font-family: 'Playfair Display', 'Bodoni Moda', serif;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    font-weight: 400;
    text-transform: uppercase;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.5),
        0 4px 20px rgba(0, 0, 0, 0.3);
    opacity: 0.95;
    margin-bottom: 15px;
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.footer-seo {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

/* ============================================
   レスポンシブデザイン（タブレット）
   ============================================ */
@media screen and (max-width: 767px) {
    .footer-text {
        font-size: 1.1rem;
        letter-spacing: 0.12em;
        margin-bottom: 12px;
    }
    
    .footer-copyright {
        font-size: 0.7rem;
        letter-spacing: 0.08em;
        margin-top: 8px;
    }
}

@media screen and (min-width: 768px) {
    .nav-menu {
        max-width: 350px;
    }
    
    .nav-link {
        font-size: 1.1rem;
        padding: 25px 40px;
    }
    
    .footer-text {
        font-size: 1.5rem;
        letter-spacing: 0.18em;
        margin-bottom: 18px;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        margin-top: 12px;
    }
    
    /* SPACEセクション: タブレット表示 */
    .space {
        background-attachment: fixed;
        box-shadow: none !important;
        filter: none !important;
    }
    
    .space-bg-image {
        box-shadow: none !important;
        filter: none !important;
    }
    
    .space::before {
        background: transparent;
        display: none;
    }
    
    /* TALK & TIMEセクション: タブレット表示 */
    .talk-time {
        background-attachment: fixed;
        box-shadow: none !important;
        filter: none !important;
    }
    
    .talk-time-bg-image {
        box-shadow: none !important;
        filter: none !important;
    }
    
    .talk-time::before {
        background: transparent;
        display: none;
    }
    
    /* PRICEボタン: タブレット表示 */
    .price-button {
        font-size: 1.2rem;
        padding: 20px 60px;
    }
    
    /* FIRST VISITセクション: タブレット表示 */
    .first-visit {
        background-attachment: fixed;
        box-shadow: none !important;
        filter: none !important;
    }
    
    .first-visit-bg-image {
        box-shadow: none !important;
        filter: none !important;
    }
    
    .first-visit::before {
        background: transparent;
        display: none;
    }
    
    html {
        font-size: 17px;
    }

    .container {
        padding: 0 40px;
    }

    /* タブレット: 動画を中央に配置 */
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-top-left {
        top: 30px;
        left: 30px;
    }
    
    .hero-snack {
        width: 100px;
    }

    .hero-lounge {
        width: 150px;
    }
    
    .hero-center {
        top: calc(50% - 15px);
        padding: 0 0 0 30px;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 3.5rem;
        letter-spacing: 0.2em;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        width: 100%;
        -webkit-align-self: center;
        align-self: center;
    }

    .chulip-logo {
        max-width: 400px;
        height: auto;
    }

    .title-line.chulip-image {
        margin: 0;
    }
    
    .hero-subtitle-top {
        width: 170px;
        left: 30px;
        top: 30%;
    }

    .hero-subtitle-bottom {
        width: 320px;
        top: 62%;
    }
    
    .hero-description {
        bottom: 50px;
        left: 30px;
        font-size: 1rem;
        max-width: 450px;
        -webkit-animation: slideInFromLeftTablet 1s ease-out 0.6s forwards;
        animation: slideInFromLeftTablet 1s ease-out 0.6s forwards;
    }
    
    @-webkit-keyframes slideInFromLeftTablet {
        from {
            opacity: 0;
            -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes slideInFromLeftTablet {
        from {
            opacity: 0;
            -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    .hero-title::before {
        display: none;
    }

    .hero-subtitle-top {
        width: 190px;
    }

    .hero-subtitle-bottom {
        width: 350px;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .section {
        padding: 100px 0;
    }

    .section-title {
        font-size: 2rem;
        letter-spacing: 0.2em;
        padding: 0 40px 15px;
    }
    
    .section-title::after {
        width: 80px;
        height: 1.5px;
    }
    
    .section-title::after {
        width: 80px;
        height: 3px;
    }

    .section-subtitle {
        font-size: 1.5rem;
    }

    .section-text {
        font-size: 1.05rem;
    }
    
    /* Google Map: タブレット表示 */
    .map-container iframe {
        height: 500px;
    }
}

/* ============================================
   レスポンシブデザイン（デスクトップ）
   ============================================ */
@media screen and (min-width: 1024px) {
    html {
        font-size: 18px;
    }

    .container {
        padding: 0 60px;
    }
    
    .footer-text {
        font-size: 1.6rem;
        letter-spacing: 0.2em;
        margin-bottom: 20px;
    }
    
    .footer-copyright {
        font-size: 0.85rem;
        letter-spacing: 0.15em;
        margin-top: 15px;
    }
    
    .hamburger {
        width: 55px;
        height: 55px;
    }
    
    .nav-menu {
        max-width: 400px;
    }
    
    .nav-link {
        font-size: 1.15rem;
        padding: 30px 50px;
    }
    
    /* SPACEセクション: デスクトップ表示 */
    .space {
        background-attachment: fixed;
    }
    
    .space::before {
        background: transparent;
        display: none;
    }
    
    /* TALK & TIMEセクション: デスクトップ表示 */
    .talk-time {
        background-attachment: fixed;
        box-shadow: none !important;
        filter: none !important;
    }
    
    .talk-time-bg-image {
        box-shadow: none !important;
        filter: none !important;
    }
    
    .talk-time::before {
        background: transparent;
        display: none;
    }
    
    /* FIRST VISITセクション: デスクトップ表示 */
    .first-visit {
        background-attachment: fixed;
        box-shadow: none !important;
        filter: none !important;
    }
    
    .first-visit-bg-image {
        box-shadow: none !important;
        filter: none !important;
    }
    
    .first-visit::before {
        background: transparent;
        display: none;
    }

    /* デスクトップ: 動画を中央に配置 */
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .hero-top-left {
        top: 40px;
        left: 40px;
    }
    
    .hero-snack {
        width: 120px;
    }

    .hero-lounge {
        width: 185px;
    }
    
    .hero-center {
        top: calc(50% - 45px);
        padding: 0 0 0 40px;
        -webkit-box-align: end;
        -webkit-align-items: flex-end;
        align-items: flex-end;
    }

    .hero-title {
        font-size: 4.5rem;
        letter-spacing: 0.25em;
        padding: 0;
        margin: 0 auto 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        width: 100%;
        -webkit-align-self: center;
        align-self: center;
    }

    .chulip-logo {
        max-width: 500px;
        height: auto;
    }

    .title-line.chulip-image {
        margin: 0;
    }
    
    .hero-subtitle-top {
        width: 200px;
        left: 240px;
        top: 24%;
    }

    .hero-subtitle-bottom {
        width: 400px;
        top: 57%;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        margin-left: 150px;
    }
    
    .hero-description {
        bottom: 60px;
        left: 40px;
        font-size: 1.1rem;
        max-width: 500px;
        -webkit-animation: slideInFromLeftDesktop 1s ease-out 0.6s forwards;
        animation: slideInFromLeftDesktop 1s ease-out 0.6s forwards;
    }
    
    @-webkit-keyframes slideInFromLeftDesktop {
        from {
            opacity: 0;
            -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    @keyframes slideInFromLeftDesktop {
        from {
            opacity: 0;
            -webkit-transform: translateX(-40px);
            transform: translateX(-40px);
        }
        to {
            opacity: 1;
            -webkit-transform: translateX(0);
            transform: translateX(0);
        }
    }
    
    .hero-title::before {
        display: none;
    }

    .hero-subtitle-top {
        width: 220px;
        left: 240px;
    }

    .hero-subtitle-bottom {
        width: 450px;
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        margin-left: 150px;
    }

    .hero-description {
        font-size: 1.15rem;
    }

    .section {
        padding: 120px 0;
    }

    .section-title {
        font-size: 2.5rem;
        letter-spacing: 0.25em;
        padding: 0 60px 15px;
    }
    
    .section-title::after {
        width: 100px;
        height: 1.5px;
    }

    .section-subtitle {
        font-size: 1.7rem;
    }

    .section-text {
        font-size: 1.1rem;
        line-height: 2.2;
    }
    
    /* PRICEボタン: デスクトップ表示 */
    .price-button {
        font-size: 1.3rem;
        padding: 22px 70px;
    }
    
    /* Google Map: デスクトップ表示 */
    .map-container iframe {
        height: 600px;
    }
}

/* ============================================
   アニメーション（オプション）
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
        filter: blur(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes titleGlow {
    0%, 100% {
        text-shadow: 
            0 0 20px rgba(255, 255, 255, 0.3),
            0 4px 15px rgba(0, 0, 0, 0.6),
            0 8px 25px rgba(0, 0, 0, 0.4);
    }
    50% {
        text-shadow: 
            0 0 30px rgba(255, 255, 255, 0.5),
            0 4px 20px rgba(0, 0, 0, 0.7),
            0 8px 30px rgba(0, 0, 0, 0.5);
    }
}

.section {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    animation: titleFadeIn 1.2s ease-out;
    animation-fill-mode: both;
}

.hero-title:hover {
    animation: titleGlow 2s ease-in-out infinite;
}

/* ============================================
   スクロール時のスムーズな表示
   ============================================ */
@media (prefers-reduced-motion: no-preference) {
    .section {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }

    .section.visible {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Instagram固定ボタン */
.fixed-instagram {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.fixed-instagram:hover {
    transform: scale(1.1);
}

.fixed-instagram.hide {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.fixed-instagram .instagram-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media screen and (min-width: 768px) {
    .fixed-instagram {
        bottom: 30px;
        right: 30px;
        width: 56px;
        height: 56px;
    }
}


