/* =========
  Access / 店舗基本情報
  ========= */

.whisk-access-shopinfo {
    padding: 50px 0;
}

.whisk-access-shopinfo__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.whisk-access-shopinfo__title {
    margin: 0 0 18px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.whisk-access-shopinfo__list {
    margin: 0;
    padding: 0;
}

/* dlの子要素にdivを使っているので、見た目は“表”っぽく整える */
.whisk-access-shopinfo__row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 14px;
    padding: 14px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.whisk-access-shopinfo__row:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.whisk-access-shopinfo__term {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.whisk-access-shopinfo__desc {
    margin: 0;
    font-size: 16px;
    line-height: 2.0;
}



.whisk-access-shopinfo__address {
    word-break: break-word;
}




.whisk-access-shopinfo__note {
    margin: 14px 0 0;
    font-size: 13px;
    line-height: 1.7;
    opacity: 0.85;
}

.whisk-access-shopinfo__link {
    text-underline-offset: 0.2em;
    transition: opacity 0.2s ease;
}


.whisk-access-shopinfo__link:hover {
    opacity: 0.7;
}

/* =========================
   Goggle map
========================= */


.whisk-access-map__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.whisk-access-map__title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.whisk-access-map iframe {
    width: 100%;
    min-height: 400px;
}

/* =========================
   最寄り駅からのアクセス、バスでお越しの方
========================= */
.whisk-access-directions {
    padding: 50px 0;
}

.whisk-access-directions__inner {
    max-width: 1000px;
    margin: 0 auto;
}

.whisk-access-directions__title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.whisk-access-directions__cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.whisk-access-directions__card {
    padding: 20px 15px;
    border-radius: 20px;
    border: 1px solid rgba(184, 90, 102, 0.4);
}

.whisk-access-directions__card_bus {
    border: 1px solid rgba(184, 159, 145, 0.6);
}

.whisk-access-directions__station {
    margin: 0;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    line-height: 1.8;
    font-size: 15px;
    font-weight: 600;
}

.whisk-access-directions__time {
    font-size: 14px;
    font-weight: normal;
    white-space: nowrap;
}

/* =========
  Responsive
  ========= */
@media (max-width: 767px) {
    .whisk-access-shopinfo {
        padding: 34px 0;
    }

    .whisk-access-shopinfo__title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .whisk-access-shopinfo__row {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 12px 0;
    }

    .whisk-access-shopinfo__term {
        white-space: normal;

    }

}

@media (max-width: 767px) {

    .whisk-access-directions,
    .whisk-access-transport {
        padding: 34px 0;
    }

    .whisk-access-directions__title,
    .whisk-access-transport__title {
        font-size: 20px;
        margin-bottom: 14px;
    }

    .whisk-access-directions__cards,
    .whisk-access-transport__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .whisk-access-directions__card,
    .whisk-access-transport__item {
        padding: 14px;
        border-radius: 14px;
    }

    .whisk-access-directions__station {
        flex-wrap: wrap;
    }

    .whisk-access-directions__time {
        width: 100%;
    }
}