:root {
    --bg-color: #0a0a0a;
    --text-color: #f0f0f0;
    --accent-color: #e0b145;
    /* Slightly brighter gold */
    --accent-hover: #f5cc6a;
    --secondary-color: #8a1c1c;
    /* Deep Red */
    --dark-overlay: rgba(0, 0, 0, 0.6);
    /* Lighter overlay */
    --font-main: 'Noto Sans JP',
        sans-serif;
    --font-heading: 'Oswald',
        sans-serif;
    /* Casual/Rock font */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary,
.btn-outline,
.btn-small,
.btn-reserve {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
}

.btn-outline:hover {
    background-color: var(--accent-color);
    color: #000;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-small:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    /* Adjust height for the new logo */
}

.logo a {
    display: block;
    height: 100%;
}

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

.nav-list {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    position: relative;
}

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

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

.btn-reserve {
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    color: var(--accent-color);
}

.btn-reserve:hover {
    background-color: var(--accent-color);
    color: #000;
}

.hamburger {
    display: none;
    cursor: pointer;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    animation: slideshow 24s infinite;
}

.slide-1 {
    background-image: url('assets/images/header_food.jpg');
    animation-delay: 0s;
}

.slide-2 {
    background-image: url('assets/images/header_interior.jpg');
    animation-delay: 8s;
}

.slide-3 {
    background-image: url('assets/images/header_stage.jpg');
    animation-delay: 16s;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark overlay with vignette effect */
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 80%, #0a0a0a 100%);
    backdrop-filter: blur(2px);
    /* Subtle overall blur */
    z-index: 0;
}

/* Mask edges for extra "blurring outside" feel */
.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 100px 50px #0a0a0a;
    pointer-events: none;
    z-index: 1;
}

@keyframes slideshow {

    0%,
    10% {
        opacity: 0;
        transform: scale(1.05);
    }

    15%,
    35% {
        opacity: 1;
        transform: scale(1);
    }

    40%,
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

.hero-content {
    z-index: 1;
    padding: 0 20px;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    display: block;
}

.hero-title span:nth-child(3) {
    color: var(--accent-color);
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 4rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    writing-mode: vertical-rl;
}

.scroll-indicator .line {
    width: 1px;
    height: 60px;
    background-color: #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: #888;
}

/* Services Section */
.services-section {
    background-color: #0f0f0f;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.service-card {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 0;
}

.service-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    transition: background 0.4s ease;
}

.service-content {
    position: relative;
    z-index: 1;
    padding: 20px;
    transition: transform 0.4s ease;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 5px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.1em;
}

.service-content p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
    opacity: 0.8;
}

.btn-text {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

/* Hover Effects */
.service-card:hover .service-bg {
    transform: scale(1.1);
}

.service-card:hover .service-bg::after {
    background: rgba(0, 0, 0, 0.4);
}

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

.service-card:hover .btn-text {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

.service-card:hover .btn-text {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #000;
}

/* Bento Section */
.bento-section {
    background-color: #fff;
    color: #333;
    padding: 80px 0;
}

.bento-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}

.bento-image {
    flex: 1;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}

.bento-image img {
    width: 100%;
    height: auto;
    display: block;
}

.bento-content {
    flex: 1;
    text-align: center;
}

.bento-logo {
    margin-bottom: 30px;
    display: inline-block;
}

.logo-circle {
    width: 120px;
    height: 120px;
    border: 2px solid #333;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
}

.logo-text-top {
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.logo-icon {
    font-size: 2rem;
    line-height: 1;
}

.logo-text-bottom {
    font-size: 0.9rem;
    margin-top: 5px;
}

.bento-content h2 {
    font-size: 4rem;
    font-family: serif;
    color: #333;
    margin-bottom: 10px;
    line-height: 1;
}

.bento-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #555;
}

.bento-desc {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 40px;
    color: #666;
}

/* Concept Section */
.concept-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.concept-text h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.4;
}

.concept-text p {
    margin-bottom: 20px;
    color: #ccc;
}

