@charset "utf-8";

.page_title {
    margin-bottom: 10px;
}

.center_talk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    /* margin: 0 2.5%; */
    margin-bottom: 40px;
    background: #f8f8f8;
    border-radius: 20px;
}

.center_talk .call_num {
    width: 80%;
    display: flex;
    align-items: center;
    gap: 4%;
}

.center_talk .call_time {
    font-size: 1.8rem;
    font-family: 'paperlogy-SB';
}

.center_talk .call_num .number {
    font-size: 3rem;
    font-weight: 700;
}

.chatx a,
.write {
    display: block;
    color: var(--main-color) !important;
    text-align: center;
    font-family: 'paperlogy-SB';
    padding: 10px 25px;
    border: 1px solid var(--main-color);
    background: #fff;
    border-radius: 50px;
    transition: .1s ease-in-out;
}

.chat a:hover,
.write:hover {
    background: var(--main-color);
    color: #fff !important;
}

.write {
    box-sizing: border-box;
    margin-top: 15px;
}

.customer_center {
    display: flex;
    gap: 8%;
    align-items: flex-start;
    justify-content: flex-start;
}

.t_nav_wrap {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 120px;
}

.tabnav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 35px 20px;
}

.tabnav li {
    padding: 10px 20px;
    padding-right: 10px;
}

.tabnav .center {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    /* padding-right: 80px; */
}

.tabnav .center a {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.tabnav li a {
    position: relative;
    font-size: 1.6rem;
    font-weight: 600;
    color: #999;
}

.tabnav li a::after {
    position: absolute;
    content: '';
    width: 0%;
    border-bottom: 4px solid #fff;
    bottom: -10px;
    left: 0;
    transition: .2s ease-in-out;
}

.tabnav a.active {
    color: #333;
    font-weight: 700;
}

.tabnav a.active::after {
    width: 100%;
    border-bottom: 4px solid var(--main-color);
}

.tabnav .noti,
.tabnav .faq {
    padding-bottom: 30px;
}

.tabcontent,
.content {
    width: 71%;
    box-sizing: border-box;
}

.tabcontent .body_con {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-top: 1px solid #ccc;
}

.tabcontent>div .con_1 {
    border-top: 3px solid #333;
}

.tabcontent .body_con:last-child {
    border-bottom: 1px solid #ccc;
}


.tabcontent .no,
.tabcontent .date {
    color: #999;
}

.tabcontent .type {
    color: var(--main-color);
}

.tabcontent .title {
    width: 70%;
    font-weight: 600;
}

.tabcontent .date {
    font-weight: 300;
    font-size: 1.4rem;
}



.content .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    padding: 20px 10px;
    font-size: 2rem;
    font-weight: 600;
}

.content .title .date {
    font-weight: 300;
    color: #999;
    font-size: 1.4rem;
}

.content .noti_body {
    height: 500px;
    border-bottom: 1px solid #333;
    padding: 20px 10px;
    box-sizing: border-box;
}

.tabcontent #faq {
    margin: 70px 0;
}

.tabcontent .sub_title {
    display: flex;
    justify-content: space-between;
    gap: 2%;
    align-items: center;
    margin-bottom: 10px;
    padding-right: 10px;
}

.tabcontent .sub_title a {
    /* border: 1px solid var(--main-color); */
    border-radius: 50px;
    padding: 5px 0;
    font-size: 1.4rem;
    color: var(--main-color);
    font-weight: 400;
    /* transition: .1s ease-in-out; */
}

/* .tabcontent .sub_title a:hover{
    background: var(--main-color);
    color: #fff;
} */

.t_nav_wrap {
    width: 17%;
}

.faq-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    /* gap: 2rem; */
    margin: 0 auto;
    padding: 0;
    list-style: none;
    border-top: 3px solid #333;
}

#faq .faq {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    transition: 0.3s ease;
    border-bottom: 1px solid #ccc;
    font-family: 'paperlogy-M';
}



.faq__question {
    padding: 20px 15px;
}

.faq__title {
    font-size: 1.7rem;
    color: #333;
    font-weight: normal;
    font-family: 'paperlogy-SB';
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid #fff;
    background: var(--a-bg);
    transition: 0.6s ease-in-out;
}

.faq__text {
    padding: 15px;
    color: #333;
    font-size: 1.6rem;
    line-height: 1.5;
}

.faq.active .faq__answer {
    max-height: 200px;
    border-top: 1px solid #ccc;
    /* transition: max-height 0.6s ease-in-out; */
}

.faq__btn {
    cursor: pointer;
    width: 100%;
    height: 4rem;
    display: flex;
    justify-content: right;
    align-items: center;
    position: absolute;
    top: 9px;
    right: 1rem;
    border: 0;
    border-radius: 50%;
    background: none;
    /* border: 1px solid var(--main-color); */
    font-size: 1.6rem;
}

.faq__btn:focus {
    outline: 0;
}

.faq__icon.close {
    display: none;
}

.faq__icon.open {
    color: var(--main-color);
    transition: .3s ease-in-out;
}

/* .faq.active .faq__icon.close {
    color: var(--main-color);
    display: block;
  } */

.faq.active .faq__icon.open {
    transform: rotate(-180deg);
}

@media screen and (max-width:970px) {
    .center_talk {
        padding: 30px 15px;
        margin-bottom: 25px;
    }

    .center_talk .call_num {
        width: auto;
    }

    .center_talk .call_num {
        flex-direction: column;
        align-items: flex-start;
    }


    .customer_center {
        flex-direction: column;
        gap: 30px;
    }

    .t_nav_wrap {
        width: 100%;
    }

    .tabnav {
        flex-wrap: wrap;
        justify-content: space-between;
        flex-direction: row;
        padding: 25px 10px 20px;
    }

    .t_nav_wrap {
        position: static;
    }

    .tabnav .center {
        width: 100%;
        text-align: center;
        padding: 0;
        margin-bottom: 0px;
        padding-right: 0px;
        padding-bottom: 20px;
    }

    .tabnav .noti,
    .tabnav .faq {
        padding-bottom: 0;
    }

    .tabnav .noti,
    .tabnav .faq,
    .tabnav .inqu {
        padding-top: 20px;
    }
    .tabnav li{
        padding-right: 20px;
    }

    .tabnav li a {
        font-size: 1.8rem;
    }

    .tabcontent,
    .content {
        width: 100%;
    }

    .tabcontent .title {
        width: 40%;
    }

    .tabcontent .body_con {
        padding: 15px 10px;
    }

    .tabcontent #faq {
        margin: 50px 0;
    }

    .tabcontent .sub_title {
        margin-bottom: 10px;
    }

    .tabcontent>div .con_1 {
        border-top: 2px solid #333;
    }

    .noti_body {
        font-size: 1.8rem;
        font-weight: 500;
    }
}