.access_index {
    width: 60rem;
    margin: 0 auto;
}

.map {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-direction: row;
    align-items: flex-start;
}

.map_img {
    width: 27.5rem;
    border: 1px solid #a7a7a770;
}

.map_img img {
    width: 100%;
    height: auto;
}

.map_text p {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.map_text {
    flex: 1;
}

.map_text li {
    position: relative;
    padding: 1rem;
}

.map_text li::before {
    content: "●";
    position: absolute;
    left: 0rem;
}

.access_box {
    display: flex;
    justify-content: space-between;
    gap: 6rem;
    align-items: center;
    margin: 2rem 0;
}

.access_qr {
    display: flex;
    gap: 1rem;
}

.access_link {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link_btn {
    position: relative;
    display: flex;
    border: 2px solid;
    padding: 1.4rem 2rem 1.4rem 0.5rem;
    width: 12rem;
    justify-content: center;
    text-decoration: none;
    font-size: 1.15rem;
    border-radius: 4rem;
    color: #2a2660;
    background-color: #fff;
    transition: .3s all ease;
}

.link_btn::before {
    width: 0.8125rem;
    height: 0.8125rem;
    position: absolute;
    right: 1.5rem;
    transform: translateY(-50%);
    top: 50%;
    content: "";
    background-image: url(../shared/icon_link.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: inline-block;
}

.link_btn:hover {
    background-color: #2a2660;
    color: #fff;
}

.link_btn:hover::before {
    background-image: url(../shared/icon_link_w.png);
}
.btn_icon {
    width: 1rem;
    display: flex;
    align-items: center;
}

@media screen and (min-width: 1px) and (max-width: 1024px) {
    .access_index {
        width: auto;
    }

    .map_img {
        width: 23.5rem
    }
}

@media screen and (min-width: 1px) and (max-width: 479px) {


    .map {
        flex-direction: column;
        align-items: center;
    }

    .access_box {
        gap: unset;
        align-items: center;
        flex-direction: column;
        justify-content: space-between;

    }

    .access_qr {
        gap: unset;
        flex-direction: row;
        justify-content: space-around;
    }

    .access_link {
        flex-direction: row;
    }

    .link_btn {
        width: 10rem;
    }
}