.concept-image img {
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    filter: grayscale(20%) contrast(110%);
}

/* Menu Section */
.menu-section {
    background-color: #111;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.menu-card {
    background-color: #1a1a1a;
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card:hover .menu-img-wrapper img {
    transform: scale(1.1);
}

.menu-content {
    padding: 30px;
}

.menu-content h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.menu-content p {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 20px;
}

.plan-child-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.plan-body {
    padding: 30px;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
}

.menu-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 0.95rem;
}

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

/* Live Section */
.live-section {
    position: relative;
    background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('assets/images/hero_bg.png');
    /* Reuse bg for texture */
    background-attachment: fixed;
    background-size: cover;
}

.event-list {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 20px 30px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent-color);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.event-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 30px;
    min-width: 60px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.event-date .month {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.event-info {
    flex-grow: 1;
}

.event-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.event-artist {
    color: #aaa;
    font-size: 0.9rem;
}

.event-time {
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
}

.hall-rental-info {
    text-align: center;
    background: rgba(197, 160, 89, 0.1);
    padding: 40px;
    border: 1px solid var(--accent-color);
    max-width: 800px;
    margin: 60px auto 0;
}

.hall-rental-info h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

.hall-rental-info p {
    margin-bottom: 25px;
}

/* Access Section */
.access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.access-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-group {
    margin-bottom: 30px;
}

.info-group h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.tel-number {
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.access-map {
    height: 400px;
    background-color: #222;
}

.access-details {
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
}

.access-detail-group {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.access-detail-group h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.access-detail-group h3 span {
    font-size: 0.9rem;
    color: #aaa;
    font-weight: 400;
}

.access-route {
    margin-bottom: 20px;
}

.access-route:last-child {
    margin-bottom: 0;
}

.access-route h4 {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 5px;
    font-weight: 700;
}

.access-route h4 span {
    font-size: 0.85rem;
    color: #ccc;
    font-weight: 400;
    margin-left: 5px;
}

.access-route p {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.6;
}

.access-route strong {
    color: #fff;
    font-weight: 700;
    border-bottom: 1px dotted #fff;
}

@media (max-width: 768px) {
    .access-details {
        grid-template-columns: 1fr;
    }
}

/* Contact Section */
.contact-section {
    background-color: #111;
    padding: 80px 0;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: #050505;
    padding: 60px 0 30px;
    border-top: 1px solid #222;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--accent-color);
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #888;
    font-size: 1.2rem;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.copyright {
    font-size: 0.8rem;
    color: #555;
}

/* Animations */
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-right {
    transform: translateX(30px);
}

.visible {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        padding: 15px 20px;
    }

    section {
        padding: 60px 0;
    }

    h2.section-title {
        font-size: 2rem;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(10px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.4s ease;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 40px;
    }

    .hamburger {
        display: block;
        z-index: 1001;
    }

    .hamburger span {
        display: block;
        width: 30px;
        height: 2px;
        background-color: #fff;
        margin: 6px 0;
        transition: 0.4s;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title span:nth-child(3) {
        font-size: 2.5rem;
    }

    .concept-grid,
    .access-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .bento-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .bento-image {
        max-width: 100%;
    }

    /* Bento Page Styles */
    .bento-page {
        background-color: #fff;
        color: #333;
        font-family: 'Noto Sans JP', sans-serif;
    }

    .bento-page .header {
        background: rgba(0, 0, 0, 0.8);
    }

    .bento-hero {
        width: 100%;
        background-color: #fff;
        padding: 0;
        /* Reset padding/height */
        height: auto;
        display: block;
    }

    .bento-hero-inner {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        position: relative;
    }

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

    /* Hero overlay text styles removed as text is now integrated into the image */

    @media (max-width: 768px) {
        .hero-overlay-text h1 {
            font-size: 4rem;
        }

        .hero-overlay-text p {
            font-size: 1.5rem;
        }
    }
}

.badge-top {
    font-size: 0.6rem;
    font-weight: 700;
}

.badge-icon {
    font-size: 1.5rem;
}

.badge-bottom {
    font-size: 0.7rem;
    font-weight: 700;
}

.bento-news {
    background-color: #8a1c1c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.news-banner h2 {
    font-family: 'Shippori Mincho', serif;
    font-size: 2rem;
    margin-bottom: 5px;
}

.bento-menu {
    padding: 60px 0;
    background-color: #fffbf5;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

.bento-card-header {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    position: relative;
}

.bento-card-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 5px;
}

.bento-card-header .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #d35400;
}

.bento-card-header .price span {
    font-size: 0.9rem;
    color: #666;
    margin-left: 5px;
}

.bento-card.special .tag {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #d35400;
    color: #fff;
    font-size: 0.8rem;
    padding: 2px 8px;
    border-radius: 4px;
}

.bento-card-img {
    height: 200px;
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.bento-card-body {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 0.95rem;
}

.bento-info {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border: 2px solid #d35400;
    border-radius: 8px;
}

.line-cta {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px dashed #ccc;
}

.line-text h3 {
    font-size: 1.5rem;
    color: #00b900;
    /* LINE Green */
    margin-bottom: 10px;
}

.line-text p {
    margin-bottom: 10px;
}

.line-text .note {
    font-size: 0.85rem;
    color: #888;
}

.shop-details {
    text-align: center;
}

.shop-details h3 {
    font-size: 1.5rem;
    color: #d35400;
    margin-bottom: 15px;
}

.shop-details .hours {
    font-size: 1.2rem;
    font-weight: 700;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .bento-hero h1 {
        font-size: 3rem;
    }

    .line-cta {
        flex-direction: column;
        text-align: center;
    }
}

/* Bento Image Fitting */
.bento-card-img {
    height: 260px;
    /* Increased height for better visibility */
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* Remove padding to maximize image size */
}

.bento-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Ensure full image is visible */
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
    /* Add subtle shadow to the food */
}

/* Stylish Info Section */
.bento-info {
    padding: 80px 0;
    background-color: #fdfbf7;
    /* Warm paper color */
    background-image: radial-gradient(#e6e6e6 1px, transparent 1px);
    background-size: 20px 20px;
}

.info-box {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border: none;
    border-radius: 2px;
    box-shadow:
        0 1px 4px rgba(0, 0, 0, 0.05),
        0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
}

/* Tape effect */
.info-box::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.line-cta {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #f0fdf0;
    /* Light green bg for LINE */
    border-radius: 12px;
    border: 2px dashed #00b900;
}

.line-text h3 {
    font-size: 1.6rem;
    color: #00b900;
    margin-bottom: 15px;
    font-weight: 700;
}

.line-text p {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.line-text .note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 185, 0, 0.2);
}

.btn-line {
    display: inline-block;
    background-color: #06C755;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(6, 199, 85, 0.3);
}

.btn-line:hover {
    background-color: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(6, 199, 85, 0.4);
}

.shop-details {
    text-align: center;
    position: relative;
    padding-top: 40px;
}

.shop-details::before {
    content: 'SHOP INFO';
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #d35400;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    opacity: 0.6;
}

.shop-details h3 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
    font-family: 'Shippori Mincho', serif;
}

.shop-address {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #555;
}

.shop-tel {
    font-size: 1.5rem;
    font-family: 'Oswald', sans-serif;
    color: #333;
    margin-bottom: 20px;
    display: block;
}

.shop-hours {
    display: inline-block;
    background: #333;
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .bento-hero h1 {
        font-size: 3rem;
    }

    .line-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .info-box {
        padding: 30px 20px;
    }

    .shop-details h3 {
        font-size: 1.5rem;
    }
}

/* Instagram CTA */
.instagram-cta {
    display: block;
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background-color: #fff0f5;
    /* Light pinkish bg */
    border-radius: 12px;
    border: 2px dashed #E1306C;
    /* Instagram Pink */
}

.instagram-text h3 {
    font-size: 1.6rem;
    color: #E1306C;
    margin-bottom: 15px;
    font-weight: 700;
}

.instagram-text p {
    margin-bottom: 10px;
    color: #444;
    line-height: 1.6;
}

.btn-instagram {
    display: inline-block;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(220, 39, 67, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 39, 67, 0.4);
    opacity: 0.9;
}

@media (max-width: 768px) {
    .instagram-cta {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }
}

/* Party Page Styles */
.page-hero {
    height: 60vh;
    min-height: 400px;
}

.party-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.feature-item h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.feature-item ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.plan-card {
    background: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    border: 1px solid #333;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.plan-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.02);
}

.plan-card.featured:hover {
    transform: scale(1.02) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--accent-color);
    color: #000;
    padding: 5px 40px;
    transform: rotate(45deg);
    font-weight: bold;
    font-size: 0.8rem;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.plan-header {
    background: #222;
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid #333;
}

.plan-header h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #fff;
    line-height: 1;
}

.plan-price .tax {
    font-size: 1rem;
    font-weight: 400;
    color: #888;
}

.plan-scene {
    margin-top: 10px;
    font-size: 0.9rem;
    color: #aaa;
}

.plan-body {
    padding: 30px;
}

.plan-detail-group {
    margin-bottom: 25px;
}

.plan-detail-group:last-child {
    margin-bottom: 0;
}

.plan-detail-group h4 {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 10px;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.plan-detail-group p,
.plan-detail-group ul {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.plan-detail-group ul {
    list-style: disc;
    padding-left: 20px;
}

.plan-detail-group ul li {
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        transform: none;
    }

}


.event-desc {
    font-size: 0.9rem;
    color: #bbb;
    line-height: 1.6;
}

.btn-small.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #555;
    color: #555;
}

.btn-small.disabled:hover {
    border-color: #555;
    color: #555;
}

.event-date .year {
    font-size: 0.7rem;
    color: #888;
    margin-top: 2px;
}

.event-price {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 5px;
    font-weight: 700;
}

.event-price .note {
    font-size: 0.8rem;
    color: #888;
    font-weight: 400;
}

.event-flyer {
    max-width: 100%;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.event-flyer img {
    width: 100%;
    height: auto;
    display: block;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 1rem;
}

.contact-info-box {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 4px;
    display: inline-block;
}

.contact-label {
    font-size: 0.9rem;
    color: #aaa;
    margin-bottom: 10px;
}

.contact-tel,
.contact-email {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-tel a,
.contact-email a {
    color: #fff;
    transition: var(--transition);
}

.contact-tel a:hover,
.contact-email a:hover {
    color: var(--accent-color);
}


/* Lunch Menu Styles */
.lunch-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.menu-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 4px;
    border-left: 3px solid transparent;
    transition: var(--transition);
}

.menu-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-left-color: var(--accent-color);
}

.menu-item.highlight {
    background: rgba(224, 177, 69, 0.1);
    border: 1px solid rgba(224, 177, 69, 0.3);
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.menu-item h3 {
    font-size: 1rem;
    color: #fff;
    font-weight: 500;
}

.menu-item .price {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.menu-desc {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
}

.lunch-includes {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border: 1px dashed #444;
}

.include-title {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.include-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.include-items span {
    background: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: #ddd;
}

.note {
    font-size: 0.8rem;
    color: #888;
}

/* Event Menu Styles */
.menu-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.menu-image-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.menu-image-card h3 {
    margin-bottom: 15px;
    color: var(--accent-color);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.menu-image-card img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}


/* Rental Page Styles */
.rental-pricing-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.pricing-table th,
.pricing-table td {
    padding: 15px;
    border: 1px solid #444;
    text-align: center;
}

.pricing-table th {
    background: #222;
    color: var(--accent-color);
    font-weight: 700;
}

.pricing-table .highlight-cell {
    background: #333;
    font-weight: 700;
    vertical-align: middle;
}

.pricing-table .stage-fee-row {
    background: rgba(224, 177, 69, 0.1);
}

.pricing-table .stage-fee-row td {
    font-weight: 700;
    color: var(--accent-color);
}

.stage-fee-box {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
}

.stage-fee-box h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
}

.rental-notes {
    background: #222;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    max-width: 800px;
    margin: 40px auto 0;
}

/* Schedule Timeline Styles */
.schedule-example-section {
    max-width: 800px;
    margin: 60px auto 0;
}

.schedule-timeline {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 30px;
    bottom: 30px;
    width: 2px;
    background: #444;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item .time {
    width: 80px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--accent-color);
    text-align: right;
    padding-right: 20px;
}

.timeline-item .event {
    padding-left: 40px;
    font-size: 1.1rem;
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 96px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    background: #222;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    z-index: 1;
}

.timeline-item.highlight .event {
    font-weight: 700;
    color: #fff;
    font-size: 1.3rem;
}

.timeline-item.highlight::after {
    background: var(--accent-color);
    width: 14px;
    height: 14px;
    left: 94px;
}

@media (max-width: 600px) {
    .schedule-timeline::before {
        left: 70px;
    }

    .timeline-item .time {
        width: 60px;
        font-size: 1rem;
    }

    .timeline-item::after {
        left: 66px;
    }

    .timeline-item.highlight::after {
        left: 64px;
    }
}

.rental-notes h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.note-list {
    list-style: disc;
    padding-left: 20px;
    color: #ccc;
}

.note-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.text-accent {
    color: var(--accent-color);
    font-weight: 700;
}

.rental-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 40px auto 0;
}

.info-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

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

.info-card .big-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Staff Section */
/* Staff Section Redesign */
.staff-section {
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
    padding: 100px 0;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.staff-card {
    background: #222;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.staff-photo {
    width: 100%;
    height: 320px;
    /* Reduced height */
    overflow: hidden;
    position: relative;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    border-bottom: 4px solid var(--accent-color);
}

.staff-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

.staff-card:hover .staff-photo img {
    transform: scale(1.05);
}

.staff-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.staff-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-family: 'Noto Sans JP', sans-serif;
}

.staff-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: inline-block;
}

.staff-comment {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.8;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    margin-top: auto;
}

.staff-comment::before {
    display: none;
}

@media (max-width: 768px) {
    .staff-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .staff-photo {
        height: 350px;
    }
}

/* Gallery Section (Slideshow) */
.gallery-section {
    padding: 60px 0;
    background-color: #000;
    overflow: hidden;
}

.gallery-slider {
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.gallery-track {
    display: flex;
    width: calc(400px * 8);
    /* 400px width * 8 images (4 original + 4 duplicate) */
    animation: scroll 40s linear infinite;
}

.slide-item {
    width: 400px;
    height: 300px;
    padding: 0 10px;
}

.slide-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    filter: grayscale(30%);
    transition: 0.3s;
}

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

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 4));
        /* Move by half the total width */
    }
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
    .slide-item {
        width: 300px;
        height: 220px;
    }

    .gallery-track {
        width: calc(300px * 8);
    }

    @keyframes scroll {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-300px * 4));
        }
    }
}

/* FAQ Page Styles */
.faq-section {
    background-color: #f9f9f9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #fff;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #f5f5f5;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
    font-weight: 700;
}

.toggle-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #d35400;
    transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    /* Approximate max height */
    border-top: 1px solid #eee;
}

.faq-answer p,
.payment-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
    /* Ensure text is dark */
}

.payment-list {
    list-style: none;
    padding: 0;
    margin-top: 10px;
    color: #333;
    /* Ensure list text is dark */
}

.payment-list li {
    margin-bottom: 10px;
    padding-left: 15px;
    border-left: 3px solid #d35400;
}

.text-red {
    color: #e74c3c;
    font-weight: bold;
}

/* FAQ Link Section on Home */
.faq-link-section {
    background-color: #111;
    padding: 80px 0;
    border-top: 1px solid #333;
}

.faq-link-section p {
    color: #ccc;
}

.child-price-note {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
    text-align: left;
    max-width: 600px;
    width: 100%;
}

.child-price-note h4 {
    color: var(--accent-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 5px;
}

.child-price-note p {
    color: #ccc;
    line-height: 1.6;
    margin: 0;
}