@charset "UTF-8";

/*メインビジュアル*/
.hero_Txt {
    width: 100%;
    background: url(../img/bg.jpg) no-repeat;
    background-size: 100%;
    padding: 60px 0;
    margin-top: 120px;
}
.hero_Txt h2 {
    text-align: center;
    color: #b79e6c;
    font-size: min(5vw,30px);
    letter-spacing: 0.2em;
}
#hero_Wrap  {
    width: 100%;
    position: relative;
}
#hero_Wrap h3 {
    position: absolute;
    left: 0;
    right: 0;
    top: 30%;
    margin: 0 auto;
    text-align: center;
    color: #552121;
    font-size: min(6vw,30px);
}



/*メインコンテンツ*/
.contents {
    width: 100%;
    background: url(../img/bg.jpg) repeat-y;
    background-size: 100%;
    padding: 100px 0;
}
.contents h3 {
    width: 650px;
    max-width: 80%;
    margin: 0 auto 60px;
}
.contents .sokyu {
    width: 1000px;
    max-width: 90%;
    margin: 0 auto;
}
.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) {
    
    /*メインビジュアル*/
    .hero_Txt {
        margin-top: 60px;
        padding: 30px 0;
    }
    #hero_Wrap h3 {
        top: 15%;
        line-height: 1.6;
    }
    
    
    /*メインコンテンツ*/
    .contents {
        padding: 40px 0;
    }
    .contents h3 {
        max-width: 70%;
        margin-bottom: 40px;
    }
    .notes {
        width: 90%;
        margin: 30px auto 0;
    }
    .notes p {
        text-align: left;
        text-indent: -1em;
        padding-left: 1em;
    }


}