

@import url("/css/main/font.css");

html {
    font-family: "Noto Sans KR"
        /* , "맑은고딕", "Malgun Gothic", "돋움", Dotum, sans-serif*/
    ;
    font-size: 15px;
    font-weight: 500;
    color: #565656;
    letter-spacing: -0.5px;
    overflow-x: hidden;
}

.titlefont {
    font-family: 'YiSunShinDotumM';
}

/*메뉴 폰트*/
.titlefontL {
    font-family: 'YiSunShinDotumL';
}

/*로고 폰트*/


html,
body,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
strong,
ol,
ul,
li,
form,
label,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
section,
summary {
    margin: 0;
    padding: 0;
    border: 0;

}


/* 노말라이즈 */
body,
ul,
li {
    list-style: none;
}


caption {
    position: absolute !important;
    top: auto;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;

}

input,
select,
textarea,
button {
    vertical-align: middle;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    outline: 0;
    -moz-appearance: none;
    appearance: none;
}

/**
input[type="checkbox"] {
    display: none;
}
**/

select {
    padding: 3px 5px;
}


a {
    color: inherit;
    text-decoration: none;
}

.hidden {
    position: absolute;
    left: -10000px;
    top: auto;
    height: 1px;
    overflow: hidden;
}


label[for] {
    cursor: pointer;
    user-select: none;

}

/* 라이브러리 */
.wd10 {
    width: 10% !important;
}

.wd20 {
    width: 20% !important;
}

.wd30 {
    width: 30% !important;
}

.wd40 {
    width: 40% !important;
}

.wd50 {
    width: 50% !important;
}

.wd60 {
    width: 60% !important;
}

.wd70 {
    width: 70% !important;
}

.wd80 {
    width: 80% !important;
}

.wd90 {
    width: 90% !important;
}

.wd100 {
    width: 100% !important;
}

.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.absolute-left {
    position: absolute;
    left: 0;
}

.absolute-right {
    position: absolute;
    right: 0;
}

.absolute-bottom {
    position: absolute;
    bottom: 0;
}

.absolute-top {
    position: absolute;
    top: 0;
}

.absolute-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.absolute-middle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.absolute-middle.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
}

.relative {
    position: relative;
}

.cell {
    float: left;
    box-sizing: border-box;
}

.cell-right {
    float: right;
    box-sizing: border-box;
}

.row::after {
    content: "";
    display: block;
    clear: both;
}

.clear-both {
    clear: both;
}

.img-box > img {
    width: 100%;
    display: block;
}

.con {
    margin-left: auto;
    margin-right: auto;
}

.margin-0-auto {
    margin-left: auto;
    margin-right: auto;
}

.text-align-center {
    text-align: center;
}

.text-align-right {
    text-align: right;
}

.line-height-0 {
    line-height: 0;
}

.line-height-0 > * {
    line-height: normal;
}

.width-30px {
    width: 30px;
}

.width-35px {
    width: 35px;
}

.width-40px {
    width: 35px;
}

.width-45px {
    width: 35px;
}

.width-50px {
    width: 50px;
}

.width-80px {
    width: 80px;
}

.width-100px {
    width: 100px;
}

.width-100p {
    width: 100%;
}

.width-60p {
    width: 60%;
}

.width-55p {
    width: 55%;
}

.width-50p {
    width: 50%;
}

.width-45p {
    width: 45%;
}

.width-40p {
    width: 40%;
}

.width-30p {
    width: 30%;
}

.width-35p {
    width: 35%;
}

.width-100p-except-30px {
    width: calc(100% - 30px);
}

.width-100p-except-35px {
    width: calc(100% - 35px);
}

.width-100p-except-40px {
    width: calc(100% - 40px);
}

.width-100p-except-50px {
    width: calc(100% - 50px);
}

.width-100p-except-80px {
    width: calc(100% - 80px);
}

.width-100p-except-100px {
    width: calc(100% - 100px);
}

.height-100p {
    height: 100%;
}

.height-50p {
    height: 50%;
}

.border-box {
    box-sizing: border-box;
}

.table-row {
    display: table;
}

.table-row > .cell {
    float: none;
    display: table-cell;
}

.border-red {
    border: 10px solid red;
}

.border-green {
    border: 10px solid green;
}

.border-blue {
    border: 10px solid blue;
}

.border-gold {
    border: 10px solid gold;
}

.border-pink {
    border: 10px solid pink;
}

/* 라이브러리 - flex */
* > .flex {
    display: flex;
}

* > .flex-grow-1 {
    flex-grow: 1;
}

* > .flex-jc-c {
    justify-content: center;
}

* > .flex-jc-s {
    justify-content: flex-start;
}

* > .flex-jc-e {
    justify-content: flex-end;
}

* > .flex-jc-sb {
    justify-content: space-between;
}

* > .flex-ai-c {
    align-items: center;
}

* > .flex-ai-s {
    align-items: flex-start;
}

* > .flex-ai-e {
    align-items: flex-end;
}

* > .flex-as-s {
    align-self: stretch;
}

* > .flex-as-c {
    align-self: center;
}

* > .flex-as-s {
    align-self: flex-start;
}

* > .flex-as-e {
    align-self: flex-end;
}

* > .flex-column-nowrap {
    flex-flow: column nowrap;
}

* > .flex-column-wrap {
    flex-flow: column wrap;
}

* > .flex-row-wrap {
    flex-flow: row wrap;
}

.flex-ch-basis-0 > * {
    flex-basis: 0;
}

* > .flex-1-0-0 {
    flex: 1 0 0;
}

