@charset "UTF-8";

.pageHeader_faq {
    display: flex;
    background: linear-gradient(to right, #00469B, #3382ED);
    padding: min(30%, 17rem) 6rem 14.225rem 8rem;
    justify-content: space-between;
    min-height: 250px;
    align-items: center;
}

.title_about {
    margin-top: 1rem;
}

.title_about h2 {
    font-family: roboto;
    color: #fff;
    opacity: 50%;
    font-size: min(10vw, 11rem);
    font-weight: 500;
    white-space: nowrap;
    margin-top: -2rem;
}

.title_about p {
    font-size: 2.3rem;
    color: #fff;
    font-weight: 700;
    margin: -3.5rem 0 0 0;
    letter-spacing: 0.15em;
}



.bgabout01 {
    background-color: #F4F6F8;
}

.bgabout02 {
    background-color: #fff;
}

@media screen and (min-width: 1366px) {
    .pageHeader_faq {
        padding: min(30%, 17rem) calc(100vw / 3 - 385px) 14.225rem calc(100vw / 3 - 375px);
    }

}


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

    .pageHeader_faq {
        padding: 6.8rem 16rem 7.2rem 3rem;
    }

    .title_about h2 {
        font-size: clamp(5.7rem, 10vw, 13rem);
    }

    .title_about p {
        font-size: 1.8rem;
        margin: -2.5rem 0 0 0;
    }

    .title_about {
        margin: 1rem 2rem 0;
    }


    .title_about h2 {
        margin-top: 0;
    }

}



@media screen and (max-width: 570px) {
    .pageHeader_faq {
        padding: 7rem 16rem 6rem 0;
    }
}

@media screen and (max-width: 410px) {
    .title_about h2 {
        font-size: min(14vw, 5.7rem);
    }

    .pageHeader_faq {
        min-height: 200px;
    }
}


/***********************:title****************************/
.faq_title {
    font-size: 2.5rem;
    color: #00469b;
    text-align: left;
    position: relative;
    font-weight: bold;
}

.faq_title::after {
    position: absolute;
    left: 0;
    bottom: -10px;
    z-index: 2;
    content: '';
    height: 1px;
    width: 100%;
    background: #00469b;
}

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

    .faq_title {

        font-size: 2rem;

    }

}


/*********************************************************/

.faq_wrapper {
    width: 100%;
    margin: 0 auto;
    padding-top: 11rem;
    padding-bottom: 8.6rem;

}

.faq_container {
    max-width: 960px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.faq_container:not(:first-child) {

    padding: 78px 20px 0;
}

.qa-container {
    width: 100%;
    margin: 30px auto 0;

}

.qa-list {
    font-size: 1.6rem;
    font-weight: 500;
    text-align: justify;
}

.question-title {
    background: #dceeff;
    cursor: pointer;
    font-size: 16px;
    padding: 13.5px 40px;
    position: relative;
}

.question-title::before {
    position: absolute;
    display: block;
    content: 'Q';
    top: 9px;
    left: 12px;
    color: #00469b;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.4em;
}

.question-title:after {
    position: absolute;
    display: block;
    content: '';
    top: 35%;
    right: 22px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #000;
    border-right: 2px solid #000;
    transform: rotate(135deg);
    transition: all .3s ease-in-out;
}

.question-title:hover {
    color: #00469b;
    font-weight: bold;
    transition: 0.2s ease-out;
}

.answer-text {
    border-top: 1px solid #cde7ff;
    border-left: 1px solid #cde7ff;
    border-right: 1px solid #cde7ff;
    border-bottom: 1px solid #cde7ff;
    display: none;
    padding: 13.5px 40px;
    position: relative;
}

.answer-text::before {
    position: absolute;
    display: block;
    content: 'A';
    top: 10px;
    left: 12px;
    color: #00469b;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    font-size: 1.4em;
}

.question-title.open:after {
    transform: rotate(-45deg);
    top: 45%;
}



.open {
    display: block
}

.qa-list:first-child {
    margin-top: 40px;
}

.qa-list:not(:first-child) {
    margin-top: 20px;
}


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

    .faq_wrapper {

        padding-top: 6.3rem;

    }
}
