#where{
    margin: 0 0 100px;
}
#where .set{
    max-width: 920px;
}
#where h2{
    margin: 100px 0 60px;
    font-size: 2.8rem;
    position: relative;
}
#where h2::before{
    content: "";
    width: 100%;
    height: 1px;
    background: #eee;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
}
#where h2 span{
    padding: 10px 0;
    display: inline-block;
    position: relative;
}
#where h2 span::before{
    content: "";
    width: calc(100% + 30px);
    height: 1px;
    background: #666;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
}
#where ul.where_list{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
#where ul.where_list li{
    width: 100%;
    display: flex;
    flex-direction: column;
}
#where ul.where_list li .img{
    width: 100%;
    height: 0;
    padding-top: 50%;
    position: relative;
    overflow: hidden;
}
#where ul.where_list li .img img{
    width: 100%;
    height: auto;
    max-width: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-50%,-50%);
}
#where ul.where_list li .txt{
    width: calc(100% - 100px);
    margin: 40px 0 0;
}
#where ul.where_list li .txt h3{
    font-size: 2.4rem;
}
#where ul.where_list li .txt p{
    margin: 2em 0;
    font-size: 1.6rem;
    line-height: 2;
    text-align: justify;
}

#where .adr{
    display: flex;
    flex-direction: row;
}
#where .adr .map{
    flex: 1;
}
#where .adr .map figure{
    width: 100%;
    height: 100%;
    margin: 0;
}
#where .adr .detail{
    width: 400px;
    padding: 0 60px;
}
#where .adr .detail .link{
    margin: 40px 0 0;
}
#where .adr .detail .link a{
    padding: 16px;
    display: block;
    border: 1px solid #eee;
    text-decoration: none;
    text-align: center;
    color: #333;
    position: relative;
    transition: background 0.2s ease;
}
#where .adr .detail .link a::after{
    content: "\f0da";
    font-family: "font awesome 5 free";
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    line-height: 16px;
    color: #fff;
    background: #af1e2b;
    width: 16px;
    height: 16px;
    margin-top: -8px;
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
}
@media (pointer: fine) {
    #where .adr .detail .link a:hover{
        background: #eee;
    }
}
@media screen and (max-width: 1024px){
    #where{
       margin: 0 auto 60px;
    }
    #where .set{
        max-width: none;
    }
    #where h2{
        margin: 60px 0 40px;
        font-size: 2.4rem;
    }
    #where ul.where_list{
        gap: 40px;
    }
    #where ul.where_list li .txt{
        width: 100%;
        margin: 20px 0 0;
    }
    #where ul.where_list li .txt h3{
        font-size: 2rem;
    }
    #where ul.where_list li .txt p{
        font-size: 1.4rem;
    }
    #where .adr{
        flex-direction: column-reverse;
    }
    #where .adr .map{
        flex: 1;
    }
    #where .adr .map figure{
        height: 40vh;
    }
    #where .adr .detail{
        width: 100%;
        padding: 0 0;
    }
    #where .adr .detail .link{
        margin: 20px 0 40px;
    }
    #where .adr .detail .link a{
        max-width: 240px;
    }
}