:root {
    --color-bg-dark: #0a0a0a;
    --color-bg-light: #1a1a1a;
    --color-text-main: #f0f0f0;
    --color-accent-orange: #ff4500;
    --color-accent-gold: #d4af37;
    --color-lunch-bg: #0d1b2a;
    --font-serif: 'Noto Serif JP', serif;
    --font-sans: 'Noto Sans JP', sans-serif;
    --header-height: 80px;
}

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-sans);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 700;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--color-accent-gold);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
        margin-bottom: 5rem;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: var(--color-bg-dark);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../img/rock1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.8);
    display: block;
}

.header-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.header-logo {
    height: 40px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(35%) saturate(800%) hue-rotate(5deg) brightness(95%) contrast(90%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.header-logo:hover {
    transform: scale(1.05);
    filter: brightness(0) saturate(100%) invert(61%) sepia(17%) saturate(1526%) hue-rotate(79deg) brightness(101%) contrast(90%);
}

.ikari-icon {
    height: 40px;
    margin-left: 8px;
    object-fit: contain;
}

.header-nav {
    display: none;
}

/* Hamburger Button */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
    /* Above the mobile menu */
}

.hamburger-line {
    width: 100%;
    height: 2px;
    background-color: #f0e6d2;
    border-radius: 2px;
    transition: all 0.3s linear;
    transform-origin: 1px;
}

/* Hamburger Animation */
.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg);
}

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

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

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* Hidden off-screen initially */
    width: 100%;
    height: 100vh;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.4s ease-in-out;
    z-index: 1001;
    /* Behind hamburger, above everything else */
}

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

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: #f0e6d2;
    text-decoration: none;
    letter-spacing: 0.15em;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: var(--color-accent-gold);
}

@media (min-width: 768px) {
    .header-nav {
        display: block;
    }

    .hamburger {
        display: none;
        /* Hide on larger screens */
    }

    .mobile-menu {
        display: none;
    }
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-list a {
    color: #f0e6d2;
    /* whitish gold */
    font-size: 0.9rem;
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
    position: relative;
    padding-bottom: 5px;
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.9);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-list a:hover {
    color: #fff;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}


/* 1. Hero */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: -1;
    transform: scale(1.1);
    /* For parallax/ken burns effect */
    filter: url(#heat);
    background-color: var(--color-bg-dark);
    /* fallback */
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    /* Ensures logo text readability */
}

.hero-content {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.hero-logo {
    width: 80%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
    display: inline-block;
    opacity: 0;
    /* GSAP will animate */
}

@media (min-width: 768px) {
    .hero-logo {
        max-width: 800px;
    }
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    /* GSAP will animate */
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--color-accent-gold);
    animation: pulse 2s infinite;
}

.scroll-arrow {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-accent-gold), transparent);
    animation: scrollDown 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

@keyframes scrollDown {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* Magma Animation */
@keyframes flowMagma {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.magma-section {
    position: relative;
    background: linear-gradient(60deg, #0a0000, #3a0000, #8b0000, #400000, #0a0000);
    background-size: 300% 300%;
    animation: flowMagma 20s ease infinite;
    z-index: 1;
}

.magma-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 1) 0%, rgba(10, 10, 10, 0.6) 20%, rgba(10, 10, 10, 0.6) 80%, rgba(10, 10, 10, 1) 100%);
    pointer-events: none;
    z-index: -1;
}

.magma-section>.container {
    position: relative;
    z-index: 2;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
}

/* 2. Concept */
.concept {
    padding: 100px 0;
}

.concept-text-wrap {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.concept-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #ccc;
    font-family: var(--font-serif);
    opacity: 0;
    /* For GSAP */
    transform: translateY(20px);
}

@media (min-width: 768px) {
    .concept {
        padding: 150px 0;
    }

    .concept-text {
        font-size: 1.8rem;
    }
}

/* News Area */
.news-subtitle {
    font-size: 2.6rem;
    color: var(--color-accent-gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
}

.news-list-area {
    padding: 20px 0;
    width: 100%;
    margin-top: 100px;
    margin-bottom: 150px;
}

.news-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: transparent;
}

.news-item {
    display: flex;
    flex-wrap: wrap;
    /* allow wrap on very small screens */
    align-items: center;
    gap: 20px;
    padding: 15px 20px;
    background-color: rgba(25, 25, 25, 0.8);
    border-left: 3px solid var(--color-accent-gold);
    color: #f0e6d2;
    /* whitish gold */
    font-family: var(--font-sans);
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: background-color 0.3s ease;
}

.news-item:hover {
    background-color: rgba(40, 40, 40, 0.9);
}

.news-date {
    color: var(--color-accent-gold);
    font-weight: 500;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    min-width: 100px;
}

/* 3. Food & Bar */
.food-bar {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.food-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .food-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 60px;
    }
}

