@charset "utf-8";
*{
    box-sizing: border-box;
}
a{
    display: block;
}
.clearfix {
    display: block;
}

.pc {
    display: block;
}

.sp {
    display: none;
}

body {
    background: #f1f9fc;
    color: #282828;
    font-size: 24px;
    line-height: 1.5;
    font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
    font-weight: 500;
    font-feature-settings: "palt";
    letter-spacing: 1.8px;
}

#wrapper {
    width: 750px;
    margin: 0 auto;
    box-shadow: 0 0 10px #ccc;
    position: relative;
}

.inner{
    width: 92%;
    margin: 0 auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all .5s;
}

a:hover {
    text-decoration: underline;
    opacity: 0.7;
}

img {
    vertical-align:top;
}

.shadow{
    filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.2));
}

#fv,.nega01,.nega02,.nega03,#flow h2{
    position: relative;
}

/*header*/
header{
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 9999;
}
header .h_inner{
    padding: 2% 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .logo{
    width: 20%;
}
header .h_btn{
    width: 68%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header .h_btn >div:not(:last-child){
    margin-right: 4%;
}
/*/header*/
/*fv*/
.video {
    padding-top: 166.14%;
    width: 100%;
    position: relative;
}
.video video,
.video .mv_image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
#fv .fv_box{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,0);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 85%;
}
/*/fv*/
/*nega*/
.nega01_fukidashi01,.nega01_fukidashi02,.nega01_fukidashi03{
    position: absolute;
    width: 32%;
}
.nega01_fukidashi01{
    top: 36%;
    left: 40%;
}
.nega01_fukidashi02{
    top: 45%;
    left: 3%;
}
.nega01_fukidashi03{
    top: 60%;
    right: 0;
}
.nega02_list,.nega02_fukidashi,.nega03_img{
    left: 50%;
    transform: translate(-50%,0);
}
.nega02_list{
    position: absolute;
    top: 30%;
}
.nega02_fukidashi{
    position: absolute;
    bottom: -7%;
    z-index: 9;
}
.nega03_img{
    position: absolute;
    bottom: 3%;

}
/*/nega*/
/*exam*/
#exam{
    background: #fff;
}
#exam li{
    padding-bottom: 5%;
}
/*/exam*/
/*reason*/
#reas .reas_box{
    padding-bottom: 5%;
    background: #fcf5de;
}
#reas .reas_box.reas02{background: #dcf3c9;}
#reas .reas_box.reas03{background: #ffecf5;}
#reas .reas_box.reas04{background: #d9daf4;}
/*/reason*/
/*voice*/
#voice{
    background-color: #72d5fa;
}
#voice h2,#flow h2{
    margin-bottom: 3%;
}
#voice .voice_box{
    padding-bottom: 5%;
}
/*/voice*/
/*flow*/
#flow{
    background-color: #fff;
    padding-bottom: 0.5%;
}
#flow .flow_ttl_fukidashi{
    width: 21%;
    position: absolute;
    top: -8%;
    left: 5%;
}
/*flow*/
/*qa*/
#qa{
    background-color: #fff;
}
#qa ul{
    padding-bottom: 8%;
}
#qa li:not(:last-child){
    margin-bottom: 5%;
}
/*/qa*/

footer {
    width: 100%;
    max-width: 750px;
    margin: 0 auto;
    padding: 5% 0 20%;
    background-color: #E8E8E8;
}
footer .f_inner{
    display: flex;
    justify-content: center;
    margin-bottom: 3%;
}
footer .logo{
    width: 20%;
}
footer ul {
    margin-left: 5%;
}
footer .copyright{
    font-size: 0.8em;
    text-align: center;
}


/*cta*/
.cta {
    position: relative;
}

.cta_btn {
    width: 80%;
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
}

.cta_btn a{
    filter: drop-shadow(0 4px 4px rgba(86,86,86,0.48));
    margin-bottom: 5%;
}

