@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src: url('/fonts/AppleSDGothicNeoL.eot?#iefix') format('embedded-opentype');
    src: url('/fonts/AppleSDGothicNeoL.otf?#iefix'),
			url('/fonts/AppleSDGothicNeoL.ttf') format('truetype'),
			local(※), url('/fonts/AppleSDGothicNeoL.woff') format('woff');
    font-weight: 300;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
	src: url('/fonts/AppleSDGothicNeoR.eot?#iefix') format('embedded-opentype');
    src: url('/fonts/AppleSDGothicNeoR.otf?#iefix'),
			url('/fonts/AppleSDGothicNeoR.ttf') format('truetype'),
			local(※), url('/fonts/AppleSDGothicNeoR.woff') format('woff');
    font-weight: 400;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src: url('/fonts/AppleSDGothicNeoM.eot?#iefix');
    src: 	url('/fonts/AppleSDGothicNeoM.otf?#iefix') format('embedded-opentype'),
			url('/fonts/AppleSDGothicNeoM.ttf') format('truetype'),
			local(※), url('/fonts/AppleSDGothicNeoM.woff') format('woff');
    font-weight: 500;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
    src: url('/fonts/AppleSDGothicNeoSB.eot?#iefix') format('embedded-opentype');
    src: url('/fonts/AppleSDGothicNeoSB.otf?#iefix'),
			url('/fonts/AppleSDGothicNeoSB.ttf') format('truetype'),
			local(※), url('/fonts/AppleSDGothicNeoSB.woff') format('woff');
    font-weight: 600;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src:url('/fonts/AppleSDGothicNeoB.eot?#iefix') format('embedded-opentype');
    src: url('/fonts/AppleSDGothicNeoB.otf?#iefix'),
		   url('/fonts/AppleSDGothicNeoB.ttf') format('truetype'),
	       local(※), url('/fonts/AppleSDGothicNeoB.woff') format('woff');
    font-weight: 700;
}
@font-face {
 font-family: 'AppleSDGothicNeo';
 	src:url('/fonts/AppleSDGothicNeoEB.eot?#iefix') format('embedded-opentype');
    src: url('/fonts/AppleSDGothicNeoEB.otf?#iefix'),
			url('/fonts/AppleSDGothicNeoEB.ttf') format('truetype'),
			local(※), url('/fonts/AppleSDGothicNeoEB.woff') format('woff');
    font-weight: 800;
}
/*gmarket*/
@font-face {
 font-family: 'GmarketSans';
    src: url('/fonts/GmarketSansLight.otf');
    src: url('/fonts/GmarketSansLight.otf?#iefix') format('embedded-opentype');
    src: url('/fonts/GmarketSansTTFLight.ttf') format('truetype');
	src: url('/fonts/GmarketSansTTFLight.eot?#iefix');
	src:local(※), url('/fonts/GmarketSansTTFLight.woff') format('woff');
    font-weight: 400;
}
@font-face {
 font-family: 'GmarketSans';
    src: url('/fonts/GmarketSansMedium.otf');
    src: url('/fonts/GmarketSansMedium.otf?#iefix') format('embedded-opentype');
    src: url('/fonts/GmarketSansTTFMedium.ttf') format('truetype');
	src: url('/fonts/GmarketSansTTFMedium.eot?#iefix');
	src: local(※), url('/fonts/GmarketSansTTFMedium.woff') format('woff');
    font-weight: 500;
}
@font-face {
 font-family: 'GmarketSans';
    src: url('/fonts/GmarketSansBold.otf');
    src: url('/fonts/GmarketSansBold.otf?#iefix') format('embedded-opentype');
    src:url('/fonts/GmarketSansTTFBold.ttf') format('truetype');
	src:url('/fonts/GmarketSansTTFBold.eot?#iefix');
	src: local(※), url('/fonts/GmarketSansTTFBold.woff') format('woff');
    font-weight: 600;
}

