@charset "UTF-8";

/* CSS Document */

/*----------------------------------------
PC用レイアウト(768px以上スクリーン)
----------------------------------------*/

/* body全体の初期スタイル調整 */

html,
body {
    width: 100%;
}

body {
    font-size: 62.5%;
    /*emの計算をしやすくするための定番設定*/
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-family: "noto-sans-cjk-jp", sans-serif;
    font-weight: 300;
    font-style: normal;
    color: #000;
}

@media only screen and (max-width:768px) {

    body {
        width: 100%;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }

}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}


@media only screen and (max-width:768px) {

    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }

}

/*----------------------------------------
全体レイアウト/背景設定(PC)
----------------------------------------*/

/* 全体エリア(全体背景を設定するにはここ) */

#main {
    width: 100%;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {

    #main {
        width: 100%;
        margin: 0%;
    }

}

#main-contents {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;

}

@media only screen and (max-width:768px) {
    #main-contents {
        width: 100vw;
        margin: 0 auto;
    }
}

/*----------------------------------------
FV
----------------------------------------*/

.fv {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/*----------------------------------------
CVエリア
----------------------------------------*/

.cv_area {
    position: relative;
    margin: 0 auto;
    text-align: center;

}

.cv-btn {
    position: absolute;
    bottom: 12%;
    width: 50%;
    left: 25%;
    transition-duration: .4s;
}

@media only screen and (max-width:768px) {

    .cv-btn {
        position: absolute;
        bottom: 10%;
        width: 90%;
        left: 5%;
    }
}

.cv-btn img {
    transition-duration: .4s;

}

.cv-btn:hover {
    transform: scale(1.1);
    opacity: 0.6;
}

.cv-btn.anim-box {
    animation: fuwafuwa 1s ease 0s infinite alternate;
    transform-origin: center;
}

@keyframes fuwafuwa {
    from {
        transform: scale(0.9, 0.9);
    }

    to {
        transform: scale(1, 1);
    }
}

/*----------------------------------------
sec05_benefit
----------------------------------------*/

.mov-wrap {
    position: relative;
}

.mov_wrap-pc {
    position: absolute;
    top: 38.3%;
    width: 100%;
    text-align: center;
    margin: auto;
    background: none;
}

video.movie-pc {
    width: 66.2%;
}

.mov_wrap-sp {
    position: absolute;
    top: 54.5%;
    width: 100%;
    text-align: center;
    margin: auto;
    background: none;
}

video.movie-sp {
    width: 92.08%;
}

/*----------------------------------------
sec10_よくあるご質問
----------------------------------------*/

#faq {
    background-image: url(../images/sec10_faq_pc.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
}

.accordion_wrap {
    padding: 18% 2% 3.5% 2%;
    width: 77%;
    margin: 0 auto;
}

@media only screen and (max-width:768px) {

    #faq {
        background-image: url(../images/sec10_faq_sp.jpg);
        background-repeat: no-repeat;
        background-size: 100%;
    }

    .accordion_wrap {
        padding: 33% 2% 5% 2%;
        width: 96%;
        margin: 0 auto;
    }

}

.accordion {
    margin-bottom: 3%;
    position: relative;
}

.accordion__btn {
    cursor: pointer;
    position: relative;
}

.accordion__btn::before {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 2.5%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity 1s;
}

.accordion__btn::after {
    content: '';
    display: inline-block;
    border-radius: 10%;
    width: 2.5%;
    height: 3px;
    background-color: #fff;
    position: absolute;
    right: 3.97%;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    transition: transform 1s;
}

@media only screen and (max-width:768px) {

    .accordion__btn::before {
        content: '';
        display: inline-block;
        border-radius: 10%;
        width: 4.5%;
        height: 3px;
        background-color: #fff;
        position: absolute;
        right: 3.97%;
        top: 50%;
        transform: translateY(-50%);
        transition: opacity 1s;
    }

    .accordion__btn::after {
        content: '';
        display: inline-block;
        border-radius: 10%;
        width: 4.5%;
        height: 3px;
        background-color: #fff;
        position: absolute;
        right: 3.97%;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        transition: transform 1s;
    }

}

.accordion__btn.show::before {
    opacity: 0;
}

.accordion__btn.show::after {
    transform: translateY(-50%) rotate(180deg);
}

.accordion__content {
    display: none;
}

/*----------------------------------------
footer
----------------------------------------*/

.footer {
    background-color: #252d3a;
    padding: 2.5em 0em;
    text-align: center;
    font-size: 1.4em;
    color: #fff;

}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 1.5%;
}

li+li {
    border-left: 1px solid #fff;
}

.footer a {
    color: #fff;
    transition-duration: .4s;
}

.footer a:hover {
    color: #fffa01;
}

@media only screen and (max-width:768px) {

    .footer {
        background-color: #252d3a;
        padding: 1.5em 0.5em 1em;
        text-align: center;
        font-size: 1.6em;
        color: #fff;
    }

    footer ul {
        display: flex;
        justify-content: center;
    }

    footer ul li {
        padding: 0 3%;
    }

}