input,
select,
textarea,
button {
    vertical-align: middle;
    margin: 0;
    padding: 0;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    outline: 0;
    -moz-appearance: none;
    /* Firefox */
}

select::-ms-expand {
    display: none;
}

.mt30 {
    margin-top: 30px;
}

.pdt40 {
    padding-top: 40px;
}

/* 커스텀 */
.con {
    max-width: 1240px;
}

fieldset {
    padding: 0;
    margin: 0;
}

.blind,
legend {
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
    font-size: 12px;
    clip: rect(1px, 1px, 1px, 1px);
}

/* 스킵네비 시작 */
.skiptoContent {
    position: absolute;
    margin: 0 auto;
    z-index: 99999;
    top: 0;
    left: 0;
    right: 0;
}

.skiptoContent a {
    position: absolute;
    width: 100%;
    font-size: 0;
    top: -50px;
}

.skiptoContent a:active,
.skiptoContent a:focus {
    display: block;
    font-size: 16px;
    padding: 10px;
    top: 0;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background: #000;
    outline: 0;
}

/* 스킵네비 끝 */

/* 사이드바 */
html {
    overflow-x: hidden;
    word-break: keep-all;
}

html.side-bar-actived {
    overflow: hidden;
}

.side-bar-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visible 0.5s;
    z-index: 50000;
}

.side-bar-actived .side-bar-bg {
    opacity: 1;
    visibility: visible;
}

.side-bar {
    width: 0;
    position: absolute;
    height: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
}


.side-bar-actived .side-bar {
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
    height: 100vh;
    display: block;
    min-height: 100vh;
    width: 100%;
    overflow: auto;
    background: #fff;
    z-index: 500001;
}

.Allmenu-close-btn {
    position: absolute;
    top:0;
    right: -40px;
    transform: translateX(-50%);
    cursor: pointer;
    padding: 13px 15px;
}

.Allmenu-close-btn img {
    display: block;
}

.Allmenu-head {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    margin-top: 30px;
    margin-bottom: 0px;
    text-align: center;
    border-bottom: 1px solid #ccc;
    position: relative;
    padding-bottom: 20px;
}

.Allmenu-head li:first-child {
    display: inline-block;
}

.Allmenu-head li:nth-child(2) {
    font-size: 18px;
    margin-left: 10px;
    color:#333;
    display: inline-block;
    font-weight: bold;
    vertical-align: sub;
}

.menu-wrap .left-menu {
    width: 70%;
    margin:0 auto;
}

@media(max-width:1240px) {
    .menu-wrap .left-menu {width:90%;}
    .Allmenu-head {width:90%;}
}

.mt0 {margin-top:0px !important;}
.pd-top0 {padding-top:0px !important;}

.Allmenu {
    width: 90%;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    display: inline;
    word-break: keep-all;
}

.Allmenu > .all1depth {
    width: calc(100% / 4);
    float: left;
    box-sizing: border-box;
    margin-top:20px;
}

.Allmenu > .all1depth > li > a {
    text-align: left;
    padding: 10px 0px;
    display: block;
    font-size: 22px;
    font-family: "YiSunShinDotumB";
    color:#333;
    position: relative;
}

/* .Allmenu > .all1depth > li > a::after {
    content: '';
    display: block;
    position: absolute;
    width:65%;
    height: 2px;
    bottom:0;
    background: #999;
} */

.Allmenu .all2depth {
    margin-top: 10px;
    font-weight: 500;
}
/*******2024.10.23. 전체보기 메뉴 스타일수정 STR **********/
.Allmenu .all2depth > li > a {
    display: block;
    text-align: center;
    color: #fff;
    position: relative;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(45deg, #3c8bc3, #3f6dc7);
    border-radius: 5px;
    height: 36px;
    line-height: 36px;
    width: calc(75% - 18px);
    padding-left: 18px;
}
.Allmenu .all3depth {
    margin-top: 5px;
}
.Allmenu ul.all3depth > li {
    padding: 3px 0px;
    margin-left: 20px;
}
.Allmenu ul.all3depth > li > a::before {
    background: #1950bf;
}
.Allmenu .all4depth {
    background-color: #f4f5fa;
    width: calc(75% - 15px);
    border-radius: 5px;
    padding: 2px 0 5px 10px;
    margin: 5px 0;
}
.Allmenu ul.all4depth li,
.Allmenu ul.all4depth li:last-child{
    padding: 0;
}
.Allmenu .all2depth {
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 500;
}
.Allmenu > .all1depth > li > a {
    padding: 5px 0 8px 10px;
}
.Allmenu > .all1depth > li > a::after {
    height: 0;
}
.Allmenu > .all1depth > li > a {
    padding: 5px 0 8px 10px;
}
.Allmenu ul.all3depth > li > a:hover {
    color: #1950bf;
}
.Allmenu .all4depth > li > a:hover {
    color: #3c8bc3;
}
/*******2024.10.23. 전체보기 메뉴 스타일수정 END **********/

.only-2depth > li {
    padding: 8px 0px !important;
}

.only-2depth > li > ul > li:first-child {
    padding-top:5px !important;
}

.only-2depth .all3depth li {
    padding: 5px 0px !important;
    margin-left: 0 !important;
}

.only-2depth ul.all3depth > li > a::before {
    display: none;
}

/* 탑바 검색창 */
.top-search-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visible 0.5s;
    z-index: 50000;
}

.top-search-actived .top-search-bg {
    opacity: 1;
    visibility: visible;
}

.top-search {
    position: absolute;
    background-color: #fff;
    top: 0%;
    width: 100%;
    height: 280px;
    left: 0;
    transition: top .5s;
    z-index: 50000;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
}

