/* ========================================
   Global Styles
   ======================================== */

:root {
    /* Color Palette - シンプル＆ミニマル */
    --primary-color: #E89B5C;
    --primary-dark: #D9894B;
    --secondary-color: #F2A65A;
    --accent-color: #C98A5A;
    --mint-primary: #9ac7c5;
    --mint-light: #bfd8d2;
    --bg-light: #FAFAFA;
    --bg-white: #ffffff;
    --text-dark: #111111;
    --text-body: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --border-color: #e8e8e8;
    --circle-overlay: rgba(0, 0, 0, 0.03);
    
    /* Typography */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-display: 'Zen Maru Gothic', sans-serif;
    
    /* Spacing */
    --section-padding: 80px;
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    text-align: center;
    overflow: hidden;
}

/* 背景に薄い黒い円を配置（ロゴの文脈） */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: var(--circle-overlay);
    z-index: 0;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-body);
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.hero-date {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    display: inline-block;
    padding: 0;
    margin-bottom: 50px;
    position: relative;
}

/* 日付の下にミントの細いライン */
.hero-date::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 2px;
    background: var(--mint-primary);
}

.hero-catchphrase {
    font-size: 1.1rem;
    color: var(--text-body);
    margin-bottom: 50px;
    line-height: 1.9;
    letter-spacing: 0.03em;
}

.hero-logo-top {
    margin-bottom: 40px;
    animation: fadeInDown 1s ease-out;
}

.hero-logo-top img {
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--text-body);
    opacity: 0.4;
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Buttons
   ======================================== */

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-button.primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(242, 166, 90, 0.4);
}

.cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 166, 90, 0.5);
}

.cta-button.large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.cta-button i {
    margin-right: 8px;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.button-group .cta-button {
    flex: 0 1 auto;
    min-width: 200px;
}

.button-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ========================================
   Video Section
   ======================================== */

.video-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.video-wrapper {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.venue-video {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.video-caption {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-medium);
    letter-spacing: 0.05em;
}

/* ========================================
   Interior Photo Section
   ======================================== */

.interior-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.interior-photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.interior-photo {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interior-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.photo-caption {
    margin-top: 20px;
    font-size: 1rem;
    color: var(--text-body);
    letter-spacing: 0.05em;
    line-height: 1.8;
}

/* ========================================
   Section Styles
   ======================================== */

.section {
    padding: var(--section-padding) 0;
}

/* セクション間の区切りライン（ミント） */
.section + .section::before {
    content: '';
    display: block;
    width: 1px;
    height: 0;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    position: relative;
    letter-spacing: 0.02em;
}

/* タイトル下のラインをミントの短い線に */
.section-title::after {
    content: '';
    display: block;
    width: 3rem;
    height: 2px;
    background: var(--mint-primary);
    margin: 20px auto 0;
}

.section-title .note {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

/* ========================================
   About Section
   ======================================== */

.about-section {
    background-color: var(--bg-white);
}

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

.lead-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.lead-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.lead-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.text-nowrap {
    white-space: nowrap;
}

/* スマホでは改行を非表示 */
.sp-only {
    display: none;
}

/* スマホ専用改行（PC・タブレットでは非表示） */
.sp-br {
    display: none;
}

/* PCでは改行を表示 */
.pc-only {
    display: inline;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.notice-box {
    background-color: #e8f5f3 !important;
    border-left: 3px solid var(--mint-primary);
    padding: 30px 35px;
    margin: 40px 0;
    border-radius: 12px;
}

.notice-box p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ========================================
   What Is Section
   ======================================== */

.what-is-section {
    background-color: var(--bg-light);
}

.what-is-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-box {
    background-color: #e8f5f3 !important;
    border-radius: 12px;
    padding: 30px 40px;
    margin-bottom: 40px;
}

.intro-text {
    font-size: 1.1rem;
    margin: 0;
    color: var(--text-dark);
    line-height: 1.8;
}

.main-text {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.main-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.main-highlight {
    color: var(--primary-color);
    font-weight: 700;
}

.concept-text {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.9;
}

/* ========================================
   Usage Section
   ======================================== */

.usage-section {
    background-color: var(--bg-white);
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.usage-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.usage-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--mint-primary);
}

.usage-icon {
    width: 70px;
    height: 70px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
    font-size: 1.8rem;
}

.usage-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.65;
    min-height: 3.2em;
    word-break: keep-all;
    overflow-wrap: break-word;
}

.usage-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ========================================
   Details Section
   ======================================== */

.details-section {
    background-color: var(--bg-light);
}

.details-content {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.detail-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 50px;
    max-width: 600px;
    width: 100%;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bg-white);
    background-color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: right;
    line-height: 1.6;
}

.detail-address {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-medium);
    display: block;
    margin-top: 8px;
    line-height: 1.5;
}

.detail-email {
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    transition: all 0.3s ease;
    display: inline-block;
    font-size: inherit;
    font-weight: inherit;
}

.detail-email:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.apply-notice {
    text-align: center;
    color: var(--text-medium);
    margin: 40px 0 20px;
}

.apply-notice p {
    font-size: 1rem;
}

/* スマホで注意書きを小さく */
@media (max-width: 480px) {
    .apply-notice p {
        font-size: 0.9rem;
    }
}

/* ========================================
   Kitchen Section
   ======================================== */

.kitchen-section {
    background-color: var(--bg-white);
}

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

.kitchen-content .intro-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.welcome-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 40px 0;
}

.welcome-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--bg-light);
    padding: 20px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.welcome-item:hover {
    background-color: var(--accent-color);
    transform: translateX(10px);
}

