@CHARSET "UTF-8";

/* navigation */
.nav_menu {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    z-index: 1000;
}
.nav_menu.mobile {
    width: 100%;
    height: calc(100vh - 59px);
    top: 59px;
    background: rgb(17 17 17 / 30%);
}
.nav_menu.active {
    display: block;
}
.nav_menu.mobile.active {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nav__wrap {
    background-color: #fff;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    padding: 0 8px 4px;
}
.nav_menu.mobile .nav__wrap {
    padding: 0 16px;
    width: 100%;
    box-shadow: none;
}
.nav__wrap .level-high {
    display: block;
    min-width: 80px;
    font-size: 14px;
    color: #111;
    border-top: 1px solid #eee;
    white-space: nowrap;
    line-height: 1.5;
    text-align: center;
}
.nav__wrap .level-high a {
    display: block;
    width: 100%;
    font-size: 14px;
    color: var(--gray-color7);
    text-decoration: none;
    white-space: nowrap;
    padding: 8px 0;
}
.nav_menu.mobile .nav__wrap .level-high a {
    font-size: 16px;
    font-weight: 500;
    padding: 16px 0;
}
.nav__close {
    margin-top: 15px;
    width: 32px;
    height: 32px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .2);
    cursor: pointer;
}
.nav__close img {
    width: 8px;
}

