/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

@charset "UTF-8";
/*　====================== 基本設定 ======================　*/
*,
*::before,
*::after {
    -webkit-box-sizing: inherit;
    box-sizing: border-box;
}
html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background-color: #131514;
}
body{
    margin:0;
    padding: 0;
    overflow-x: hidden;
    color: #fff;
}
ul,ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
img{
    width:100%;
    max-width:100%;
    display: block;
}


/*　====================== フォント設定 ======================　*/
h1,h2,h3,h4,h5,h6{
    font-weight: 600;
    line-height: 1.3;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
}
p,a,div,ul,ol,dl{
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.07em;
    line-height: 1.8;
    width: 100%;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    color: inherit;
}
a:hover{
    opacity: 0.8;
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
}
input,textarea{
    font-size: 16px;
    padding: 5px;
}
@media screen and (max-width:768px){
    p,a,div,ul,ol,dl{
        font-size: 15px;
    }
    input,textarea{
        font-size: 15px;
    }
}

/*　====================== レスポンシブ設定 ======================　*/
.pc-only {
    display: block;
}
.sp-only {
	display: none;
}
@media screen and (max-width:768px){
    .pc-only {
        display: none;
    }
    .sp-only {
        display: block;
    }
}

/*　====================== コンテンツ幅設定 ======================　*/
section{
    padding-bottom: 80px;
}
.container{
    max-width: 1080px;
    margin: 0 auto;
    width: 90%;
}
@media screen and (max-width:768px){
    section{
        padding-bottom: 50px;
    }
}

/*　====================== flexデフォルト設定 ======================　*/
.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

