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

ancor

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

.faq-ancor ul {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    column-gap: 40px;
    padding: 32px 24px;
    margin-top: 40px;
}

.faq-ancor ul li a {
    column-gap: 8px;
    color: #0B0B0B;
    display: flex;
    text-decoration: underline;
}

.ancor-circle {
    align-items: center;
    background: #C92200; 
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    height: 24px;
    width: 24px;
}

.ancor-circle svg {
    color: #ffffff;
    font-size: 12px;
}

@media screen and (max-width: 680px) {
    .faq-ancor ul {
        column-gap: 3.2vw;
        padding: 4.0vw;
        margin-top: 8vw;
        flex-wrap: wrap;
        row-gap: 3.2vw;
    }
}

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

title

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

.faq-unit {
    padding: 80px 0 0 0;
}

.faq-lead {
    align-items: center;
    background: #FDECE8;
    border-radius: 4px;
    display: flex;
    column-gap: 8px;
    padding: 16px 0;
}

.faq-lead h4 {
    letter-spacing: .05em;
    font-weight: 500;
}

.faq-lead__bar {
    background: #C92200;
    display: block;
    height: 32px;
    width: 2px;
}

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

list

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

.faq-group {
    padding-top: 80px;
}

.service-faq {
    padding: 40px 0;
}

.service-faq__box {
    padding: 40px 0;
}

.service-faq__title h3 {
    color: #C92200;
    font-weight: 400;
    font-size: 38px;
    line-height: 40px;
    letter-spacing: .05em;
    font-family: "Archivo", sans-serif;
}

.service-faq__title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
}

.faq-title h3 {
    font-weight: 400;
}

ul.faq__list li {
    border-top: 1px #E3E3E3 solid;
}

ul.faq__list li:last-child {
    border-bottom: 1px #E3E3E3 solid;
}

h5.faq__list--title p {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .04em;
}

.faq__list--title {
    position: relative;
    cursor: pointer;
    display: flex;
    padding: 24px 56px 24px 16px;
    transition: all .5s ease;
    font-weight: 400;
}

h5.faq__list--title p span {
    font-weight: 500;
    font-size: 20px;
    margin-right: 16px;
    color: #C92200;
}

.faq__list--title::before {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #C92200;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
}

.faq__list--title::after {
    position: absolute;
    content: '';
    top: 50%;
    right: 25px;
    height: 1px;
    width: 20px;
    background: #C92200;
    transition: all .3s ease-in-out;
}

.faq__list--title.close:before {
    transform: rotate(180deg);
}

.faq__list--title.close:after {
    opacity: 0;
}

.faq__list--answer {
    display: none;
    padding: 0 48px 32px 16px;
}

.faq__list--answer-box {
    display: flex;
}

.faq__list--answer-box p span {
    font-weight: 600;
    font-size: 20px;
    margin-right: 16px;
}

.faq__list--answer-box p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
}

@media screen and (max-width: 680px) {
    .faq-group {
        padding-top: 8vw;
    }
    .service-faq__box {
        padding: 5.8vw 0;
    }
    h5.faq__list--title p {
        line-height: 6vw;
    }
    .faq-summary__more {
        padding: 6.8vw;
    }
    .faq-summary__more p {
        text-align: center;
    }
}

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

summary

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

.faq-summary {
    padding: 40px 0 80px 0;
}

.faq-summary__more {
    align-items: center;
    background: #FFFFFF;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    padding: 64px 0;
    row-gap: 16px;
}

.faq-summary__more p {
    font-weight: 500;
    color: #0B0B0B;
}

.faq-summary__more a.lgBtn p,
.faq-summary__more a.lgBtn p svg {
    color: #ffffff;
}

.faq-summary__more a.lgBtn:hover p,
.faq-summary__more a.lgBtn:hover p svg  {
    color: #C92200;
}

.faq-summary__more p br {
    display: none;
}

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

    .faq-summary__more{
        padding: 6.8vw;
    }
    .faq-summary__more p br {
        display: block;
    }
}