@charset "utf-8";

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

.access-section {
    padding: 80px 0;
}

.access-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* ---- 情報エリア ---- */
.access-info {
    flex: 1;
}

.access-info h3 {
    font-size: 26px;
    font-weight: 500;
    color: var(--color-text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-cta-teal);
    margin-bottom: 30px;
}

.access-dl > div {
    display: flex;
    gap: 20px;
    padding: 15px 0;
    border-bottom: 1px solid #ddd;
}

.access-dl > div:last-child {
    border-bottom: none;
}

.access-dl dt {
    width: 6em;
    flex-shrink: 0;
    font-weight: 500;
    color: var(--color-cta-teal);
}

.access-dl dd {
    line-height: 1.8;
}

.access-dl dd a {
    color: var(--color-text);
    text-decoration: underline;
}

/* ---- 地図エリア ---- */
.access-map-wrap {
    flex: 1;
}

.access-map-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #ddd;
}

.access-map-caption {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
    text-align: center;
}

/* ---- 経路案内 ---- */
.access-route h3 {
    font-size: 26px;
    font-weight: 500;
    color: var(--color-text);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-cta-teal);
    margin-bottom: 30px;
}

.route-list {
    display: flex;
    gap: 30px;
}

.route-item {
    flex: 1;
    padding: 30px;
    background: #F9F9F9;
    border-radius: 8px;
}

.route-item h4 {
    font-size: 17px;
    font-weight: 500;
    color: var(--color-cta-teal);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}

.route-item p {
    font-size: 15px;
    line-height: 1.8;
}

/* ---- レスポンシブ ---- */
@media screen and (max-width: 900px) {
    .access-section {
        padding: 6vh 0;
    }

    .access-layout {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 50px;
    }

    .access-info,
    .access-map-wrap {
        width: 100%;
    }

    .route-list {
        flex-direction: column;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .access-info h3,
    .access-route h3 {
        font-size: 5vw;
    }

    .access-dl > div {
        flex-direction: column;
        gap: 5px;
    }

    .access-dl dt {
        width: auto;
    }

    .route-item {
        padding: 20px;
    }

    .route-item h4 {
        font-size: 4vw;
    }
}
