@charset "utf-8";

/* ==================================================================

    faq.css

=================================================================== */

/* --------------------------------
■mv
-------------------------------- */ 
.secondary .contents .visual{
    background-image: url("../../images/faq/visual.jpg");
}

/* --------------------------------
■outline
-------------------------------- */ 

.qa dt {
    position: relative;
    background: #F1F1F1;
    margin: 0 0 20px;
    font-weight: 600;
    padding: 22px 50px 22px 70px;
    cursor: pointer;
}
.qa_t {
    position: absolute;
    top: 16px;
    left: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 999px;
    width: 33px;
    height: 33px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    line-height: 1;
}
.qa_t.-q {
    background: #333;
    color: #FFF;
}
.qa_t.-a {
    background: #FFF;
    color: #333;
}
.qa dt.qa_clicked .toggle::before {
    transform: translate(-50%, -50%) rotate(0deg);
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    -ms-transform: translate(-50%, -50%) rotate(0deg);
}
.qa dt.qa_clicked {
    margin: 0;
}
.qa dd {
    display: none;
    background: #F1F1F1;
    border-top: 1px solid #E1E1E1;
    margin: 0;
    position: relative;
    padding: 22px 20px 22px 70px;
    margin-bottom: 22px;
}


.qa .toggle {
    display: inline-block;
    width: 20px;
    height: 20px;
    position: absolute;
    right: 20px;
    top: 21px;
}
.qa .toggle::before, .toggle::after {
    content: "";
    width: 100%;
    height: 2px;
    background: #333;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transition: .2s;
}
.qa .toggle::before {
    transform: translate(-50%, -50%) rotate(90deg);
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    -ms-transform: translate(-50%, -50%) rotate(90deg);
}

/*--------タブレット--------*/
@media screen and (min-width: 768px) {
    .qa dt {
        font-size: 20px;
        padding: 47px 60px 47px 105px;
    }
    .qa_t {
        width: 66px;
        height: 66px;
        font-size: 30px;
        top: 26px;
    }
    .qa .toggle {
        right: 39px;
        top: 45px;
    }
    .qa dd {
        padding: 47px 60px 47px 105px;
    }
    
}

/* SP用
----------- */
@media only screen and
(max-width : 767px) {
    

}
