@charset "UTF-8";

:root {
    --wrap-width: 1390px;
    --key-color: #3268f0;
    --key-color-deep: #1e4bbb;
    --big-font: 28px;
    --title-font: 24px;
    --mid-font: 18px;
    --sm-font: 16px;
    --main-title: 28px;
    --inp-round: 4px;
    --inp-color: #a4a9b1;
}

body {
    font-weight: 400;
    line-height: 140%;
}

.wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}

header {
    position: relative;
    width: var(--wrap-width);
    margin: 0 auto;
}
header h1 {
    font-size: 0;
}

.util {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.util > ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
    padding: 16px 0;
}
.util > ul > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    height: 36px;
    background-color: #f5f5f5;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 0 12px;
    transition: 0.3s;
}
.util > ul > li > a:hover {
    background-color: #eee;
    border-color: #e4e4e4;
}
.util > ul > li > a.name {
    border: none;
    background-color: #fff;
}

.gnb {
    display: flex;
    justify-content: space-between;
    position: absolute;
    font-size: 22px;
    width: 100%;
    background-color: var(--key-color);
    border-radius: 8px;
    overflow: hidden;
}
.gnb > li {
    flex: 1;
    height: 100%;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
    transition: 0.5s;
}
.gnb > li:hover {
    background-color: rgba(0, 0, 0, 0.1);
}
.gnb > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    font-weight: 600;
    color: #fff;
    height: 70px;
}
.gnb > li .submenu {
    height: 0;
    transition: 0.3s;
}
.gnb:hover > li .submenu {
    height: 136px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
}
.gnb > li:last-child .submenu {
    border-right: none;
}
.gnb > li .submenu > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--mid-font);
    color: #fff;
    padding: 10px 0;
}
.gnb > li .submenu > ul > li > a:hover {
    text-decoration: underline;
}

main {
    display: flex;
    gap: 60px;
    flex: 1;
    width: var(--wrap-width);
    padding: 70px 0;
    margin: 0 auto;
}

.lnb {
    width: 240px;
}
.lnb > h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    font-weight: 800;
    height: 160px;
    border-bottom: 5px solid var(--key-color);
}
.lnb-menu > li {
    border-bottom: 1px solid #ddd;
}
.lnb-menu > li > a {
    display: flex;
    align-items: center;
    font-weight: 600;
    height: 72px;
    padding: 0 20px;
}
.lnb-menu > li.active > a {
    color: var(--key-color);
    font-weight: 700;
}

.lnb-link {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 20px;
    margin: 30px 0;
}
.lnb-link > li > a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--mid-font);
    height: 60px;
    border-bottom: 1px solid #ddd;
}
.lnb-link > li:last-child > a {
    border-bottom: none;
}

.lnb-tel > li > div {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 10px;
}
.lnb-tel > li > div .imgBox {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #eee;
}
.lnb-tel > li > div .infoBox {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.lnb-tel > li > div .infoBox span {
    font-size: var(--sm-font);
}
.lnb-tel > li > div .infoBox strong {
    font-size: var(--mid-font);
    font-weight: 800;
}

/****** Main ******/
.mainWrapper {
    width: 1390px;
    margin: 0 auto;
    padding: 90px 0 70px;
}
.mainLink > ul {
    display: flex;
    gap: 35px;
    width: 100%;
}
.mainLink > ul > li {
    flex: 1;
    background-color: #f6f6f6;
    border-radius: 12px;
    overflow: hidden;
}
.mainLink > ul > li > div {
    padding: 34px 30px;
    transition: 0.3s;
}
.mainLink > ul > li > div h3 {
    font-size: 24px;
    padding-left: 10px;
}
.mainLink > ul > li > div > a {
    display: block;
    color: #fff;
    z-index: 2;
}
.mainLink > ul > li > div > a > p {
    font-size: 16px;
    line-height: 130%;
    font-weight: 500;
    height: 100px;
    padding-top: 20px;
    padding-left: 10px;
}
.mainLink .icon-change .on {
    display: none;
}
.mainLink > ul > li > div.hover-1 {
    background-color: #7366EE;
}
.mainLink > ul > li > div.hover-2 {
    background-color: #24AA9F;
}
.mainLink > ul > li > div.hover-3 {
    background-color: #748B99;
}
.mainLink > ul > li > div.hover-4 {
    background-color: #9274A6;
}
.mainLink > ul > li > .hoverbox:hover h3,
.mainLink > ul > li > .hoverbox:hover p {
    color: #fff;
}
.mainLink > ul > li > div.hover-1:hover {
    background-color: #4333CE;
}
.mainLink > ul > li > div.hover-2:hover {
    background-color: #007C71;
}
.mainLink > ul > li > div.hover-3:hover {
    background-color: #3E5969;
}
.mainLink > ul > li > div.hover-4:hover {
    background-color: #8A57AC;
}
/*
.mainLink > ul > li > div:hover img.normal {
    display: none;
}
.mainLink > ul > li > div:hover img.on {
    display: block;
}
*/
.mainLink .linkbox {
    margin-top: 30px;
}
.mainLink .linkbox a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 20px;
    margin-top: 10px;
    transition: 0.3s;
}
.mainLink .linkbox a:hover {
    background-color: #fcca00;
    border-color: #fcca00;
}
.mainLink .linkbox a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/link-arrow-small.png) no-repeat center center;
}
.mainLink .bottom {
    display: flex;
    justify-content: space-between;
    align-items: end;
    padding-right: 10px;
}
.mainLink .bottom .arrowBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 50%;
    margin-bottom: 6px;
}
.mainLink .flex-between {
    padding: 24px 0;
}
.mainLink .flex-between h2 {
    font-size: var(--main-title);
    font-weight: 700;
}
.mainLink .flex-between a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    border: 1px solid #ddd;
    padding: 10px 10px 10px 16px;
    border-radius: 6px;
    transition: 0.3s;
}
.mainLink .flex-between a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/link-arrow-small.png) no-repeat center center;
}
.mainLink .flex-between a:hover {
    background-color: #f7f7f7;
}
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sec-area {
    display: flex;
    justify-content: space-between;
    gap: 35px;
    margin-top: 60px;
}
.sec-area > div {
    flex: 1;
}