.top-search-actived .top-search {
    top: 60px;
    opacity: 1;
    visibility: visible;
}

.top-search .top-search-close-btn {
    font-size: 40px;
    position: absolute;
    top: 5%;
    right: 20%;
    cursor: pointer;
}

.top-search-content {
    width: 30%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 90px;

}

.search-form input {
    margin-left: auto;
    margin-right: auto;
    font-size: 30px;
    width: 90%;
    border: 0px;
    padding: 7px 5px;
    border: none !important;
    border-bottom: 2px solid #0195df !important;
}


.search-form {
    position: relative;
}

fieldset {
    border: 0;
}

.search-ico {
    font-size: 25px;
    position: absolute;
    right: 10%;
    top: 0px;
    color: rgb(1, 149, 223);
}

.top-search-lately {
    margin-top: 20px;
}

.top-search-lately > ul > li {
    float: left;
}

.top-search-lately > ul > li:first-child > a {
    font-weight: 600;
}

.top-search-lately > ul > li:nth-child(2) {
    margin-left: 10px;
}

.top-search-lately > ul > li:not(:first-child) > a {
    padding: 5px 10px;
    background-color: rgb(249, 249, 249);
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-left: 10px;
}

.popular-search {
    display: inline-block;
    position: absolute;
    right: 23%;
    top: 50%;
}

.popular-search h2 {
    font-size: 20px;
}

.popular-search .num {
    font-size: 17px;
    margin-right: 10px;
    color: rgb(1, 149, 223);
}

.popular-search span {
    position: relative;
}

.popular-search .new {
    color: green;
}

.popular-search .up::before {
    content: "";
    position: absolute;
    background-image: url(../../img/main/ico_up.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 13px;
    height: 13px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.popular-search .down::before {
    content: "";
    position: absolute;
    background-image: url(../../img/main/ico_dn.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 13px;
    height: 13px;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.block {
    border-bottom: 1px solid #ccc;
    padding: 5px 5px;
    height: 18px;
    overflow: hidden;
    background: #fff;
    width: 200px;
    font-size: 15px;
    margin-top: 15px;
}

.block li a {
    display: block;
    height: 20px;
    line-height: 0px;
    color: #555;
}

.block li a span {
    position: relative;
}

.hoverblock {
    opacity: 0;
    visibility: hidden;
}

/* 마이메뉴 */
.my-menu-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visible 0.5s;
    z-index: 50000;
}

.my-menu-actived .my-menu-bg {
    opacity: 1;
    visibility: visible;
}

.btn-hide-my-menu {
    cursor: pointer;
}

.my-menu {
    position: absolute;
    background-color: #fff;
    top: -1400px;
    width: 100%;
    height: 100vh;
    left: 0;
    transition: top .5s;
    z-index: 50000;
}

.my-menu-actived .my-menu {
    top: 0px;
}

.my-menu .btn-hide-my-menu {
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
}

.my-menu-con {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.my-menu .my-menu-title {
    margin-top: 30px;
    border-bottom: 1px solid black;
    padding-bottom: 15px;
    position: relative;
}

.my-menu .my-menu-title > ul > li:first-child > a {
    font-size: 25px;
    font-weight: 500;
}

.my-menu .my-menu-title > ul > li:last-child {
    margin-top: 12px;
}

.my-menu-icon-box {
    border-bottom: 1px solid black;
    padding: 20px;
    height: 150px;
}

.my-menu-icon-box .icon-box {
    width: 20%;
    text-align: center;
}

.my-menu-list {
    margin-top: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.my-menu-icon-box .icon-box img {
    display: inline-block;
    margin-bottom: 5px;
}

.my-menu-list .menu1depth {
    width: 25%;
    text-align: left;
    float: left;
}

.menu2depth {
    margin-top: 10px;
}


.my-menu-list .menu1depth a {
    font-size: 16px;
    margin-left: 0px;
}

.my-menu-list .menu1depth > a {
    font-size: 17px;
    font-weight: 700;
}

.menu2depth > li {
    padding: 5px 0px;
}

.my-menu-foot {
    margin-top: 15px;
}

.my-menu-foot ul > li:first-child {
    float: left;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 400;
}

.my-menu-foot ul > li:not(:first-child) {
    float: right;
    padding: 10px 20px;
}

.my-menu-foot ul > li:nth-child(3) {
    background-color: #555555;
    color: #fff;
    font-size: 14px;
    margin-right: 10px;
}

.my-menu-foot ul > li:nth-child(2) {
    background-color: #dfdfdf;
    font-size: 14px;
}

.menu2depth input[type="checkbox"] {
    display: inline-block;
    width: 15px;
    height: 15px;
    background: #fff;
    border: 1px solid #ccc;
    cursor: pointer;
    border-radius: 3px;
}

.menu2depth:after {
    display: block;
    clear: both;
    content: "";
}

.menu2depth input[type="checkbox"]:checked {
    background: url(../../img/main/check.png) #0080ff no-repeat center/10px 10px;
    border: 0px solid #000;
}

/* 로그인영역 시작 */
.login-box {
    color: #fff;
    height: 36px;
    font-size: 14px;
}

.login-box ul {
    float: right;
}

.login-box ul > li {
    padding: 8px 15px;
    color: #666;
    position: relative;
}

.login-box ul > li:last-child {
    padding-left: 15px;
    padding-right: 0;
}

.login-box ul > li:last-child > a {
    padding-right: 0;
}

.login-box ul > li:not(:last-child) > a {}

.login-box ul > li:not(:last-child) > a::after {
    content: "";
    display: block;
    position: absolute;
    top: 55%;
    right: 0%;
    transform: translateY(-50%);
    width: 1px;
    height: 10px;
    background-color: #ddd;
	opacity: .7;
}

.login-box ul > li strong {
    font-weight: 500;
    margin-right: 5px;
    color: #000;
}

.login-box ul > li span {
    font-size: 12px;
}

.service-go > a {
    color: #666;
}



/* 헤더시작 */
#header {
    color: #000;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    position: relative;
    width: 100%;
    height: 65px;
	background-color: #Fff;
    /*box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); */
    z-index: 20;
}

#header .top-bar .logo {
    margin-top: 5px;
}

#header .top-bar > ul > li:last-child {
    padding: 16px;
    margin-top: 6px;
    font-size: 20px;
    font-weight: bold;
    color:#555;
}

#header .top-bar > ul > li:first-child > a {
    padding-left: 0;
}

#header .gnb-icon-box > ul > li {
    padding: 15px 0;
}

