@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@300;400;500;700&display=swap');

@import url(/css/reset.css?6);
@import url(/css/header.css?9);
@import url(/css/footer.css?7);

* {
	box-sizing: border-box;
	background-repeat: no-repeat;
	background-position: center;
}
html,
body {
	width: 100%;
	margin: 0;
	padding: 0;

	font-family: 'Noto Sans KR', sans-serif;
}
a {
	text-decoration: none;
	color: #777;
}
img {
	vertical-align: top;
}
button {
	border: 0px none;
	padding: 0px;
	background-color: transparent;
}
.float_after:after{
	display: block;
	content: "";
	clear: both;
}
.ani_on{
	opacity: 1 !important;
	transform: translateY(0px) !important;
}

.fadein_up{
    transition: 0.5s;
    transition-timing-function: ease-out;
    opacity: 0;
    transform: translateY(20px);
}
.fadein_up.on{
    opacity: 1;
    transform: translateY(0px);
}

:lang(ko) {
	font-family: 'Noto Sans KR', sans-serif;
	word-break: keep-all;
}
:lang(en) {
	word-break: keep-all;
}
:lang(ja) {
	font-family: 'Noto Sans JP', sans-serif;
}
:lang(zh-CN) {
	font-family: 'Noto Sans SC', sans-serif;
}

:root {
	/* color S */

	--primary: #3966f4;
	--secondary: #475c71;
	--tertiary: #15304b;
	--pri-ip-blue: #0047bb;
	--pri-darkness: #010440;
	--black: #08091b;
	--pri-white: #ffffff;
	--secondary-dark: #1e1e1e;
	--secondary-dark-gray: #4b4b57;
	--secondary-gray: #88929e;
	--secondary-medium: #bdc5ca;
	--secondary-light: #dcdee7;
	--secondary-shine: #fafafc;
	/* color E */

	/* fonts S */
	--font-size-h2: 36px;
	--font-size-h3: 24px;
	--font-size-h4: 28px;
	--font-size-h5: 24px;
	--font-size-h6: 16px;
	--font-size-body1: 18px;
	--font-size-body2: 14px;

	--font-lh-h2: 54px;
	--font-lh-h3: 42px;
	--font-lh-h4: 42px;
	--font-lh-h5: 36px;
	--font-lh-h6: 24px;
	--font-lh-body1: 24px;
	--font-lh-body2: 23px;

	--font-ls-h2: 0.5px;
	--font-ls-h3: 0.2px;
	--font-ls-h4: 0.5px;
	--font-ls-h5: 0.5px;
	--font-ls-h6: 0.5px;
	--font-ls-body1: 0.2px;
	--font-ls-body2: 0.2px;

	--font-weight-h2: 700;
	--font-weight-h2: 500;
	--font-weight-h2: 700;
	--font-weight-h2: 700;
	--font-weight-h2: 700;
	--font-weight-body1: 500;
	--font-weight-body2: 500;

	/* fonts E */
}

/* 감추고 싶은 글자에 사용하는 css S */
.blind {
	border: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	white-space: nowrap;
}
.modal{
	display: none;
	text-indent: -9999px;
}
/* 감추고 싶은 글자에 사용하는 css E */

.container {
	width: 100%;
	max-width: 1140px;
	margin: 0px auto;
}

.mb{
    position: relative;
    width: 100%;
    height: 800px;
    background-image: url(/images/company/company_mb.jpg);
    background-size: cover;
}
.mb::after{
    content: '';
    clear: both;
    display: block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(255,255,255,0) 50%);
}
.mb_title{
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    font-weight: 500;
    transform: translate(-50%, -50%);
    color: #fff;
}
.mb_title>h2{
    font-size: 36px;
}
.mb_title>h3{
    font-size: 24px;
}
.mb{
	background-size: auto 130%;
}
.mb.on{
    animation: mb_bg_ani 1.5s ease-out forwards;
}
@keyframes mb_bg_ani{
    0%{
        background-size: auto 130%;
    }
    100%{
        background-size: auto 100%;
    }
}

/* animation css S */

.transition-3s {
	transition-duration: 0.3s;
}
.transition-5s {
	transition-duration: 0.5s;
}
.transition-7s {
	transition-duration: 0.7s;
}
.transition-10s {
	transition-duration: 1s;
}
.transition-12s {
	transition-duration: 1.2s;
}

