@charset "utf-8";

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

	faq.css
	
=================================================================== */

#faqList{
    padding-bottom: 122px;
}

/* ◇ sideBox
-------------------------------- */

.sideBox{
    gap:4vw 8.8550488599%;
}

.sideBox .lead{
    min-width: 206px;
    width:auto;
    .categoryList{
        li{
            & + li{
                margin-top: 8px;
            }
            &:before {
                background: #D2D2D2;
            }
        }
    }

    @media screen and (max-width: 767px) {
        margin-bottom: 14vw;
    }
}
.sideBox .details{
    width: calc(74.348534202% - 60px);

    @media screen and (max-width: 767px) {
        width: 100%;
    }
}

/* --------------------------------
■faqBox
-------------------------------- */ 

/* --------------------------------
■qa
-------------------------------- */ 

.faqBox{

    & + .faqBox{
        margin-top: 50px;
    }

    .qa{
        border-bottom: 1px solid #CACACA;
    }

    .qa dt {
        border-top: 1px solid #CACACA;
        position: relative;
        font-weight: 400;
        padding: 28px 40px 28px 64px;
        cursor: pointer;
        font-size: 1.7rem;
        
        @media screen and (max-width: 767px) {
            font-size: 1.6rem;
        }
    }
    .qa_t {
        position: absolute;
        top: 16px;
        left: 0px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 999px;
        width: 46px;
        height: 46px;
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 1;
    }
    .qa_t.-q {
        background: linear-gradient(to bottom, #EEB48A, #F6EFE1);
        color: #fff;
    }

    .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;
        position: relative;
        margin: 0;
        padding: 0 0px 26px 64px;

        a {
            text-decoration: underline;
            &:hover {
                text-decoration: none;
            }
        }

        @media screen and (max-width: 767px) {
            font-size: 1.4rem;
        }
    }


    .qa .toggle {
        display: inline-block;
        width: 20px;
        height: 20px;
        position: absolute;
        right: 20px;
        top: 30px;
        
        @media screen and (max-width: 767px) {
            width: 16px;
            height: 16px;
            right: 0px;
        }
    }
    .qa .toggle::before, .toggle::after {
        content: "";
        width: 100%;
        height: 2px;
        background: #E0AA82;
        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 (max-width: 767px) {
    .qa dt {
        line-height: 1.3;
    }
    
}