.service-area .linkArea > div.listLink {
    background: #f6f6f6;
    padding: 34px 30px;
    transition: 0.3s;
}
.listLink .linkbox {
    margin-botto: 30px;
}
.listLink .linkbox a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.listLink .linkbox a:hover {
    background-color: #fcca00;
    border-color: #fcca00;
}
.listLink .linkbox a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/link-arrow-small.png) no-repeat center center;
}

/* 1. 실제 라디오 버튼은 화면에서 숨깁니다. */
input[name="tabs"] {
    display: none;
}
/* 2. 탭 메뉴 스타일링 */
.tab-menu {
    position: relative;
    display: flex;
    gap: 30px;
    border-bottom: 1px solid #ddd;
}
.tab-menu a {
    position: absolute;
    right: 0;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 18px;
    padding: 0 6px;
    border-radius: 5px;
    transition: 0.3s;
}
.tab-menu a::after {
    content: "+";
    display: block;
    color: #555;
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 5px;
}
.tab-menu a:hover {
    background-color: #f5f5f5;
}
.tab-menu label {
    font-size: var(--main-title);
    font-weight: 600;
    color: #999;
    padding: 0 2px 25px 2px;
    cursor: pointer;
    transition: 0.3s;
}
.tab-menu label:hover {
    color: #555;
}
/* 3. 탭 내용 기본값: 모두 숨김 */
.tab-content .item {
    display: none;
}
.tab-content .list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-right: 5px;
    transition: 0.3s;
}
.tab-content .list li::after {
    content: "";
    width: 30px;
    height: 30px;
    background: #f7f7f7 url(../img/link-arrow-small.png) no-repeat center center;
    border-radius: 50%;
}
.tab-content .list li a {
    display: block;
    padding: 18px 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 640px;
}
.tab-content .list li:hover {
    background-color: #f7f7f7;
}
/* 핵심 로직: 체크된 라벨 스타일 변경 */
#tab1:checked ~ .tab-menu label[for="tab1"],
#tab2:checked ~ .tab-menu label[for="tab2"],
#tab3:checked ~ .tab-menu label[for="tab3"] {
    border-bottom: 6px solid #e9474d;
    color: #212121;
    font-weight: 700;
}
/* 핵심 로직: 체크된 라디오 버튼에 따라 해당하는 내용 노출 */
#tab1:checked ~ .tab-content #content1,
#tab2:checked ~ .tab-content #content2,
#tab3:checked ~ .tab-content #content3 {
    display: block;
}