.welcome-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.note-text {
    font-size: 1rem;
    color: var(--text-medium);
    margin-top: 30px;
}

/* ========================================
   Recommended Section
   ======================================== */

.recommended-section {
    background-color: var(--bg-light);
}

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

.recommended-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.recommended-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: var(--mint-primary);
}

.recommended-icon {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--bg-white);
    font-size: 1.6rem;
}

.recommended-card p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Access Section (Map)
   ======================================== */

.access-section {
    background-color: var(--bg-white);
}

.access-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: start;
}

.access-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
    min-width: 30px;
}

.info-item h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.8;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-dark);
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

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

/* ========================================
   Calendar Section
   ======================================== */

.calendar-section {
    background-color: var(--bg-light);
}

.calendar-description {
    text-align: center;
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 40px;
    line-height: 1.8;
}

.calendar-wrapper {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 40px;
}

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.calendar-note {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

/* ========================================
   Closing Section
   ======================================== */

.closing-section {
    background: var(--bg-light);
    color: var(--text-dark);
    text-align: center;
}

.closing-section .section-title {
    color: var(--text-dark);
}

.closing-section .section-title::after {
    background: var(--mint-primary);
}

.closing-logo {
    margin-top: 60px;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out;
}

.closing-logo img {
    max-width: 320px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.closing-content {
    max-width: 800px;
    margin: 0 auto;
}

.closing-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.closing-text {
    font-size: 1.5rem;
    line-height: 2;
    margin-bottom: 50px;
    color: var(--text-body);
}

.closing-section .cta-button.primary {
    background-color: var(--primary-color);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(232, 155, 92, 0.4);
}

.closing-section .cta-button.primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 155, 92, 0.5);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--bg-white);
    text-align: center;
    padding: 30px 0;
}

