/* 공통 */
* {
    list-style: none;
}

.container {
    background: #fff;
}

/* 고객센터 */

.support_wrap {
    padding: 0 30px;
    margin-top: 60px;
}

.support_wrap .logo_box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.support_wrap .logo_box img {
    width: 90px;
    height: auto;
}

.support_wrap .logo_box p {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.support_wrap .txt_box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0 60px;
}

.support_wrap .txt_box > div {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 16px;
}

.support_wrap .txt_box > div h4 {
    font-weight: 500;
}

.support_wrap .txt_box > div p {
    color: #828286;
    font-weight: 400;
}

.support_wrap .btn_box {
    display: flex;
    gap: 25px;
}

.support_wrap .btn_box button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 50%;
    height: 50px;
    border-radius: 10px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.support_wrap .btn_box button:first-child {
    background: #FDCF43;
    color: #121212;
}

.support_wrap .btn_box button:last-child {
    background: #121212;
    color: #fff;
}

.support_wrap .terms_box {
    display: flex;
    margin-top: 85px;
}

.support_wrap .terms_box a {
    position: relative;
    display: block;
    width: 50%;
    font-size: 14px;
    font-weight: 400;
    color: #909090;
    text-align: center;
    cursor: pointer;
}

.support_wrap .terms_box a:first-child:before {
    content: '|';
    position: absolute;
    top: 0;
    right: 0;
    color: #ccc;
}

/* 이용약관 */
.terms_wrap {
    padding: 20px 30px;
}

.terms_wrap > div {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.terms_wrap > div h2 {
    font-size: 16px;
    font-weight: 600;
}

.terms_wrap > div h4 {
    font-size: 14px;
    font-weight: 600;
}

.terms_wrap > div p {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 400;
}

.terms_wrap > div .span_box {
    margin: 5px 0;
    padding-left:12px;
}

.terms_wrap > div .span_box span {
    margin-top: 5px;
    display: block;
    font-weight: 400;
}

.terms_wrap > div .span_box span.s_span {
    padding-left: 12px;
}

.terms_wrap > div .box {
    border:1px solid #111;
    padding:4px;
    margin-top:6px;
}

.terms_wrap > div .box h3 {
    font-size:13px;
}

.terms_wrap > div .box > div {
    margin-top: 15px;
}

.terms_wrap > div .box > div h4 {
    font-size: 12px;
}

.terms_wrap > div .box > div p {
    font-size: 12px;
}

.terms_wrap > div .box > div p a {
    color: #3B82F6;
}

.terms_wrap > div .flex > div {
    margin-top: 0;
}

.terms_wrap > div .flex img {
    max-width:80px;min-width:60px;
}

.term_box1,
.term_box2 {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.term_box1.active,
.term_box2.active {
    max-height: 100%;
    opacity: 1;
}
/* 셀렉트박스 */

.terms_wrap .select_box {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom:30px;
}

.terms_wrap .select_box .term-select {
    height: 44px;
    position: relative;
    outline: 1px solid #ccc;
    border-radius: 5px;
    color: #121212;
    box-sizing: border-box;
}

.terms_wrap .select_box .term-selected {
    display: flex;
    align-items: center;
    height: 44px;
    padding: 10px;
}

.terms_wrap .select_box .term-selected i {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(0);
    transition: transform 0.3s ease;
}

.terms_wrap .select_box .term-select.open .term-selected i {
    transform: translateY(-50%) rotate(180deg);
    transition: transform 0.3s;
}

.terms_wrap .select_box .select-items {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    width: 100%;
    top: 110%;
    left: 0;
    z-index: 99;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.terms_wrap .select_box .term-select.open .select-items {
    max-height: 290px;
    opacity: 1;
}

.terms_wrap .select_box .select-items div {
    padding: 10px;
}

.terms_wrap .select_box .select-items div:hover,
.terms_wrap .select_box .select-items .same-as-selected {
    background: #F7F7F8;
}

/* 공지 */

.notice_container {
    background: #F7F7F8;
}

.notice_wrap {
    padding: 30px 15px;
}

.notice_wrap ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.notice_wrap ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 8px 15px;
    border-radius: 15px;
    box-shadow: 0 0 5px 0 rgba(0,0,0, 0.06);
    background: #fff;
}

.notice_wrap ul li h3 {
    width: 90%;
    font-size: 16px;
    font-weight: 500;
}

.notice_wrap ul li span {
    font-size: 14px;
    font-weight: 400;
    color: #828286;
}

.notice_wrap ul li i {
    position: absolute;
    top: 15px;
    right: 15px;
}