.cta_btn a:hover{
    opacity: 0.8;
    transition: all 0.8s;
}
.line_txt{
    display: flex;
}
.line_txt ul{
    flex: 0 0 170px;
}
.line_txt figure{
    flex: 1;
}
/*/cta*/

#secqa {
    background: #fff;
    padding: 30px;
}

#secqa h2 {
    text-align: center;
    margin-bottom: 40px;
}

#secqa li {
    margin-bottom: 40px;
}

/*accodion*/
.js_acc{
    position: relative;
    padding: 20px 60px 20px 30px;
    background: #016aec;
    color: #fff;
}
.js_acc:hover {
    cursor: pointer;
}
.js_acc::after{
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    background: url(../images/arrow.png) no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    transition: all 0.5s;
    transform: translate(0,-50%) rotate(-90deg);
    transform-origin: 50% 50%;
}
.js_acc.open::after {
    transform: translate(0,-50%) rotate(0deg);
}
.js_acc_inner {
    display: none;
    padding: 25px 30px;
    border: 3px solid #016aec;
    background-color: #fff;
}
.js_acc_inner.stay {
    display: block;
}

.price .js_acc{
    background-color: #ffa200;
    filter: drop-shadow(0 10px 0 #d18500);
    will-change: transform;/*safari対策用*/
    border-radius: 30px;
    margin: 6% auto;
    text-align: center;
    font-size: 44px;
    font-weight: 700;
}
.price .js_acc_inner {
    border: none;
}
.price .js_acc_inner img{
    margin-bottom: 5%;
}
#flow .price .js_acc_inner img,#price .price .js_acc_inner img{
    border: 2px solid #ffa200;
}
#price{
    background-color: #fff;
    padding: 3% 0;
}

#qa .js_acc p{
    position: relative;
    padding-left: 30px;
}
#qa .js_acc p::before{
    content: "";
    background: url(../images/ico_q.png) no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    position: absolute;
    left: 0;
    top: 5%;
}
/*accodion*/

.fix{
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    z-index: 99;
    width: 90%;
    max-width: 750px;
    text-align: center;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}
.fix a:hover{
    opacity: 1;
    filter: brightness(1.2);
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.5));
}

/*アニメーション*/
.poyo {
    animation: poyopoyo 2s ease-out infinite;
}

@keyframes poyopoyo {
    0%,
    40%,
    60%,
    80% {
        transform: scale(1.0);
    }

    50%,
    70% {
        transform: scale(0.95);
    }
}

.bounce {
    animation: bounce 1.5s ease infinite;
}
@keyframes bounce {
70% {
    transform: translateY(0%);
}
80% {
    transform: translateY(-10%);
}
90% {
    transform: translateY(0%);
}
95% {
    transform: translateY(-5%);
}
97% {
    transform: translateY(0%);
}
99% {
    transform: translateY(-2.5%);
}
100% {
    transform: translateY(0);
}
}
.fade {
/* 最初は非表示 */
    transform: translateY(30px);
    opacity: 0;
    visibility: hidden;
    transition: transform 1s, opacity 1s, visibility 1s;
}
/* フェードイン時に入るクラス */
.fadeIn {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}


    /*スマホ
------------------------------*/

@media screen and (max-width: 750px) {
    .pc {
        display: none;
    }
    .sp {
        display: block;
    }
    body {
        font-size: 4.0vw;
    }
    #wrapper {
        width: 100%;
        margin: 0 auto;
    }
    .cta_btn{
        width: 85%;
    }
    .line_txt ul{
        flex: 0 0 170px;
    }
    .js_acc{
        padding: 2.667vw 8vw 2.667vw 4vw;
    }
    .js_acc::after{
        right: 18px;
        width: 18px;
        height: 18px;
    }
    .price .js_acc{
        filter: drop-shadow(0 5px 0 #d18500);
        border-radius: 15px;
        font-size: 5.867vw;
    }
    .js_acc_inner{
        padding: 5%;
    }
}
