/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: #e67e22;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo span {
    color: #e67e22;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    color: #333;
}

.site-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.site-nav a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.site-nav a:hover {
    color: #e67e22;
}

/* Hero Section */
.hero {
    background:
        /* soft clouds */
        radial-gradient(circle at 15% 18%, rgba(255, 255, 255, 0.85) 0 70px, rgba(255, 255, 255, 0) 120px),
        radial-gradient(circle at 78% 14%, rgba(255, 255, 255, 0.85) 0 80px, rgba(255, 255, 255, 0) 140px),
        linear-gradient(180deg, #bfe3ff 0%, #eaf7ff 40%, #ffffff 75%);
    padding: 120px 0 80px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Sun (top-right) with subtle rays */
.hero::before {
    content: '';
    position: absolute;
    top: -90px;
    right: -110px;
    width: 440px;
    height: 440px;
    pointer-events: none;
    background:
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.95) 0 110px, rgba(255, 255, 255, 0.6) 140px, rgba(255, 255, 255, 0.15) 210px, transparent 240px),
        conic-gradient(from 0deg, rgba(255, 255, 255, 0.1) 0 15deg, transparent 15deg 30deg, rgba(255, 255, 255, 0.08) 30deg 45deg, transparent 45deg 60deg,
            rgba(255, 255, 255, 0.06) 60deg 75deg, transparent 75deg 90deg, rgba(255, 255, 255, 0.05) 90deg 105deg, transparent 105deg 120deg,
            rgba(255, 255, 255, 0.06) 120deg 135deg, transparent 135deg 150deg, rgba(255, 255, 255, 0.08) 150deg 165deg, transparent 165deg 180deg,
            rgba(255, 255, 255, 0.08) 180deg 195deg, transparent 195deg 210deg, rgba(255, 255, 255, 0.06) 210deg 225deg, transparent 225deg 240deg,
            rgba(255, 255, 255, 0.05) 240deg 255deg, transparent 255deg 270deg, rgba(255, 255, 255, 0.06) 270deg 285deg, transparent 285deg 300deg,
            rgba(255, 255, 255, 0.08) 300deg 315deg, transparent 315deg 330deg, rgba(255, 255, 255, 0.1) 330deg 345deg, transparent 345deg 360deg);
    filter: blur(1px);
}

/* Field rows (bottom) */
.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48%;
    pointer-events: none;
    /* layered greens + row highlights for field */
    background-image:
        linear-gradient(180deg, rgba(39, 174, 96, 0.95) 0%, rgba(46, 204, 113, 0.95) 100%),
        repeating-linear-gradient(-11deg, rgba(255, 255, 255, 0.16) 0 7px, rgba(255, 255, 255, 0) 7px 26px);
    box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.18) inset;
    clip-path: polygon(0 24%, 100% 14%, 100% 100%, 0 100%);
}