.service-area > .linkArea {
    display: flex;
    gap: 35px;
}
.service-area .linkArea > div {
    flex: 1;
    color: #222;
    text-align: center;
    height: 320px;
    border-radius: 12px;
    transition: 0.3s;
}
.service-area > h3 {
    font-size: var(--main-title);
    font-weight: 700;
    margin-bottom: 30px;
}
.service-area .linkArea > div h3 {
    margin: 10px 0 15px 0;
}
.service-area .linkArea > div p {
    font-size: 16px;
    line-height: 130%;
}
.service-area .linkArea .box-1 {
    display: flex;
    gap: 30px;
    flex-direction: column;
}
.service-area .linkArea .box-2 {
    background-color: #F7F7F7;
}
.service-area .linkArea .box-1 > div {
    flex:1;
    display: flex;
    gap: 6px;
    align-items: center;
    text-align: left;
    background-color: #F7F7F7;
    border-radius: 12px;
    padding-left: 16px;
}
.service-area .linkArea .box-1 > div p {
    font-size: 20px;
}
.service-area .linkArea .box-1 > div strong {
    font-size: 24px;
    display: block;
    padding-top: 5px;
}
    /*
    .service-area .linkArea > div:hover {
        background: #eee;
        /*background-color: #002942;*
    }*/

.service-area .linkArea > div.listLink {
    background: #f6f6f6;
    padding: 25px;
    transition: 0.3s;
}
.listLink .linkbox {
    margin-botto: 30px;
}
.listLink .linkbox a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    font-weight: 500;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.listLink .linkbox a:hover {
    background-color: #fcca00;
    border-color: #fcca00;
}
.listLink .linkbox a::after {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/link-arrow-small.png) no-repeat center center;
}

.memberCorp {
    background-color: #f4f5f9;
    padding: 70px 0;
}
.memberCorp .title {
    font-size: 16px;
    margin-bottom: 30px;
}
.memberCorp .title h3 {
    font-size: var(--main-title);
    margin-bottom: 6px;
}
.content-container {
    width: 1390px;
    margin: 0 auto;
}
.grid-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    width: 100%;
}
.grid-container > li {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    font-size: 16px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 1px 1px 14px rgba(0, 0, 0, 0.06);
}
.grid-container > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.grid-container > li.moreBtn {
    font-family: "Poppins", "Pretendard", sans-serif;
    border: 1px solid #e5e5e5;
    overflow: hidden;
    transition: 0.3s;
}
.grid-container > li.moreBtn a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background-color: #eff1f7;
    transition: 0.3s;
}
.grid-container > li.moreBtn a > strong {
    font-size: 80px;
    font-weight: 800;
    line-height: 90%;
    transition: 0.3s;
}
.grid-container > li.moreBtn a:hover {
    color: #fff;
    background-color: #3d4766;
}
.grid-container > li.moreBtn a:hover > strong {
    color: #fff;
}

/****** Sub ******/
.container {
    flex: 1;
    padding-top: 40px;
}

.page-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 0 20px;
}
.page-title h3 {
    font-size: 26px;
    font-weight: 700;
}
.page-title > div {
    display: flex;
    gap: 5px;
}
.page-title .btn-title {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.content {
    margin-top: 42px;
}

.searchBox {
    display: flex;
    align-items: center;
    gap: 6px;
}
.searchBox select,
.searchBox input {
    height: 60px !important;
    padding-left: 16px !important;
}
.searchBox input {
    flex: 1;
}

.btn-search {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #3268f0;
    border-radius: 8px;
    transition: 0.3s;
}
.btn-reset {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: 0.3s;
}

.tableArea {
    padding-top: 40px;
}
.tb-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--mid-font);
    margin-bottom: 15px;
}
.tb-top label {
    margin-right: 3px;
}

.d-tb-list {
    font-size: 18px;
    width: 100%;
    border-top: 1px solid #777;
}
.d-tb-list th,
.d-tb-list td {
    text-align: center;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    padding: 15px 25px;
}
.d-tb-list th:last-child,
.d-tb-list td:last-child {
    border-right: none;
}
.d-tb-list th {
    font-weight: 500;
    background-color: #f7f7f7;
}
.d-tb-list td {
    font-weight: 400;
}
.d-tb-list .title {
    font-weight: 700;
}
.d-tb-list .title a:hover {
    text-decoration: underline;
}
.d-tb-list .file a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 34px;
    height: 34px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #f9f9f9;
    transition: 0.3s;
}
.d-tb-list .file a:hover {
    background-color: #f0f0f0;
}
.d-tb-list .nodata {
    font-weight: 600;
    padding: 30px;
}

