@CHARSET "UTF-8";

@font-face {
    font-family: "NotoSans";
    font-style: normal;
    /*src: url("../font/NotoSansKR-VariableFont_wght.ttf") format("truetype");*/
    src: url("../font/SourceHanSansK-VF.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_900";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Black.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_700";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Bold.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_500";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Medium.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_400";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Regular.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_300";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Light.ttf") format("truetype");
}
@font-face {
    font-family: "Roboto_100";
    font-style: normal;
    src: url("../font/Roboto/Roboto-Thin.ttf") format("truetype");
}
@font-face {
    font-family: "Pretendard";
    font-style: normal;
    src: url("../font/PretendardVariable.ttf") format("truetype");
}

:root {
    --gray-color1: #F7F7F7;
    --gray-color2: #f1f1f1;
    --gray-color3: #E2E2E2;
    --gray-color4: #ccc;
    --gray-color5: #999;
    --gray-color6: #666;
    --gray-color7: #111;

    --green-color0: #F2FAF8;
    --green-color1: #D9F1EC;
    --green-color2: #02A37F; /* 메인 */
    --green-color4: #003627;

    --blue-color: #4F95EE;
    --cloudy-blue-color: #5291AB;
    --red-color: #EE5D5D;
    --cloudy-red-color: #884361;
    --orange-color: #d9870f;
}
* {
    margin: 0;
    padding: 0;
    border: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    /*overflow: hidden;*/
    font-family: 'Pretendard',sans-serif;
    color: var(--gray-color7);
    font-size: 16px;
    font-synthesis: none;
}
*::-webkit-scrollbar {
    display: none;
}
/*
*::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
*::-webkit-scrollbar-track{
    background: transparent;
}
*::-webkit-scrollbar-thumb {
    background: var(--gray-color2);
    border-radius: 10px;
}
*/
html,body {
    width: 100%;
    height: 100%;
    scroll-behavior:smooth;
}
body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
    touch-action: pan-x pan-y;
}
body::-webkit-scrollbar {
    display: none;
}

input {
    width: 100%;
    height: 48px;
    padding: 0 10px;
    font-size: 14px;
    border: 1px solid var(--gray-color4);
    background: #fff;
    border-radius: 3px;
}
input[type="password"]::-ms-reveal {
    display: none;
}
input:-webkit-autofill {
    box-shadow: 0 0 0 1000px white inset !important;
    -webkit-box-shadow: 0 0 0 1000px white inset !important;
    -webkit-text-fill-color: #000 !important;
}
input[type=checkbox],
input[type=radio] {
    width: 15px;
    height: 15px;
    cursor: pointer;
}
input:focus, select:focus, textarea:focus {
    outline: none;
}
input::placeholder,
textarea::placeholder {
    color: var(--gray-color5);
}
input:disabled, select:disabled, textarea:disabled {
    background: var(--gray-color2);
    border: 1px solid var(--gray-color4);
}
select {
    width: 100%;
    height: 48px;
    padding: 0 30px 0 10px;
    font-size: 14px;
    border: 1px solid var(--gray-color4);
    background: #fff url("../img/icon_arrow.svg") calc(100% - 10px) center no-repeat;
    border-radius: 3px;
    appearance: none;
    cursor: pointer;
}
select option {
    font-size: 14px;
}
textarea {
    width: 100%;
    min-height: 96px;
    padding: 8px 10px;
    font-size: 14px;
    border: 1px solid var(--gray-color4);
    background: #fff;
    border-radius: 3px;
    line-height: 1.4;
    resize: none;
}
textarea::-webkit-scrollbar {
    display: block;
    width: 6px;
    height: 6px;
}
textarea::-webkit-scrollbar-track{
    background: var(--gray-color1);
}
textarea::-webkit-scrollbar-thumb {
    background: var(--gray-color2);
}
@media (max-width: 600px){
    input, select, textarea {
        font-size: 16px;
    }
}
button {
    height: 48px;
    padding: 0 10px;
    cursor: pointer;
    border-radius: 3px;
}
a {
    color: var(--cloudy-blue-color);
    text-decoration: underline;
}
ul, ol, li {
    list-style: none;
}
label,
label * {
    -webkit-tap-highlight-color: transparent; /* iOS Safari 및 Android */
    -webkit-touch-callout: none; /* iOS 오래 누르기 방지 */
}