.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-logo {
    max-width: 550px;
    height: auto;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-date,
.hero-venue,
.hero-fee {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    color: #e67e22;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: inline-block;
    width: 100%;
    text-align: center;
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-date:hover,
.hero-venue:hover,
.hero-fee:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Hero Guest Section */
.hero-guest-section {
    text-align: center;
    color: white;
}

.hero-guest-label {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    padding: 1.5rem 3rem;
    background: linear-gradient(135deg, #fff 0%, #fff 100%);
    color: #e67e22;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #e67e22;
    text-transform: none;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hero-guest-label::before {
    content: '✨';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkle 2s infinite;
}

.hero-guest-label::after {
    content: '✨';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    animation: sparkle 2s infinite 1s;
}

.hero-guest-label:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(230, 126, 34, 0.4);
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(1.2);
    }
}

.hero-guest-visual {
    display: flex;
    justify-content: center;
}

.hero-guest-photo {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-guest-photo:hover {
    transform: scale(1.1);
}

/* Catch Phrase Section */
.catch-phrase {
    padding: 80px 0;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.catch-phrase::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.2), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.catch-phrase h2 {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.4;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 50%, #e67e22 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
    position: relative;
    display: inline-block;
    padding: 0 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.catch-phrase h2:hover {
    transform: translateY(-5px);
}

@keyframes gradient-shift {

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

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

.catch-phrase h2::before,
.catch-phrase h2::after {
    content: '✨';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    opacity: 0.8;
    animation: sparkle 2s ease-in-out infinite;
}

.catch-phrase h2::before {
    left: -20px;
}

.catch-phrase h2::after {
    right: -20px;
    animation-delay: 1s;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0.8;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateY(-50%) scale(1.3);
    }
}

/* Event Info Section */
.event-info {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
    position: relative;
    overflow: hidden;
}

.event-info::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 120px;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 10% 0%, rgba(191, 227, 255, 0.25) 0 120px, rgba(191, 227, 255, 0) 180px),
        radial-gradient(ellipse at 90% 0%, rgba(191, 227, 255, 0.18) 0 120px, rgba(191, 227, 255, 0) 180px);
}

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

.event-item {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border-left: 5px solid #e67e22;
}

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

.event-item h3 {
    font-size: 1.5rem;
    color: #e67e22;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-item p {
    color: #666;
    font-size: 1rem;
}

.performance-banner {
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

/* Program Section */
.program-section {
    background:
        linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%),
        repeating-linear-gradient(45deg, rgba(230, 126, 34, 0.035) 0 12px, transparent 12px 24px);
    padding: 80px 0;
}

.program-container {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.program-time {
    font-size: 2rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 2rem;
    text-align: center;
}

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

.program-item {
    display: flex;
    align-items: center;
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
}

.program-mark {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    border-radius: 50%;
    margin-right: 1.5rem;
    box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
    flex-shrink: 0;
}

/* Photo Gallery */
.photo-gallery {
    background:
        linear-gradient(180deg, #ffffff 0%, #fcfcfc 100%),
        repeating-linear-gradient(0deg, rgba(0, 0, 0, 0.03) 0 2px, transparent 2px 4px),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, 0.02) 0 2px, transparent 2px 4px);
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item--wide {
    grid-column: span 4;
    grid-row: span 2;
}

.gallery-item--tall {
    grid-column: span 2;
    grid-row: span 4;
}

@media (max-width: 968px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .gallery-item {
        grid-column: span 2;
        grid-row: span 2;
    }

    .gallery-item--wide {
        grid-column: span 4;
        grid-row: span 2;
    }

    .gallery-item--tall {
        grid-column: span 2;
        grid-row: span 4;
    }
}

@media (max-width: 600px) {
    .photo-gallery {
        padding: 60px 0;
    }

    /* switch to horizontal slider */
    .gallery-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 16px 8px;
    }

    .gallery-grid::-webkit-scrollbar {
        height: 8px;
    }

    .gallery-grid::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .gallery-item,
    .gallery-item--wide,
    .gallery-item--tall {
        flex: 0 0 80%;
        height: 240px;
        scroll-snap-align: start;
    }
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid #e67e22;
}

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

.info-card h3 {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
    font-weight: 600;
}

.info-large {
    font-size: 2rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 0.5rem;
}

.info-card p:last-child {
    color: #888;
    font-size: 0.95rem;
}

/* Special Guest Section */
.special-guest {
    background:
        linear-gradient(180deg, #ffffff 0%, #fff8ef 100%),
        radial-gradient(circle at 20% 10%, rgba(255, 204, 153, 0.08) 0 220px, transparent 260px),
        radial-gradient(circle at 80% 0%, rgba(255, 235, 205, 0.08) 0 200px, transparent 240px);
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #e67e22 0%, #f39c12 100%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin: -0.5rem 0 2rem;
}

.guest-container {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.guest-image {
    overflow: hidden;
}

.guest-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

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

.guest-label {
    font-size: 1.2rem;
    color: #e67e22;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.guest-name {
    font-size: 3rem;
    font-weight: 900;
    color: #333;
    margin-bottom: 2rem;
}

.guest-details {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.event-name,
.event-time {
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.1) 0%, rgba(243, 156, 18, 0.1) 100%);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    color: #333;
    border: 2px solid rgba(230, 126, 34, 0.2);
}

.event-name {
    color: #e67e22;
    border-color: rgba(230, 126, 34, 0.3);
}

/* Access / Map Section */
.access-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f3fff7 100%);
    position: relative;
}

.access-content {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    align-items: start;
}

.venue-info {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.venue-info h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #e67e22;
    margin-bottom: 1rem;
}

.venue-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.access-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid #f0f0f0;
}

.access-details p {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
}

.access-details strong {
    color: #e67e22;
    font-weight: 700;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.access-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(180deg, rgba(46, 204, 113, 0.12), rgba(46, 204, 113, 0));
    clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);
    pointer-events: none;
}

/* Parking Section */
.parking-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.parking-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    padding: 0;
}

.parking-list li {
    background: #fff;
    border-left: 5px solid #2ecc71;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    font-weight: 600;
}

