@charset "UTF-8";
main{
    margin: 0 16%;
    margin-bottom: 100px;
}
.site-map__container{
    margin-top: 75px;
}
.content1{
    margin-top: 25px;
}
p.site-map__ttl{
    font-size: 1.8rem;
    color: #707070;
    font-weight: bold;
    margin: 82px 0 10px;
}
.inner-block{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.inner-block__item{
    margin-top: 25px;
}
.site-map__container a{
    background-color: #d12727;
    width: 49%;
}
.site-map__container a p:hover{
    background-color: #FF9191;
}
.site-map__container a p{
    font-size: 1.8rem;
    color: white;
    font-weight: bold;
    background-color: #d12727;
    padding: 26px 0 26px 25px;
}
@media screen and (max-width: 768px){
    main{
        margin: 0 6%;
        margin-bottom: 90px;
    }
    p.site-map__ttl{
        font-size: 3.7vw;
        margin: 50px 0 10px;
    }
    .inner-block{
        display: block;
    }
    .inner-block a p{
        margin-top: 15px;
    }
    .site-map__container a{
        width: 100%;
    }
    .site-map__container a p{
        font-size: 3.7vw;
        padding: 16px 0 16px 25px;
    }
}