.food-card {
    background-color: var(--color-bg-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.4s ease;
    opacity: 0;
    /* For GSAP */
    transform: translateY(30px);
}

.food-card:hover {
    transform: translateY(-10px);
}

.food-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #111, #333);
    transition: transform 0.6s ease;
}

.food-card:hover .placeholder-img {
    transform: scale(1.05);
}

.food-info {
    padding: 30px 20px;
    text-align: center;
}

.food-info h3 {
    font-size: 1.3rem;
    color: var(--color-accent-gold);
    margin-bottom: 15px;
}

.food-info p {
    font-size: 0.95rem;
    color: #bbb;
}

/* 4. Crew */
.crew {
    padding: 100px 0;
}

.crew-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .crew-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

.crew-card {
    text-align: center;
    opacity: 0;
    /* For GSAP */
    transform: translateY(30px);
}

.crew-img-wrap {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent-gold);
}

.crew-img-wrap .placeholder-img {
    border-radius: 50%;
}

.crew-role {
    display: block;
    font-size: 0.8rem;
    color: var(--color-accent-orange);
    letter-spacing: 0.1em;
    margin-bottom: 5px;
    font-family: var(--font-serif);
}

.crew-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.crew-desc {
    font-size: 0.9rem;
    color: #aaa;
}

/* 5. Lunch */
.lunch {
    padding: 120px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.8), rgba(245, 245, 240, 0.9)),
        url('assets/img/menu2.png') center/cover fixed;
    text-align: center;
    position: relative;
    color: #333;
}

