@charset "UTF-8";

footer {
    padding-top: 1px;
}

main {
    margin-top: 120px;
}

/*メインビジュアル*/
#hero_Wrap {
    position: relative;
    width: 100%;
    height: calc(100svh - 120px);
    background: url(../img/main.jpg) no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#hero_Wrap .mv_Txt {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50px;
    width: 300px;
    margin: 0 auto;
}



/*メインコンテンツ*/
.contents {
    padding: 100px 0 0;
    color: #552121;
    text-align: center;
}
.contents h4 {
    font-size: min(6vw,30px);
    margin-bottom: 50px;
}
.contents p {
    line-height: 2;
    margin-bottom: 80px;
}
.contents h5 {
    width: 580px;
    max-width: 80%;
    margin: 0 auto 50px;
}
.contents .imgArea {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.contents .imgArea:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 10%;
    background: url(../../common/img/bg.jpg) repeat-y;
    background-size: 100%;
    background-position: center;
}
.contents .imgArea .flex1-1 {
    width: 100%;
}
.contents .imgArea .flex4-1 {
    width: 25%;
}

.notes {
    margin-top: 40px;
}
.notes p {
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 5px;
}

@media only screen and (max-width: 768px) {
    
    /*メインビジュアル*/
    main {
        margin-top: 60px;
    }
    #hero_Wrap {
        height: 50svh;
        background: url(../img/main_sp.jpg) no-repeat;
        background-size: cover;
        background-position: center bottom;
    }
    #hero_Wrap .mv_Txt {
        width: 230px;
    }
    
    
    /*メインコンテンツ*/
    .contents {
        padding: 70px 0 0;
    }
    .contents h4 {
        line-height: 1.8;
        margin-bottom: 30px;
    }
    .contents p {
        font-size: 14px;
        line-height: 2.5;
    }
    .contents h5 {
        margin: 0 auto 40px;
    }
    .contents .imgArea:before {
        top: 5%;
    }
    .contents .imgArea .flex4-1 {
        width: 50%;
    }
    
    
    .notes {
        width: 90%;
        margin: 30px auto;
    }
    .notes p {
        text-align: left;
        text-indent: -1em;
        padding-left: 1em;
    }
}