@charset "utf-8";

body {
    background: var(--lower-black-back);
}

/* -------------------------
   アクセス情報
------------------------- */
.access-section {
    padding: 20px 6.5% 100px;
}

.access-section__inner {
    max-width: 1000px;
    margin: 64px auto 0;
}

.access-section__clinic {
    margin: 0 0 16px;
    color: #FFF;
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.access-section__address {
    margin: 0;
    color: #FFF;
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.access-section__map {
    margin-top: 28px;
    aspect-ratio: 888 / 346;
    overflow: hidden;
}

.access-section__map iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.access-transport {
    margin-top: 74px;
    padding: 25px 39px 30px;
    background: #FFF;
    box-sizing: border-box;
}

.access-transport__title {
    margin: 0 0 20px;
    color: #C29243;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.access-transport__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 56px;
    row-gap: 24px;
}

.access-transport__item {
    min-width: 0;
}

.access-transport__heading {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 10px;
    color: #312D2C;
    font-family: "Shippori Mincho", serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.access-transport__icon {
    width: 31px;
    height: 31px;
    flex-shrink: 0;
}

.access-transport__text {
    margin: 0;
    color: #312D2C;
    font-family: "Shippori Mincho", serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.6;
}

/* -------------------------
   Tablet
------------------------- */
@media screen and (max-width: 1100px) and (min-width: 768px) {
    .access-section {
        padding: 20px 6.5% 60px;
    }

    .access-section__inner {
        max-width: 80%;
        margin-top: 48px;
    }

    .access-section__clinic,
    .access-section__address {
        font-size: 18px;
    }

    .access-section__map {
        aspect-ratio: 888 / 380;
    }

    .access-transport {
        margin-top: 56px;
        padding: 28px 32px 24px;
    }

    .access-transport__title {
        margin-bottom: 28px;
        font-size: 28px;
    }

    .access-transport__grid {
        column-gap: 28px;
    }

    .access-transport__heading {
        margin-bottom: 18px;
        font-size: 20px;
    }

    .access-transport__text {
        font-size: 16px;
    }
}

/* -------------------------
   SP
------------------------- */
@media screen and (max-width: 767px) {
    .access-section {
        padding: 20px 5.3% 40px;
    }

    .access-section__inner {
        margin-top: 36px;
    }

    .access-section__clinic {
        margin-bottom: 14px;
        font-size: 16px;
        line-height: 1.6;
    }

    .access-section__address {
        font-size: 16px;
        line-height: 1.6;
    }

    .access-section__map {
        margin-top: 22px;
        aspect-ratio: 305 / 198;
    }

    .access-transport {
        margin-top: 48px;
        padding: 22px 20px 24px;
    }

    .access-transport__title {
        margin-bottom: 28px;
        font-size: 20px;
    }

    .access-transport__grid {
        grid-template-columns: 1fr;
        row-gap: 34px;
    }

    .access-transport__heading {
        gap: 10px;
        margin-bottom: 16px;
        font-size: 18px;
    }

    .access-transport__icon {
        width: 30px;
        height: 30px;
    }

    .access-transport__text {
        font-size: 16px;
        line-height: 1.6;
    }
}