#header .gnb-icon-box > ul > li > a {
    color: #555;
    font-size: 22px;
    padding: 5px 12px;
}

#header .gnb-icon-box > ul > li:nth-child(2) > a img {
    display: inline-block;
    margin-top: -5px;
    opacity: .9;
}

#header .gnb-icon-box > ul > li:last-child > a {
    padding-right: 0;
}

/* 주메뉴 */
#gnavigation {
    display: inline-block;
    z-index: 2;
    margin-left: 30px;
}

#gnavigation > ul > li {
    font-size: 23px;
    padding: 15px 50px;
    text-align: center;
    color: #333;
    position: relative;
    cursor: pointer;
    font-weight: 500;
}

#gnavigation > ul > li::after {
    content: '';
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    transition: .5s;
    background: #377cfd;
    bottom: -2px;
    z-index: 5;
}

#gnavigation > ul > li:hover::after {
    width: 100%;
}

/* 드롭다운메뉴 */
.depth2bg {
    height: 0px;
    position: absolute;
    top: 100%;
    width: 300%;
    left: -30%;
    transition: height 0.2s;
    z-index: 4;
}

.depth2bg.active {
    height: 420px;
    position: absolute;
    background-color: #f5f8ff;
    top: 100%;
    width: 300%;
    left: -30%;
    transition: 0.2s;
}

/* 24.07.22 메뉴라인조정 height 402 에서 420 */
#gnavigation:hover .depth2bg {
    height: 420px;
    background-color: #f5f8ff;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    border-top: 1px solid rgba(0, 0, 0, .1);
}

/* 24.07.22 메뉴라인조정 height 402 에서 420 */
#gnavigation .depth2 {
    font-size: 14px;
    margin-top: 15px;
    height: 420px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: .2s;
    z-index: 5;
}

#gnavigation li:nth-child(1) .depth2 {
    border-left: 1px solid rgba(213, 213, 213, 0.5);
}

#gnavigation li:nth-child(2) .depth2 {
    border-right: 1px solid rgba(213, 213, 213, 0.5);
    border-left: 1px solid rgba(213, 213, 213, 0.5);
}

#gnavigation li:nth-child(3) .depth2 {
    border-right: 1px solid rgba(213, 213, 213, 0.5);
}

#gnavigation li:nth-child(4) .depth2 {
    border-right: 1px solid rgba(213, 213, 213, 0.5);
}


#gnavigation .depth2.active {
    opacity: 1;
    visibility: visible;
}

#gnavigation .depth2:hover {
    background-color: #fff;
}

#gnavigation:hover .depth2 {
    opacity: 1;
    visibility: visible;
}

#gnavigation .depth2 ul {
    height: 170px;
}

#gnavigation .depth2 li {
    padding: 3px 0px;
    font-size: 14.3px;
}

#gnavigation .depth2 ul li a.strong {
    color: #333 !important;
    font-size: 15px;
    margin-bottom: 5px;
    display: block;
    font-weight: 700;
}

#gnavigation .depth2 li a:hover {
    color: #225ac6;
}

.pc-logo {
    display: block;
}

.mobile-logo {
    display: none;
}

@media (max-width:820px) {
    #header {
        height: auto;
    }
}

/* 상단 메뉴 */


/* 팝업시작 */


html.popup-1-active .popup-box-1 {
    visibility: visible;
    background-color: rgba(0, 0, 0, 0.8);
}

html.popup-1-active {
    overflow: hidden;
}

.popup-box-type-a {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    visibility: hidden;
    transition: background-color 0.5s;
    z-index: 1000000;
}

.popup-box-type-a > .popup {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    min-height: 470px;
}


.popup-box-type-a > .popup > .head {
    position: absolute;
    top: -7%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 230px;
}

.popup-box-type-a > .popup .popuplogo {
    display: block;
    margin-top: 9px;
}

.popup-box-type-a > .popup > .head li:last-child {
    color: #fff;
    font-size: 40px;
    vertical-align: bottom;
    margin-top: 10px;
    font-weight: 500;
}

.popup-box-type-a > .popup > .body {
    padding: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    height: 384px;
    transform: translateX(-50%) translateY(-50%);
    width: 58%;
}

.popup-box-type-a > .popup > .body .item {
    width: 340px;
    margin: 0 auto;
}

.popup-box-type-a > .popup > .body .popup-notice {
    color: #fff;
    width: 340px;
    height: 340px;
    background-color: #192846;
}

.popup-box-type-a > .popup > .body .popup-notice .popup-notice-title {
    font-size: 16px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom: 1px solid black;
    height: 75px;
}


.popup-box-type-a > .popup > .body .popup-notice .popup-notice-title .plus {
    font-size: 24px;
    cursor: pointer;
}


.popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt > ul {
    padding: 13px 0px;
    border-bottom: 1px solid black;
    padding-left: 20px;
    padding-right: 20px;
}

.popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt > ul:last-child {
    border-bottom: 0px solid black;
}

/* 0831 팝업 텍스트 2줄일때 깨짐 현상 수정 시작 */
.popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt > ul li a {
    white-space: nowrap;
    max-width: 260px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
}
/* 0831 팝업 텍스트 2줄일때 깨짐 현상 수정 끝 */

.popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt p {
    color: #00c6ff;
    font-size: 16px;
    margin-bottom: 15px;
}

.popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt .new {
    margin-top: 3px;
    margin-left: 10px;
}

.popup-box-type-a > .popup > .body > .item > div {
    width: 340px;
    height: 340px;
    margin-left: 50px;
}

.popup-box-type-a > .popup > .body .popupimg {
    width: 340px;
    height: 340px;
}

.popup .body .owl-carousel .owl-dots {
    padding: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.popup .body .owl-carousel .owl-dots > .owl-dot.active span {
    background-color: #225ac6;
}

.popup .body .owl-carousel .owl-dots > .owl-dot span {
    background-color: #f5f8ff;
}

.popup-box-type-a > .popup .foot {
    position: absolute;
    bottom: -6%;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
}

.popup-box-type-a > .popup .foot > .close-box > ul > li {
    padding: 10px 25px;
    border-radius: 25px;
    background-color: #000;
    cursor: pointer;
}

.popup-box-type-a > .popup .foot > .close-box > ul > li .fas {
    margin-left: 7px;
}


/* 로그인박스 반응형 시작 */
@media (max-width:1242px) {
    .login-box {
        width: 100%;
    }

    .login-box > .con {
        width: 90%;
    }
}

@media (max-width:820px) {
    .login-box {
        display: none;
    }
}


/* 상단 메뉴 반응형 시작 */
@media (max-width:1242px) and (min-width:1100px) {
    #header .top-bar {
        margin-top: 0px;
        width: 90%;
    }

    #header .top-bar > ul li:last-child {
        display: none;
    }

    #header .gnb-icon-box > ul > li {
        padding: 14px 0px;
    }

    #header .gnb-icon-box > ul > li > a {
        font-size: 22px;
        padding: 5px 10px;
    }
}

@media (max-width:1100px) and (min-width:950px) {
    #header .gnb-icon-box > ul > li > a {
        padding: 5px 10px;
    }

    #gnavigation > ul > li {
        padding: 14px 40px;
    }
}

@media (max-width:950px) and (min-width:820px) {
    #header .gnb-icon-box > ul > li > a {
        padding: 5px 10px;
    }

    #gnavigation > ul {
        margin-left: 15px;
    }

    #gnavigation {
        display: inline-block;
        z-index: 2;
        margin-left: 10px;
    }

    #gnavigation > ul > li {
        padding: 14px 25px;
    }
}

@media (max-width:1100px) {
    #header .top-bar {
        width: 90%;
    }

    #header .top-bar > ul > li:last-child {
        display: none;
    }

}

/* 메인화면 팝업모바일 수정 */
@media (max-width:1739px) {
    .popup-box-type-a > .popup .foot {
        bottom: -20px;
    }
}


