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

@charset "utf-8";
html{
    scroll-behavior: smooth;
}
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body{
	font-family:  "YakuHanJP","Zen Maru Gothic", serif , "Mochiy Pop P One", serif , "Nunito", sans-serif, "Hiragino Sans","Hiragino Kaku Gothic ProN";
	background-color: #fff;
    font-size: 16px;
    line-height: 1.5;
    overflow-x: hidden;
}
p,a,div,ul,ol,dl,th,td{
    font-size: 16px;
	font-family: "Zen Maru Gothic", serif;
	font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
	color:#1B1B1B;
}
a,
a:active,
a:focus,
a:active {
    text-decoration: none !important;
}
img{
	width: 100%;
}
.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
section{
    padding-top: 88px;
}
.container-wrap{
    width: 90%;
    max-width: 1080px;
    margin: 0 auto;
}
@media screen and (max-width: 767px){
    p,a,div,ul,ol,dl,th,td{
        font-size: 15px;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    section{
        padding-top: 60px;
    }
}

/* ==========================共通パーツ========================== */
.tel-num{
    color: #F66B20;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    letter-spacing: 0;
    font-size: 1.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.tel-num .tel-icon{
    max-width: 33px;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-top: 11px;
    padding-right: 5px;
}
.tel-num:hover{
    opacity: 0.7;
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
}
.sec-ttl{
    font-family: "Mochiy Pop P One", serif;
    font-weight: 400;
    letter-spacing: 0.07em;
    font-size: 32px;
    text-align: center;
}
.txt-yellow-line{
    background-color: #FFF100;
    font-size: 18px;
    font-weight: 700;
}
.sec-arrow{
    max-width: 40px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.sec-ttl-line{
    position: relative;
}
.sec-ttl-line::before{
    position: absolute;
    content: "";
    display: block;
    width: 64px;
    height: 4px;
    background-color: #F66B20;
    bottom: -40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}
@media screen and (max-width: 767px){
    .tel-num{
        font-size: 22px;
        line-height: 1;
    }
    .tel-num .tel-icon{
        max-width: 26px;
        padding-top: 0px;
    }
    .sec-ttl{
        font-size: 28px;
    }
    .txt-yellow-line{
        font-size: 16px;
    }
    .sec-arrow{
        max-width: 32px;
    }
    .sec-ttl-line::before{
        bottom: -24px;
    }
}
/* ==========================ヘッダー========================== */
header{
    height: 80px;
}
.header-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 90%;
    margin: 0 auto;
    padding: 5px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background: #fff;
}
.header-wrap .header-logo{
    max-width: 200px;
    width: 25%;
}
.header-wrap .header-btn{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 20px;
    width: 75%;
}
.header-wrap .header-tel{
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
.header-wrap .header-tel-txt1{
    font-weight: 700;
}
.header-wrap .header-contact{
    max-width: 230px;
    width: 50%;
}
.header-wrap .header-contact:hover{
    opacity: 0.7;
    -webkit-transition-duration: 0.3s;
         -o-transition-duration: 0.3s;
            transition-duration: 0.3s;
}
@media screen and (max-width: 767px){
    header{
        height: 60px;
    }
    .header-wrap .header-tel-txt1{
        font-size: 0.8rem;
        letter-spacing: 0.005rem;
    }
    .header-wrap .header-logo{
        min-width: 120px;
    }
    .header-wrap .tel-num{
        font-size: 22px;
        line-height: 1;
    }
    .header-wrap .tel-num .tel-icon{
        max-width: 26px;
        padding-top: 0px;
    }
}
@media screen and (max-width: 340px){
    header{
        height: 50px;
    }
    .header-wrap .header-tel-txt1{
        font-size: 0.6rem;
    }
    .header-wrap .header-logo{
        min-width: 100px;
    }
    .header-wrap .tel-num{
        font-size: 18px;
        line-height: 1.4;
    }
    .header-wrap .tel-num .tel-icon{
        max-width: 22px;
        padding-top: 0px;
    }
}

/* ==========================追従ボタン========================== */
#page-bottom a{
    width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack:center;
	    -ms-flex-pack:center;
	        justify-content:center;
	-webkit-box-align:center;
	    -ms-flex-align:center;
	        align-items:center;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	-webkit-transition:all 0.3s;
	-o-transition:all 0.3s;
	transition:all 0.3s;
}
#page-bottom a:hover{
	opacity: 0.7;
}
#page-bottom {
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 2;
	opacity: 0;
	-webkit-transform: translateY(100px);
	    -ms-transform: translateY(100px);
	        transform: translateY(100px);
}
#page-bottom.UpMove{
	-webkit-animation: UpAnime 0.5s forwards;
	        animation: UpAnime 0.5s forwards;
}
@-webkit-keyframes UpAnime{
    from {
    opacity: 0;
	-webkit-transform: translateY(100px);
	        transform: translateY(100px);
    }
    to {
    opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
    }
}
@keyframes UpAnime{
    from {
    opacity: 0;
	-webkit-transform: translateY(100px);
	        transform: translateY(100px);
    }
    to {
    opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
    }
}