*{
	padding:0;
	margin:0;
	box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6{
	font-weight:500;
}
ul,li,dl,dt,dd,ol{
	list-style:none;
}
a{
	text-decoration:none;
}	
body,a,input,textarea,label,button{
	font-family:'Roboto','AppleSDGothicNeo',sans-serif !important;
	font-size:14px;
	font-weight:400;
	letter-spacing: -0.5px;
    font-style: normal;
    line-height: 1.6;
	color:#100f12;
    word-break: keep-all;
}
.gma{
	font-family:'GmarketSans',sans-serif !important; 
	color:#100f12;
}
#loading {
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    position: fixed;
    display: block;
    opacity: 0.7;
    background-color: #000;
    z-index: 99;
    text-align: center;
    margin-left: -50px;
    margin-top: -50px;
    border-radius: 10px;
    overflow: hidden;
}

#loadingmodal {
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    position: fixed;
    display: none;
    opacity: 1;
    z-index: 99;
    text-align: center;
}

#loading-image {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 100;
    margin-left: -32px;
    margin-top: -32px;
}

#loading-image {
    -webkit-animation: spin 1000ms infinite linear;
    -moz-animation: spin 1000ms infinite linear;
    -ms-animation: spin 1000ms infinite linear;
    animation: spin 1000ms infinite linear;
}



@-webkit-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@-ms-keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    100% {
        -webkit-transform: rotate(360deg);
    }
}
img{
	border:0;
	vertical-align:top;
}
table{
	border-collapse: collapse;
	width:100%;
}
/*이미지맵*/
img[usemap] {
  border: none;
  height: auto;
  max-width: 100%;
  width: auto;
}
@media (max-width: 991px) {
	img[usemap] {
		  border: none;
		  height: auto !important;
		  max-width: 100%;
		  width: 100% !important;
   }
}
.ellipsis{
	display:block;
	text-overflow:ellipsis; 
	overflow:hidden;
	white-space: nowrap;
}
.inner{
	max-width:1200px;
	margin:0 auto;
	padding:0 20px;
}
input,input[type="submit"]{
   appearance: none;
   border-radius: 0;
   -webkit-appearance: none;
   -webkit-border-radius: 0;
}
input[type="radio"],
input[type="checkbox"]{
	appearance: auto;
	-webkit-appearance: auto;
}
input:focus,
textarea:focus,
select:focus,
button:focus{ outline: none;}
button,
label{ cursor:pointer}
b{font-weight:600;}


/*main_common*/


.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}
.left {
    float: left;
}
.right {
    float: right;
}
.clearfix::after {content:"";display:block;clear:both}

.h_top {
    background: #151922;
    color: #fff;
    text-align: center;
    font-weight: 100;
    padding: 5px 20px;
}
.h_top span {
    color: #E02F1F;
}
.h_top.ht_green {
    background: #36B946;
    color: #EFEFEF;
}

.security_ip {
    color: #0d158d;
    animation: blink 1s infinite;
}