.color_red {
    color: var(--red-color) !important;
}
.color_red * {
    color: var(--red-color);
}
.color_cloud_red {
    color: var(--cloudy-red-color) !important;
}
.color_cloud_red * {
    color: var(--cloudy-red-color);
}
.color_orange {
    color: var(--orange-color) !important;
}
.color_orange * {
    color: var(--orange-color);
}
.color_blue {
    color: var(--blue-color) !important;
}
.color_blue * {
    color: var(--blue-color);
}
.color_cloud_blue {
    color: var(--cloudy-blue-color) !important;
}
.color_cloud_blue * {
    color: var(--cloudy-blue-color);
}
.color_green,
.color_green * {
    color: var(--green-color2) !important;
}
.color_gray {
    color: var(--gray-color5) !important;
}
.color_black {
    color: var(--gray-color7) !important;
}
.border_red {
    border-color: var(--red-color) !important;
}
.border_blue {
    border-color: var(--blue-color) !important;
}
.sz13 {
    font-size: 13px;
}
.sz14 {
    font-size: 14px;
}
.cursor_point {
    cursor: pointer;
}

.flex {
    display: flex;
    align-items: center;
    gap: 8px;
}
.flex_column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.flex_between {
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    gap: 10px;
}
.none {
    display: none !important;
}

section {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    margin-top: 80px;
}
section > * {
    flex-shrink: 0;
}

@media (min-width: 600px) {
    section {
        max-width: 480px;
        height: 100%;
        min-height: 80%;
        /*margin-top: 60px;*/
        /*border: 1px solid var(--gray-color2);*/
    }
    .section__mpg {
        width: 100%;
        max-width: 100%;
        border: none;
    }
    .section__mpg > .section__contents.insight {
        width: 1180px;
        max-width: 1180px;
        margin: 0 auto;
    }
    .section__mpg:not(.account) > .section__contents:not(.insight) {
        width: 720px;
        max-width: 720px;
        margin: 0 auto;
    }
    .section__mpg.account > .section__contents:not(.insight) {
        width: 480px;
        max-width: 480px;
        margin: 0 auto;
    }
    .conts_wrap.box.variable {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    .conts_wrap.box.variable .subscribe_wrap {
        padding: 0;
    }
    .conts_wrap.box.variable .subscribe_wrap:not(:first-child) {
        border-top: 0;
        border-left: 1px solid var(--gray-color3);
    }
    .conts_wrap__variable {
        display: flex;
        gap: 50px;
    }
}
@media (min-width: 601px) and (max-width: 1199px) {
    .section__mpg:not(.account) > .section__contents:not(.insight) {
        padding: 40px 24px;
        width: 100%;
        margin: 0 auto;
    }
}

.banner_benefit {
    width: 100%;
    max-width: 480px;
    margin: 30px auto 0;
    cursor: pointer;
}
@media (max-width: 600px) {
    .banner_benefit {
        width: calc(100% + 48px);
        max-width: calc(100% + 48px);
        transform: translateX(-24px);
    }
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    color: var(--gray-color6);
    border-bottom: 1px solid var(--gray-color2);
    z-index: 100;
}

header .header_wrap {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
header .logo {
    width: 80px;
    height: 22px;
    background: url("../img/logo.svg") no-repeat center / contain;
    cursor: pointer;
}
/*header .logo.sh {
    width: 65px;
    background: url("../img/logo.svg") no-repeat left / auto 100%;
}*/
.header_lbtn {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.header_rbtn {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    cursor: pointer;
}
.header_rbtn .user-info {
    display: inline-block;
    position: relative;
    width: 22px;
    height: 40px;
    background: url("../img/ic_user.svg") no-repeat center center;
}
.header_rbtn .user-info.logined {
    display: inline-block;
    position: relative;
    width: 32px;
    height: 40px;
    background: url("../img/ic_user_logined.svg") no-repeat center center;
}
@media (min-width: 600px) {
    header.sml {
        max-width: 480px;
    }
    .section__mpg header .header_wrap {
        justify-content: flex-start;
    }
    .section__mpg .header_lbtn {
        display: none;
    }
}
@media (min-width: 601px) and (max-width: 1199px) {
    .section__mpg header .header_wrap {
        justify-content: flex-start;
        padding: 0 24px;
    }
    .section__mpg .header_lbtn {
        display: none;
    }
}
@media (min-width: 1200px) {
    .section__mpg header .header_wrap {
        width: 1200px;
    }
    .header_rbtn {
        right: 0;
    }
}

#gnbBtn {
    width: 20px;
    cursor: pointer;
}
#gnbBtn .line {
    width: 100%;
    border: 1px solid var(--gray-color6);
    /*transition: all 700ms cubic-bezier(.9, 0, .33, 1);*/
}
#gnbBtn .line-1 {
    transform: rotate(0) translate(0);
}
#gnbBtn.active .line-1 {
    transform: rotate(-45deg) translate(-4px, 6px);
}
#gnbBtn .line-2 {
    margin-top: 5px;
    /*transform: translate(0);*/
}
#gnbBtn.active .line-2 {
    /*transform: translate(-30px);*/
    opacity: 0;
}
#gnbBtn .line-3 {
    width: 15px;
    margin-left: 5px;
    margin-top: 5px;
    transform: rotate(0) translate(0);
}
#gnbBtn.active .line-3 {
    width: 100%;
    margin-left: inherit;
    transform: rotate(45deg) translate(-4px, -6px)
}

