.main__list {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0 100px;
}

.main__title {
    font-size: 6.0rem;
    font-weight: 700;
    padding-right: 15px;
}

.maintitle__img {
    width: 70px;
    height: 70px;
}

.map {
    width: 1000px;
    max-width: 100%;
    height: 500px;
    margin-bottom: 50px;
}

.map__btn {
    background: #EBAA89;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 250px;
    height: 50px;
    margin: 0 auto;
    margin-bottom: 150px;
}

.map__btn:hover {
    filter: alpha(opacity=80);
    -moz-opacity: 0.8;
    opacity: 0.8;
}

.map__img {
    width: 35px;
    height: 35px;
}

.map__txt {
    color: #fff;
    font-size: 2.0em;
    font-weight: 700;
}

.access {
    margin: 0 auto;
    width: 1000px;
    max-width: calc(100% - 40px);
}

.access__list {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 100px;
}

.access__line::after {
    content: '';
    display: block;
    width: 1000px;
    max-width: 100%;
    height: 1px;
    background-color: #4D3A2F;
    margin: 40px 0 40px;
}

.access__title {
    font-size: 2.2rem;
    font-weight: 700;
    width: 150px;
    text-align: start;
    margin-left: 80px;
}

.access__item {
    text-align: start;
}

.access__txt {
    font-size: 2.2rem;
    font-weight: 400;
}

@media screen and (max-width: 768px) {
    .main__list {
        padding-top: 10px;
        margin-top: 145px;
    }

    .main__title {
        font-size: 3rem;
        line-height: 1.2;
        padding-right: 5px;
    }

    .maintitle__img {
        width: 35px;
        height: 35px;
    }

    .map {
        width: 100%;
        height: 400px;
    }

    .map__btn {
        width: 215px;
        margin-bottom: 100px;
    }

    .map__img {
        width: 30px;
        height: 30px;
    }

    .access {
        margin-bottom: 100px;
    }

    .access__list {
        flex-direction: column;
        gap: 20px;
    }

    .access__line::after {
        height: 2px;
        margin: 50px 0;
    }

    .access__title {
        font-size: 2.2rem;
        width: auto;
        margin-left: 0;
    }

    .access__txt {
        font-size: 2rem;
        text-align: start;
    }

}