.lunch-content {
    background: rgba(255, 255, 255, 0.6);
    padding: 60px 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.4);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    /* For GSAP */
    transform: scale(0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lunch-catch {
    font-size: 1.8rem;
    color: var(--color-accent-gold);
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.lunch-text {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.8;
}

@media (min-width: 768px) {
    .lunch-catch {
        font-size: 2.5rem;
    }

    .lunch-text {
        font-size: 1.3rem;
    }
}

/* 6. Access & Info */
.access {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.info-table-wrap {
    max-width: 800px;
    margin: 0 auto 50px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
}

.info-table th,
.info-table td {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.info-table th {
    width: 30%;
    font-family: var(--font-serif);
    color: var(--color-accent-gold);
    font-weight: 400;
    letter-spacing: 0.05em;
}

.info-table td {
    color: #ccc;
    line-height: 1.8;
}

@media (max-width: 767px) {

    .info-table th,
    .info-table td {
        display: block;
        width: 100%;
    }

    .info-table th {
        border-bottom: none;
        padding-bottom: 5px;
    }

    .info-table td {
        padding-top: 0;
        margin-bottom: 10px;
    }
}

.map-wrap {
    width: 100%;
    margin-bottom: 50px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background-color: var(--color-bg-light);
    padding: 10px;
}

.map-wrap iframe {
    width: 100%;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(85%) grayscale(20%);
    transition: filter 0.3s ease;
}

.map-wrap:hover iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%) grayscale(0%);
}

.sns-wrap {
    text-align: center;
}

.btn-instagram {
    display: inline-block;
    padding: 15px 40px;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.btn-instagram::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.btn-instagram:hover {
    color: var(--color-bg-dark);
}

.btn-instagram:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

/* 7. Gallery */
.gallery {
    padding: 100px 0;
    background-color: var(--color-bg-light);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-tab {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: var(--color-text-main);
    padding: 8px 24px;
    font-size: 0.9rem;
    font-family: var(--font-serif);
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.gallery-tab:hover,
.gallery-tab.active {
    background: var(--color-accent-gold);
    color: var(--color-bg-dark);
}

.gallery-grid {
    display: grid;
    /* Allows 4 columns per row depending on width */
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (min-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    display: block;
    /* For JS toggling */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    position: relative;
}

.zoom-icon::before {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-accent-gold);
    font-size: 24px;
    font-family: var(--font-sans);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.8);
    border: 2px solid var(--color-accent-gold);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2001;
}

.modal-close:hover {
    color: var(--color-accent-gold);
}

/* Reservation Section */
.reservation {
    padding: 100px 0;
    text-align: center;
}

.reservation-content {
    max-width: 600px;
    margin: 0 auto;
}

.reservation-text {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 40px;
    color: #ccc;
    font-family: var(--font-serif);
}

.btn-reservation {
    display: inline-block;
    padding: 18px 50px;
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    font-family: var(--font-serif);
    letter-spacing: 0.15em;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    background: transparent;
}

.btn-reservation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 55, 0.15);
    /* Soft gold fade-in */
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.btn-reservation:hover::before {
    opacity: 1;
}

.btn-reservation:hover {
    color: #fff;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Floating Reservation Button */
.floating-reserve-btn {
    position: fixed;
    bottom: 30px;
    right: 100px;
    /* Space out from back-to-top */
    width: 80px;
    height: 80px;
    background-color: var(--color-bg-dark);
    border: 1px solid var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--color-accent-gold);
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.8);
    transition: all 0.4s ease;
}

.floating-reserve-btn .reserve-icon {
    font-size: 1.5rem;
    margin-bottom: 2px;
}

.floating-reserve-btn .reserve-text {
    font-size: 0.65rem;
    font-family: var(--font-sans);
    letter-spacing: 0.05em;
}

.floating-reserve-btn:hover {
    background-color: #1a0800;
    /* slight red/orange tint */
    border-color: #ff6a00;
    /* Lava glow */
    box-shadow: 0 0 25px rgba(255, 60, 0, 0.6), inset 0 0 10px rgba(255, 60, 0, 0.2);
    color: #ffeadb;
}

.floating-reserve-btn:hover .reserve-icon {
    filter: drop-shadow(0 0 5px rgba(255, 60, 0, 0.8));
}

@media (max-width: 767px) {
    .floating-reserve-btn {
        width: 70px;
        height: 70px;
        bottom: 20px;
        right: 20px;
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: rgba(10, 10, 10, 0.8);
    border: 1px solid var(--color-accent-gold);
    color: var(--color-accent-gold);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, background-color 0.3s, color 0.3s, visibility 0.3s;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 767px) {
    .back-to-top {
        bottom: 110px;
        /* moved up to avoid overlapping with floating reserve button */
        right: 30px;
    }
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-bg-dark);
}

/* ==========================================================================
   Parallax Sections
   ========================================================================== */
.parallax-section {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

/* 動画のパララックス（Section 2）用の高さ指定 */
.parallax-video-section {
    height: 70vh;
    /* お好みの高さに変更してください（例：80vh、600pxなど） */
}

.parallax-section .parallax-bg {
    position: absolute;
    top: -30%;
    /* Extra height to allow scrolling within the element */
    left: 0;
    width: 100%;
    height: 160%;
    /* Taller than the section to prevent blank spaces */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: transform;
    pointer-events: none;
    z-index: 0;
    transform: translateY(0);
    /* Default state */
}

@media (max-width: 768px) {

    /* Mobile fallback: neutralize the JS parallax movement and rely on static cover */
    .parallax-section .parallax-bg {
        top: 0;
        height: 100%;
        transform: translateY(0) !important;
        background-attachment: scroll;
    }
}

/* Adjustments for Video Parallax */
video.parallax-bg {
    object-fit: cover;
    /* ensure video covers the full area without distortion */
}

/* Editable Overlay for Parallax Video */
.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 
       黒のアルファ値（透明度）を調整するには、
       以下の rgba(0, 0, 0, 0.5) の最後の数値 (0.0 〜 1.0) を変更してください。
       例: 0.3 = 薄い黒, 0.8 = 濃い黒
    */
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    /* place above the video background */
    pointer-events: none;
}