/* ========================================
   G-SHOWROOM アクセスページ
   ======================================== */

/* ========================================
   地図セクション
   ======================================== */
.map-section__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    font-family: var(--font-ja);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-sm);
}

.map-section__title-en {
    font-family: var(--font-en);
    color: var(--color-primary);
}

.map-section__address {
    text-align: center;
    font-family: var(--font-ja);
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: var(--space-lg);
}

.map-section__embed {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: var(--space-lg);
}

.map-section__embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* アクセス案内（リード＋ラベル／本文の2列） */
.map-section__access-guide {
    font-family: var(--font-ja);
    font-size: 15px;
    color: var(--color-text);
    line-height: 1.75;
    margin-bottom: var(--space-lg);
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
}

.map-section__access-lead {
    text-align: center;
    font-size: 19px;
    margin-bottom: var(--space-lg);
}

.map-section__access-rows {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-xl) var(--space-2xl);
}

.map-section__access-row {
    min-width: 0;
}

/* 飛行機ブロック等：PCの2列グリッド内で1行ぶち抜き */
.map-section__access-row--span {
    grid-column: 1 / -1;
}

.map-section__access-label {
    min-width: 0;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-align: left;
    font-size: 1.15em;
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
    position: relative;
    padding-left: 1.2em;
}

.map-section__access-label::before {
    content: "◯";
    position: absolute;
    left: 0;
    top: 0;
}

/* 2行ラベル：中黒をぶら下げ、2行目は1行目本文頭に揃える（コロン縦揃えは列幅依存のため未対応） */
.map-section__access-label--hang {
    --hang-bullet-width: 1em;
    padding-left: var(--hang-bullet-width);
    text-indent: calc(-1 * var(--hang-bullet-width));
}

.map-section__access-body {
    min-width: 0;
}

.map-section__access-body p + p {
    margin-top: 0.35em;
}

.map-section__access-route {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.map-section__access-route img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.map-section__photos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.map-section__photo {
    text-align: center;
}

.map-section__photo-img {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: var(--space-sm);
    background-color: var(--color-card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    font-size: 14px;
}

.map-section__photo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-section__photo-caption {
    font-family: var(--font-ja);
    font-size: 18px;
    color: var(--color-text);
}

/* ========================================
   レスポンシブ（768px以下）
   ======================================== */
@media (max-width: 768px) {
    .map-section__embed {
        height: 300px;
    }

    .map-section__photos {
        grid-template-columns: 1fr;
    }

    .map-section__title {
        font-size: 20px;
        flex-direction: column;
        gap: var(--space-xs);
    }

    .map-section__access-guide {
        font-size: 14px;
        max-width: none;
    }

    .map-section__access-rows {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .map-section__access-lead {
        font-size: 15px;
    }
}