@media (max-width:820px) {
    .only-pc {
        display: none;
    }

    .only-mobile {
        display: block;
    }

    #header .top-bar > ul > li:last-child {
        display: none;
    }

    #header {
        top: 0;
        background: #fff;
        position: static;
        min-width: 310px;
    }

    .pc-logo {
        display: none;
    }

    .mobile-logo {
        display: block;
        margin-top: 8px;
    }

    #header .gnb-icon-box > ul > li:nth-child(2) > a > img:first-child {
        display: none;
    }

    #header .gnb-icon-box > ul > li:nth-child(2) > a > img:last-child {
        display: inline-block;
    }

    #header .gnb-icon-box > ul > li:last-child {
        margin-right: -5px;
    }

    #header .gnb-icon-box > ul > li:not(:last-child) {
        border-right: none;
    }

    #header .gnb-icon-box > ul > li {
        padding: 14px 0px;
    }

    #header .gnb-icon-box > ul > li > a {
        font-size: 22px;
        padding: 5px 14px;
    }

    #header .gnb-icon-box > ul > li:last-child > a {
        padding-right: 0;
    }

    #gnavigation {
        display: none;
    }

    .popup-box-type-a > .popup .popuplogo {
        display: block;
        margin-top: 9px;
        margin-right: 0px;
    }

    .popup-box-type-a > .popup > .head li:last-child {
        color: #fff;
        font-size: 40px;
        font-weight: 500;
    }

    .popup-box-type-a > .popup > .body {
        padding: 0px;
        position: absolute;
        top: 50%;
        left: 50%;
        height: 384px;
        width: 340px;
        transform: translateX(-50%) translateY(-50%);
    }

    .popup-box-type-a > .popup > .body .popup-notice {
        color: #fff;
        width: 340px;
        height: 340px;
    }

    .popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt p {
        font-size: 16px;
    }

    .popup-box-type-a > .popup > .body .popup-notice .popup-notice-txt .new {
        margin-top: 3px;
        margin-left: 10px;
    }

    .popup-box-type-a > .popup > .body > ul > li:not(:first-child) {
        margin-left: 35px;
    }

    .popup-box-type-a > .popup .foot > .close-box > ul > li:last-child {
        margin-left: 0px;
    }

    .popup-box-type-a > .popup .foot > .close-box > ul > li .fas {
        margin-left: 7px;
    }

    /* 0728 추가 */
    .popup-box-type-a > .popup .foot {
        bottom: 0px;
    }

    /* 모바일사이드 전체메뉴 */
    html.side-bar-actived {
        overflow-y: visible;
    }

    .side-bar {
        height: auto;
        transition: top .5s;
    }

    .side-bar-actived .side-bar {
        top: 0;
        height: auto;
        min-height: auto;
    }

    .Allmenu-close-btn {
        font-size: 40px;
        cursor: pointer;
        width: 40px;
        float: right;
        position: static;
        display: block;
        margin-top:0px;
    }

    .mobile-side-bar-head {
        height: 60px;
        width: 100%;
        border-bottom: 1px solid #ccc;
    }

    .mobile-side-bar .content {
        width: 100%;
    }


    .mobile-side-bar .mobile-login-btn li {
        width: 50%;
        text-align: center;
        font-size: 18px;
        border-right: 1px solid #ccc;
        padding: 8px 0px;
        border-bottom: 1px solid #ccc;
        position: relative;
    }

    .mobile-side-bar .mobile-login-btn li .fas {
        color: #41bdce;
        font-size: 28px;
        position: absolute;
        left: 10%;
    }

    .mobile-side-bar .mobile-login-btn li strong {
        font-weight: 400;
    }

    .mobile-side-bar .mobile-login-btn li span {
        font-size: 13px;
    }

    .mobile-side-bar .mobile-login-btn li:last-child {
        border-right: none;
    }

    .mobile-side-bar .logo-box-1 .logo {
        display: block;
        padding: 10px;
        float: left;
        margin-left: 10px;
    }

    .mobile-side-bar .content .menu-box-1 ul > li > a {
        padding: 10px 20px;
        color: #000;
    }

    .mobile-side-bar .content .menu-box-1 ul > li.active > a:not(:only-child) {
        background: #3a64b3;
        color: #fff;
    }

    .mobile-side-bar .content .menu-box-1 .mobile1depth > li > a:not(:only-child)::after {
        content: "\f078";
        font-family: "Font Awesome 5 Free";
        font-weight: 600;
        float: right;
        transition: .3s;
        display: block;
        margin-top: 5px;
        font-size: 12px;
        opacity: 1;
    }

    .mobile-side-bar .content .menu-box-1 ul > li.active > a:not(:only-child)::after {
        transform: rotate(180deg);
        color: #fff;
    }


    .mobile-side-bar .content .menu-box-1 > ul ul {
        display: none;
    }

    .mobile-side-bar .content .menu-box-1 ul > li.active ul {
        display: block;
    }

    .menu-box-1 a {
        display: block;
    }

    .menu-box-1 > .mobile1depth > li {
        border-bottom: 1px solid #ccc;
    }

	.menu-box-1 > .mobile1depth > li.active {
		border-bottom: none;
	}

    .menu-box-1 > .mobile1depth > li > a {
        font-size: 16px;
    }

    .menu-box-1 > .mobile1depth > li > a {
        display: block;
    }

    .menu-box-1 .mobile2depth {
        background-color: #f5f8ff;
    }

    .menu-box-1 .mobile2depth > li {

    }

	.menu-box-1 .mobile3depth > li {
		border-bottom: 1px solid #ccc;
	}

    .menu-box-1 .mobile2depth > li > a {
		border-bottom: 1px solid #ccc;
        font-size: 16px;
    }

    .menu-box-1 .mobile3depth > li > a {
        font-size: 15px;
    }

    .menu-box-1 .mobile4depth > li > a {
        font-size: 14px;
		color:#555 !important;
    }

    .my-menu-con {
        width: 90%;
    }

    .my-menu {
        top: -3000px;
        height: 1300px;
    }

    .my-menu .my-menu-title {
        margin-top: 30px;
        border-bottom: 1px solid black;
        padding-bottom: 15px;
    }

    .my-menu-icon-box {
        border-bottom: 1px solid black;
        padding: 20px;
        height: 430px;
    }

    .my-menu-icon-box .icon-box {
        width: 50%;
        text-align: center;
        margin-top: 15px;
    }

    .my-menu-icon-box .icon-box img {
        display: inline-block;
        margin-bottom: 5px;
    }

    .my-menu-icon-box ul div:nth-child(3) {
        clear: both;
    }

    .my-menu-list .menu1depth {
        width: 50%;
        text-align: left;
        float: left;
    }

    .my-menu-list {
        white-space: nowrap;
    }

    .my-menu-list .menu1depth:nth-child(3),
    .my-menu-list .menu1depth:nth-child(4) {
        margin-top: 20px;
    }

    .my-menu-foot {
        text-align: center;
        margin-top: 5px;
    }

    .my-menu-foot ul > li:first-child {
        float: none;
    }

    .my-menu-foot ul > li:not(:first-child) {
        margin-top: 15px;
        margin-right: 15px;
        float: none;
        display: inline-block;
    }
}

@media screen and (max-width:1750px) {
    .top-search {
        height: 280px;
    }

    .top-search .top-search-close-btn {
        right: 11%;
    }

    .top-search-content {
        width: 70%;
        margin-top: 90px;
    }

    .search-form input {
        width: 90%;
    }

    .top-search-lately > ul > li:not(:first-child) > a {
        margin-left: 10px;
    }

    .popular-search {
        right: 20%;
        top: 53%;
    }

}


@media screen and (max-width:1150px) {
    .top-search {
        height: 280px;
    }

    .top-search-content {
        width: 80%;
        margin-top: 90px;
    }

    .popular-search {
        right: 10%;
        top: 53%;
    }

}