.d-tb-view {
    font-size: 18px;
    width: 100%;
    border-top: 1px solid #777;
}
.d-tb-view th,
.d-tb-view td {
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding: 15px 25px;
}
.d-tb-view th {
    font-weight: 500;
    background-color: #f7f7f7;
}

.labelArea input {
    margin-right: 3px;
}
.labelArea label {
    vertical-align: middle;
    margin-right: 10px;
}

.viewForm {
    padding: 30px 20px;
    border-top: 1px solid #777;
    border-bottom: 1px solid #ddd;
}
.viewForm .title {
    padding: 0 8px 16px 8px;
    border-bottom: 1px solid #ddd;
}
.viewForm .title strong {
    font-size: var(--title-font);
}
.viewForm .title p {
    font-size: var(--sm-font);
    color: #777;
    margin-top: 6px;
}
.viewForm .title p span {
    display: inline-block;
    line-height: 12px;
    border-left: 1px solid #ddd;
    padding: 0 10px;
}
.viewForm .title p span:first-child {
    border-left: none;
    padding-left: 0;
}
.viewForm .detail {
    font-size: var(--mid-font);
    padding: 30px 8px;
}
.viewForm .add-file {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-radius: 5px;
    background-color: #f2f2f2;
    padding: 20px;
}
.viewForm .add-file a {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: var(--sm-font);
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 15px;
}
.viewForm .add-file a::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url(../img/icon-file.png) no-repeat center center;
}
.viewForm .add-file a:hover {
    text-decoration: underline;
}

.pasing {
    padding-top: 40px;
}
.pasing > ul {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.pasing > ul > li {
    display: flex;
    gap: 3px;
}
.pasing > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--sm-font);
    font-weight: 400;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    transition: 0.3s;
}
.pasing > ul > li > a:hover {
    background-color: #eee;
}
.pasing > ul > li > a.on {
    color: #fff;
    background-color: #454e63;
    border: 1px solid #454e63;
}

.withTitle {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-top: 1px solid #777;
    padding: 30px 0 0 0;
}
.withTitle h4 {
    font-size: 24px;
}
.withTitle p {
    font-size: 16px;
}
.ruleBox {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}
.ruleBox h5 {
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: #24aa9f;
    padding: 20px 0;
}
.ruleBox > div {
    flex: 1;
    font-size: var(--mid-font);
    border: 1px solid #24aa9f;
    border-radius: 10px;
    overflow: hidden;
}
.ruleBox > div > p {
    padding: 24px;
}
.rule-detail {
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
}
.rule-detail h5 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 35px;
}
.rule-detail h5 > strong {
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid #333;
}
.rule-detail h5 > strong > span {
    font-weight: 400;
}
.rule-detail > div > ul {
    font-size: 18px;
    padding-left: 20px;
}
.rule-detail > div > ul > li {
    list-style: decimal;
    padding: 6px 0;
}
.rule-detail > div > ul > li > ul {
    font-size: 16px;
    padding-left: 28px;
}
.rule-detail > div > ul > li > ul > li {
    list-style-type: hangul;
}

/** FAQ **/
.accordion-group {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
}
.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    background: #fff;
}
.accordion-item:last-child {
    border-bottom: none;
}
.accordion-header {
    width: 100%;
    padding: 24px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: none;
    cursor: pointer;
    font-size: 20px;
    font-weight: 600;
    transition: background 0.2s;
}
.accordion-header:hover {
    background-color: #f8fafc;
}
.accordion-item.is-active .accordion-header {
    background-color: #f1f5f9;
    color: var(--key-color);
}
.accordion-header > p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.accordion-header .icon {
    position: relative;
    width: 14px;
    height: 14px;
    opacity: 0.5;
    transition: transform 0.3s;
}
.accordion-header .icon::before,
.accordion-header .icon::after {
    content: "";
    position: absolute;
    background-color: currentColor;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.accordion-header .icon::before {
    width: 100%;
    height: 2px;
}
.accordion-header .icon::after {
    width: 2px;
    height: 100%;
}
.accordion-item.is-active .accordion-header .icon {
    transform: rotate(45deg);
    opacity: 1;
}
.accordion-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s;
    background-color: #fff;
}
.accordion-item.is-active .accordion-body {
    grid-template-rows: 1fr;
}
.accordion-content {
    overflow: hidden;
}
.accordion-content p {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 40px 26px 50px;
    margin: 0;
    color: #475569;
}

.qmark::before {
    content: "Q";
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #d8dbe5;
    background-color: #e6e9f5;
}
.amark::before {
    content: "A";
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #7293ff;
}
.amark > span {
    flex: 1;
}