.check_label {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*align-items: center;*/
    align-items: flex-start;
    gap: 5px;
    font-size: 14px;
    color: var(--gray-color6);
    font-weight: 400;
}
.check_label label {
    /*width: 100%;*/
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    cursor: pointer;
}
.check_label .toggle_label_wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.check_label .toggle_label_wrap label {
    width: auto;
}
.file_label {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 2px;
}
.file_label label {
    flex-shrink: 0;
}
.file_label span {
    display: inline-block;
    font-size: 14px;
    border: 1px solid var(--gray-color7);
    color: var(--gray-color7);
    background-color: #fff;
    margin-left: 5px;
    height: 48px;
    line-height: 32px;
    padding: 8px 10px;
    border-radius: 3px;
    cursor: pointer;
}
.file_label.table span {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 30px;
    max-height: 40px;
    margin-left: 5px;
    padding: 0 10px;
    border: 1px solid var(--gray-color7);
    border-radius: 2px;
    background-color: #fff;
    color: var(--gray-color7);
    font-size: 11px;
    cursor: pointer;
}
.check_label label input,
.file_label input[type=file] {
    display: none;
}
.custom_checkbox {
    width: 16px;
    height: 16px;
    text-align: center;
    line-height: 16px;
    border: 1px solid var(--gray-color4);
    background-color: #fff;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}
.check_label.radio_wrap .custom_checkbox {
    width: 18px;
    height: 18px;
    border-radius: 50%;
}
.check_label.radio_wrap .custom_checkbox .radio_dot {
    height: 10px;
    width: 10px;
    border-radius: 50%;
    background: transparent;
}
.check_label.green .custom_checkbox {
    border: 1px solid var(--gray-color3);
    /*background-color: var(--gray-color3);*/
}
.check_label .custom_checkbox img {
    display: none;
    width: 12px;
    filter: grayscale(1) brightness(5);
}
.check_label.green .custom_checkbox img {
    display: block;
    filter: brightness(0) invert(1);
}
.checkbox_wrap .check_label .custom_checkbox img {
    display: block;
    filter: grayscale(1) brightness(5);
}
.check_label .custom_checkbox .custom_checkbox_text {
    display: none;
    color: var(--green-color2);
}
.check_label label input:checked + .custom_checkbox {
    border-color: var(--green-color2);
    background: var(--green-color2);
}
.check_label.radio_wrap input:checked + .custom_checkbox {
    border-color: var(--gray-color4);
    background: #fff;
}
.check_label.radio_wrap input:checked + .custom_checkbox .radio_dot {
    background: var(--green-color2);
}

.check_label.green label input:checked + .custom_checkbox {
    border-color: var(--green-color2);
    background-color: var(--green-color2);
}
.check_label label input:checked + .custom_checkbox img {
    display: block;
}
/*.checkbox_wrap label input:checked + .custom_checkbox img {*/
/*    filter: grayscale(0);*/
/*}*/
.check_label label .check_title {
    font-size: 15px;
    font-weight: 400;
    white-space: nowrap;
}
.check_label label .check_title.small {
    font-size: 13px;
}
.check_label .mark_wrap {
    display: flex;
    align-items: center;
    gap: 6px;
}
.check_label .mark_wrap .check_mark {
    display: inline-block;
    font-size: 12px;
    font-weight: 400;
    /*padding: 1px 10px;*/
    /*border: 1px solid var(--gray-color4);*/
    color: var(--gray-color5);
    /*border-radius: 20px;*/
}
.check_label label a {
    width: 8px;
    transform: rotate(180deg);
    display: flex;
    align-items: center;
}
.check_label label a img {
    width: 100%;
    filter: invert(0.8);
}
.check_label label .arrow_btn {
    width: 8px;
    transform: rotate(180deg);
    filter: invert(0.8);
    cursor: pointer;
}
.check_label.active .toggle_btn {
    transform: rotate(180deg);
}
.checkbox_wrap {
    width: 100%;
    border-top: 1px solid var(--gray-color2);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.checkbox_wrap.row_wrap {
    border: none;
    padding: 0;
    gap: 7px;
    flex-direction: row;
}
/*.checkbox_wrap.row_wrap .check_label {
    align-items: flex-start;
}
.checkbox_wrap.row_wrap .check_label label {
    width: auto;
}*/
.checkbox_wrap.row_wrap .check_label:not(:last-child) {
    width: 150px;
    flex-shrink: 0;
}
@media (max-width: 600px) {
    .checkbox_wrap.row_wrap {
        border: none;
        padding: 0;
        gap: 7px;
        flex-direction: column;
    }
}

/* 테이블 */
.content__table_scrollX {
    width: 100%;
    overflow-x: auto;
    scrollbar-width: initial;
    border-top: 1px solid var(--gray-color3);
    border-bottom: 1px solid var(--gray-color3);
}
.content__table_scrollX::-webkit-scrollbar {
    display: block;
    width: 10px;
    height: 10px;
}
.content__table_scrollX::-webkit-scrollbar-track{
    background: var(--gray-color1);
}
.content__table_scrollX::-webkit-scrollbar-thumb {
    background: var(--gray-color2);
}
.content__table_scrollX .content__table {
    min-width: 480px;
    border: none;
}
.content__table {
    width: 100%;
    border-top: 1px solid var(--gray-color3);
    border-bottom: 1px solid var(--gray-color3);
}
.content__table.line {
    padding: 20px 0;
    border-top: none;
    border-bottom: 1px solid var(--gray-color3);
}
.content__table.line:last-child {
    border-bottom: none;
}
.content__table.final {
    padding: 20px 0;
    border-top: 10px solid var(--gray-color2);
    border-bottom: none;
}
.content__table * {
    font-size: 14px;
}
.content__table_thead {
    width: 100%;
    height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    background-color: var(--gray-color1);
}
.line .content__table_thead,
.final .content__table_thead {
    background: none;
}
.content__table_thead.scroll {
    overflow-y: scroll;
}
.content__table_th {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 500;
    padding: 5px;
    text-align: center;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-right: 1px solid var(--gray-color2);
}
.content__table_th:last-child {
    border-right: none;
}
.content__table_tbody {
    width: 100%;
    /*height: 100%;*/
    max-height: 450px;
    /*border-bottom: 2px solid var(--gray-color3);*/
    overflow-y: auto;
}

.content__table_tr {
    width: 100%;
    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--gray-color2);
    /*line-height: 40px;*/
}
.line .content__table_tr,
.final .content__table_tr {
    border-top: none;
}
.edit .content__table_tr {
    height: 60px;
    align-items: flex-start;
}
.content__table_tr.pointer {
    cursor: pointer;
}
.content__table_td {
    width: 100%;
    height: 100%;
    min-height: 40px;
    overflow: hidden;
    /*white-space: nowrap;*/
    word-break: break-word;
    text-overflow: ellipsis;
    padding: 5px;
    border-right: 1px solid var(--gray-color2);
    /*line-height: 30px;*/
    display: flex;
    align-items: center;
}
.line .content__table_td {
    align-items: flex-start;
    border-right: none;
}
.edit .content__table_td {
    padding: 0 10px;
}
.edit .content__table_td > span {
    display: inline-block;
    height: 40px;
    line-height: 40px;
}
.content__table_td:last-child {
    border-right: none;
}
.content__table_td.tempTable {
    border-right: 0;
    width: 100px;
    height: 40px;
    align-items: center;
}
.content__table_td.center {
    text-align: center;
    justify-content: center;
}
.content__table_td.flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.content__table_th.flex_left,
.content__table_td.flex_left {
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 5px;
}
.content__table_td input {
    height: 40px;
}
.content__table_td button {
    height: 40px;
    flex-shrink: 0;
    border: 1px solid var(--gray-color7);
    border-radius: 3px;
    background-color: #fff;
    color: var(--gray-color7);
    font-size: 14px;
}
.content__table_td button.active {
    border: 1px solid var(--green-color2);
    color: var(--green-color2);
}
.content__table_td button.disabled {
    border: 1px solid var(--gray-color4);
    background-color: var(--gray-color1);
    color: var(--gray-color6);
}
.content__table_td button.readonly {
    border: 1px solid var(--gray-color4);
    color: var(--gray-color6);
}

.col-1 { flex: 1; }
.col-2 { flex: 2; }
.col-3 { flex: 3; }
.col-4 { flex: 4; }

.modal_wrap {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: #00000066;
    z-index: 1000;
}
.modal_wrap.active {
    display: flex;
}
.custom_alert {
    width: 280px;
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #fff;
    border: 1px solid var(--gray-color2);
}
.custom_alert p {
    font-size: 14px;
    line-height: 1.6;
}
.custom_alert .alt__contents_wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-top: 10px;
}
.custom_alert .alt__contents_wrap .alt__content {
    display: flex;
    gap: 5px;
    align-items: flex-start;
}
.custom_alert .alt__contents_wrap .alt__content p {
    flex-shrink: 0;
    width: 75px;
    line-height: inherit;
}
.custom_alert .alt__contents_wrap .alt__content span {
    color: var(--gray-color5);
    font-size: 14px;
    word-break: break-word;
}
.btn_wrap {
    width: 100%;
    display: flex;
    gap: 5px;
    align-items: center;
}
.btn_wrap button {
    width: 100%;
    border: 1px solid var(--green-color2);
    color: var(--green-color2);
    padding: 5px 10px;
    background-color: #fff;
}
.btn_wrap button.active {
    border: 1px solid var(--green-color2);
    color: #fff;
    background-color: var(--green-color2);
}
.content__btn_wrap {
    margin-top: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    gap: 10px;
}
.content__btn_wrap button {
    height: 40px;
    line-height: 24px;
    flex-shrink: 0;
    border: 1px solid var(--gray-color4);
    color: var(--gray-color6);
    border-radius: 3px;
    background-color: #fff;
    font-size: 14px;
    margin-left: 0;
}
.content__btn_wrap button.active {
    border: 1px solid var(--gray-color7);
    color: var(--gray-color7);
}
.text_btn {
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color6);
    cursor: pointer;
}
.text_btn.active {
    font-weight: 700;
    color: var(--gray-color7);
}

