@charset "UTF-8";

/*共通*/
.sp {
    display: none;
}

.tb {
    display: none;
}

.pc {
    display: block;
}

@media screen and (max-width:930px) {
    .sp {
        display: none;
    }

    .tb {
        display: block;
    }

    .pc {
        display: none;
    }
}

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

    .tb {
        display: none;
    }

    .pc {
        display: none;
    }
}


/*header*/
header .fv {
    position: relative;
}

header .fv .fv-text {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 99;
}

header .fv .fv-text p span {
    font-size: 75px;
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    letter-spacing: 0.03em;
}

header .fv .fv-text p {
    font-size: 20px;
    color: #fff;
    text-align: center;
}

@media screen and (max-width:1300px) {
    header .fv .fv-text {
        top: 30%;
    }
}

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

    header .fv .fv-text p span {
        font-size: 65px;
    }

    header .fv .fv-text p {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.2em;
    }

}

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

    header .fv .fv-text p span {
        font-size: 60px;
    }

    header .fv .fv-text p {
        font-size: 14px;
        line-height: 1.6;
    }

}

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

    header .fv .fv-text {
        top: 28%;
    }

    header .fv .fv-text p span {
        font-size: 55px;
    }

    header .fv .fv-text p {
        font-size: 13px;
        line-height: 1.5;
    }

}

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

    header .fv .fv-text p span {
        font-size: 50px;
    }

}

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

    header .fv .fv-text p {
        font-size: 12px;
    }

}

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

    header .fv .fv-text {
        top: 27%;
    }

    header .fv .fv-text p span {
        font-size: 45px;
    }

    header .fv .fv-text p {
        font-size: 11px;
        line-height: 1.4;
    }

}

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

    header .fv .fv-text {
        top: 25%;
    }

    header .fv .fv-text p span {
        font-size: 40px;
    }

    header .fv .fv-text p {
        line-height: 1.3;
    }

}

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

    header .fv .fv-text {
        top: 23%;
    }

}

/*faq*/
#faq > div:nth-child(1) {
    width: 93%;
    max-width: 1280px;
    margin: 0 auto 10%;
}

#faq > div:nth-child(1) > h2 {
    margin-bottom: 5%;
    font-size: 48px;
    font-weight: 400;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    text-align: center;
}

#faq > div:nth-child(1) > p {
    line-height: 2.5;
    text-align: center;
}

#faq > div:nth-child(2){
    background-color: #f0f0f0;
    padding: 10% 3.5%;
}

#faq > div:nth-child(2) dl{
    max-width: 800px;
    margin: 0 auto 5%;
}

#faq > div:nth-child(2) dt{
    font-weight: bold;
    color: #000;
    margin-bottom: 5px;
    line-height: 2.5;
    font-size: 18px;
}

#faq > div:nth-child(2) dd{
    background-color: #fff;
    padding: 35px;
    color: #707070;
    line-height: 2.5;
    font-size: 16px;
}

#faq > div:nth-child(2) dd span{
    display: block;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 2px dotted #f0f0f0;
    color: #707070;
    font-size: 13px;
}

#faq > div:nth-child(2) dd a{
    font-weight: bold;
    color: #000;
    font-size: 15px;
}

#faq > div:nth-child(2) dd a.details{
    color: #707070;
    font-size: 13px;
    text-decoration: underline;
    font-weight: normal;
}

@media screen and (max-width:480px) {
    
    #faq > div:nth-child(2){
        padding-top: 20%;
    }
    
    #faq > div:nth-child(2) dl{
        margin-bottom: 15%;
    }
    
    #faq > div:nth-child(2) dt{
        font-size: 16px;
    }
    
    #faq > div:nth-child(2) dd{
        padding: 30px 20px;
    }
}