/** Service  **/
.service {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
}
.service dl dt {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 24px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 15px;
}
.service dl dt::before {
    content: "";
    width: 25px;
    height: 3px;
    background-color: var(--key-color);
}
.service dl dd {
    padding-left: 5px;
}
/** Service 
.service dl {
    display: flex;
    margin-bottom: 10px;
    border: 2px solid #a2b4e2;
    border-radius: 10px;
    overflow: hidden;
}
.service dl dt {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--key-color);
    font-weight: 700;
    text-align: center;
    width: 250px;
    background-color: #f5f5f5;
}
.service dl dd {
    flex: 1;
    font-size: 18px;
    padding: 20px 30px;
}
.service dl dd.notext {
    background-color: #f5f5f5;
}
**/

/** Login **/
.loginWrap {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding-top: 30px;
}
.login-inner {
    font-size: var(--mid-font);
}
.login-inner > p {
    font-size: var(--sm-font);
}
.login-inner .infotext {
    font-size: var(--big-font);
    text-align: center;
}
.login-inner ul {
    margin: 20px 0;
}
.login-inner li {
    padding: 6px 0;
}
.login-inner li .check {
    color: #ff4242;
    font-size: var(--sm-font);
    padding: 8px;
}
.login-inner input,
.login-inner .btn-login {
    width: 100%;
    height: 76px !important;
    font-size: 18px;
    border-radius: 8px !important;
    padding: 0 20px !important;
}
.login-inner .btn-login {
    background-color: #039cd9;
    color: #fff;
    font-weight: 700;
    transition: 0.3s;
}
.login-inner .btn-login:hover {
    background-color: #0f7aa4;
}

.sec-title {
    text-align: center;
    padding: 20px 0 30px;
}
.sec-title h4 {
    font-size: var(--title-font);
    font-weight: 800;
    margin-bottom: 15px;
}
.sec-title h4 > span {
    display: inline-block;
    padding: 0 1px 16px 1px;
    border-bottom: 4px solid var(--key-color);
}

.login-btnArea > div {
    display: flex;
    gap: 20px;
    padding: 30px 100px 0;
}
.login-btnArea > div > div {
    flex: 1;
}
.login-btnArea .vertical {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.login-btnArea .vertical a {
    height: 90px;
}

.login-btnArea a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    height: 100%;
    border-radius: 8px;
    transition: 0.3s;
}
.login-btnArea .color1 {
    flex-direction: column;
    font-size: 24px;
    background-color: #0387d9;
}
.login-btnArea .color2 {
    background-color: #7b6fbb;
}
.login-btnArea .color3 {
    background-color: #8e64a6;
}
.login-btnArea .color1:hover {
    background-color: #0a65ee;
}
.login-btnArea .color2:hover {
    background-color: #6756c2;
}
.login-btnArea .color3:hover {
    background-color: #9346bf;
}

.mainaddText {
    text-align: center;
    color: #B12F2F;
    font-weight: bold;
    padding: 30px;
    border: 1px solid #ddd;
}
/* e:추가 */

.subtitle-box {
    font-size: var(--mid-font);
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 30px;
    margin-bottom: 30px;
}
.miniSearch {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}
.miniSearch p {
    display: flex;
    align-items: center;
    gap: 10px;
}
.miniSearch input[type="text"] {
    width: 300px;
    height: 60px;
}
.miniSearch button {
    background-color: var(--key-color);
    color: #fff;
    border-radius: var(--inp-round);
    padding: 0 20px;
    transition: 0.3s;
}
.miniSearch button:hover {
    background-color: var(--key-color-deep);
}

.exPrint {
    text-align: center;
    padding: 50px 0;
    background-color: #f9f9f9;
    border: 1px solid #e5e5e5;
}
.exPrint .exPrint-title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}
.exPrint img {
    max-width: 518px;
    width: 100%;
    border: 1px solid #ddd;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--modal-z);
    display: flex;
    justify-content: center;
    align-items: center;
    /* 기본 상태: 숨김 & 클릭 불가 */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--modal-transition), visibility var(--modal-transition);
}
.modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    /* backdrop-filter: blur(2px);  배경 블러 효과 */
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 960px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    padding-bottom: 40px;
    overflow: hidden;
    /* 등장 애니메이션: 아래에서 위로 살짝 올라옴 */
    transform: translateY(20px) scale(0.95);
    transition: transform 0.3s;
}
.modal.is-open .modal-container {
    transform: translateY(0) scale(1);
}

