@charset "utf-8";
/* ===================================================================
//CSS information

// file name  :  vr.css
// style info :  スタイル指定
=================================================================== */
#vr {
    background: #eee;
    margin: 0 0;
    padding: 100px 0;
}
#vr h2 {
    position: relative;
    padding-bottom: 20px;
    text-align: center;
    border: none;
    margin-bottom: 30px;
    font-size: 24px;
    color: #333;
    font-weight: normal;
}

#vr h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 1px;
    background: #7f7269;
}

#vr h2 + h3 {
    margin-bottom: 50px;
    text-align: center;
    border: none;
    font-size: 24px;
    color: #523622;
    font-weight: normal;
}

#vr ul {
    display: flex;
    flex-wrap: wrap;
}
#vr ul li {
    width: 47.5%;
    margin: 0 1.25% 20px;
}
#vr ul li a {
    display: block;
    padding: 30px 15px;
    font-size: 18px;
    color: #333;
    background: #fff;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    border-radius: 5px;
    letter-spacing: .05em;
    transition: .3s all ease-in-out;
}
#vr ul li a:hover {
    box-shadow: 0 0 0 rgba(0,0,0,.1);
    transform: scale(.97);
}

@media screen and (max-width: 1200px) {
}
@media screen and (max-width: 991px) {
}
@media screen and (max-width: 767px) {
    #vr {
        margin: 50px 0 0;
        padding: 50px 0;
    }
    #vr h2 + h3 {
        margin-bottom: 30px;
        font-size: 20px;
    }
}
@media screen and (max-width: 420px) {
}
