@charset "UTF-8";
/* CSS Document */


.faq-wrap {
    width: 100%;
}
.faq-wrap .hide {
    display: none;
}

.faq-tab-box {
    margin-top: 80px;
}

.faq-tab-box .tab li {
    background-color: #F8F8F8;
    width: 32%;
    padding: 20px;
    margin-right: 2%;
    text-align: center;
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    cursor: pointer;
    border-radius: 20px 20px 0 0;
}
    .faq-tab-box .tab li:last-child {
        margin-right: 0;
    }  
    .faq-tab-box .tab .select {
        background-color: #F5C558;
    }

.faq-cell {
    background-color: #F5C558;
    border-radius: 0 0 20px 20px;
    padding: 20px;
}
.faq-cell .ac-box {
    background-color: #FFF;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 30px;
}
    .faq-cell .ac-box:last-child {
        margin-bottom: 0;
    }

.faq-cell .ac-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 0 75px 0 0;
    position: relative;
    cursor: pointer;
}
    .faq-cell .ac-box h2:before {
        content: "";
        width: 20px;
        height: 2px;
        background: #131d1c;
        position: absolute;
        top: 50%;
        right: 0;
        margin-top: -0.5px;
    }
    .faq-cell .ac-box h2:after {
        content: "";
        width: 2px;
        height: 20px;
        background: #131d1c;
        position: absolute;
        top: 50%;
        right: 10px;
        margin-top: -10px;
    }
        .faq-cell .ac-box h2.active:after {
            display: none;
        }
.faq-cell .ac-box .text {
    display: none;
    border-top: 1px solid #131d1c;
    padding: 20px 0 0 0;
    margin-top: 20px;
}

.faq-cell .ac-box .txt {
    margin-bottom: 20px;
}
    .faq-cell .ac-box .txt:last-child {
        margin-bottom: 0;
    }
    .faq-cell .ac-box .txt a {
        text-decoration: underline;
    }
    .faq-cell .ac-box .txt.sub-ttl {
        font-size: 1.8rem;
        font-weight: 700;
        margin-bottom: 0;
    }

/* 1200px */
@media screen and (max-width: 1200px) {

    
}/* 1200px */
    

/* 1024px */
@media screen and (max-width: 1024px) {
    
    .faq-tab-box {
        margin-top: 40px;
    }
    
    .faq-tab-box .tab li {
        font-size: 1.5rem;
        padding: 15px;
    }
    .faq-cell .ac-box h2 {
        font-size: 1.5rem;
        line-height: 1.3;
        padding: 0 40px 0 0;
    }
    
    .faq-cell .ac-box h2:before {
        width: 15px;
    }
    .faq-cell .ac-box h2:after {
        height: 15px;
        top: 54%;
        right: 7px;
    }
    .faq-cell .ac-box {
        padding: 20px;
    }
}/* 1024px */


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



}