.footer p {
    margin: 0;
    font-size: 0.95rem;
    opacity: 0.8;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .video-section {
        padding: 40px 0;
    }
    
    .video-wrapper {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .venue-video {
        border-radius: 12px;
    }
    
    .hero::before {
        width: 600px;
        height: 600px;
    }
    
    .hero-logo-top img {
        max-width: 140px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-date {
        font-size: 1.4rem;
    }
    
    .hero-catchphrase {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .lead-text {
        font-size: 1.1rem;
    }
    
    .intro-box {
        padding: 25px 30px;
        margin-bottom: 35px;
    }
    
    .intro-text {
        font-size: 1.05rem;
    }
    
    .main-text {
        font-size: 1.15rem;
    }
    
    .usage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .access-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .map-wrapper iframe {
        height: 350px;
    }
    
    .calendar-wrapper {
        padding: 15px;
    }
    
    .calendar-wrapper iframe {
        height: 500px;
    }
    
    .details-primary {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-box {
        padding: 30px 25px;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 15px 0;
    }
    
    .detail-label {
        font-size: 0.9rem;
        padding: 5px 14px;
    }
    
    .detail-value {
        font-size: 1.1rem;
        text-align: left;
    }
    
    .detail-address {
        font-size: 0.9rem;
        margin-top: 6px;
    }
    
    .recommended-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .recommended-card {
        padding: 35px 25px;
    }
    
    .recommended-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .cta-button.large {
        padding: 16px 35px !important;
        font-size: 1.05rem !important;
    }
    
    .button-group {
        flex-direction: column !important;
        gap: 15px !important;
    }
    
    .button-group .cta-button {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
    }
    
    /* 館内写真セクションのスマホ対応 */
    .interior-section {
        padding: 30px 0 !important;
    }
    
    .interior-photo-wrapper {
        padding: 0 15px !important;
    }
    
    .interior-photo {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
    }
    
    .photo-caption {
        font-size: 0.9rem !important;
        margin-top: 15px !important;
        padding: 0 5px !important;
    }
    
    .closing-text {
        font-size: 1.2rem;
    }
    
    .closing-logo img {
        max-width: 260px;
    }
}

@media (max-width: 480px) {
    /* テキストの自動調整 */
    body {
        word-break: keep-all;
        overflow-wrap: break-word;
        line-height: 1.9;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .video-section {
        padding: 30px 0;
    }
    
    .video-wrapper {
        padding: 0 15px;
    }
    
    .video-caption {
        font-size: 0.85rem;
        margin-top: 15px;
    }
    
    /* ヒーローセクションのボタンをスマホで縦並び */
    .hero-content > div[style*="flex"],
    .hero-buttons {
        flex-direction: column !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    .hero-content .cta-button,
    .hero-buttons .cta-button {
        width: 90% !important;
        max-width: 300px !important;
        margin: 0 auto !important;
    }
    
    /* 館内写真セクションのスマホ対応 */
    .interior-section {
        padding: 30px 0;
    }
    
    .interior-photo-wrapper {
        padding: 0 15px;
    }
    
    .interior-photo {
        border-radius: 12px;
    }
    
    .photo-caption {
        font-size: 0.9rem;
        margin-top: 15px;
        padding: 0 5px;
    }
    
    /* スマホで改行を表示 */
    .sp-only,
    .sp-br {
        display: inline;
    }
    
    /* スマホで改行を非表示 */
    .pc-only {
        display: none;
    }
    
    .hero::before {
        width: 400px;
        height: 400px;
    }
    
    .hero-logo-top img {
        max-width: 120px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.5;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.7;
    }
    
    .hero-catchphrase {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-catchphrase {
        font-size: 1.05rem;
        line-height: 1.8;
    }
    
    .hero-date {
        font-size: 1.2rem;
        padding: 10px 20px;
    }
    
    .section-title {
        font-size: 1.7rem;
        line-height: 1.4;
    }
    
    .lead-text {
        font-size: 1.05rem;
        line-height: 2;
    }
    
    .about-content p {
        line-height: 1.9;
        margin-bottom: 15px;
    }
    
    .intro-box {
        padding: 20px 25px;
        margin-bottom: 30px;
    }
    
    .intro-text {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .usage-card h3 {
        font-size: 0.95rem;
        line-height: 1.7;
        min-height: auto;
    }
    
    .recommended-card p {
        font-size: 0.95rem;
        line-height: 1.8;
    }
    
    .closing-text {
        font-size: 1.15rem;
        line-height: 2;
    }
    
    .detail-box {
        padding: 25px 20px;
    }
    
    .detail-row {
        padding: 18px 0;
    }
    
    .detail-label {
        font-size: 0.85rem;
        padding: 4px 12px;
        white-space: nowrap;
    }
    
    .detail-value {
        font-size: 1rem;
        line-height: 1.6;
        word-break: keep-all;
        overflow-wrap: break-word;
    }
    
    .detail-address {
        font-size: 0.85rem;
        line-height: 1.5;
    }
    
    .detail-email {
        word-break: break-all;
    }
    
    .welcome-item {
        padding: 15px 20px;
    }
    
    .closing-logo img {
        max-width: 220px;
    }
    
    .button-note {
        font-size: 0.8rem;
        line-height: 1.7;
        padding: 0 10px;
    }
    
    .access-info {
        gap: 25px;
    }
    
    .info-item {
        flex-direction: column;
        gap: 10px;
    }
    
    .info-item i {
        font-size: 1.3rem;
    }
    
    .map-wrapper iframe {
        height: 300px;
    }
    
    .calendar-wrapper {
        padding: 10px;
    }
    
    .calendar-wrapper iframe {
        height: 450px;
    }
    
    .calendar-description {
        font-size: 0.95rem;
    }
}