/* 메인 화면 */
.my__title {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--gray-color6);
    padding-bottom: 10px;
}
.my__title h1 {
    font-size: 24px;
    font-weight: 700;
}
.my__title .title_wrap {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.my__title .title_wrap h1 {
    color: var(--gray-color5);
    cursor: pointer;
}
.my__title .title_wrap h1.active {
    color: var(--gray-color7);
}

.title_account {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
.title_account span {
    text-align: right;
    font-size: 13px;
}
.title_account img {
    cursor: pointer;
}

.page__menu {
    width: 100%;
    margin: 30px 0 10px;
}
.page__menu_ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.page__menu_ul li {
    width: 100%;
    /*height: 54px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding-bottom: 15px;
    border: none;
    cursor: pointer;
    border-bottom: 1px solid var(--gray-color3);
}
.page__menu_ul li.active {
    border-bottom: 2px solid var(--gray-color7);
}
.page__menu_ul .img_wrap {
    width: 40px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page__menu_ul li .img_wrap.user_info {
    background: url("../img/menu_user1_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.user_info {
    background: url("../img/menu_user1.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.user_subs {
    background: url("../img/menu_user2_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.user_subs {
    background: url("../img/menu_user2.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.user_pay {
    background: url("../img/menu_user3_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.user_pay {
    background: url("../img/menu_user3.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.user_camp {
    background: url("../img/menu_user4_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.user_camp {
    background: url("../img/menu_user4.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.user_inq {
    background: url("../img/menu_user5_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.user_inq {
    background: url("../img/menu_user5.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.news_subsc {
    background: url("../img/menu_news1_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.news_subsc {
    background: url("../img/menu_news1.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.news_acci {
    background: url("../img/menu_news2_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.news_acci {
    background: url("../img/menu_news2.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.news_addr {
    background: url("../img/menu_news3_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.news_addr {
    background: url("../img/menu_news3.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.news_his {
    background: url("../img/menu_news4_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.news_his {
    background: url("../img/menu_news4.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.cent_contact {
    background: url("../img/menu_ask3_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.cent_contact {
    background: url("../img/menu_ask3.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.cent_ask {
    background: url("../img/menu_ask1_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.cent_ask {
    background: url("../img/menu_ask1.svg") no-repeat center/contain;
}
.page__menu_ul li .img_wrap.cent_faq {
    background: url("../img/menu_ask2_gray.svg") no-repeat center/contain;
}
.page__menu_ul li.active .img_wrap.cent_faq {
    background: url("../img/menu_ask2.svg") no-repeat center/contain;
}
.page__menu_ul li p {
    font-size: 16px;
    font-weight: 500;
    color: #bbb;
}
.page__menu_ul li.active p {
    color: var(--gray-color7);
}
@media (max-width: 600px) {
    .page__menu_ul li .img_wrap {
        width: 26px;
        height: 25px;
    }
    .page__menu_ul li p {
        font-size: 14px;
    }
}
@media (min-width: 600px) {
    .my__title {
        position: absolute;
        left: 0;
        width: 100%;
    }
    .page__menu {
        margin: 80px 0 10px;
    }
}
@media (min-width: 601px) and (max-width: 1199px) {
    .my__title {
        padding: 0 24px;
    }
    .my__title .title_wrap {
        width: 60%;
    }
}
@media (min-width: 1200px) {
    .my__title {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 1200px;
    }
    .page__menu {
        margin: 80px 0 10px;
    }
}
@media (max-width: 600px) {
    .my__title .title_wrap {
        width: 80%;
    }
    .my__title .title_wrap h1 {
        font-size: 20px;
    }
}

.my__main_conts {
    width: 100%;
    margin-bottom: 30px;
}
.my__main_conts .title {
    font-size: 20px;
}
.my__main_conts .title span {
    font-size: 16px;
    color: var(--green-color2);
}
.conts_wrap {
    margin-top: 10px;
    width: 100%;
}
.conts_wrap.box {
    background-color: var(--gray-color1);
    border-radius: 4px;
    padding: 20px;
}
.conts_wrap.box.horizen {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.conts_wrap.box.horizen .subscribe_wrap {
    padding: 0;
}
.conts_wrap.box.horizen .subscribe_wrap:not(:first-child) {
    border-top: 0;
    border-left: 1px solid var(--gray-color3);
}
.variable_flex {

}
.conts_wrap > * {
    width: 100%;
}
.box_title_wrap {
    font-weight: 400;
    line-height: 1.5;
}
.box_title_wrap:not(:first-child) {
    padding: 15px 0;
    border-top: 1px solid var(--gray-color2);
}
/*.box_title_wrap span {
    font-size: 12px;
    color: var(--gray-color5);
}*/
.subscribe_wrap {
    width: 100%;
    text-align: center;
    padding-bottom: 15px ;
}
.subscribe_wrap:first-child {
    padding-top: 0;
}
.subscribe_wrap span {
    font-size: 12px;
}
.subscribe_wrap p {
    font-size: 22px;
    font-weight: 500;
    margin-top: 5px;
}
.subscribe_wrap p.active {
    font-weight: 900;
    /*color: var(--red-color) !important;*/
}
.conts_box_detail {
    border-top: 1px solid var(--gray-color2);
    padding-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.conts_box_detail li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.conts_box_detail li span {
    font-size: 13px;
}
.conts_box_detail li p {
    font-weight: 700;
}

/* info */
.alert_msg {
    color: var(--red-color);
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
}
.content__info {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid var(--gray-color3);
}
.content__info.edit {
    padding-bottom: 10px;
}
.content__info.terms {
    border-top: 10px solid var(--gray-color2);
    border-bottom: none;
}
.content__info_title {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.content__info_title h6 {
    font-size: 16px;
    font-weight: 600;
}
.content__info_title span {
    font-size: 13px;
    color: var(--gray-color5);
    text-align: right;
    font-weight: 400;
}
.content__info_forms {
    width: 100%;
}
.content__info_row {
    width: 100%;
    min-height: 50px;
    display: flex;
    flex-direction: row;
    align-items: center;
}
.content__info.contact .content__info_row {
    align-items: flex-start;
}
@media (max-width: 600px) {
    .content__info.contact .content__info_row {
        flex-direction: column;
    }
}
.content__info_row.between {
    justify-content: space-between;
}
.info_flex_title {
    display: flex;
    align-items: center;
    gap: 10px;
}
.terms_flex_title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}
.terms_flex_title .link {
    font-size: 12px;
    color: var(--gray-color5);
    text-decoration: underline;
    cursor: pointer;
}
.content__info_row.h60 {
    min-height: 60px;
    align-items: flex-start;
}
.content__info_row_title {
    width: 105px;
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
    font-size: 14px;
    font-weight: 500;
}
.content__info.contact .content__info_row_title {
    width: 200px;
    min-height: 50px;
    line-height: 1;
    padding-top: 13px;
    font-size: 16px;
}

.content__info_row_form {
    width: 100px;
    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    word-break: break-word;
    text-overflow: ellipsis;
    font-size: 14px;
    gap: 10px;
    flex: 3;
}
.content__info.contact .content__info_row_form {
    height: auto;
    align-items: flex-start;
}
.contact_custom_wrap {
    width: 70%;
}
@media (max-width: 600px) {
    .content__info.contact .content__info_row_title {
        width: 100%;
    }
    .content__info.contact .content__info_row_form {
        width: 100%;
        flex-direction: column;
    }
    .contact_custom_wrap {
        width: 100%;
    }
}
.content__info_row_form span {
    color: var(--gray-color6);
}
.content__info.contact .content__info_row_form span {
    display: inline-block;
    padding-top: 10px;
}
.content__info.contact .content__info_row_form span.flex_wrap {
    width: 100%;
    display: inline-flex;
    justify-content: space-between;
    padding-top: 0;
}
.content__info_row_form.top {
    height: auto;
    align-items: flex-start;
}
.content__info_forms input {
    height: 40px;
}
.content__info_forms button,
.content__info_forms .btn {
    height: 40px;
    line-height: 24px;
    flex-shrink: 0;
    border: 1px solid var(--gray-color7);
    border-radius: 3px;
    background-color: #fff;
    color: var(--gray-color7);
    font-size: 14px;
    margin-left: 0;
}
.content__info_forms button.active {
    border: 1px solid var(--green-color2);
    color: var(--green-color2);
}
.content__info_forms button.disabled {
    border: 1px solid var(--gray-color4);
    background-color: var(--gray-color1);
    color: var(--gray-color6);
}
.content__info_forms button.readonly {
    border: 1px solid var(--gray-color4);
    color: var(--gray-color6);
}

.my__sub_conts {
    width: 100%;
    margin: 30px 0;
}
.my__sub_conts .title {
    width: 100%;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 10px;
}
.my__sub_conts .title_wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}
.my__sub_conts .title_wrap .title {
    font-size: 18px;
    border-bottom: none;
    padding: 0;
}
.my__sub_conts .title_wrap span {
    display: inline-block;
    min-width: 135px;
    font-size: 13px;
    color: var(--gray-color5);
    text-align: right;
    word-break: break-word;
}
.my__sub_conts .title_wrap span.custom {
    min-width: 220px;
    height: auto;
}
@media (max-width: 600px){
    .my__sub_conts .title_wrap span.custom {
        min-width: 145px;
    }
}

.my__sub_conts .date_range {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--gray-color5);
    font-size: 14px;
    font-weight: 500;
}

.tab__wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 10px;
    margin-bottom: 20px;
}
.tab {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 113px;
    height: 48px;
    border-radius: 50px;
    color: var(--gray-color6);
    background-color: var(--gray-color2);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
}
.tab.small {
    width: 100%;
    height: 40px;
    margin-bottom: 30px;
}
.tab.active,
.tab[data-type=customHidden] {
    color: #fff;
    background-color: var(--gray-color7);
}
.tab.active,
.tab[data-type=customHidden] img {
    filter: brightness(2);
}
@media (max-width: 600px) {
    .tab {
        width: 100%;
    }
    .tab.small {
        height: 48px;
    }
}

.explain_text {
    display: inline-block;
    width: 100%;
    font-size: 14px;
    line-height: 1.5;
}
.explain_ul {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.explain_ul li {
    font-size: 14px;
    line-height: 1.5;
}

/* 카드뷰 */
.cardView__wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /*grid-template-rows: repeat(5, 1fr);*/
    /*grid-row-gap: 10px;*/
    border-top: 1px solid var(--gray-color3);
}
.cardView {
    width: 100%;
    padding: 20px;
    border-bottom: 1px solid var(--gray-color3);
    /*border-radius: 7px;*/
    display: flex;
    flex-direction: column;
    gap: 6px;
    background-color: #fff;
    /*transition: all ease 0.5s;*/
}
.cardView.toggle {
    padding: 0;
    /*max-height: 100px;*/
}
.cardView.active {
    /*background-color: var(--gray-color1);*/
    max-height: initial;
}
.cardView_cate {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: left;
    gap: 10px;
}
.cardView_cate .title {
    display: inline-block;
    width: 85px;
    flex-shrink: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color5);
    padding: 0;
}
.cardView_cate .content {
    font-size: 14px;
    font-weight: 400;
    word-break: break-all;
    white-space: pre-line;
    line-height: 1.3;
}
.cardView_cate .content a {
    font-size: 14px;
    font-weight: 400;
    word-break: break-all;
    white-space: pre-line;
    line-height: 1.3;
    text-decoration: underline;
    color: var(--gray-color7);
    cursor: pointer;
}
.cardView_cate.detail,
.cardView_cate.reply {
    align-items: flex-start;
}
.cardView_cate.detail .content,
.cardView_cate.reply .content {
    font-size: 14px;
    color: var(--gray-color5);
}