@keyframes blink {
    0%, 50%, 100% { color: transparent; }
    25%, 75% { color: #0d158d; }
}

.h_logo {
    padding: 20px 0;
    border-bottom: 1px solid #E2E2E4;
}
.con_wrap {
    display: flex;
    flex-direction: column;
    /* height: 100vh; */
}
/* .header {
    position: fixed;
} */
.contents {
    flex: 1;
    /* padding-top: 96px; */
}

#hd_login_msg {
    display: none;
}
.gnb_wrap {
    /* background: url(../images/gnb_bg.jpg) no-repeat center; */
    /* background-size: cover; */
    padding: 50px 0;
    /* border-bottom: 1px solid #E2E2E4; */
    background-color: #f7f8fd;
}
.ip_con_wrap > div {
    box-shadow: 0px 0px 15px 0px #00000026;
    border-radius: 15px;
    background: #fff;
    padding: 20px;
}
.ip_left_box {
    width: 500px;
    margin-right: 20px;
}
.ip_right_box {
    width: calc(100% - 520px);
}
.map_con, .ip_find_con {
    margin: 15px 0;
}
.map_con img {
    width: 100%;
}
.ip_txt, .ip_txt02 {
    text-align: center;
}
.ip_txt > div:first-child {
    font-size: 18px;
    margin-bottom: 5px;
}
.ip_txt .my_ip {
    color:#3E5FFF;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
}
.map_sub_info {
    width: 50%;
    font-weight: 500;
}
.map_sub_info span {
    display: block;
}
.map_sub_info02 span img {
    vertical-align: middle;
    margin-right: 5px;
}
.btn_st {
    display: block;
    width: 100%;
    box-shadow: 0px -4px 10px 0px #00000033 inset;
    /* background:#3E5FFF; */
	background: linear-gradient(270deg, #48bfe5, #3E5FFF, #48bfe5, #3E5FFF);
    background-size: 600% 600%;
    animation: btn_ani 3s ease infinite;
    border-radius: 100px !important;
    color: #fff;
    font-size: 16px;
    text-align: center;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
    border: 0 !important;
	cursor: pointer;
}
.btn_st2 {
	background:#3E5FFF;
}
@keyframes btn_ani {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.ip_left_box .btn_box {
    max-width: 240px;
    margin: 20px auto 0;
}
.ip_find_input {
    width: calc(100% - 140px);
    margin-right: 10px;
}
.ip_find_input input {
    border: 1px solid #E2E2E4;
    border-radius: 5px;
    height: 50px;
    line-height: 50px;
    padding: 10px;
    width: 100%;
}
.ip_find_input input::placeholder {
    font-size: 15px;
    color: #BFBFBF;
    letter-spacing: 0;
    font-weight: 500;
}
.ip_find_btn {
    width: 130px;
}
.ip_txt02 > div:first-child {
    font-size: 36px;
    font-weight: 700;
}
.ip_txt02 > div:last-child {
    font-size: 16px;
}
.ex_txt {
    color:#3E5FFF;
    margin-top: 10px;
}
.ex_txt i {
    font-size: 22px;
    vertical-align: -3px;
}
.ip_detail {
    background: #EDF3FE;
    border-radius: 5px;
    padding: 20px;
}
.ip_detail .map_sub {
    margin-bottom: 10px;
}
.ip_detail .map_sub:last-child {
    margin-bottom: 0;
}
.view_wrap {
    position: relative;
}
.view_menu_tab {
    border-bottom: 1px solid #E2E2E4;
    position: sticky;
    top: 0px;
    background: #fff;
    z-index: 2;
}
.view_menu > div {
    float: left;
    width: 14.28571%;
    text-align: center;
}
.view_menu > div a {
    color: #666;
    font-size: 15px;
    letter-spacing: -1px;
    padding: 10px 0;
    display: block;
    width: 100%;
}
.view_menu > div.on, .view_menu > div:hover {
    background: #F6F8FE;
    border-bottom: 2px solid #3E5FFF;
}
.view_menu > div.on a, .view_menu > div:hover a {
    color: #3E5FFF;
    font-weight: 600;
}
.view_menu_con > div {
    padding: 50px 0;
}
.section_txt {
    text-align: center;
    margin-bottom: 40px;
}
.section_tt {
    font-size: 35px;
    font-weight: 700;
    color: #111;
}
.section_sub {
    color: #666;
    font-size: 16px;
}
.section01_box {
    width: 25%;
    text-align: center;
}
.b_font {
    color: #333;
    font-size: 18px;
    font-weight: 600;
}
.s_font {
    color: #666;
    font-size: 15px;
}
.section01_box .b_font {
    margin: 15px 0 10px;
}
.section_bg {
    background: #F6F8FE;
}
.section02_bg {
    background: url(../images/mid_bg.jpg) no-repeat center;
    background-size: cover;
    padding-bottom: 350px !important;
}
.section02_img {
    width: 55%;
}
.section02_txt {
    width: 45%;
    white-space-collapse: preserve-breaks;
    padding: 5px 0;
    color: #333;
    font-size: 15px;
}
.section03_tab {
    display: flex;
    text-align: center;
    margin-bottom: 50px;
}
.section03_tab > div {
    width: 100%;
    border-bottom: 1px solid #E2E2E4;
    padding: 10px 0;
    color: #666;
	cursor: pointer;
}
.section03_tab > div.on, .section03_tab > div:hover {
    background:#F6F8FE;
    border-bottom: 2px solid #3E5FFF;
    color:#3E5FFF;
    font-weight: 600;
}
.section03_view > div:not(:first-child) {
	display: none;
}
.section03_img {
    width: 556px;
    box-shadow: 0px 0px 15px 0px #00000026;
    overflow: hidden;
    border-radius: 5px;
	max-width: 100%;
}
.section03_img img {
	width: 100%;
}
.section03_txt {
    width: calc(100% - 556px);
    padding-left: 70px;
}
.section03_txt .section_tt {
    line-height: 1.2;
    margin-bottom: 20px;
}
.section03_detail_txt {
    margin-bottom: 20px;
}
.section03_detail_txt:last-child {
    margin-bottom: 0;
}
.section03_order_tt {
    font-size: 16px;
}
.section03_order li {
    color: #666;
    font-size: 16px;
    margin-left: 5px;
}
.section04_box {
    width: 500px;
    box-shadow: 0px 0px 15px 0px #00000026;
    border-radius: 5px;
    padding: 15px;
    margin: 0 10px;
    text-align: center;
    background: #fff;
}
.section04_con {
    background: #F6F8FE;
    height: 470px;
    position: relative;
    margin-bottom: 80px;
}
.section04_bg {
    position: absolute;
    top: 60px;
    left: 5%;
    /* width: 100%; */
}
.section05_con .section03_img {
	box-shadow: none;
}
.section05_con .section03_txt {
	padding-top: 20px;
}
.footer {
    /* border-top: 1px solid #E2E2E4; */
    background: #151922;
}
.footer_btm {
    text-align: center;
    padding: 40px 20px 35px;
    border-top: 1px solid #e2e2e46e;
}
.footer_btm .logo_box {
    margin-bottom: 25px;
}
.footer_con {
    margin: 0 auto;
}
.footer_con ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.footer_btm .footer_con li {
    /* color: #444444CC; */
    color: #B1B1B4;
    font-weight: 100;
}
.footer_btm .footer_con li::after {
    content: '';
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #B1B1B4;
    margin: 0 15px;
}
.footer_btm .footer_con li:last-child::after {
	display:none;
}
.footer_btm .footer_con ul + div {
    color: #B1B1B4;
    margin-top: 15px;
}
.btm_gnb {
	background: url(../images/btm_bg.jpg) no-repeat center;
    background-size: cover;
}
.btm_gnb_con {
	text-align: center;
}
.btm_gnb_txt {
	color: #fff;
    font-size: 35px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 2;
}
.btm_gnb_txt span {
    display: block;
    color: #D4D4D4;
    font-size: 16px;
    font-weight: 400;
}
.btm_gnb_con .btn_box {
	max-width: 260px;
    margin: 0 auto;
}
.faq_top {
	color: #3E5FFF;
	font-size: 17px;
    font-weight: 700;
}
.faq_left .section_tt {
    line-height: 1.2;
}
.faq_left {
    width: 200px;
}
.faq_right {
    width: calc(100% - 200px);
    padding-left: 30px;
}
.faq_box {
    margin: 15px 0;
    padding: 20px;
}
.faq_title {
    font-size: 16px;
    font-weight: 500;
	cursor: pointer;
}
.click_q_view i {
	font-size: 25px;
	cursor: pointer;
}
.faq_con {
	margin-top: 10px;
	display: none;
}
.a_txt {
	word-break: keep-all;
    color: #666;
    font-size: 16px;
}
.faq_box.on {
    background: #fff;
    border-radius: 10px;
}
.faq_box.on .faq_title {
	color: #3E5FFF;
	font-weight: 600;
}
.faq_box.on .click_q_view i {
	color: #3E5FFF;
    transform: rotate(45deg);
    font-size: 30px;
}
.faq_box.on .faq_con {
	display: block;
}
.section06_con {
	display: flex;
    flex-wrap: wrap;
	gap: 20px;
}
.section06_box {
	border: 1px solid #E2E2E4;
	border-radius: 10px;
	width: calc(50% - 10px);
}
.section06_con a {
	display: block;
	width: 100%;
	padding: 20px;
	color: #333;
	font-size: 16px;
	font-weight: 500;
}
.section06_tt {
    width: calc(100% - 30px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.section06_arrow {
	width: 15px;
}
.down_wrap {
	background: #151922;
    color: #B1B1B4;
}
.down_con_txt {
	font-size: 16px;
    /* line-height: 78px; */
    padding: 18px 0 0;
}
.down_con_link {
    display: flex;
    gap: 20px;
}
.view_menu > div a .menu_mob {
	display:none;
}
.api_box.btn_st {
    max-width: 100px;
    font-size: 14px;
    height: 35px;
    line-height: 35px;
    border-radius: 5px !important;
    position: relative;
    top: -5px;
    box-shadow: none;
}
.section_sub a {
    color: #3E5FFF;
    font-size: 16px;
    font-weight: 700;
}
.s_font a {
	color: #3E5FFF;
    font-size: 15px;
    font-weight: 700;
}


/* 모달 */
.modal_bg {
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10;
}
.modalbox {
    position: fixed;
    background-color: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 10px;
    overflow: hidden;
    z-index: 11;
    width: 100%;
    max-width: 600px;
    width: calc(100% - 30px);
    max-height: calc(100vh - 30px);
	padding: 20px;
    overflow-y: auto;
    display: none;
}
.modal_top {
    position: relative;
}
.modal_top i {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 20px;
    font-weight: 600;
	cursor: pointer;
}
.top_txt_box {
    margin-bottom: 15px;
}
.top_box_tt {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
}
.top_box_sub {
    color: #888;
    font-size: 16px;
    line-height: 1.3;
    margin-top: 10px;
}
.modal_con {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 15px;
    background: #f9f9f9;
    color: #555;
}
.modal_box {
	margin-bottom: 10px;
	font-size: 15px;
}
.modal_box:last-child {
	margin-bottom: 0;
}
.modal_logo {
    text-align: center;
    margin-bottom: 20px;
}
.num_box {
	margin-bottom: 5px;
	color: #222;
	font-size: 16px;
}
.num_box .num {
    background: #3E5FFF;
    color: #fff;
    border-radius: 50%;
    padding: 2px 6px;
    font-size: 13px;
    margin-right: 3px;
	vertical-align: middle;
}
.security {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
	color: #3E5FFF;
}
.security i {
	margin-right: 5px;
}
.h_right {
    display: flex;
    gap: 20px;
}
.h_right a {
    font-size: 17px;
	font-weight: 500;
}
.h_right a:hover {
	color: #3E5FFF;
    border-bottom: 2px solid #3E5FFF;
}
.modal_box b i.xi-check-min {
    font-size: 18px;
    vertical-align: -2px;
    color: #3E5FFF;
    font-weight: 600;
}

.tbl_wrap table {
    border: 1px solid #ddd;
}
.tbl_wrap table th {
    padding: 7px 5px;
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
}
.tbl_wrap table th.chk_box {
	width: 100px;
}
.tbl_wrap table th a {
	font-size: 15px;
    font-weight: 600;
}
.tbl_wrap table td {
    border-bottom: 1px solid #eee;
}
.ser_btn_wrap {
	width: 100px !important;
}
.ser_btn_wrap button {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: baseline;
    padding: 3px 0;
}
.ser_btn_wrap button i {
	margin-right: 5px;
}
.ser_btn_wrap2 {
	width: 130px !important;
}
.bo_w_link_wrap .bo_w_link {
    position: relative;
    border: 1px solid #ccc;
    background: #fff;
    color: #000;
    vertical-align: middle;
    border-radius: 3px;
    padding: 5px;
    height: 40px;
    margin: 0;
}