.trans-delay-01s {
	transition-delay: 0.1s !important;
}
.trans-delay-02s {
	transition-delay: 0.2s !important;
}
.trans-delay-03s {
	transition-delay: 0.3s !important;
}
.trans-delay-04s {
	transition-delay: 0.4s !important;
}
.trans-delay-05s {
	transition-delay: 0.5s !important;
}
.trans-delay-06s {
	transition-delay: 0.6s !important;
}
.trans-delay-07s {
	transition-delay: 0.7s !important;
}
.trans-delay-08s {
	transition-delay: 0.8s !important;
}
.trans-delay-09s {
	transition-delay: 0.9s !important;
}
.trans-delay-10s {
	transition-delay: 1s !important;
}
.trans-delay-11s {
	transition-delay: 1.1s !important;
}
.trans-delay-12s {
	transition-delay: 1.2s !important;
}
.trans-delay-13s {
	transition-delay: 1.3s !important;
}
.trans-delay-14s {
	transition-delay: 1.4s !important;
}
.trans-delay-15s {
	transition-delay: 1.5s !important;
}
.trans-delay-16s {
	transition-delay: 1.6s !important;
}
.trans-delay-17s {
	transition-delay: 1.7s !important;
}
.trans-delay-18s {
	transition-delay: 1.8s !important;
}
.trans-delay-19s {
	transition-delay: 1.9s !important;
}
.trans-delay-20s {
	transition-delay: 2s !important;
}

.fade-show-left {
	transform: translateX(-20%) !important;
	opacity: 0 !important;
}
.fade-show-right {
	transform: translateX(20%) !important;
	opacity: 0 !important;
}
.fade-show-bottom {
	transform: translateY(20%) !important;
	opacity: 0 !important;
}
.fade-show-top {
	transform: translateY(-20%) !important;
	opacity: 0 !important;
}
/* animation css E */


/* media S */
body th{
	height: 65px;
	font-size: 14px !important;
	border: 0px none;
}
body td{
	font-size: 14px !important;
}
body .tbody-writer{
    display:none;
}
body .thead-writer{
	display: none;
}
body .thead-no,
body .thead-title,
body .thead-date{
	border-bottom: 1px solid #DCDEE7;
}
/* body #searchForm{
	position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
} */
body #searchForm input[type="text"]{
	width: 300px;
	height: 30px;
	border: 1px solid #DCDEE7;
}
body #searchForm input[type="text"]::placeholder{
	color: transparent;
}
body #searchForm input[type="image"]{
	right: -2px;
	width: auto;
	height: 30px;
}

body .page-box a, body .page-box b{
    display: inline-block;
	width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
	font-size: 14px;
	margin: 0 3px;
}
body .page-box b{
	color: #626262;
	background-color: #D9D9D9;
}

/* media E */

/* Mobile up S */
@media (min-width: 767px) {
	.pc_view{
		display: block;
	}
	.mobile_view {
	  display: none;
	}
  }
/* Mobile up E */

/* Mobile S */
@media (max-width: 767px) {
	.pc_view{
		display: none;
	}
	.mobile_view{
		display: block;
	}
	.header{
		display: block;
		height: 60px;
	}
	.header__nav{
		display: none;
	}
	.wrap{
        min-width: 0px;
    }


	#hd .header{
		display: flex;
		padding: 0px 20px;
	}
	.wrap #hd.on{
		height: 50px;
	}
	#hd .language{
		display: none;
	}

	.wrap .mb{
		height: 265px;
	}
    .mb_title h2{
        font-size: 24px;
    }
    .mb_title h3{
        font-size: 18px;
    }

	.common_tab{
		position: relative;
        display: flex;
        width: 100%;
		padding-top: 265px;
    }
	.modal{
		display: none;
		text-indent: -9999px;
	}
	.modal.on{
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 9980;
		display: block;
		width: 100vw;
		height: 100vh;
		background-color: rgba(0,0,0,0.5);
	}
    .common_tab>p{
		height: 50px;
        line-height: 50px;
        text-align: center;
		padding: 0px 20px;
        color: #fff;
        background-color: var(--black);
    }
	.common_tab>p:nth-of-type(2){
		width: 100%;
		text-align: left;
		color: var(--black);
		background-color: #fff;
	}
    .wrap .common_tab_sub{
		overflow: hidden;
		display: none;
		z-index: 9990;
		position: fixed;
		top: 150px;
		left: 50%;
		transform: translateX(-50%);
        width: 85%;
		border-radius: 15px;
		margin: 0px auto;
		background-color: #fff;
    }
	.wrap .common_tab_sub:first-of-type>li{
		display: block;
	}

    .common_tab .arrow{
        text-indent: -9999px;
        content: '';
        clear: both;
        display: block;
        position: absolute;
        bottom: 22px;
        right: 20px;
		transition: 0.4s;
        transform: rotate(45deg);
        width: 7px;
        height: 7px;
        border-right: 1px solid var(--black);
        border-bottom: 1px solid var(--black);
    }
    .common_tab .arrow.on{
        transform: translateY(3px) rotate(-135deg);
    }






    .wrap .common_tab_sub>li>a{
        display: block;
        opacity: 1;
        width: 100%;
        height: 50px;
        line-height: 50px;
        text-align: left;
        padding-left: 20px;
		color:var(--black);
    }
    .wrap .common_tab_sub>li>a.on{
        color: var(--black);
        background-color: #fff;
    }

	
	#newsContent{
		padding-top: 60px;
	}
	body #searchForm input[type="text"]{
		width: 220px;
	}
	body #searchForm input[type="image"]{
		right: -111px;
	}


}