html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,th,td,img {
	margin: 0; 
	padding: 0; 
}
html {
	width: 100%; 
	height: 100%; 
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}
body {
	font-family: 'Noto Sans KR', sans-serif; 
	font-size: 13px; 
	color: #4e4d4d; 
	/* background-color: #faf9f6; */
	line-height: 1.428571429;
}
[lang="cn"] {
	font-family: 'Noto Sans SC', sans-serif;
}
li {
	list-style: none; 
}
h1, h2, h3 {
	font-family: 'Noto Serif KR', serif;
	font-weight: 500;
}
[lang="cn"] h1, [lang="cn"] h2, [lang="cn"] h3 {
	font-family: 'Noto Serif SC', serif;
}
h1 {
	font-size: 34px;
}
h2 {
	font-size: 24px;
}
h3 {
	font-size: 16px;
}

@media (max-width: 700px) {
	h1 {
		font-size: 26px;
	}
	h2 {
		font-size: 20px;
	}
	h3 {
		font-size: 14px;
	}
}

a { 
	text-decoration:none; 
	color: inherit; 
}
.round-button {
	display: block;
	width: 100%;
	height: 50px;
	line-height: 50px;
	border-radius: 25px;
	border: 1px solid #4e4d4d;
	text-align: center;
	font-size: 14px;
	position: relative;
}
.round-button .button-text {
	position: relative;
	z-index: 9;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
*:before,
*:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/*--- Site header ---*/

.site-logo,
.site-menu {
	position: fixed;
}
.site-logo {
	top: 50px;
	left: 50px;
	z-index: 99998;
}
.central-logo {
	background-image: url('/assets/images/central-logo-sprite.png');
	background-size: 180px 64px;
	background-repeat: no-repeat;
	display: block;
	width: 220px;
	height: 30px; /*39->30*/
}
.site-menu {
	top: 140px;
	left: 50px;
	z-index: 99997;
}
.site-menu .menu-item {
	position: relative;
}
.site-menu .menu-item:before {
	background-color: #908e8a;
	content: '';
	width: 0;
	height: 1px;
	position: absolute;
	top: 16px;
	left: -50px;
	transition: width .2s ease-out;
}
.site-menu .menu-item:hover:before {
	width: 15px;
}
.site-menu .menu-item.current-page:before {
	width: 30px;
	
}
.site-menu .menu-item a,
.site-menu .sub-menu .menu-item a {
	display: inline-block;
	font-size: 16px; /*13*/
	padding-top: 7px;
	padding-bottom: 7px;
	transition: padding-left .2s ease-out;
}
.site-menu .menu-item a:hover,
.site-menu .sub-menu .menu-item a:hover {
	padding-left: 2px;
}
.site-menu .menu-item.current-page > a {
	font-weight: 600;
}

.site-menu .sub-menu {
	opacity: 0;
	padding-left: 60px;
	position: absolute;
	top: 0;
	right: -180px;
	transition: opacity .3s ease-out, padding-left .3s ease-out;
	transform: translateX(-200%);
	width: 220px;
}
.site-menu .menu-item:hover .sub-menu {
	opacity: 1;
	padding-left: 70px;
	transform: translateX(0);
}
.site-menu .menu-item .sub-menu:before {
	background-color: #908e8a;
	content: '';
	width: 15px;
	height: 1px;
	opacity: 0;
	position: absolute;
	top: 16px;
	left: 12px;
	transition: width .3s ease-out, opacity .3s ease-out;
}
.site-menu .menu-item:hover .sub-menu:before {
	opacity: 1;
	width: 30px;
}
.site-menu .menu-item .sub-menu .sub-menu-item.current-page > a {
	font-weight: 600;
}

.site-menu .contact + .language-item {
	margin-top: 31px;
}
.site-menu .language-item.current-language a {
	font-weight: 600;
}
.site-menu .language-item:before {
	font-weight: 600;
}
.main-page .site-menu .language-item.current-language:before {
	width: 30px;
}

.hamburger {
	cursor: pointer;
	display: none;
	top: 30px;
	right: 30px;
	padding: 10px;
	position: fixed;
	text-transform: none;
	transition-property: opacity, filter;
	transition-duration: 0.15s;
	transition-timing-function: linear;
	z-index: 99999;
}
.hamburger-box {
	width: 30px;
	height: 24px;
	display: inline-block;
	overflow: hidden;
	position: relative; 
}
.hamburger-inner {
	display: block;
	top: 50%;
	margin-top: -1px;
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger-inner, 
.hamburger-inner::before, 
.hamburger-inner::after {
	width: 30px;
	height: 1px;
	background-color: #4a4948;
	position: absolute;
	transition-property: transform;
	transition-duration: 0.15s;
	transition-timing-function: ease; 
}
.hamburger-inner::before, 
.hamburger-inner::after {
	content: "";
	display: block; 
}
.hamburger-inner::before {
	top: -8px;
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger-inner::after {
	bottom: -8px; 
	transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.site-header.is-active .hamburger .hamburger-inner {
	transform: rotate(45deg);
	transition-delay: 0.12s;
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); 
}
.site-header.is-active .hamburger .hamburger-inner::before {
	top: 0;
	opacity: 0;
	transition: top 0.075s ease, opacity 0.075s 0.12s ease; 
}
.site-header.is-active .hamburger .hamburger-inner::after {
	bottom: 0;
	transform: rotate(-90deg);
	transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); 
}

body.toned-white .site-logo .central-logo {
	background-position-y: -32px; /*-35->32*/
	background-image: url('/assets/images/central-logo-sprite.png');
	background-size: 180px 64px; /*220 78*/
	background-repeat: no-repeat;
	display: block;
	width: 220px;
	height: 30px; /*39*/
}
body.toned-color .site-logo .central-logo {
	background-position-y: 0px;
	background-image: url('/assets/images/central-logo-sprite.png');
	background-size: 180px 64px; /*220 78*/
	background-repeat: no-repeat;
	display: block;
	width: 220px;
	height: 30px; /*39*/
}
body.toned-white .site-menu {
	color: #fff;
}
body.toned-white .site-menu .menu-item:before,
body.toned-white .site-menu .menu-item .sub-menu:before,
body.toned-white .hamburger-inner, 
body.toned-white .hamburger-inner::before, 
body.toned-white .hamburger-inner::after {
	background-color: #fff;
}

body.toned-white .site-header.is-active .site-logo .ogana-logo {
	background-position-y: 0;width: 220px;height: 39px;  overflow:hidden
}
body.toned-white .site-header.is-active .site-menu {
	color: #4e4d4d;
}
body.toned-white .site-header.is-active .site-menu .menu-item:before,
body.toned-white .site-header.is-active .site-menu .menu-item .sub-menu:before,
body.toned-white .site-header.is-active .hamburger-inner, 
body.toned-white .site-header.is-active .hamburger-inner::before, 
body.toned-white .site-header.is-active .hamburger-inner::after {
	background-color: #4e4d4d;
}

@media (min-width: 900px) {
	body.menu-ready .site-header .site-logo .ogana-logo {
		background-position-y: 0;
	}
	body.menu-ready .site-header .site-menu {
		color: #4e4d4d;
	}
	body.menu-ready .site-header .site-menu .menu-item:before,
	body.menu-ready .site-header .site-menu .menu-item .sub-menu:before {
		background-color: #4e4d4d;
	}
}

.toned-gray .site-logo .ogana-logo {
	background-position-y: -70px;
}

@media (max-width: 1300px) {
	.site-logo {
		top: 35px;
	}
	.site-menu {
		background-color: rgba(250,249,246,0.87);
		opacity: 0;
		transform: translateX(-100%);
		width: 100%;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		padding-top: 100px;
		padding-left: 40px;
		transition: padding-left .2s ease-out, opacity .2s ease-out;
	}
	.site-menu .menu-item.has-sub-menu:after {
		content: '';
		font-family: 'Ionicons';
		position: absolute;
		top: 14px;
		right: 50px;
		pointer-events: none;
		transition: transform .2s ease-out;
	}
	.site-menu .menu-item.has-sub-menu.is-active:after {
		transform: rotateX(180deg);
	}
	.site-menu .menu-item a, 
	.site-menu .sub-menu .menu-item a {
		display: block;
		font-size: 15px;
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 0 !important;
	}
	.site-menu .menu-item .sub-menu,
	.site-menu .menu-item:hover .sub-menu {
		opacity: 1;
		padding: 0 30px;
		position: relative;
		right: auto;
		transition: padding .2s ease-out;
		transform: none;
		width: 160px;
		height: 0;
		overflow: hidden;
	}
	.site-menu .menu-item:before,
	.site-menu .menu-item .sub-menu:before {
		width: 0 !important;
	}
	.site-menu .menu-item.current-page:before {
		width: 30px;	
	}
	.site-menu .menu-item.is-active .sub-menu {
		padding: 10px 30px;
		height: auto;
		width: 110%;   /*추가*/
	}
	.hamburger {
		display: inline-block;
	}
	.site-header.is-active .site-menu {
		opacity: 1;
		transform: translateX(0);
		padding-left: 50px;
	}
}

@media (max-width: 600px) {
	.site-logo {
		top: 20px;
		left: 25px;
	}
	.hamburger {
		top: 15px;
		right: 15px;
	}
	.hamburger-box,
	.hamburger-inner,
	.hamburger-inner::before,
	.hamburger-inner::after {
		width: 26px;
	}
}

/*--- Footer ---*/

.site-footer {
	background-color: #efede5;
	
}
.site-footer .ogana-logo {
	background-position-y: -70px;
	position: absolute;
	top: 70px;
	left: 50px;
}
.site-footer .outer-margin {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 70px;
	padding-bottom: 70px;
	padding-right: 50px;
}
.site-footer h5 {
	font-size: 15px;   /*11*/
	margin-bottom: 30px;
}
.site-footer ul li {
	font-size: 16px;  /*11px*/
	margin-bottom: 7px;
}
.site-footer ul li a {
	font-size: inherit;
}
.site-footer span {
	display: inline-block;
	font-size: 11px;
}
.site-footer span.w-sep {
	border-right: 1px solid #999;
	padding-right: 7px;
	position: relative;
	margin-right: 6px;
	line-height: 1;
}
.site-footer .footer-legal-links {
	margin-top: 30px;
}
.site-footer .footer-legal-links a {
	font-weight: 500;
}
.site-footer .footer-account-links {
	margin-top: 2px;
}
.site-footer .footer-account-links a {
	font-weight: 500;
}
.site-footer .footer-cs-info span {
	width: 70px;
}
.site-footer .footer-social-links a {
	display: inline-block;
	background-image: url('/assets/images/social-links-sprite.png');
	background-size: 175px 21px;
	background-repeat: no-repeat;
	background-position-y: center;
	width: 35px;
	height: 35px;
	position: relative;
	top: -7px;
	right: -3px;
}
.site-footer .footer-social-links .wechat {
	background-position-x: -35px;
}
.site-footer .footer-social-links .line {
	background-position-x: -70px;
}
.site-footer .footer-social-links .facebook {
	background-position-x: -105px;
}
.site-footer .footer-social-links .youtube {
	background-position-x: -140px;
}
.site-footer .copyright {
	color: #999793;
	font-size: 9px;
	position: absolute;
	bottom: 70px;
	right: 50px;
}

@media (max-width: 1400px) {
	.site-footer .outer-margin {
		padding-bottom: 50px;
	}
	.site-footer .footer-social-links {
		width: 100%;
		margin-top: 30px;
	}
	.site-footer .footer-social-links a {
		top: 5px;
		right: 5px;
	}
	.site-footer .footer-info,
	.site-footer .collapsible-block {
		padding-right: 50px;
	}
	.site-footer .copyright {
		bottom: 55px;
	}
}

@media (max-width: 1200px) {
	.site-footer .outer-margin {
		justify-content: flex-start;
	}
	.site-footer h5 {
		margin-bottom: 12px;
	}
	.site-footer .footer-info {
		border-bottom: 1px solid #908e8a;
		width: 100%;
		padding-bottom: 35px;
		margin-bottom: 35px;
	}
	.site-footer .footer-info .corp-info ul li {
		display: inline-block;
	}
	.site-footer .collapsible-block {
		padding-right: 60px;
	}
	.site-footer .footer-legal-links {
		margin-top: 0;
	}
}

@media (max-width: 900px) {
	.site-footer .outer-margin {
		padding-top: 50px;
	}
	.site-footer .ogana-logo {
		display: none;
	}
}

@media (max-width: 700px) {
	.site-footer ul li {
		margin-bottom: 3px;
	}
	.site-footer .outer-margin {
		flex-direction: column;
		padding: 45px 30px 35px;
	}
	.site-footer .footer-info {
		padding-right: 0;
		padding-bottom: 20px;
		margin-bottom: 15px;
	}
	.site-footer .footer-legal-links {
		margin-top: 10px;
	}
	.site-footer .collapsible-block {
		padding-right: 0;
	}
	.site-footer .collapsible-block h5 {
		cursor: pointer;
		padding: 7px 0;
		position: relative;
		margin-bottom: 0;
		transition: margin-bottom .2s ease-out;
	}
	.site-footer .collapsible-block h5:after {
		content: '+';
		position: absolute;
		right: 0;
		top: 7px;
		width: 15px;
		height: 15px;
		text-align: center;
		transition: transform .2s ease-out;
	}
	.site-footer .collapsible-block ul {
		height: 0;
		overflow: hidden;
	}
	.site-footer .collapsible-block ul li {
		margin-bottom: 5px;
	}
	.site-footer .collapsible-block ul li:last-child {
		margin-bottom: 10px;
	}
	.site-footer .collapsible-block h5.is-active {
		margin-bottom: 10px;
	}
	.site-footer .collapsible-block h5.is-active:after {
		transform: rotate(-45deg);
	}
	.site-footer .collapsible-block h5.is-active + ul {
		height: auto;
	}
	.site-footer .footer-social-links {
		margin-top: 10px;
	}
	.site-footer .copyright {
		position: relative;
		right: auto;
		bottom: auto;
		margin-top: 20px;
	}
}

@media (max-width: 400px) {
	.site-footer ul li {
		font-size: 16px;   /*10*/
	}
	.site-footer span.w-sep {
		padding-right: 6px;
		margin-right: 4px;
	}
	.site-footer .footer-legal-links span:nth-child(2) {
		border-right: none;
	}
}

/*--- Main ---*/

.main {
	transition: opacity .3s ease-out;
}

@media (min-width: 900px) {
	body.menu-ready .main{
		opacity: 0.2;
	}
	
	body.menu-ready .sub_wrap{
		opacity: 0.2;
	}
	
}

.outer-margin {
	width: 100%;
	padding: 100px 200px 100px 200px;
	position: relative;
}

@media (max-width: 1400px) {
	.outer-margin {
		padding-right: 60px;
	}
}

@media (max-width: 900px) {
	.outer-margin {
		padding: 80px 50px;
	}
}

@media (max-width: 600px) {
	.outer-margin {
		padding: 60px 25px;
	}
}