/*　====================== ヘッダー ======================　*/
.header h1{
    max-width: 200px;
    margin-top: 20px;
    margin-left: 3%;
}
.header .fixed-btn{
    position: fixed;
    top: 0;
    right: 5%;
    background-color: #BA1C22;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 15px 30px;
    gap: 15px;
    border: 1px solid #fff;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
    -o-transition: opacity 0.6s ease, visibility 0.6s ease;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.fixed-btn.show {
    opacity: 1;
    visibility: visible;
}
.fixed-btn.show:hover{
    opacity: 0.8;
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
}
.header .fixed-btn .icon{
    max-width: 20px;
}
.header .fixed-btn p{
    font-weight: 600;
}
@media screen and (max-width:768px){
    .header h1{
        max-width: 170px;
        margin: 20px auto 0;
    }
    .header .cta-btm{
        position: fixed;
        bottom: 0;
        right: 50%;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        background-image: url(../images/cta-btm-bg.webp);
        background-color: #131514;
        background-size: cover;
        background-repeat: no-repeat;
        opacity: 0;
        -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
        -o-transition: opacity 0.6s ease, visibility 0.6s ease;
        transition: opacity 0.6s ease, visibility 0.6s ease;
    }
    .header .cta-btm.show {
        opacity: 1;
        visibility: visible;
    }
    .header .cta-btm .cta-btm-text{
        width: 80%;
        margin: 20px auto 0;
    }
    .header .fixed-btn{
        position: static;
        margin: 10px auto 20px;
        opacity: 1;
        padding: 10px 20px;
        gap: 10px;
    }
}

/*　====================== ファーストビュー ======================　*/
.fv{
    background-image: url(../images/fv-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    margin-top: -100px;
    padding-bottom: 80px;
}
.fv .fv-text{
    max-width: 750px;
    padding: 160px 0 50px;
}
.fv .fv-btn{
    background: #BA1C22;
    color: #fff;
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 15px 50px;
    font-size: 30px;
    font-weight: 600;
}
@media screen and (max-width:768px){
    .fv{
        background-image: url(../images/fv-bg-sp.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: top;
        margin-top: -100px;
        padding-bottom: 50px;
    }
    .fv .container{
        width: 100%;
    }
    .fv .fv-text{
        padding: 72vw 0 30px;
    }
    .fv .fv-btn{
        margin: 0 auto;
        padding: 13px 40px;
        font-size: 20px;
    }
}

/*　====================== セクション１ ======================　*/
.sec1{
    background-image: url(../images/background.webp);
    background-repeat: repeat;
    background-size: 30%;
}
.sec1 .img1{
    padding-top: 80px;
    width: 85%;
    max-width: 1080px;
    margin: 0 auto;
}
.sec1 .sec1-wrap{
    margin-top: 30px;
}
.sec1 .sec1-inner{
    gap: 20px;
}
.sec1 .sec1-inner p{
    color: #131514;
    font-size: 20px;
}
@media screen and (max-width:768px){
    .sec1 .img1{
        padding-top: 0px;
        max-width: 800px;
        margin: 0 auto;
        width: 100%;
        padding-left: 0;
    }
    .sec1 .sec1-wrap{
        margin-top: -40px;
    }
    .sec1 .sec1-inner{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 20px;
    }
    .sec1 .sec1-inner:last-of-type{
        margin-bottom: 0;
    }
    .sec1 .sec1-inner:nth-of-type(2n){
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        margin-bottom: 30px;
    }
    .sec1 .sec1-inner p{
        font-size: 16px;
    }
}

/*　====================== セクション２ ======================　*/
.sec2{
    background-image: url(../images/sec2-bg-pc.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-top: 80px;
}
.sec2 .sec2-title{
    max-width: 600px;
    margin: 0 auto;
}
.sec2 .sec2-wrap{
    max-width: 800px;
    margin: 50px auto 0;
}
.sec2 .sec2-inner{
    margin-bottom: 50px;
}
.sec2 .sec2-inner:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:768px){
    .sec2{
        background-image: url(../images/sec2-bg-sp.webp);
        background-repeat: no-repeat;
        background-size: cover;
        padding-top: 50px;
    }
}

/*　====================== セクション３ ======================　*/
.sec3{
    background-color: #fff;
    padding-top: 60px;
}
.sec3 .sec3-title-bg{
    background-image: url(../images/sec3-title-pc.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.sec3 .sec3-title{
    padding: 50px 0;
}
.sec3 .sec3-title p{
    color: #131514;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}
.sec3 .sec3-title h2{
    color: #131514;
    font-size: 40px;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-weight: 700;
}
.sec3 .sec3-wrap{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 50px;
}
.sec3 .sec3-inner{
    width: 25%;
}
@media screen and (max-width:1080px){
    .sec3 .sec3-title-bg{
        background-image: url(../images/sec3-title-pc.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
    }
}
@media screen and (max-width:768px){
    .sec3{
        padding-top: 40px;
    }
    .sec3 .sec3-title{
        padding: 35px 0;
    }
    .sec3 .sec3-title-bg{
        background-image: url(../images/sec3-title-sp.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    .sec3 .sec3-title h2{
        font-size: 30px;
    }
    .sec3 .sec3-title p{
        font-size: 18px;
    }
    .sec3 .sec3-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }
    .sec3 .sec3-inner{
        width: 90%;
        padding-right: 3%;
    }
}

/*　====================== セクション４ ======================　*/
.sec4{
    padding-top: 80px;
    padding-bottom: 0;
}
.sec4 .sec4-title{
    max-width: 600px;
    margin: 0 auto;
}
.sec4 .sec4-wrap{
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 50px;
}
.sec4 .sec4-inner{
    width: 32%;
}
.sec4 .sec4-text{
    margin-top: 30px;
}
.sec4 .sec4-arrow{
    max-width: 40px;
    margin: 30px auto;
}
.sec4 .cta1{
    background-image: url(../images/cta1-bg-pc.webp);
    background-size: cover;
    background-position: center;
    padding: 80px 0 120px;
    margin-top: -70px;
}
@media screen and (max-width:768px){
    .sec4{
        padding-bottom: 40px;
        padding-top: 50px;
    }
    .sec4 .cta1{
        background-image: url(../images/cta1-bg-sp.webp);
        background-size: cover;
        background-position: center;
        padding: 60px 0 0;
        margin-top: -100px;
    }
    .sec4 .sec4-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
    .sec4 .sec4-inner{
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }
}

/*　====================== セクション５ ======================　*/
.sec5{
    padding-top: 20px;
    padding-bottom: 50px;
}
.sec5 .sec5-title{
    max-width: 800px;
    margin: 0 auto;
}
.sec5 .sec5-arrow{
    max-width: 11px;
}
.sec5 .sec5-wrap{
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-top: 30px;
}
.sec5 .sec5-inner{
    width: 28%;
}
.sec5 .sec5-inner h3{
    font-size: 30px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    text-align: center;
}
.sec5 .sec5-inner .step{
    background: -webkit-gradient(linear, left top, left bottom, from(#F6D448), to(#907C2A));
    background: -o-linear-gradient(top, #F6D448, #907C2A);
    background: linear-gradient(to bottom, #F6D448, #907C2A);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0px 10px;
}
.sec5 .sec5-inner .step p{
    font-size: 20px;
    font-family: "Roboto Serif", serif;
    font-weight: 500;
    line-height: 1.5;
}
.sec5 .sec5-inner .step p .num{
    font-size: 24px;
}
.sec5 .sec5-inner .sec5-img{
    width: 35%;
}
.sec5 .sec5-inner .sec5-inner-text{
    margin-top: 15px;
}
@media screen and (max-width:1080px){
    .sec5 .sec5-inner .flex{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        gap: 10px;
    }
        .sec5 .sec5-inner .step{
        padding: 0px 5px;
    }
    .sec5 .sec5-inner .step p{
        font-size: 16px;
    }
    .sec5 .sec5-inner .step p .num{
        font-size: 20px;
    }
    .sec5 .sec5-inner h3{
        font-size: 24px;
    }
    .sec5 .sec5-inner .sec5-img{
        width: 70%;
    }
    .sec5 .sec5-inner:last-of-type{
        padding-bottom: 0px;
    }
}
@media screen and (max-width:768px){
    .sec5{
        padding-top: 0;
    }
    .sec5 .sec5-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-top: 10px;
    }
    .sec5 .sec5-inner .flex{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .sec5 .sec5-inner{
        width: 90%;
        margin: 0 auto;
        padding-bottom: 20px;
        padding-top: 5px;
    }
    .sec5 .sec5-inner .sec5-img{
        width: 35%;
    }
    .sec5 .sec5-arrow{
        max-width: -webkit-fit-content;
        max-width: -moz-fit-content;
        max-width: fit-content;
        width: 90%;
        margin: 0 auto;
    }
    .sec5 .sec5-title{
        padding-left: 15px;
    }
    .sec5 .sec5-inner .sec5-inner-text{
        margin-top: 5px;
    }
}

/*　====================== セクション６ ======================　*/
.sec6{
    padding-bottom: 50px;
}
.sec6 .sec6-title{
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}
.sec6 .sec6-wrap{
    gap: 30px;
    margin-top: 15px;
}
.sec6 .sec6-wrap .sec6-wrap-l{
    width: 36%;
}
.sec6 .sec6-wrap .sec6-wrap-r{
    width: 60%;
}
.sec6 .sec6-wrap .sec6-inner{
    margin-bottom: 30px;
}
.sec6 .sec6-wrap .sec6-inner:last-of-type{
    margin-bottom: 0;
}
@media screen and (max-width:768px){
    .sec6{
        padding-bottom: 0;
    }
    .sec6 .sec6-title{
        width: 100%;
        margin: 0 auto;
    }
    .sec6 .sec6-wrap{
        gap: 10px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        margin-top: 15px;
    }
    .sec6 .sec6-wrap .sec6-wrap-l{
        width: 80%;
    }
    .sec6 .sec6-wrap .sec6-wrap-r{
        width: 100%;
    }
}

/*　====================== CTA ======================　*/
.cta-btn{
    background-color: #BA1C22;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    padding: 15px 30px;
    gap: 15px;
    border: 1px solid #fff;
    margin: 20px auto 0;
}
.cta-btn .icon{
    max-width: 30px;
}
.cta-btn p{
    font-size: 24px;
}
.cta2{
    background-image: url(../images/cta2-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0 100px;
}
.cta3{
    background-image: url(../images/cta3-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center bottom;
    padding: 80px 0;
}
.cta3 .cta-btn{
    margin: 50px auto 0;
}

@media screen and (max-width:768px){
    .cta-btn{
        padding: 15px 20px;
        gap: 10px;
        margin: 30px auto 0;
    }
    .cta-btn p{
        font-size: 20px;
        line-height: 1.3;
    }
    .cta-btn .icon{
        max-width: 24px;
    }
    .cta2{
        background-image: url(../images/cta2-bg-sp.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 60px 0 0;
    }
    .cta3{
        background-image: url(../images/cta3-bg-sp.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        padding: 50px 0;
    }
    .cta3 .cta-btn{
        margin: 30px auto 0;
    }
}

/*　====================== セクション７ ======================　*/
.sec7{
    background-image: url(../images/sec7-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    padding-top: 80px;
}
.sec7 .sec7-title{
    max-width: 450px;
    margin: 0 auto;
}
.sec7 .sec7-wrap{
    width: 85%;
    margin: 15px auto 0;
    gap: 15px;
}
.sec7 .sec7-inner{
    width: 47%;
}
@media screen and (max-width:768px){
    .sec7{
        background-image: none;
        padding-top: 40px;
    }
    .sec7 .sec7-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 95%;
    }
    .sec7 .sec7-inner{
        width: 100%;
    }
    .sec7 .sec7-title{
        margin: 0 auto;
        padding-left: 8%;
    }
}

/*　====================== セクション８ ======================　*/
.sec8{
    padding-bottom: 70px;
}
.sec8 .sec8-title{
    max-width: 600px;
    margin: 0 auto;
}
.sec8 .sec8-wrap{
    width: 90%;
    margin: 0 auto;
    max-width: 1080px;
}

.sec8 .sec8-inner1{
    margin-top: -10px;
}
.sec8 .sec8-inner2{
    margin-left: auto;
}
@media screen and (max-width:768px){
    .sec8{
        padding-bottom: 50px;
    }
    .sec8 .sec8-title{
        width: 90%;
        margin: 0 auto;
    }
    .sec8 .sec8-wrap{
        margin-top: 30px;
    }
}

/*　====================== セクション９ ======================　*/
.sec9{
    background-image: url(../images/background.webp);
    background-repeat: repeat;
    background-size: 20%;
    padding-top: 60px;
}
.sec9 .sec9-title{
    max-width: 400px;
    margin: 0 auto;
}
.sec9 .sec9-wrap{
    margin-top: 30px;
}
.sec9 .sec9-inner{
    margin-bottom: 30px;
    padding: 0 10px 30px;
    border-bottom: 1px solid #fff;
}
.sec9 .sec9-inner:last-of-type{
    margin-bottom: 0;
}
.sec9 .sec9-inner h3,.sec9 .sec9-inner p{
    color: #131514;
}
.sec9 .sec9-inner h3{
    font-size: 24px;
    margin-bottom: 5px;
}
.sec9 .sec9-inner p{
    font-size: 20px;
}
.sec9 .sec9-inner .en{
    font-family: "Roboto Serif", serif;
    font-weight: 600;
    padding-right: 5px;
}
@media screen and (max-width:768px){
    .sec9{
        padding-top: 30px;
    }
    .sec9 .sec9-title{
        max-width: 320px;
    }
    .sec9 .sec9-wrap{
        margin-top: 30px;
    }
    .sec9 .sec9-inner h3{
        font-size: 20px;
        display: inline;
    }
    .sec9 .sec9-inner{
        margin-bottom: 20px;
        padding: 0 5px 20px;
    }
    .sec9 .sec9-inner p{
        font-size: 16px;
        margin-top: 10px;
    }
}

/*　====================== フッター ======================　*/
.footer{
    text-align: center;
}
.footer p{
    padding: 15px 0;
    font-size: 13px;
}
@media screen and (max-width:768px){
    .footer{
        margin-bottom: 160px;
    }

}