/* ===== Access Page ===== */

body {
    background-color: #f6dc9f;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

.access_main {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.access_container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background-color: #dab584;
    overflow: hidden;
}

.access_ellipse {
    position: absolute;
    width: 700px;
    height: 250px;
    background-color: #f6dc9f;
    border-radius: 50%;
    transform: rotate(135deg);
    filter: blur(60px);
    opacity: 0.7;
    top: 20%;
}

.access_content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 120px 24px 80px;
    width: 100%;
    max-width: 800px;
    animation: accessFadeInUp 1s ease both;
}

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

.access_label {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(26, 18, 7, 0.45);
    margin-bottom: 12px;
}

.access_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 900;
    font-size: 40px;
    color: #1a1207;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.access_divider_center {
    width: 40px;
    height: 2px;
    background: rgba(0, 0, 0, 0.2);
    margin: 24px 0;
}

.access_divider {
    width: 100%;
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 8px 0;
}

/* ===== Section Title ===== */

.access_section {
    width: 100%;
    text-align: left;
    padding: 20px 0;
}

.access_section_title {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 20px;
    color: #1a1207;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section_icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(139, 105, 20, 0.12);
    color: #8b6914;
    flex-shrink: 0;
}

/* ===== Venue Info ===== */

.venue_info {
    padding: 0 0 20px;
}

.venue_name {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 18px;
    color: #1a1207;
    margin-bottom: 8px;
}

.venue_address {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.venue_links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.map_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #fff;
    text-decoration: none;
    background: #1a1207;
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.map_link:hover {
    background: #333;
    transform: translateY(-1px);
}

.map_link svg {
    fill: #fff;
}

.apple_map_link {
    background: #333;
}

.apple_map_link:hover {
    background: #555;
}

.apple_map_link svg {
    fill: #fff;
}

/* ===== Map Embed ===== */

.map_embed_wrapper {
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.map_embed_wrapper iframe {
    width: 100%;
    height: 300px;
    display: block;
}

/* ===== Transport Card ===== */

.transport_card {
    background: rgba(246, 220, 159, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 24px;
}

.transport_route {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 16px;
    color: #1a1207;
    line-height: 1.6;
}

.transport_route strong {
    font-weight: 700;
    color: #8b6914;
}

.transport_detail {
    font-family: "Zen Old Mincho", serif;
    font-weight: 700;
    font-size: 22px;
    color: #1a1207;
    margin: 8px 0;
}

.transport_detail strong {
    color: #8b6914;
}

.transport_desc {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-top: 4px;
}

.route_link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 8px 18px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #1a1207;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.2);
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease;
}

.route_link:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* ===== Notice Card ===== */

.notice_card {
    background: rgba(246, 220, 159, 0.35);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 24px;
}

.notice_text {
    font-family: "Shippori Mincho", serif;
    font-weight: 500;
    font-size: 15px;
    color: #333;
    line-height: 1.9;
    margin-bottom: 8px;
}

.notice_text:last-child {
    margin-bottom: 0;
}

.notice_text strong {
    font-weight: 700;
    color: #1a1207;
}

.notice_accessible {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.inline_link {
    color: #8b6914;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.3s ease;
}

.inline_link:hover {
    color: #6b5110;
}

.day_notice {
    background: rgba(194, 75, 49, 0.08);
    border-color: rgba(194, 75, 49, 0.15);
}

.day_notice .notice_text {
    color: #1a1207;
    font-weight: 600;
}

/* ===== Back button ===== */

.access_back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 28px;
    font-family: "Shippori Mincho", serif;
    font-weight: 600;
    font-size: 15px;
    color: #1a1207;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.access_back:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.back_arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.access_back:hover .back_arrow {
    transform: translateX(-3px);
}

.access_kujira {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 45%;
    max-width: 500px;
    object-fit: contain;
    opacity: 0.06;
    pointer-events: none;
}

/* ===== Responsive: PC ===== */

@media screen and (min-width: 1024px) {
    .access_ellipse {
        width: 1200px;
        height: 500px;
        filter: blur(80px);
    }

    .access_title {
        font-size: 52px;
    }

    .map_embed_wrapper iframe {
        height: 400px;
    }

    .access_kujira {
        width: 35%;
        opacity: 0.05;
    }
}

/* ===== Responsive: Tablet ===== */

@media screen and (min-width: 768px) and (max-width: 1023px) {
    .access_ellipse {
        width: 900px;
        height: 400px;
    }

    .access_title {
        font-size: 46px;
    }

    .map_embed_wrapper iframe {
        height: 350px;
    }

    .access_kujira {
        width: 40%;
        opacity: 0.06;
    }
}

/* ===== Responsive: Small mobile ===== */

@media screen and (max-width: 400px) {
    .access_title {
        font-size: 32px;
    }

    .access_content {
        padding: 100px 16px 60px;
    }

    .access_section_title {
        font-size: 17px;
    }

    .venue_name {
        font-size: 16px;
    }

    .venue_address {
        font-size: 13px;
    }

    .venue_links {
        flex-direction: column;
    }

    .map_link {
        font-size: 12px;
        padding: 8px 16px;
        justify-content: center;
    }

    .map_embed_wrapper iframe {
        height: 220px;
    }

    .transport_card {
        padding: 18px;
    }

    .transport_route {
        font-size: 14px;
    }

    .transport_detail {
        font-size: 18px;
    }

    .transport_desc {
        font-size: 13px;
    }

    .notice_text {
        font-size: 13px;
    }

    .access_back {
        font-size: 13px;
        padding: 10px 22px;
    }

    .section_icon {
        width: 32px;
        height: 32px;
    }

    .section_icon svg {
        width: 16px;
        height: 16px;
    }
}