.parking-note {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px dashed rgba(46, 204, 113, 0.5);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #2c3e50;
}

.parking-note .time {
    margin-top: 0.25rem;
    font-weight: 800;
    color: #27ae60;
}

.parking-maps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 2rem auto 1rem;
}

.parking-maps .map-image {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.parking-maps .map-image img {
    width: 100%;
    height: auto;
    display: block;
}

.parking-guidance {
    max-width: 1000px;
    margin: 1rem auto 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

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

/* Walk Route Section */
.walk-route-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffdf7 100%);
}

.walk-route-image {
    max-width: 1000px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

@media (max-width: 600px) {
    .walk-route-section {
        padding: 60px 0;
    }
}

/* Footer */
.site-footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-logo {
        max-width: 300px;
        padding: 1.5rem;
    }

    .hero-guest-photo {
        width: 220px;
        height: 220px;
    }

    .hero-guest-label {
        font-size: 1.5rem;
        padding: 1.2rem 2rem;
    }

    .hero-guest-label::before,
    .hero-guest-label::after {
        display: none;
    }

    .guest-container {
        grid-template-columns: 1fr;
    }

    .guest-photo {
        height: 300px;
    }

    .catch-phrase h2 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    .catch-phrase h2::before,
    .catch-phrase h2::after {
        display: none;
    }

    .program-container {
        padding: 2rem;
    }

    .program-time {
        font-size: 1.5rem;
    }

    .program-item {
        font-size: 1.1rem;
    }

    .event-item h3 {
        font-size: 1.3rem;
    }

    .performance-banner {
        font-size: 1.3rem;
    }
}

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

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }

    .site-nav.active {
        display: block;
    }

    .site-nav ul {
        flex-direction: column;
        padding: 1rem;
        gap: 0;
    }

    .site-nav li {
        border-bottom: 1px solid #e0e0e0;
    }

    .site-nav a {
        display: block;
        padding: 1rem 0;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-logo {
        max-width: 250px;
        padding: 1.5rem;
    }

    .hero-guest-photo {
        width: 180px;
        height: 180px;
    }

    .hero-guest-label {
        font-size: 1.3rem;
        padding: 1rem 1.8rem;
    }

    .hero-guest-label::before,
    .hero-guest-label::after {
        display: none;
    }

    .hero-date,
    .hero-venue,
    .hero-fee {
        font-size: 1.2rem;
    }

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

    .guest-name {
        font-size: 2.5rem;
    }

    .guest-info {
        padding: 2rem;
    }

    .event-info {
        padding: 60px 0;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .catch-phrase h2 {
        font-size: 1.8rem;
        padding: 0 1rem;
    }

    .catch-phrase h2::before,
    .catch-phrase h2::after {
        display: none;
    }

    .event-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .event-item {
        padding: 1.5rem;
    }

    .event-item h3 {
        font-size: 1.2rem;
    }

    .program-container {
        padding: 2rem;
    }

    .program-time {
        font-size: 1.3rem;
    }

    .program-item {
        font-size: 1rem;
    }

    .program-mark {
        width: 35px;
        height: 35px;
    }

    .access-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .venue-info {
        position: static;
        padding: 2rem;
    }

    .venue-info h3 {
        font-size: 1.5rem;
    }

    .map-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        max-width: 300px;
        padding: 1.2rem;
    }

    .hero-guest-photo {
        width: 250px;
        height: 300px;
    }

    .hero-guest-label {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0.8rem 1.5rem;
    }

    .hero-guest-label::before,
    .hero-guest-label::after {
        display: none;
    }

    .hero-date,
    .hero-venue,
    .hero-fee {
        font-size: 1rem;
    }

    .guest-name {
        font-size: 2rem;
    }

    .guest-details {
        flex-direction: column;
    }

    .event-name,
    .event-time {
        padding: 0.8rem 1.5rem;
    }

    .catch-phrase h2 {
        font-size: 1.5rem;
        padding: 0 20px;
    }

    .event-item h3 {
        font-size: 1.1rem;
    }

    .performance-banner {
        font-size: 1.1rem;
        padding: 1.5rem;
    }

    .program-container {
        padding: 1.5rem;
    }

    .program-time {
        font-size: 1.2rem;
    }

    .program-item {
        font-size: 0.95rem;
    }

    .program-mark {
        width: 30px;
        height: 30px;
        margin-right: 1rem;
    }

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

    .venue-info {
        position: static;
        margin-bottom: 2rem;
    }

    .map-container iframe {
        height: 300px;
    }
}