@media screen and (max-width:820px) {
    .top-search {
        position: absolute;
        height: 0;
        left: 0;
        top: -200%;
        transition: .7s;
    }

    .top-search-actived .top-search {
        top: 0;
        height: 100vh;
    }

    .top-search-content {
        width: 85%;
        margin-top: 70px;
    }

    .search-ico {
        top: 0;
        right: 0%;
    }

    .top-search .top-search-close-btn {
        top: 1%;
        right: 5%;
    }

    .search-form input {
        width: 100%;
    }

    .popular-search {
        left: 50%;
        transform: translateX(-50%);
        top: 35%;
        width: 90%;
    }

    .popular-search h2 {
        text-align: center;
    }

    .top-search-lately {
        margin-top: 30px;
        padding-bottom: 10px;
        border-bottom: 1px solid #ccc;
    }

    .top-search-lately > ul > li {
        height: 50px;
    }

    .top-search-lately > ul > li:first-child {
        width: 100px;
        height: 100px;
    }

    .top-search-lately > ul > li:nth-child(2) {
        margin-left: 0;
    }

    .top-search-lately > ul > li:nth-child(5),
    .top-search-lately > ul > li:nth-child(6) {
        margin-top: 0px;
    }


    #ticker {
        display: none;
    }

    .popular-search .block {
        border-bottom: 0px;
    }

    .hoverblock {
        opacity: 1;
        visibility: visible;
    }

    .hoverblock span {
        position: relative;
    }

    .hoverblock > li {
        padding: 5px;
    }

    .hoverblock .word:hover {
        text-decoration: underline;
    }

    .hoverblock > li span {
        padding: 0 5px;
    }

    .up::before {
        position: absolute;
        content: "";
        left: -20px;
        background-image: url(../img/main/ico_up.png);
        background-size: cover;
        background-position: center;
        width: 15px;
        height: 15px;
        top: 50%;
        transform: translateY(-50%);
    }

    .down::before {
        position: absolute;
        content: "";
        left: -20px;
        background-image: url(../img/main/ico_dn.png);
        background-size: cover;
        background-position: center;
        width: 15px;
        height: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
}


/* 데이터드림 신청절차안내 팝업 */
html.datapopwrap-actived {
    overflow: hidden;
}

.datapopbg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visible 0.5s;
    z-index: 100000;
}

.datapopwrap-actived .datapopbg {
    opacity: 1;
    visibility: visible;
}

.datapopwrap {
    display: none;
}

.datapopwrap-actived .datapopwrap {
    background: rgb(255, 255, 255);
    padding: 10px 20px 20px;
    left: 50%;
    top: 50%;
    position: absolute;
    -ms-overflow-y: auto;
    max-height: 90vh;
    min-width: 448px;
    box-sizing: border-box;
    transform: translate(-50%, -50%);
    overflow: auto;
    font-family: NotoSansLight;
    padding: 10px 20px 20px;
    color: #525252;
    z-index: 100001;
    display: block;
}

.datapopwrap strong {
    font-family: NotoSansMedium;
}

.datapopheader {
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}

.datapopheader div {
    cursor: pointer;
}

.datapopwrap .content .dreamstep {
    text-align: center;
    position: relative;
    height: 220px;
}

.datapopwrap .content .dreamstep ul {
    width: 25%;
    float: left;
    margin-top: 10px;
    text-align: center;
    box-sizing: border-box;
    word-break: keep-all;
    color: #888;
}

.datapopwrap .content .dreamstep ul > li:first-child {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #555;
    margin: 0 auto;
    margin-bottom: 10px;
    margin-top: 15px;
}

.datapopwrap .content .dreamstep ul > li img {
    margin-top: 25px;
}

.datapopwrap .content .dreamstep ul > li:last-child p {
    font-family: NotoSansMedium;
    color: #000;
}

.datapopwrap .content .dreamstep ul > li:last-child span {
    font-size: 14px;
}

