@charset "UTF-8";

/* Page Hero (Reuse from reserve/menu or common) */
.page-hero {
    height: 300px;
    background-image: url('../images/access/top-img.jpg');
    /* Placeholder */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 100px;
    position: relative;
    color: #fff;
}

.page-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

.page-hero-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.page-title-en {
    font-family: var(--font-en);
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    font-weight: normal;
}

.page-title-jp {
    font-size: 1rem;
    letter-spacing: 0.05em;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 20px;
    font-size: 0.8rem;
    color: var(--secondary-color);
}

.breadcrumbs a {
    text-decoration: underline;
}

/* Access Info Section */
.access-info-section {
    padding: 60px 0;
    text-align: center;
}

.shop-info-header {
    margin-bottom: 40px;
}

.shop-name-large {
    font-family: var(--font-en);
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.shop-name-jp {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: var(--secondary-color);
    margin-left: 10px;
}

.shop-address {
    font-size: 1rem;
    margin-bottom: 10px;
}

.shop-access-text {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.btn-map {
    display: inline-block;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    padding: 8px 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-map:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.map-container {
    margin-bottom: 80px;
    background-color: #eee;
}

.route-title {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.route-title::before,
.route-title::after {
    content: "";
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: var(--accent-color);
    vertical-align: middle;
    margin: 0 15px;
}

/* Route Guide */
.route-guide {
    max-width: 1000px;
    margin: 0 auto;
}

.route-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
}

.route-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.route-text-box {
    text-align: left;
    padding: 0 10px;
}

.route-text-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 10px;
}

.route-text-box p:last-child {
    margin-bottom: 0;
}

/* Goal Row Adjustment */
.goal-row .goal-img {
    grid-column: span 2;
}

.shop-exterior {
    margin-top: 60px;
    text-align: center;
}

.shop-exterior img {
    max-width: 600px;
    width: 100%;
    height: auto;
}

/* Bottom CTA (Reuse) */


/* Responsive */
@media (max-width: 768px) {
    .page-hero {
        height: 200px;
        margin-top: 60px;
    }

    .route-guide {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .route-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .goal-row .goal-img {
        grid-column: auto;
    }



    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}