@charset "utf-8";

.access__inner {
    display: flex;
    align-items: center;
    height: 350px;
    margin-top: 5vh;
}

.access__left {
    width: 55%;
    align-items: center;
    background-color: var(--white);
    padding: 5vh 3vh 5vh 0;
    flex-shrink: 0;
}

.access__left-list {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    padding: 2vh 0 0;
}

.access__left-list div {
    display: flex;
    align-items: stretch;
    margin-bottom: 10px;
}

.access__left-list div:last-child {
    margin-bottom: 0;
}

.access__left-list dt {
    width: 30%;
    text-align: left;
    margin-right: 10px;
    padding: 10px 5px;
    place-content: center;
    background-color: var(--yellow);
    font-weight: 600;
}

.access__left-list dd {
    width: 70%;
    padding: 5px 0;
}

.access__map {
    display: block;
    width: 45%;
    height: 100%;
}

.access__map iframe {
    width: 100%;
    height: 100%;
}

.access__line-break {
    display: none;
}

.access__image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5vh;
}

.image__right,
.image__left {
    width: 49%;
}

.image__right img,
.image__left img {
    width: 100%;
    object-fit: cover;
}

@media screen and (max-width:768px) {
    .access__inner {
        flex-direction: column;
        height: auto;
    }

    .access__left {
        width: 100%;
        padding: 3vh 0 6vh;
        border-bottom-left-radius: 0;
        flex-shrink: 1;
        min-width: auto;
        text-align: center;
    }

    .access__left-list div {
        flex-direction: column;
        margin-bottom: 1rem;
    }

    .access__left-list dt {
        width: 100%;
        text-align: left;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .access__left-list dd {
        width: 100%;
        text-align: left;
    }

    .access__map {
        width: 100%;
        height: 200px;
    }

    .access__map iframe {
        border-top-right-radius: 0;
    }
}

@media screen and (max-width:550px) {
    .access__image {
        flex-direction: column;
        gap: 1rem;
    }

    .image__right,
    .image__left {
        width: 100%;
    }
}