.main{
    width: 100%;
}
.main .title{
    display: flex;
    width: 100%;
    height: 30vh;
    align-items: center;
    background-color: #c5c5c5;
}
.main .title div{
    width: 55%;
    align-items: center;
    margin: auto;
}
.main .title h2{
    font-size: 3rem;
}
.main .title h3{
    font-size: 1.4rem;
}
.map_container{
    display: grid;
    width: 55%;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 20px auto 50px;
}
.map_container .gridItem{
    display: block;
    width: 100%;
    margin-top: 10px;
}
.map_container .gridItem .Title{
    display: flex;
    width: 100%;
    height: 40px;
    align-items: center;
    background-color: #e2e2e2;
    border-left: 5px solid #888;
}
.map_container .gridItem .Title h3{
    margin-left: 5px;
    font-size: 1.1rem;
}
.map_container .gridItem .link div{
    margin: 15px 10px 15px ;
}
.map_container .gridItem .link div a{
    color: #222;
    text-decoration: underline;
}
.map_container .gridItem .link div i{
    padding-left: 5px;
    font-size: 0.7rem;
}
.map_container .gridItem .link div.under a{
    display: flex;
    align-items: center;
    font-size: 0.85rem;
    color: #333;
}
.map_container .gridItem .link div.under a::before{
    content: "";
    display: block;
    width: 8px;
    height: 1px;
    margin-top: 3px;
    margin-right: 5px;
    background-color: #333;
}
@media screen and (max-width:1025px){
    .main .title div,
    .map_container{
        width: 90%;
    }
    .main .title h2{
        font-size: 2.5rem;
    }
    @media screen and (max-width:480px){
        .main .title h2{
            font-size: 2.3rem;
        }
        .main .title h3{
            font-size: 1.3rem;
        }
        .map_container{
            grid-template-columns: repeat(1, 1fr);
        }
    }
}
/*レスポンシブ対応済み　スマホ、タブレット*/