@charset "UTF-8";

.sp {
    display: none !important;
}

header,
footer,
main,
nav,
article,
aside,
section {
    display: block;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    height: auto;
}

.fl__sp {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: grid;
    grid-template-columns: repeat(2, 330px);
    gap: 30px;
}

#bg {
    background: url(../img/pc_bg.jpg) no-repeat center/cover;
    background-attachment: fixed;
    z-index: -1000;
}

.logo {
    position: fixed;
    top: 30px;
    right: 39px;
}

.logo--5th {
    position: fixed;
    top: 0;
    left: 0;
}


#wrpper {
    margin: 0 264px 0 auto;
    max-width: 375px;
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", sans-serif;
    font-size: 22px;
    color: #101010;
    font-feature-settings: "palt";
    letter-spacing: 0.08em;
    z-index: 10;
    position: relative;
}

a {
    transition: 1.5s;
}

a:hover {
    opacity: 0.7;
}

#fv {
    background: #fff;
}

#fv .fv_cv a {
    display: block;
    width: 649px;
    margin: 0 auto;
}

.cv {
    position: relative;
}

.cv .cv_btn {
    width: 341px;
    display: inline-block;
    margin: 0 auto;
    position: absolute;
    right: 0;
    left: 13px;
}

.cv_01 .cv_btn {
    bottom: 40px;
}

.cv_02 .cv_btn {
    bottom: 46px;
}

.cv_03 .cv_btn {
    bottom: 65px;
}

/* QA */
.ac {
    padding-inline: 25px;
    background: #fff;
}

.ac__item+.ac__item {
    margin-top: 30px;
}

.ac__question {
    background-color: #72cab9;
    box-sizing: border-box;
    position: relative;
    display: grid;
    grid-template-columns: 46px auto 42px;
    align-items: center;
    color: #fff;
    font-weight: normal;
    padding: 12px 0;
    cursor: pointer;
    width: 100%;
}

.ac__icon {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: auto;
}

.ac__text {
    font-size: 14px;
    letter-spacing: 0.05em;
    text-align: start;
}

.ac__toggle {
    display: flex;
    justify-content: center;
    margin-bottom: auto;
    margin-top: 10px;
}

.ac__toggle::before,
.ac__toggle::after {
    content: "";
    width: 12px;
    height: 2px;
    background-color: #fff;
    display: block;
}

.ac__toggle::before {
    position: relative;
}

.ac__toggle::after {
    position: absolute;
    top: 22px;
    right: 15px;
    transform: rotate(90deg);
    transition: 0.3s;
}

.is-open .ac__toggle::after {
    transform: rotate(0);
}

.ac__answer {
    background-color: #e1f4f0;
    display: grid;
    grid-template-columns: 46px auto;
    padding-top: 17px;
    padding-bottom: 21px;
}

.ac__icon--a {
    color: #36b49b;
    display: flex;
    justify-content: center;
    line-height: 1.3;
}

.ac__description {
    font-size: 14px;
    line-height: calc(50 / 28);
    max-width: 267px;
}

.small {
    font-size: 10px;
    line-height: 1.5;
    display: inline-block;
    margin-top: 9px;
}

@media screen and (max-width: 768px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none;
    }

    img {
        width: 100%;
    }

    .fl__sp {
        bottom: calc((20/ 750) * 100vw);
        grid-template-columns: repeat(2, calc((330/ 750) * 100vw));
        gap: calc((30/ 750) * 100vw);
    }

    #bg {
        background: none;
    }

    .logo {
        display: none;
    }

    .logo--5th {
        display: none;
    }

    #wrpper {
        box-shadow: none;
        font-size: 2.933vw;
        margin: 0 auto;
        max-width: 750px;
    }

    #fv {
        background: #fff;
    }

    #fv .fv_cv a {
        display: block;
        width: 86.533vw;
        margin: 0 auto;
    }

    .cv .cv_btn {
        width: calc((682 / 750) * 100vw);
    }

    .cv_01 .cv_btn {
        bottom: calc((81 / 750) * 100vw);
    }

    .cv_02 .cv_btn {
        bottom: calc((93 / 750) * 100vw);
    }

    .cv_03 .cv_btn {
        bottom: calc((130 / 750) * 100vw);
    }

    /* QA */
    #faq {
        padding-bottom: calc((179/ 750) * 100vw);
    }

    .ac {
        padding-inline: calc((50 / 750) * 100vw);
    }

    .ac__item+.ac__item {
        margin-top: calc((60/ 750) * 100vw);
    }

    .ac__question {
        grid-template-columns: calc((93/ 750) * 100vw) auto calc((85/ 750) * 100vw);
        padding: calc((25/ 750) * 100vw) 0;
    }

    .ac__icon {
        font-size: calc((44/ 750) * 100vw);
    }

    .ac__text {
        font-size: calc((28/ 750) * 100vw);
    }

    .ac__toggle {
        margin-top: calc((20/ 750) * 100vw);
    }

    .ac__toggle::before,
    .ac__toggle::after {
        width: calc((24/ 750) * 100vw);
        height: calc((2/ 750) * 100vw);
    }

    .ac__toggle::after {
        top: calc((45/ 750) * 100vw);
        right: calc((31/ 750) * 100vw);
    }

    .ac__answer {
        grid-template-columns: calc((92/ 750) * 100vw) auto;
        padding-top: calc((27/ 750) * 100vw);
        padding-bottom: calc((43/ 750) * 100vw);
    }

    .ac__description {
        font-size: calc((28/ 750) * 100vw);
        max-width: calc((535/ 750) * 100vw);
    }

    .small {
        font-size: calc((16/ 750) * 100vw);
        margin-top: calc((18/ 750) * 100vw);
    }
}

/*-------------------------------------------
-----------------------------------------------*/
.sp {
    display: none !important;
}

#fl_btn {
    position: fixed;
    display: none;
    bottom: 0;
    right: 0;
    max-width: 264px;
    width: 100%;
    z-index: 999;
}

#fl_btn a {
    display: inline-block;
    width: 100%;
    text-align: center;
}

.fl__pc-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 29px;
}

.fl__pc-img {
    width: 204px;
}

.fl__pc {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 11px;
    margin-top: 10px;
}

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

@media screen and (min-width: 769px) {
    a {
        transition: 0.3s;
    }

    a:hover {
        opacity: 0.85;
    }
}

@media screen and (max-width: 768px) {
    .sp {
        display: block !important;
    }

    .pc {
        display: none;
    }

    img {
        width: 100%;
    }

    #fl_btn {
        position: fixed;
        display: none;
        bottom: 0;
        right: 0;
        left: 0;
        max-width: 750px;
        margin: 0 auto;
        width: 100%;
        z-index: 999;
        box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.2);
    }

    #fl_btn a {
        display: inline-block;
        width: 100%;
        text-align: center;
    }
}