.datapopwrap .content .info_box .info_head {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.datapopwrap .content .info_box ul {
    margin-top: 10px;
}

.datapopwrap .content .info_box ul > li {
    padding: 5px 0px;
    font-size: 15px;
    position: relative;
    margin-left: 20px;
}

.datapopwrap .content .info_box ul > li::before {
    content: '';
    position: absolute;
    left: -20px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #000;
    opacity: 0.5;
    top: 50%;
    transform: translateY(-50%);
}

.datapopwrap .content .info_box ul > li strong {
    color: #0195df;
}


@media (min-width:820px) and (max-width:1150px) {
    .datapopwrap .content .dreamstep {
        height: 250px;
    }
}

@media (max-width:820px) {
    .datapopwrap-actived .datapopwrap {
        background: rgb(255, 255, 255);
        padding: 10px 20px 20px;
        left: 50%;
        top: 50%;
        position: absolute;
        -ms-overflow-y: auto;
        max-height: 90vh;
        min-width: 448px;
        box-sizing: border-box;
        transform: translate(-50%, -50%);
        overflow: auto;
        font-family: NotoSansLight;
        padding: 10px 20px 20px;
        color: #525252;
        z-index: 100001;
        display: block;
    }

    .datapopheader h2 {
        font-size: 20px;
    }

    .datapopwrap .content .dreamstep {
        text-align: center;
        position: relative;
        height: 650px;
    }

    .datapopwrap .content .dreamstep ul {
        width: 100%;
        float: none;
    }

    .datapopwrap .content .info_box ul > li {
        padding: 5px 0px;
        font-size: 14px;
        position: relative;
        margin-left: 20px;
    }
}


/* 플로팅 메뉴 */
.float-menu {
    position: fixed;
    right: 5%;
    bottom: 100px;
    text-align: center;
    z-index: 1000;
}

.float-menu .open-btn {
    background: #4e54c8;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #8f94fb, #4e54c8);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #8f94fb, #4e54c8);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
    cursor: pointer;
    position: relative;
    text-align: center;
}

.float-menu .open-btn img {
    display: block;
    margin: 0 auto;
    padding: 16px 0px;
    transition: transform .5s;
}

.float-menu .open-btn.on img {
    transform: rotate(45deg);
}

.float-menu .hide-float {
    position: absolute;
    bottom: 0px;
    width: 100%;
    transition: .5s;
    opacity: 0;
    visibility: hidden;
}

.float-menu .hide-float.on {
    bottom: 80px;
    opacity: 1;
    visibility: visible;
}

.float-menu .depth-float {
    background: #4776C2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: 0 0.5rem 0.5rem rgba(0, 0, 0, 0.2);
    position: relative;
    cursor: pointer;
}

.float-menu .depth-float a {
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 13px;
    width: 100%;
}

.float-menu .btn-show-popup-1 {
    background-color: #347981;
    position: fixed;
    bottom: 190px;
    transition: bottom .5s;
}

.open-btn.on .btn-show-popup-1 {
    bottom: 440px;
}

.float-menu .btn-show-popup-1 .popup-num {
    color: #fddc00;
    font-size: 17px;
    font-weight: 700;
    display: inline-block;
    margin-right: 2px;
}

/* 위로가기버튼 */
.top-move {
    position: fixed;
    right: 5%;
    bottom: 3%;
    text-align: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, .8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: none;
}

.top-move.active {
    display: block;
}

.top-move img {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
}

@media (max-width:820px) {

    /* 플로팅 메뉴 */
    .float-menu .open-btn {
        width: 50px;
        height: 50px;
    }

    .float-menu .open-btn img {
        width: 30px;
        padding: 11px 0px;
    }

    .float-menu .hide-float.on {
        bottom: 65px;
    }

    .float-menu .depth-float {
        width: 50px;
        height: 50px;
    }

    .float-menu .depth-float a {
        font-size: 11px;
    }

    /* 위로가기버튼 */
    .top-move {
        width: 50px;
        height: 50px;
        bottom: 20px;
    }

    .top-move .fas {
        font-size: 20px;
    }

    .float-menu .btn-show-popup-1 {
        bottom: 130px;
    }

    .float-menu {
        bottom: 67px;
    }

    .open-btn.on .btn-show-popup-1 {
        bottom: 330px;
    }
}

@media (min-width:1921px) {
    .main-float {
        bottom: 50%;
    }
}

/* 2024.10.16 추가 */
#gnavigation li:nth-child(1) .depth2,
#gnavigation li:nth-child(2) .depth2,
#gnavigation li:nth-child(3) .depth2,
#gnavigation li:nth-child(4) .depth2 {
  border-bottom: 1px solid rgba(213, 213, 213, 0.5);
}

/*******2024.10.23. 전체보기 메뉴 스타일수정 **********/
.Allmenu .all2depth > li > a {
    display: block;
    text-align: center;
    color: #fff;
    position: relative;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    background: linear-gradient(45deg, #3c8bc3, #3f6dc7);
    border-radius: 5px;
    height: 36px;
    line-height: 36px;
    width: calc(75% - 18px);
    padding-left: 18px;
}
.Allmenu .all3depth {
    margin-top: 5px;
}
.Allmenu ul.all3depth > li {
    padding: 3px 0px;
    margin-left: 20px;
}
.Allmenu ul.all3depth > li > a::before {
    background: #1950bf;
}
.Allmenu .all4depth {
    background-color: #f4f5fa;
    width: calc(75% - 15px);
    border-radius: 5px;
    padding: 2px 0 5px 10px;
    margin: 5px 0;
}
.Allmenu ul.all4depth li,
.Allmenu ul.all4depth li:last-child{
    padding: 0;
}
.Allmenu .all2depth {
    margin-bottom: 10px;
    margin-top: 0;
    font-weight: 500;
}
.Allmenu > .all1depth > li > a {
    padding: 5px 0 8px 10px;
}
.Allmenu > .all1depth > li > a::after {
    height: 0;
}
.Allmenu > .all1depth > li > a {
    padding: 5px 0 8px 10px;
}
.Allmenu ul.all3depth > li > a:hover {
    color: #1950bf;
}
.Allmenu .all4depth > li > a:hover {
    color: #3c8bc3;
}

/***** 전체보기 추가 2024.10.31 ***********/
.Allmenu ul.all3depth > li > a {
    position: relative;
    display: block;
}
.Allmenu ul.all3depth > li > a::before {
    content: '';
    display: block;
    position: absolute;
    width:3px;
    height: 3px;
    background: #1950bf;
    top:50%;
    transform: translateY(-50%);
    left: -9px;
}
.Allmenu .all4depth > li > a {
    font-size: 13px;
    font-weight: 300;
    color: #000;
}
/*********************************************
 전체보기 추가 2024.10.31 End
*********************************************/

input:focus,
select:focus,
label:focus,
button:focus {
    outline: 2px solid #000; 
}
label:focus-within {
    font-weight: bold;
    color: blue;
}
label:has(input:focus) {
    outline: 2px solid #000;
    outline-offset: 3px; 
}
input[type="radio"]:focus + label {
    outline: 2px solid #000;
}
input:focus + label, 
label:focus {
    outline: 2px solid #000;
}