#page-bottom.DownMove{
	-webkit-animation: DownAnime 0.5s forwards;
	        animation: DownAnime 0.5s forwards;
}
@-webkit-keyframes DownAnime{
    from {
  	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
    }
    to {
  	opacity: 1;
	-webkit-transform: translateY(100px);
	        transform: translateY(100px);
    }
}
@keyframes DownAnime{
    from {
  	opacity: 1;
	-webkit-transform: translateY(0);
	        transform: translateY(0);
    }
    to {
  	opacity: 1;
	-webkit-transform: translateY(100px);
	        transform: translateY(100px);
    }
}
/* ========================== fv ========================== */
.fv{
    position: relative;
}
.fv img{
    position: relative;
    z-index: 1;
}
.fv .fv-text-wrap{
    width: 100%;
    height: 260px;
    position: absolute;
    background-color: #F66B20;
    z-index: 0;
    bottom: -180px;
    color: #fff;
}
.fv.sp-only .fv-text-wrap{
    width: 100%;
    height: 142px;
    bottom: -109px;
}
.fv .fv-text-wrap .fv-text-inner{
    position: relative;
    width: 100%;
    height: 100%;
}
.fv .fv-text-wrap .fv-text-inner p{
    position: absolute;
    top: 61.5%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    font-weight: 700;
    color: #fff;
    font-size: 40px;
    width: 100%;
    text-align: center;
    text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.25);
}
.fv.sp-only .fv-text-wrap .fv-text-inner p{
    top: 57%;
    color: #fff;
    font-size: 20px;
    text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.25);
}
@media screen and (max-width:1080px){
    .fv .fv-text-wrap .fv-text-inner p {
        font-size: 32px;
    }
}
@media screen and (min-width:1921px){
    .fv .fv-text-wrap {
        height: 290px;
    }
    .fv .fv-text-wrap .fv-text-inner p {
        top: 65.5%;
    }
}
/* ========================== problem(追加項目) ========================== */
section.problem{
    padding-top: 180px;
}
@media screen and (max-width: 767px){
    section.problem{
        padding-top: 109px;
    }
}
/* ========================== SECTION 1 ========================== */
.sec1{
    background: url(../images/sec1-bg-pc.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -100px;
    padding-bottom: 88px;
}
.sec1 .sec1-inner1{
    margin-top: 80px;
}
.sec1 .sec1-inner1-txt1{
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
}
.sec1 .sec1-inner1-img,.sec1 .sec1-inner2{
    max-width: 750px;
    margin: 0 auto;
}
.sec1 .sec1-inner2{
    max-width: 750px;
    margin: 0 auto;
}
.sec1 .sec1-inner{
    margin-bottom: 56px;
}
.sec1 .more p{
    color: #E60012;
    font-weight: 700;
    text-align: center;
    font-size: 36px;
}
@media screen and (max-width: 767px){
    .sec1{
        background: url(../images/sec1-bg-sp.webp);
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        margin-top: -100px;
        padding-bottom: 60px;
    }
    .sec1 .sec1-inner1{
        margin-top: 70px;
    }
    .sec1 .sec1-inner1-txt1{
        font-size: 16px;
    }
    .sec1 .sec1-inner1-img{
        width: 100%;
    }
    .sec1 .sec1-inner2{
        width: 100%;
    }
    .sec1 .sec1-inner2 .sp-only{
        position: relative;
    }
    .sec1 .sec1-inner3{
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    .sec1 .sec1-inner{
        margin-bottom: 40px;
    }
    .sec1 .more p{
        font-size: 32px;
    }
}
@media screen and (min-width:1921px){
    .sec1 {
        margin-top: -120px;
    }
}

/* ========================== SECTION 2 ========================== */
.sec2{
    background: url(../images/sec2-bg-pc.webp);
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    padding-bottom: 100px;
    z-index: 0;
    position: relative;
}
.sec2 .sec-ttl-blue{
    color: #086BAD;
    position: relative;
}
.sec2 .sec-ttl-blue::before{
    content: "・・・";
    position: absolute;
    display: block;
    top: -30px;
    left: 58%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    letter-spacing: 0.75em;
}
.sec2 .sec-ttl{
    margin-bottom: 40px;
}
@media screen and (max-width: 767px){
    .sec2 .sec-ttl-blue::before{
        top: -27px;
    }
    .sec2 .sec-ttl{
        line-height: 1.8;
        margin-bottom: 20px;
    }
    .sec2{
        background: url(../images/sec2-bg-sp.webp);
        background-size: cover;
        background-position: bottom center;
        background-repeat: no-repeat;
    }
    .sec2 .sec2-inner{
        max-width: 420px;
        width: 85%;
        margin: 0 auto;
    }
}

/* ========================== SECTION 3 ========================== */
.sec3{
    background: url(../images/sec3-bg-pc.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    margin-top: -140px;
    padding-bottom: 88px;
    position: relative;
    z-index: -100;
}
.sec3 .sec-ttl{
    padding-top: 100px;
    margin-bottom: 40px;
}
.sec3 .sec-ttl-orange{
    color: #F66B20;
}
.sec3 .sec3-txt1{
    text-align: center;
    font-weight: 600;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 0 10px;
    font-family: "YakuHanJP";
}
.sec3 .sec3-inner-ttl{
    font-family: "Mochiy Pop P One", serif;
    font-weight: 400;
    letter-spacing: 0.07em;
    font-size: 40px;
    color: #F66B20;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 16px;
    position: relative;
}
.sec3 .sec3-inner-ttl::before,.sec3 .sec3-inner-ttl::after{
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 100%;
    bottom: -20px;
}
.sec3 .sec3-inner-ttl::before{
    background: url(../images/sec3-inner-ttl-l.png);
    background-repeat: no-repeat;
    left: -40px;
}
.sec3 .sec3-inner-ttl::after{
    background: url(../images/sec3-inner-ttl-r.png);
    background-repeat: no-repeat;
    right: -40px;
}
.sec3 .sec3-inner-txt{
    font-size: 20px;
    font-weight: 700;
}
@media screen and (max-width: 767px){
    .sec3{
        background: url(../images/sec3-bg-sp.webp);
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 60px;
    }
    .sec3 .sec-ttl{
        margin-bottom: 32px;
        padding-top: 120px;
        letter-spacing: 0.25rem;
    }
    .sec3 .sec3-txt1{
        text-align: left;
        background: rgba(255, 255, 255, 0.8);
        padding: 32px 20px;
        margin-bottom: 20px;
    }
    .sec3 .sec-arrow{
        margin-bottom: 5px;
    }
    .sec3 .sec3-inner .sp-only{
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 340px){
    .sec3 .sec3-inner::before{
        width: 230px;
    }
    .sec3 .sec3-inner-ttl{
        font-size: 20px;
    }
    .sec3 .sec3-inner-ttl::before,.sec3 .sec3-inner-ttl::after{
        width: 22px;
    }
    .sec3 .sec3-inner-ttl::before{
        left: -28px;
    }
    .sec3 .sec3-inner-ttl::after{
        right: -28px;
    }
}

/* ========================== CTA ========================== */
.cta-sp{
    display: none;
}
.cta-pc{
    display: block;
    background-color: #F66B20;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 40px 80px;
    gap: 40px;
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
    position: relative;
}
.cta-pc .cta-img{
    max-width: 130px;
}
.cta-pc .cta-inner{
    max-width: 550px;
}
.cta-pc .cta-inner .cta-txt{
    margin-bottom: 16px;
}
.cta-pc .cta-btn{
    display: inline-block;
    width: 98%;
    text-align: center;
    padding: 10px 0;
    background-color: #F5B91B;
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    color: #fff;
    font-weight: 900;
    font-size: 30px;
    cursor: pointer;
    position: relative;
    padding-left: 50px;
    margin-left: 15px;
}
.cta-pc .cta-btn:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.cta-pc .cta-btn::before{
    content: "";
    background: url(../images/cta-btn-pc.png);
    background-size: 100%;
    position: absolute;
    width: 90px;
    height: 90px;
    left: -15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
}
.cta-pc .cta-btn .fa-solid{
    margin-left: 16px;
}
@media screen and (max-width: 767px){
    .cta-pc{
        display: none;
    }
    .cta-sp{
        display: block;
        background-color: #F66B20;
        padding: 24px 0 16px;
        gap: 40px;
        -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
                box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
    }
    .cta-sp .cta-txt{
        width: 90%;
        max-width: 450px;
        margin: 0 auto;
    }
    .cta-sp .cta-inner{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 90%;
        margin: 0 auto;
        gap: 16px;
        max-width: 450px;
    }
    .cta-sp .cta-img{
        width: 22%;
        max-width: 110px;
    }
    .cta-sp .cta-btn{
        width: 75%;
    }
}
@media screen and (max-width: 410px){
    .cta-sp .cta-inner{
        gap: 10px;
    }
}
/* ========================== w-chance(追加項目) ========================== */
.w-chance{
    padding-top: 0;
}
.w-chance .w-chance-wrap{
    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;
    margin-bottom: 88px;
}
.w-chance .w-chance-img{
    width: 40%;
}
.w-chance .w-chance-img img{
    display: block;
}
.w-chance .w-chance-contents{
    width: 55%;
}
.w-chance .w-chance-contents-inner{
    width: 65%;
    margin-left: 60px;
}
.w-chance .container-wrap{
    background-color: #FDF7E0;
    box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 10px;
    position: relative;
}
.w-chance .container-wrap ::before{
    content: "";
    display: block;
    width: 107px;
    height: 140px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/character-woman.webp);
    position: absolute;
    bottom: 0;
    right: 0;
}
.w-chance .container-wrap ::after{
    content: "";
    display: block;
    width: 133px;
    height: 139px;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/character-man.webp);
    position: absolute;
    bottom: 0;
    left: 0;
}
.w-chance .container-wrap .sim-list-content{
    width: 80%;
    margin: 0 auto 88px auto;
    padding: 88px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.w-chance .container-wrap .sim-list-content h2.sec-ttl{
    margin-bottom: 40px;
}
.w-chance .container-wrap .sim-list-content h2.sec-ttl{
    margin-bottom: 40px;
}
.w-chance .container-wrap .sim-list-content p{
    font-size: 20px;
    font-weight: 700;
}
.w-chance .container-wrap .sim-list-content p.sim-list-txt1{
    margin-top: 16px;
}
.w-chance .container-wrap .sim-list-content p.sim-list-txt2{
    margin-top: 32px;
}
.w-chance .container-wrap .sim-list-content p.sim-list-txt3{
    margin-top: 32px;
    text-align: center;
}
.w-chance .container-wrap .sim-list-content p.sim-list-txt3 span{
    font-size: 36px;
    font-weight: 700;
    color: #E60012;
}
@media screen and (max-width:1080px){
    .w-chance .w-chance-contents-inner {
        width: 80%;
        margin-left: 0;
    }
}
@media screen and (max-width: 767px){
    .w-chance{
        padding-bottom: 60px;
    }
    .w-chance .w-chance-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
                margin-bottom: 60px;
    }.w-chance .w-chance-img{
        width: 100%;
    }
    .w-chance .w-chance-contents{
        width: 100%;
    }
    .w-chance .w-chance-contents-inner{
        margin: 24px auto 0;
        width: 90%;
    }
    .w-chance .container-wrap .sim-list-content {
        width: 90%;
        margin: 0 auto;
        padding: 60px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .w-chance .container-wrap .sim-list-content img{
        position: relative;
        z-index: 1;
    }
    .w-chance .sp-only .container-wrap p{
        font-size: 15px;
    }
    .w-chance .container-wrap .sim-list-content p.sim-list-txt2 {
        margin-bottom: 16px;
    }
    .w-chance .container-wrap .sim-list-content p.sim-list-txt3 {
        margin-top: 32px;
        text-align: left;
    }
    .w-chance .container-wrap .sim-list-content p.sim-list-txt3 span {
        font-size: 28px;
    }
    .w-chance .container-wrap ::after {
        content: "";
        display: block;
        width: 60px;
        height: 71px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../images/character-man.webp);
        position: absolute;
        top: 200px;
        left: 0;
        z-index: 0;
    }
    .w-chance .container-wrap ::before {
        content: "";
        display: block;
        width: 60px;
        height: 78px;
        background-size: contain;
        background-repeat: no-repeat;
        background-image: url(../images/character-woman.webp);
        position: absolute;
        top: 200px;
        right: 0;
        z-index: 0;
    }
}
/* ========================== SECTION 4 ========================== */
.sec4{
    background: #FDF7E0;
    padding-bottom: 4px;
}
.sec4 .sec4-txt1{
    width: 50%;
    max-width: 400px;
    margin: 0 auto;
    margin-bottom: 40px;
}
.sec4 .sec4-wrap{
    max-width: 900px;
    width: 80%;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.25);
    padding-bottom: 40px;
    margin-bottom: 4px;
}
.sec4 .sec4-wrap .sec4-ttl{
    position: relative;
    top: -40px;
    width: 80%;
    margin: 0 auto;
}
.sec4 .sec4-inner{
    width: 60%;
    margin: 0 auto;
}
.sec4 .sec4-inner .sec4-txt2{
    text-align: center;
    line-height: 1.8;
    margin-bottom: 40px;
    font-family: "YakuHanJP";
}
.sec4 .sec4-inner .sec4-list{
    margin-bottom: 24px;
}
.sec4 .sec4-inner .sec-arrow{
    margin-bottom: 24px;
}
.sec4 .sec4-inner .sec4-txt3{
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 1.8;
    font-family: "YakuHanJP";
}
.sec4 .sec4-inner .sec4-txt3 .sec4-txt3-orange{
    color: #F66B20;
    font-weight: 900;
}
.sec4 .sec4-inner .sec4-txt3 .txt-yellow-line{
    font-size: 24px;
}
.sec4 .sec4-inner .sec4-checksheet{
    margin-top: 40px;
}
@media screen and (max-width: 767px){
    .sec4 .sec4-txt1{
        margin-bottom: 20px;
    }
    .sec4 .sec4-wrap{
        width: 85%;
    }
    .sec4 .sec4-wrap .sec4-ttl{
        top: -20px;
        width: 90%;
        margin: 0 auto;
    }
    .sec4 .sec4-inner{
        width: 85%;
    }
    .sec4 .sec4-inner .sec4-txt2{
        text-align: left;
    }
    .sec4 .sec-arrow{
        max-width: 24px;
    }
    .sec4 .sec4-inner .sec4-list,.sec4 .sec4-inner .sec-arrow{
        margin-bottom: 8px;
    }
    .sec4 .sec4-inner .sec4-txt3{
        font-size: 17px;
        font-weight: 700;
    }
    .sec4 .sec4-inner .sec4-txt3 .txt-yellow-line{
        font-size: 18px;
    }
    .sec4 .sec4-inner .sec4-checksheet{
        margin-top: 28px;
    }
}

/* ========================== SECTION 5 ========================== */
.sec5{
    background: #FDF7E0;
    padding-bottom: 88px;
}
.sec5 .sec5-ttl{
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
}
.sec5 .sec5-wrap{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
}
.sec5 .sec5-inner{
    width: 47%;
}
.sec5 .sec5-inner p{
    width: 90%;
    margin: 0 auto;
    font-weight: 500;
    font-family: "YakuHanJP";
}
@media screen and (max-width: 767px){
    .sec5{
        padding-bottom: 60px;
    }
    .sec5 .sec5-inner{
        width: 100%;
        max-width: 550px;
        margin: 0 auto;
    }
    .sec5 .sec5-ttl{
        width: 90%;
        margin-bottom: 10px;
    }
    .sec5 .sec5-wrap{
        gap: 24px;
    }
}

/* ========================== SECTION 6 ========================== */
.sec6{
    padding-top: 0;
}
.sec6 .sec6-wrap{
    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;
}
.sec6 .sec6-img{
    width: 40%;
}
.sec6 .sec6-img img{
    display: block;
}
.sec6 .sec6-contents{
    width: 55%;
}
.sec6 .sec6-contents-inner{
    width: 65%;
    margin-left: 60px;
}
@media screen and (max-width: 767px){
    .sec6{
        padding-bottom: 60px;
    }
    .sec6 .sec6-wrap{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }.sec6 .sec6-img{
        width: 100%;
    }
    .sec6 .sec6-contents{
        width: 100%;
    }
    .sec6 .sec6-contents-inner{
        margin: 24px auto 0;
        width: 90%;
    }
}

/* ========================== SECTION 7 ========================== */
.sec7{
    background: url(../images/sec7-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
}
.sec7 .sec7-wrap{
    width: 80%;
    margin: 0 auto;
    padding: 100px 0 88px;
}
@media screen and (max-width: 767px){
    .sec7{
        background: url(../images/sec7-bg-sp.webp);
        background-size: cover;
        background-repeat: no-repeat;
    }
    .sec7 .sec7-wrap{
        width: 85%;
        padding: 60px 0 40px;
    }
}

/* ========================== SECTION 8 ========================== */
.sec8{
    background: url(../images/sec8-bg-pc.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    padding-bottom: 120px;
}
.sec8 .sec-ttl-line::before{
    background: #086BAD;
}
/*アコーディオン*/
.sec8 .accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
    margin-top: 100px;
}
.sec8 .accordion-area li{
    margin: 24px 0;
}
.sec8 .accordion-area .accordion-section {
	background: #fff;
    border-radius: 10px;
}
.sec8 .title {
    position: relative;
    cursor: pointer;
    padding: 24px 24px 24px 50px;
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    color: #086BAD;
    font-size: 20px;
    font-weight: 900;
}
.sec8 .title::before,
.sec8 .title::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #086BAD;
}
.sec8 .title::before{
    top:48%;
    right: 40px;
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
}
.sec8 .title::after{
    top:48%;
    right: 40px;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
}
.sec8 .title.close::before{
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.sec8 .title.close::after{
	-webkit-transform: rotate(-45deg);
	    -ms-transform: rotate(-45deg);
	        transform: rotate(-45deg);
}
.sec8 .box {
    display: none;
    border-top: dotted 4px #1B1B1B;
	margin:0 28px 24px 28px;
    padding: 24px;
}
.sec8 .box p{
    font-family: "YakuHanJP";
}
.sec8 .txt-q,.sec8 .txt-a{
    font-size: 20px;
    padding-right: 5px;
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
}
.sec8 .txt-a{
    color: #F66B20;
}
@media screen and (max-width: 767px){
    .sec8{
        background: url(../images/sec8-bg-sp.webp);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: bottom center;
        padding-bottom: 88px;
    }
    .sec8 .accordion-area{
        margin-top: 60px;
    }
    .sec8 .title{
        width: 90%;
        padding: 20px 20px 20px 32px;
        font-size: 18px;
    }
    .sec8 .title::before,.sec8 .title::after{
        right: -10px;
    }
    .sec8 .box{
        margin: 0 20px 20px 20px;
        padding: 20px;
        border-top: dotted 3px #1B1B1B;
    }
}

/* ========================== SECTION 9 ========================== */
.sec9{
    background: url(../images/sec9-bg-pc.webp);
    background-size: cover;
    background-position: top;
    margin-top: -80px;
    padding-bottom: 88px;
}
.sec9 .sec-ttl{
    margin-top: 100px;
}
.sec9 .sec9-txt1{
    text-align: center;
    margin-top: 100px;
    font-size: 20px;
    font-weight: 700;
}
.sec9 .sec9-wrap{
    background: #fff;
    border-radius: 10px;
    border: 3px solid #F66B20;
    margin-top: 40px;
}
.sec9 .sec9-inner{
    width: 85%;
    margin: 0 auto;
    padding-top: 60px;
}
.sec9 .sec9-inner-tel{
    width: 70%;
}
.sec9 .sec9-inner:first-of-type:hover{
    opacity: 0.7;
}
.sec9 .sec9-inner-ttl{
    width: 80%;
    max-width: 640px;
    margin: 0 auto;
}
.sec9 .form-inner{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px;
}
.sec9 .form-inner .form-ttl{
    width: 30%;
    font-weight: 700;
}
.sec9 .form-inner .form-ttl .required{
    color: #E60012;
}
.sec9 .form-inner input,.sec9 .form-inner textarea{
    width: 70%;
    border: 1px solid #6C6C6C;
    border-radius: 4px;
    font-size: 105%;
    padding: 5px;
}
.sec9 .form-inner input{
    height: 40px;
}
.sec9 .form-inner textarea{
    height: 150px;
}
.sec9 .privacy-wrap .form-ttl{
    text-align: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}
.sec9 .form-inner .scroll_box{
    height: 50px;
    overflow: scroll;
}
.sec9 .privacy-inner{
    padding: 20px 30px 20px;
}
.sec9 .scroll_box{
    display: block;
    margin: 0 auto 8px;
    height: 160px;
    border: 1px solid #6C6C6C;
    overflow-y: scroll;
    border-radius: 5px;
    font-size: 15px;
    font-family: "YakuHanJP";
    font-weight: 400;
}
.sec9 .scroll_box ol li{
    font-size: 15px;
    font-family: "YakuHanJP";
    font-weight: 400;
    line-height: 1.7;
}
.sec9 .accept-wrap{
    text-align: center;
    margin-bottom: 40px;
}
.sec9 .accept-wrap input{
    margin-bottom: 6px;
    margin-right: 6px;
}
.sec9 .form-submit{
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding-bottom: 60px;
}
.sec9 .form-submit input{
    background: #F66B20;
    border: none;
    max-width: 300px;
    width: 50%;
    padding: 20px 0;
    color: #fff;
    border-radius: 10px;
    font-size: 24px;
    display: inline-block;
    -webkit-box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
            box-shadow: 0 5px 0 rgba(0, 0, 0, 0.25);
    cursor: pointer;
    position: relative;
}
.sec9 .form-submit input:hover{
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(5px);
        -ms-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
@media screen and (max-width: 767px){
    .sec9{
        background: url(../images/sec9-bg-sp.webp);
        background-size: cover;
        background-position: top;
        margin-top: -30px;
        padding-bottom: 88px;
    }
    .sec9 .sec9-inner-tel{
        width: 80%;
    }
    .sec9 .sec9-txt1{
        font-size: 16px;
        margin-top: 60px;
    }
    .sec9 .sec-ttl{
        margin-top: 40px;
    }
    .sec9 .sec9-inner{
        padding-top: 40px;
    }
    .sec9 .sec9-inner-ttl{
        width: 100%;
    }
    .sec9 .accept-wrap{
        margin-bottom: 24px;
    }
    .sec9 .form-submit input{
        width: 100%;
    }
    .sec9 .form-inner{
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .sec9 .form-inner input,.sec9 .form-inner textarea{
        width: 100%;
        font-size: 110%;
    }
    .sec9 .form-inner textarea{
        height: 200px;
    }
    .sec9 .form-inner .form-ttl{
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
    .sec9 .form-submit{
        padding-bottom: 40px;
    }
    .sec9 .scroll_box,.sec9 .scroll_box ol li{
        font-size: 14px;
    }
    .sec9 .scroll_box{
        height: 120px;
    }
    .sec9 .privacy-inner{
        padding: 8px 10px 8px;
    }
}
@media screen and (min-width:1921px){
    .sec9 {
        margin-top: -101px;
    }
}

/* ========================== SECTION 10 ========================== */
.sec10{
    background: url(../images/sec10-bg-pc.webp);
    background-size: cover;
    background-position: top;
    padding-bottom: 88px;
}
.sec10 .sec10-wrap{
    margin-top: 100px;
}
.sec10 .sec-ttl-line::before{
    background: #086BAD;
}
.sec10 .sec10-wrap table tr th{
    background: #086BAD;
    color: #fff;
    width: 30%;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 700;
}
.sec10 .sec10-wrap table tr th,.sec10 .sec10-wrap table tr td{
    border: 1px solid #E4E3E3;
}
.sec10 .sec10-wrap table tr td{
    background: #fff;
    padding: 10px;
}
@media screen and (max-width: 767px){
    .sec10{
        background: url(../images/sec10-bg-sp.webp);
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: top;
        padding-bottom: 60px;
    }
    .sec10 .sec10-wrap{
        margin-top: 60px;
    }
    .sec10 .sec10-wrap table tr{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        margin-bottom: 10px;
    }
    .sec10 .sec10-wrap table tr th{
        font-size: 16px;
        width: 100%;
        padding: 8px 0;
    }
}

/* ========================== フッター ========================== */
.footer{
    background: #F66B20;
    padding: 16px;
}
.footer p{
    color: #fff;
    text-align: center;
    font-size: 14px;
}
@media screen and (max-width: 767px){
    .footer{
        margin-bottom: 60px;
        padding: 10px;
    }
}