.faq-visual {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    max-height: 100vh;
    padding: 190px 0 100px 0;
}
.faq-visual .wrapper80 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}
.faq-visual .wrapper80 .title-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.faq-visual .wrapper80 .title-wrap span {
    font-size: 30px;
    color: #fff;
}
.faq-visual .wrapper80 .title-wrap h2 {
    font-size: 24rem;
    line-height: 1;
    letter-spacing: -0.5rem;
    color: #fff;
}
.faq-visual .wrapper80 .sub-text {
    display: flex;
    justify-content: flex-end;
}
.faq-visual .wrapper80 .sub-text p {
    font-size: 16px;
    line-height: 1.6;
    text-align: right;
    color: #fff;
}
.faq-visual .wrapper80 .sub-text p br.m_br {
    display: none;
}
.faq-contents {
    padding: 100px 0;
    background-color: #100C12;
}
.faq-contents .wrapper80 .faq-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 10px;
    min-height: 140px;
    border-bottom: 1px solid #fff;
    margin-bottom: 30px;
}
.faq-contents .wrapper80 .faq-head h2 {
    font-size: 38px;
    color: #fff;
}
.faq-contents .wrapper80 .faq-head .icon {
    width: 60px;
    height: 60px;
}
.faq-contents .wrapper80 .faq-head .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.faq-contents .wrapper80 .faq-list ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 10px;
}
.faq-contents .wrapper80 .faq-list ul li {
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid #000;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    box-shadow: -1px -1px 2.5px rgba(153, 153, 153, 0.4);
    padding: 27px 34px;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text {
    display: flex;
    align-items: center;
    gap: 20px;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text .number {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    line-height: 1;
    text-align: center;
    min-width: 45px;
    min-height: 45px;
    aspect-ratio: 1 / 1;
    color: #100C12;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0px 3px 6px rgba(255, 255, 255, 0.25), 0 -2px 3px rgba(13, 52, 94, 0.25);
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text h3 {
    font-size: 25px;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text h3 br {
    display: none;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .toggle-icon {
    position: relative;
    width: 32px;
    height: 32px;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .toggle-icon .icon-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 17px;
    height: 2px;
    background-color: #fff;
    transition: 0.5s;
}
.faq-contents .wrapper80 .faq-list ul li .faq-question .toggle-icon .icon-line.line2 {
    transform: translate(-50%, -50%) rotate(90deg);
}
.faq-contents .wrapper80 .faq-list ul li.open .faq-question .toggle-icon .icon-line.line2 {
    transform: translate(-50%, -50%) rotate(0);
}
.faq-contents .wrapper80 .faq-list ul li .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.5s;
    padding: 0 32px 0 65px;
}
.faq-contents .wrapper80 .faq-list ul li.open  .faq-question + .faq-answer {
    opacity: 1;
    max-height: 500px;
}
.faq-contents .wrapper80 .faq-list ul li .faq-answer p {
    font-size: 20px;
    line-height: 1.6;
    padding-top: 30px;
    color: rgba(255, 255, 255, 0.9);
}
.faq-contents .wrapper80 .faq-list ul li .faq-answer p em {
    font-weight: 700;
}

.faq-banner {
    padding: 100px 0;
    background-color: #100C12;
    color: #fff;
}
.faq-banner .wrapper120 .banner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
    min-height: 385px;
    padding: 100px 0;
    background: url(../../src/img/faq/banner_bg.jpg) no-repeat center center / cover;
}
.faq-banner .wrapper120 .banner-box h2 {
    font-size: 6rem;
    text-align: center;
}
.faq-banner .wrapper120 .banner-box p {
    font-size: 22px;
    text-align: center;
}
.faq-banner .wrapper120 .banner-box span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

@media screen and (max-width:768px) {
    .faq-visual {
        min-height: 750px;
        max-height: 800px;
        padding: 112px 0 0 0;
    }
    .faq-visual .wrapper80 {
        justify-content: flex-start;
        gap: 32px;
    }
    .faq-visual .wrapper80 .title-wrap {
        gap: 8px;
    }
    .faq-visual .wrapper80 .title-wrap span {
        font-size: 20px;
    }
    .faq-visual .wrapper80 .title-wrap h2 {
        font-size: 66px;
    }
    .faq-visual .wrapper80 .sub-text {
        justify-content: flex-start;
    }
    .faq-visual .wrapper80 .sub-text p {
        width: 90%;
        text-align: left;
        color: rgba(255, 255, 255, 0.8);
    }
    .faq-visual .wrapper80 .sub-text p br.pc_br {
        display: none;
    }
    .faq-visual .wrapper80 .sub-text p br.m_br {
        display: block;
    }
    .faq-contents {
        padding: 70px 0 50px 0;
    }
    .faq-contents .wrapper80 .faq-head {
        padding: 15px 5px;
        min-height: 54px;
    }
    .faq-contents .wrapper80 .faq-head h2 {
        font-size: 24px;
    }
    .faq-contents .wrapper80 .faq-head .icon {
        width: 30px;
        height: 30px;
    }
    .faq-contents .wrapper80 .faq-list ul {
        gap: 10px;
        padding: 0 5px;
    }
    .faq-contents .wrapper80 .faq-list ul li {
        padding: 24px 15px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text {
        gap: 10px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text .number {
        font-size: 15px;
        min-width: 28px;
        min-height: 28px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text h3 {
        font-size: 18px;
    }
   
    .faq-contents .wrapper80 .faq-list ul li .faq-question .toggle-icon {
        width: 28px;
        height: 28px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-question .toggle-icon .icon-line {
        width: 15px;
        height: 1.75px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-answer {
        padding: 0 38px;
    }
    .faq-contents .wrapper80 .faq-list ul li .faq-answer p {
        font-size: 16px;
        line-height: 1.4;
        padding-top: 16px;
    }
    .faq-banner {
        padding: 48px 0;
    }
    .faq-banner .wrapper120 .banner-box {
        padding: 66px 19px;
        gap: 40px;
    }
    .faq-banner .wrapper120 .banner-box h2 {
        font-size: 38px;
        line-height: 1.2;
    }
    .faq-banner .wrapper120 .banner-box p {
        font-size: 16px;
        max-width: 220px;
    }
    .faq-banner .wrapper120 .banner-box span {
        font-size: 10px;
    }
}

@media screen and (max-width:768px) { 
    .faq-contents .wrapper80 .faq-list ul li .faq-question .faq-text h3 br {
        display: block;
    }
}