.div__line {
    width: 100%;
    height: 16px;
    position: relative;
    margin: 10px 0;
}
.div__line span {
    display: inline-block;
    padding: 0 10px;
    background-color: #fff;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color4);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 1;
}
.div__line hr {
    width: 100%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--gray-color3);
}

footer {
    width: 100%;
    height: 58px;
    background-color: #fff;
    position: relative;
}
footer .m_f {
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    font-size: 11px;
    color: var(--gray-color5);
    line-height: 58px;
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--gray-color6);
}
footer .w_f {
    display: none;
    /*width: 100%;*/
    border-top: 1px solid var(--gray-color6);
    position: absolute;
    left: 0;
    top: 0;
}
footer .inner {
    width: 1200px;
    padding: 0 0 94px;
    margin: 0 auto;
    position: relative;
}
footer .inner .inner-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 46px;
}
footer .inner .dir-menu {
    display: flex;
    /*padding-top: 46px;*/
}
footer .inner .dir-menu a {
    padding-right: 6px;
    vertical-align: middle;
    display: inline-block;
    text-decoration: none;
}
footer .inner .dir-menu a span {
    display: inline-block;
    margin-right: 6px;
    font-size: 14px;
}
footer .inner .dir-menu a::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    border-right: 1px solid #e2e2e2;
}
footer .inner .dir-menu a:last-child::after {
    border-right: 0;
}
footer .inner address {
    margin-top: 41px;
    font-style: normal;
    line-height: 24px;
    letter-spacing: -.5px;
}
footer .inner address span {
    margin-right: 20px;
    font-size: 14px;
    color: #999;
}
footer .inner address p {
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}
.family-site {
    position: relative;
    /*top: 28px;*/
    right: 0;
    padding: 0;
    /*margin: 0 auto;*/
    width: 160px;
    height: 47px;
    flex-shrink: 0;
}
.family-site .family-site-inner {
    padding: 14px 15px 15px;
    color: #111;
    cursor: pointer;
    border: 1px solid #666;
    background: #fff url("../img/arrow-family-dn.svg") 131px 50% no-repeat;
}
.family-site h2, .family-site strong {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
}
.family-site .family-site-inner--default .family-list
,.family-site:hover .family-site-inner:hover .family-list {
    height: 580px;
    bottom: 40px;
    border: 1px solid #666;
    border-bottom: 0
}
.family-list,
.family-site:hover .family-list {
    height: 0;
    overflow: hidden;
    -webkit-transition: height .25s;
    transition: height .25s;
}
.family-list::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 142px;
    margin: 0 15px;
    border-bottom: 1px solid #e2e2e2;
}
.family-list {
    position: absolute;
    left: 0;
    bottom: 56px;
    width: 160px;
    padding: 0 11px;
    background: #fff;
    z-index: 10;
}
.family-list .inn {
    overflow-y: scroll;
    height: 580px;
    width: 185px;
}
.family-list::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 142px;
    margin: 0 15px;
    border-bottom: 1px solid #e2e2e2;
}
.family-list .inn li {
    margin-bottom: 3px;
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -.05em;
    color: #666;
}
.family-list .inn li:first-child {
    padding-top: 14px
}
.family-list .inn li:last-child {
    padding-bottom: 30px
}
.family-list .inn li.group1 {
    padding-top: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
}
.family-list .inn li a {
    font-size: 12px;
    text-decoration: none;
    color: var(--gray-color6);
}
@media (min-width: 600px) {
    footer .m_f.mpg {
        display: none;
    }
    footer .w_f {
        display: block;
    }
}
@media (min-width: 601px) and (max-width: 1199px) {
    footer .w_f {
        display: block;
        width: 100%;
    }
    footer .inner {
        width: 100%;
        padding: 0 24px 94px 24px;
    }
    /*.family-site {
        position: relative;
        margin: 0 0 0 calc(100% - 160px);
    }*/
    footer .inner .dir-menu {
        display: block;
    }
}
@media (min-width: 1200px) {
    footer .m_f.mpg {
        display: none;
    }
    footer .w_f {
        display: block;
        width: 100%;
    }
}

