html, body{
    font-family: 'Fjalla One', sans-serif;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

h2, .merit{
    text-align: center;
}
h3>.line{
    text-decoration: underline solid #739488;
}
.feature{
    text-align: center;
    /* width: 100%; */
    height: 100%;
    padding: 5px;
}

@media (max-width: 767px){
    .feature-img{
        float: left;
        width: 25%;
    }
    .feature-sentence{
        float: left;
        width: 65%;
    }
    .feature{
        clear: both;
        border-bottom: solid 1px #cfcfcf;
    }
}

@media (min-width: 992px){
    .merit{
        display: flex;
        justify-content: space-between;
    }
    .merit>p{
        width: 69%;
        margin-right: 50px;
    }
}

.merit{
    display: flex;
}
@media screen and (max-width: 991px) {
    .merit{
        flex-direction: column;
    }
    .img {
        order: 1;
    }
    .sentence {
        order: 2;
    }
}

.button2{
    position: fixed;	
    top: 0px;
    right: 0px;
    color: #fff;
    background: #942D2F;
    padding: 10px 20px;
    display: inline-block;
    text-decoration: none;
    z-index: 2;
}
.button2:hover{
    color: #fff;
    background: #4d4150;
    text-decoration: none;
}

footer{
    margin-top: 70px;
    padding: 10px;
    background-color: #4d4150;
}