.cardView_toggle_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    /*padding: 20px;*/
    padding: 20px 10px 20px 0;
}
.cardView.active .cardView_toggle_wrap img {
    transform: rotate(180deg);
}
.cardView_toggle_content {
    height: 0;
    overflow: hidden;
}
.cardView.active .cardView_toggle_content {
    height: auto;
    /*margin: 0 20px;*/
    /*padding: 20px 60px 20px 20px;*/
    padding: 20px 30px 20px 10px;
    border-top: 1px solid var(--gray-color3);
    background-color: var(--gray-color1);
}
.cardView_toggle_content h6 {
    font-size: 12px;
    font-weight: 400;
}
.cardView_toggle_content p {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray-color6);
    text-align: left;
    margin: 5px 0;
}

/* 검색창 */
.search__wrap {
    width: 100%;
    height: 40px;
    padding: 5px 7px;
    border: 1px solid var(--gray-color4);
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    position: relative;
}
.search__wrap img {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.search__wrap input {
    height: 100%;
    border: none;
    padding-right: 40px;
}

.cate__toggle_wrap {
    width: 100%;
    /*height: 40px;*/
    border-radius: 2px;
    border: 1px solid var(--gray-color4);
    background-color: var(--gray-color1);
}
.cate__toggle {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 15px;
    cursor: pointer;
}
.cate__toggle p {
    font-size: 14px;
    font-weight: 500;
}
.cate__toggle.active + .cate__content_wrap {
    height: auto;
    padding: 20px 0;
    border-top: 1px solid var(--gray-color3);
}
.cate__content_wrap {
    /*width: 100%;*/
    margin: 0 15px;
    border: none;
    /*height: 0;*/
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
}
.cate__content {
    display: none;
}
.cate__content.active {
    display: block;
}
.cate__content .checkbox_wrap {
    border: none;
    padding: 0;
}

.cate__switch_wrap {
    /*width: 85px;*/
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.cate__switch_wrap .prev {
    transform: rotate(90deg);
    filter: invert(1) brightness(0.7);
    cursor: pointer;
}
.cate__switch_wrap .next {
    transform: rotate(-90deg);
    filter: invert(1) brightness(0.7);
    cursor: pointer;
}
.cate__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.cate__switch .now {
    color: var(--green-color2);
    font-weight: 600;
}
.cate__switch .total {
    color: var(--gray-color5);
    font-weight: 400;
}
/*
.cate__switch img {
    filter: grayscale(1) brightness(1.7);
    cursor: pointer;
}
.cate__switch img.now {
    filter: initial;
}*/

.explain_wrap {
    width: 100%;
    height: 40px;
    border-bottom: 1px solid var(--gray-color2);
    overflow: hidden;
    transition: all ease 0.5s;
}
.explain_wrap img {
    transition: all ease 0.5s;
}
.explain_wrap.open img {
    transform: rotate(180deg);
}
.explain_title {
    width: 100%;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 7px 0;
    cursor: pointer;
}
.explain_wrap .num {
    display: inline-block;
    width: 25px;
    height: 25px;
    background-color: var(--green-color1);
    border-radius: 50%;
    flex-shrink: 0;
    text-align: center;
    line-height: 25px;
    font-weight: 700;
    color: var(--green-color2);
}
.explain_wrap p {
    font-size: 14px;
    text-align: left;
    word-break: break-all;
    white-space: pre-line;
}
.explain_wrap .text {
    display: inline-block;
    width: 100%;
    min-height: 35px;
    font-size: 14px;
    text-align: left;
    color: var(--gray-color6);
    background: var(--gray-color1);
    word-break: break-word;
    white-space: pre-line;
    line-height: 1.5;
    padding: 15px;
    border-top: 1px solid var(--gray-color2);
}

.banner_wrap {
    width: 100%;
    margin-bottom: 30px;
}
.banner_wrap .banner {
    width: 100%;
    height: 280px;
    background: url("../img/banner_1.svg") no-repeat center/cover;
}
.banner_wrap .banner_text {
    display: inline-block;
    margin-top: 15px;
    width: 100%;
    word-break: keep-all;
    font-size: 14px;
    line-height: 1.4;
}