@charset "UTF-8";

.hero {
    background: url(/img/facility/bg-hero.webp) no-repeat center;
    background-size: cover;
}

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

.anchor a {
    display: block;
    background: #314D98;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
}

.anchor a::after {
    content: '';
    width: 14px;
    height: 13px;
    background: url(/img/cmn/icon-arrow_white.svg) no-repeat center;
    background-size: cover;
    transform: rotate(90deg);
    transition-duration: .5s;
}

.anchor a:hover::after {
    transform: rotate(90deg) translateX(5px);
}

.sec_ttl {
    font-size: 30px;
    margin-bottom: 30px;
}

.facility_cnt dl {
    display: flex;
    align-items: center;
    padding: 30px 20px;
    border-bottom: solid 1px #000;
}

.facility_cnt dl:first-child {
    border-top: solid 1px #000;
}

.facility_cnt dl dt {
    font-size: 20px;
    font-weight: bold;
    width: 180px;
}

.facility_cnt dl dd {
    flex: 1;
}

.facility_cnt dl dd a {
    color: #036EB8;
    text-decoration: underline;
}

.facility_cnt dl dd a:hover {
    text-decoration: none;
}

.service_icon {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.img-icon {
    text-align: center;
}

.service_icon .icon p {
    text-align: center;
}

/* map */

.map {
    border-radius: 50px;
    background: url(/img/cmn/bg-buy.png) center;
    background-size: contain;
}

.map_cnt {
    background: #fff;
    padding: 60px 80px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.map_cnt_ttl {
    margin-bottom: 30px;
}

.img-map {
    margin-bottom: 30px;
}

.map_icon {
    display: flex;
    align-items: center;
    gap: 35px;
}

.map_icon li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn_access {
    width: 100%;
    max-width: 530px;
    padding: 20px 30px;
    margin: 0 auto;
    border-radius: 10px;
    background: #314D98;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.btn_access::before {
    content: '';
    width: 54px;
    height: 54px;
    background: url(/img/facility/icon-access.png) no-repeat center;
    background-size: cover;
}

.btn_access:hover {
    opacity: 0.8;
}

/* shop */

.shop_list {
    display: flex;
    gap: 80px 40px;
    flex-wrap: wrap;
    /* margin-bottom: 160px; */
}

.shop_list.-first {
    margin-bottom: 160px;
}

.shop_list li {
    display: block;
    width: 31%;
}

.img-shop {
    margin-bottom: 10px;
}

.shop_name {
    line-height: 30px;
    margin-bottom: 10px;
}

.shop_time {
    margin-bottom: 10px;
}

.shop_txt {
    margin-bottom: 20px;
    height: 85px;
}

.shop_list li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 260px;
    padding: 13px 30px;
    margin: 0 auto;
    background: #FFCA5D;
    border-radius: 100px;
}

.shop_list li a::after {
    content: '';
    width: 14px;
    height: 13px;
    background: url(/img/cmn/icon-arrow_blue.svg) no-repeat center;
    background-size: cover;
    transition-duration: .5s;
}

.shop_list li a:hover::after {
    transform: translateX(5px);
}

.area {
    display: flex;
    gap: 40px;
    /* margin: -200px 0 100px;
    padding-top: 200px; */
    padding-top: 150px;
    margin: -150px 0 100px;
}

.area_img {
    width: 100%;
    max-width: 560px;
}

.area_cnt {
    flex: 1;
}

.area_ttl {
    font-size: 24px;
    margin-bottom: 20px;
}

.area_txt {
    margin-bottom: 20px;
}

.area_info {
    padding: 20px 0;
    border-bottom: dotted 2px #707070;
}

.area_info.-first {
    border-top: dotted 2px #707070;
}

.area_info_ttl {
    color: #314D98;
}


@media screen and (max-width:767px) {
    

    .anchor {
        flex-flow: column;
        gap: 10px;
        padding: 30px 0;
    }

    .sec_ttl {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .facility_cnt dl dt {
        width: 100px;
    }

    .facility_cnt dl {
        flex-flow: column;
        align-items: start;
        padding: 15px 10px;
    }

    .service_icon {
        gap: 20px;
    }

    .service_icon .icon {
        width: 32%;
    }

    .img-icon img {
        width: 70%;
    }

    .icon p {
        font-size: 14px;
    }


    /* map */

    .map_cnt {
        padding: 30px 20px;
    }

    .map_cnt_ttl img {
        width: 100px;
    }

    .map_icon {
        flex-wrap: wrap;
        gap: 5px;
    }

    .map_icon li {
        width: 49%;
    }

    .map_icon li img {
        width: 40px;
    }

    .map_icon li p {
        font-size: 14px;
        line-height: 17px;
    }

    .btn_access {
        padding: 10px 20px;
        max-width: 300px;
    }

    .btn_access::before {
        width: 40px;
        height: 40px;
    }


    /* shop */

    .shop_list {
        gap: 50px;
    }

    .shop_list li {
        width: 100%;
    }

    .shop_txt {
        height: unset;
    }


    /* area */

    .area {
        margin-bottom: 50px;
        flex-flow: column;
        gap: 10px;
    }

    .area#open_terrace {
        flex-flow: column-reverse;
    }

    .area_ttl {
        margin-bottom: 10px;
    }
}