.modal-header {
    padding: 10px 24px;
    /*border-bottom: 1px solid #e2e8f0;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #94a3b8;
    padding: 4px;
    line-height: 1;
}

.modal-body {
    padding: 0 50px;
    max-height: 70vh;
    overflow-y: auto;
}

.modal-footer {
    padding: 16px 24px;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
    gap: 12px;
}

.info-install-img {
    text-align: center;
    padding-bottom: 20px;
}
.info-install-big {
    font-size: 22px;
    text-align: center;
}
.info-install-big p {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}
.info-install-big p strong {
    color: #284ee5;
    font-weight: 700;
}
.info-install-small {
    font-size: 18px;
    text-align: center;
    margin: 25px 0;
}
.info-install-step ul {
    padding-left: 110px;
}
.info-install-step ul li {
    list-style-type: decimal;
    font-size: 18px;
    font-weight: 600;
}
.edit-info {
    font-size: 15px;
    color: #777;
    line-height: 130%;
    padding: 0;
    margin: 30px 0 18px;
}
.d-tb-list.inModal {
    font-size: 16px;
    line-height: 130%;
}
.d-tb-list.inModal td {
    padding: 10px;
}

/** Function **/
.flexArea {
    display: flex;
    align-items: center;
    gap: 10px;
}
.flexArea .full {
    flex: 1;
}

.btnArea {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 40px 0 0;
}
.btn-ok,
.btn-basic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    background-color: var(--key-color);
    color: #fff;
    border-radius: 6px;
    padding: 0 30px;
    transition: 0.3s;
}
.btn-ok:hover {
    background-color: var(--key-color-deep);
}
.btn-basic {
    background-color: #008de5;
}
.btn-basic:hover {
    background-color: #0063a0;
}
.btn-table {
    display: inline-block;
    color: #fff;
    border-radius: 5px;
    background-color: #165092;
    padding: 6px 20px;
    transition: 0.3s;
}
.btn-table:hover {
    background-color: #073364;
}
.btn-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    height: 28px;
    color: #fff;
    border-radius: 4px;
    background-color: #0c3e77;
    padding: 0 10px;
    margin-left: 2px;
    transition: 0.3s;
}
.btn-inline:hover {
    text-decoration: underline;
}

/*footer*/
footer {
    background-color: #212430;
}
.footer-inner {
    font-size: var(--default-font);
    color: #eee;
    width: 100%;
    max-width: 1420px;
    margin: 0 auto;
}
.footer-inner .footerInfo {
    text-align: center;
    padding: 30px 0;
}
.footer-inner .footerInfo p.logo {
    padding-bottom: 20px;
}
.footer-inner .footerInfo p.copy {
    color: #999;
    margin-top: 5px;
}
.footer-inner .footerInfo p span {
    display: inline-block;
    line-height: 1rem;
    padding: 0 14px;
    margin: 0 10px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer-inner select {
    color: #fff;
    line-height: 38px;
    background: #212430 url(../img/btn-select-w-down.svg) no-repeat right 14px center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
}

/** common **/
.smFont {
    font-size: var(--sm-font);
}
.midFont {
    font-size: var(--mid-font);
}
.grayColor {
    color: #777;
}
.mgt10 {
    margin-top: 10px;
}
.mgt20 {
    margin-top: 20px;
}
.mgt50 {
    margin-top: 50px;
}
.wdFull {
    width: 100%;
}

/** custom **/
ul.dotType li {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 3px 0;
}
ul.dotType li::before {
    content: "·";
    font-weight: 900;
}

input[type="text"],
input[type="password"],
input[type="date"] {
    border-radius: var(--inp-round);
    border: 1px solid var(--inp-color);
    height: 40px;
    padding: 0 10px;
}
input[type="date"] {
    padding: 0 10px;
}
input[type="radio"] {
    width: 18px;
    height: 18px;
    vertical-align: middle;
    margin-bottom: 4px;
}
input:disabled {
    background-color: #eee;
}
select {
    padding-left: 13px;
    width: auto;
    box-sizing: border-box;
    height: 40px;
    vertical-align: middle;
    color: #212121;
    border-radius: var(--inp-round);
    border: 1px solid var(--inp-color);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background-size: 11px 7px;
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-image: url(../img/arrow.select-off.png);
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    padding-right: 34px;
    padding-left: 10px;
    cursor: pointer;
}
select:hover {
    background-image: url(../img/arrow.select-on.png);
}