/* 페이징 */
.nav__page_wrap {
    width: 100%;
    margin-top: 20px;
}
.nav__page_ul {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.nav__page_ul .page {
    min-width: 32px;
    height: 32px;
    padding: 0 5px;
    text-align: center;
    line-height: 32px;
    color: var(--gray-color6);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}
.nav__page_ul .page.now {
    background-color: var(--green-color2);
    color: #fff;
}
.nav__page_ul .page.dots,
.nav__page_ul .page.pdots{
    min-width: 10px;
    padding: 0;
}
.nav__page_ul .page.first,
.nav__page_ul .page.prev,
.nav__page_ul .page.next,
.nav__page_ul .page.last {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    min-width: 20px;
}
.nav__page_ul .page.next,
.nav__page_ul .page.last {
    transform: rotate(180deg);
}

.question {
    display: inline-block;
    width: 15px;
    height: 15px;
    margin-left: 5px;
    line-height: 13px;
    text-align: center;
    font-size: 11px;
    border: 1px solid var(--gray-color7);
    color: var(--gray-color7);
    border-radius: 50%;
    cursor: pointer;
}

/* 툴팁 모달 */
.tooltip_wrap {
    display: none;
    position: absolute;
    padding: 15px;
    background-color: #fff;
    border: 1px solid var(--gray-color2);
    box-shadow: 2px 2px 4px #0000001a;
    z-index: 10;
}
.tooltip_wrap.open {
    display: block;
}
.section__contents .tooltip_text {
    max-width: 185px;
    font-size: 14px;
    color: var(--gray-color5);
    text-align: left;
}
.tooltip_close {
    font-size: 14px;
    color: var(--gray-color7);
    text-align: right;
    margin-top: 10px;
    font-weight: 500;
    cursor: pointer;
}

/* 스위치 버튼 */
.switch__wrap {
    position: relative;
    width: 32px;
    height: 12px;
    background-color: var(--gray-color3);
    border-radius: 20px;
    cursor: pointer;
}
.switch__wrap input {
    display: none;
}
.switch__wrap:has(input:checked) {
    background-color: var(--green-color2);
}
.switch__wrap input:checked + span {
    left: calc(100% - 18px);
    border: 1px solid var(--green-color2);
}
.switch__wrap span {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--gray-color4);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.modal {position: fixed; top: 0; left: 0; width: 100%; height: 100%; display: flex; flex-direction: column; justify-content: center; align-items: center; background: #00000066; z-index: 9999;}
.modal-box {background: #fff; padding: 20px 25px; width: 280px; border: 1px solid var(--gray-color2); display: flex; flex-direction: column; gap: 10px;}
.modal-title { font-weight: 600; }
.modal-body { font-size: 14px; line-height: 1.6; word-break: keep-all;}
.modal-footer { margin-top: 10px; width: 100%; display: flex; align-items: center; justify-content: right; gap: 20px; }
.modal-cancel-btn { height: auto; background: none; padding: 0; font-size: 14px; font-weight: 400; color: var(--gray-color6); cursor: pointer; }
.modal-confirm-btn { height: auto; background: none; padding: 0; font-size: 14px; font-weight: 700; color: var(--gray-color7); cursor: pointer; }
.modal-close-wrap { width: 100%; padding: 10px 17px; display: flex; justify-content: space-between; align-items: center; background: #fff; border-bottom: 1px solid var(--gray-color4);}
.modal-close-btn { font-size: 20px; font-weight: 400; color: var(--gray-color7); cursor: pointer; }
#addrModalWrap { width: 500px;}
@media (max-width: 600px) {
    #addrModalWrap { width: auto;}
}
/*.modal-overlay { position: absolute; width: 100%; height: 100%; top: 0; left: 0; }*/
