/* Root */
:root {
	--transition-basic:all .3s;
	--transition-custom:all .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2:all 1s ease-in-out;
	--transition-custom3:all 1.5s ease;
	--vh:1vh;
}

/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: "Pretendard", sans-serif;
	font-size: 62.5% !important;
	letter-spacing: -0.006em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .4s ease forwards;
  opacity: 0;
}

html::-webkit-scrollbar {
	display: none;
}

html {
	-ms-overflow-style: none;
	scrollbar-width: none;
}

body {
	font-size: 1.6rem;
}

a {
	color: inherit;
	outline: none;
	text-decoration: none;
}

ol, ul {
	list-style: none;
}

b, strong {
	font-weight: 700;
}

img {
	max-width: 100%;
}

button {
	font-family: inherit;
	border: none;
	outline: none;
	cursor: pointer;
	color: inherit;
	-webkit-appearance: none;
	background: none;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-webkit-appearance: none;
	appearance: none;
	background-color: #fff;
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color:#898989;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Hidden */
.hidden {
	overflow: hidden;
}


/* Ellip */
.ellip {
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Display */
.d-block {
	display: block;
}


/* Position */
.position-relative {
	position: relative;
}


/* Container */
.container {
	max-width: 1530px;
	width: 100%;
	margin: 0 auto;
	padding:0px 15px;
}


/* Height */
.h100 {
	height: 100%;
}


/* Main */
#main {
  min-height: calc(100vh - 280px);
	overflow: hidden;
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {
	#main {
		padding-top: 70px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Header */
#header {
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	z-index: 999;
	transition: var(--transition-basic);
}

#header::after {
	content: "";
	display: block;
	position: absolute;
	top:89px;
	left: 0;
	width: 100%;
	height: 1px;
	background-color: #D9D9D9;
	z-index: 5;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-basic);
}

#header .h-container {
	max-width: 1530px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

#header .h-inner {
	display: flex;
	justify-content: center;
	position: relative;
	z-index: 101;
}

#header .h-background {
	overflow:hidden; 
	position:absolute; 
	top:0px;
	left:50%;
	transform:translateX(-50%);
	width:200vw; 
	height: 260px;
	background:#fff; 
	opacity:0;
	visibility: hidden;
	z-index:5;
	transition: var(--transition-custom);
}

#header .h_logo {
	position: absolute;
	top:28px;
	left: 0;
	width: 145px;
	height: 34px;
	z-index:999;
}

#header .h_logo a {
	display: block;
	width: 100%;
	height: 100%;
	background: url('/en/asset/img/common/h_logo_w.png') no-repeat center;
}

#header .h_menu {
	display: flex;
}

#header .h_menu__li {
	position: relative;
}

#header .h_menu__li::before {
	content: "";
	display: block;
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 260px;
	background-color: #F8FAFF;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-custom);
	transition-delay: 0s;
	z-index: 0;
}

#header .h_menu__link {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 90px;
	padding:0px 60px;
	font-size: 1.8rem;
	font-weight: 500;
	color:#fff;
	transition: var(--transition-custom);
	z-index: 5;
}

#header .h_menu__link::before {
	content: "";
	display: block;
	position: absolute;
	left:50%;
	bottom: 0;
	transform: translateX(-50%);
	width: 100%;
	height:3px;
	background-color: #315CA8;
	opacity: 0;
	visibility: hidden;
	transition: var(--transition-custom);
	transition-delay: 0s;
}

#header .h_submenu {
	position: absolute;
	top:100%;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	height: 170px;
	opacity:0;
	visibility: hidden;
	text-align: center;
	transition: var(--transition-custom);
	z-index: 5;
}

#header .h_submenu li {
	margin-top: 14px;
}

#header .h_submenu li:first-child {
	margin-top: 40px;
}

#header .h_submenu a {
	font-size: 1.6rem;
}

#header .h_global {
	display: flex;
	align-items: center;
	position: absolute;
	top:34px;
	right: 0;
	margin: 0px -12px;
}

#header .h_global dd {
	display: block;
	position: relative;
	padding: 0px 12px;
}

#header .h_global dd:not(:last-child)::after {
	content: "";
	display: block;
	position: absolute;
	top:50%;
	right: 0;
	transform: translateY(-50%);
	width: 1px;
	height: 16px;
	background-color: #fff;
}

#header .h_global a {
	font-size:1.8rem;
	color:#fff;
}

#header .h_global dd.on a {
	font-weight: 700;
	color:#69C6DB;
}

#header .h_mobile {
	display: none;
	position: absolute;
  top:0;
  right:0;
  width: 70px;
  height: 70px;
  z-index: 100000;
}

#header .h_mobile__btn {
  display: inline-block;
  position: relative;
  width: 100%;
  height: 100%;
}

#header .h_mobile__btn span {
  position: relative;
  margin: 0 auto;
}

#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  content: '';
  position: absolute;
}

#header .h_mobile__btn span,
#header .h_mobile__btn span::before,
#header .h_mobile__btn span::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #141414;
}

#header .h_mobile__btn span::before {
  margin-top: -8px;
  transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn span::after {
  margin-top: 8px;
  transition-property: margin, transform;
	transition-duration: 0.2s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  transition-delay: 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::before {
	margin-top: 0;
	background-color: #191919;
	transform: rotate(45deg);
	transition-delay: 0s, 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::after {
	margin-top: 0;
	background-color: #191919;
	transform: rotate(-45deg);
	transition-delay: 0s, 0.2s;
}

#header .h-nav {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	padding:90px 20px;
	background-color: #fff;
	transition: all .4s ease-out;
	overflow-y:auto;
	opacity:0;
	visibility: hidden;
	z-index:100;
}

#header .nav_menu__link {
	display: block;
	position: relative;
	height:auto;
	padding:15px 0px;
	border-bottom: 1px solid #e3e3e3;
	font-size:1.6rem;
	line-height: 1;
}

#header .nav_menu__toggle::before,
#header .nav_menu__toggle::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right:0px;
	width: 10px;
	margin-top: -1px;
	background-color: #191919;
	height: 2px;
	transform-origin: 50% 50%;
	transition:all .4s ease-out;
}

#header .nav_menu__toggle::before {
	z-index: 2;
	transform: rotate(-90deg);
	opacity: 1;
}

#header .nav_menu__toggle.on {
	color:#003763;
}

#header .nav_menu__toggle.on::before,
#header .nav_menu__toggle.on::after {
	background-color:#003763;
}

#header .nav_menu__toggle.on::before {
	transform: rotate(0deg);
}

#header .nav_menu__toggle.on::after {
	opacity: 0;
	transform: rotate(180deg);
}

#header .nav_submenu {
	display: block;
	height:auto;
	max-height: 0px;
	overflow: hidden;
	visibility: visible;
	transition: all .4s ease;
}

#header .nav_submenu li {
	padding-top:15px;
	font-size:1.4rem;
}

@media screen and (min-width:1201px) {
	/* Theme */
	#header[data-header-theme="white"] {
		background-color: #fff;
	}

	#header[data-header-theme="white"] .h_logo a {
		background-image: url('/en/asset/img/common/h_logo_b.png');
	}

	#header[data-header-theme="white"] .h_menu__link {
		color:#191919;
		padding:0px 95px;
	} 

	#header[data-header-theme="white"] .h_global a {
		color:#191919;
	}

	#header[data-header-theme="white"] .h_global dd:not(:last-child)::after {
		background-color: #191919;
	}


	/* Javascript Event */
	#header.hide {
		transform: translateY(-100%);
	}

	#header.active {
		background-color: #fff;
	}

	#header.active .h_logo a {
		background-image: url('/en/asset/img/common/h_logo_b.png');
	}

	#header.active .h_menu__link {
		color:#191919;
	}

	#header.active .h_global a {
		color:#191919;
	}

	#header.active .h_global dd:not(:last-child)::after {
		background-color: #191919;
	}

	#header[header-hover="on"]::after {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover="on"] .h-background {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover="on"] .h_logo a {
		background-image: url('/en/asset/img/common/h_logo_b.png');
	}

	#header[header-hover="on"] .h_menu__link {
		color:#191919;
		padding:0px 95px;
	} 

	#header[header-hover="on"] .h_submenu {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover="on"] .h_global a {
		color:#191919;
	}
	
	#header[header-hover="on"] .h_global dd:not(:last-child)::after {
		background-color: #191919;
	}


	/* CSS Event */
	#header .h_menu__li:hover::before {
		opacity: 1;
		visibility: visible;
		transition-delay: .1s;
	}

	#header .h_menu__li:hover .h_menu__link::before {
		opacity: 1;
		visibility: visible;
		transition-delay: .1s;
	}
}
@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {
	#header {
		height:70px;
		background-color: #fff;
	}

	#header .h-container {
		padding: 0px;
	}

	#header .h_logo {
		top:20px;
		left: 20px;
		width: 130px;
		height: 30px;
	}

	#header .h_logo a {
		background-size: auto 30px;
		background-image: url('/en/asset/img/common/h_logo_b.png');
	}

	#header .h_main {
		display: none;
	}

	#header .h_global {
		top:26px;
		right: 80px;
	}

	#header .h_global dd:not(:last-child)::after {
		background-color: #191919;
	}

	#header .h_global a {
		font-size: 1.6rem;
		color:#191919;
	}

	#header .h_mobile {
		display: block;
	}

	#header .h-nav {
		display: block;
	}

	#header[data-header-mobile = "on"] .h-nav {
		opacity: 1;
		visibility: visible;
	}

	#header .nav_menu__toggle.on + .nav_submenu {
		max-height:250px;
		margin:0px 0px 24px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {	
	#header .h_global {
		margin: 0px -8px;
	}

	#header .h_global dd {
		padding: 0px 8px;
	}

	#header .h_global dd:not(:last-child)::after {
		height: 12px;
	}

	#header .h_global a {
		font-size: 1.5rem;
	}
}
@media screen and (max-width:576px) {
	#header .h_logo {
		top:22px;
		left:15px;
		width: 114px;
		height: 26px;
	}

	#header .h_logo a {
		height: 26px;
		background-size: auto 26px;
	}

	#header .h_global a {
		font-size: 1.4rem;
	}
}


/* Footer */
#footer {
	background-color: #EBEFF7;
}

#footer .f-container {
	max-width: 1530px;
	width: 100%;
	margin: 0 auto;
	padding: 0px 15px;
}

#footer .top {
	padding: 60px 0px;
	border-bottom: 1px solid #D9D9D9 ;
}

#footer .btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 0px;
}

#footer .area {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer .logo {
	position: absolute;
	/* top:0; */
	left:0;
	width: 300px;
	height: 43px;
	background: url('/en/asset/img/common/f_logo.png') no-repeat right;	
} 

#footer .info {
	display: flex;
	justify-content: center;
	gap:40px;
}

#footer .btn {
	position: absolute;
	top:50%;
	right: 0;
	transform: translateY(-50%);
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap:30px;
	width: 300px;
	height:80px;
	border-radius: 50px;
	background-color: #315CA8;
	transition: var(--transition-custom);
}

#footer .btn i {
	display: inline-block;
	width: 42px;
	height: 16px;
	background:url('/en/asset/img/common/f_arr.png') no-repeat center;	
}

@media screen and (min-width:1201px) {
	#footer .btn:hover {
		gap:50px;
		background-color: #1867f3;
	}
}
@media screen and (max-width:1200px) {
	#footer .btn {
		width: 260px;
		height: 60px;
	}
}
@media screen and (max-width:1024px) {
	#footer .top {
		padding: 40px 0px;
	}

	#footer .btm {
		padding: 14px 0px;
	}

	#footer .info {
		gap:20px;
	}

	#footer .btn {
		gap:20px;
		width: 220px;
		height: 54px;
	}

	#footer .btn i {
		width: 32px;
		height: 12px;
		background-size: auto 12px;
	}
}
@media screen and (max-width:768px) {
	#footer .area {
		flex-direction: column;
		align-items: center;
	}

	#footer .logo {
		position: relative;
		top:unset;
		left: unset;
		height: 36px;
		background-size: auto 36px;
	}

	#footer .info {
		flex-direction: column;
		align-items: center;
		margin:30px 0px;
	}

	#footer .btn {
		position: relative;
		top:unset;
		right: unset;
		transform: none;
		height:48px;
	}
}
@media screen and (max-width:576px) {
	#footer .logo {
		height: 30px;
		background-size: auto 30px;
	}

	#footer .info {
		gap:12px;
		margin:20px 0px;
	}

	#footer .btn {
		width: 180px;
		height: 42px;
		gap:12px;
	}

	#footer .btn i {
		width: 26px;
		height: 10px;
		background-size: auto 10px;
	}
}


/* Form */
.form-table {
  display: block;
	padding-bottom: 80px;
}

.form-table tbody {
  display: block;
}

.form-table tr {
  display: flex;
}

.form-table tr:not(:last-child) {
	margin-bottom: 30px;
}

.form-table th {
  display: block;
  width:250px;
  padding:18px 0px;
  line-height: 1;
}

.form-table td {
  display: block;
  width: calc(100% - 250px);
}

.form-table input {
  width: 100%;
  height:60px;
  padding:0px 20px;
  border:1px solid #B3B3B3;
  border-radius: 5px;
  font-size:2rem;
}

.form-table select {
  width: 100%;
  height:60px;
  padding:0px 20px;
  border:1px solid #B3B3B3;
  border-radius: 5px;
  background: url('/en/asset/img/icon/ico_select.png') no-repeat right 20px center;
  font-size:2rem;
}

.form-table textarea {
  resize: none;
  display: block;
  width: 100%;
  height:300px;
  padding:20px;
  border:1px solid #B3B3B3;
  border-radius: 5px;
  font-size:2rem;
}

.form-table .chk-list {
  display: flex;
  align-items: center;
	gap:100px;
  height: 100%;
}

.form-table .chk-list label {
  display: flex;
  align-items: center;
	gap:10px;
  position: relative;
  cursor: pointer;
}

.form-table .chk-list input {
  position: absolute;
	top:0;
	left:0;
	width:100%;
  height: 100%;
	opacity:0;
  cursor: pointer;
}

.form-table .chk-list i {
  display: block;
  width:22px;
  height:22px;
  background: url('/en/asset/img/icon/ico_chk_off.png') no-repeat center;
}

.form-table .chk-list input:checked + i {
  background-image: url('/en/asset/img/icon/ico_chk_on.png');
}

.form-table .email-wrap {
  display: flex;
  align-items: center;
}

.form-table .email-wrap .box {
  width: 31.2%;
}

.form-table .email-wrap .box02 {
  margin-left:1.6%;
}

.form-table .email-wrap span {
  margin: 0px 1.44%;
}

.form-table .agree {
	margin-top: 20px;	
}

.form-table .agree label {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap:10px;
  font-size: 0px;
  cursor: pointer;
}

.form-table .agree input {
  position: absolute;
	top:0;
	left:0;
	width:22px;
	opacity:0;
  height: 100%;
  cursor: pointer;
}

.form-table .agree i {
  display: inline-block;
  width:22px;
  height:22px;
  background: url('/en/asset/img/icon/ico_chk_off.png') no-repeat center;
}

.form-table .agree input:checked + i {
  background-image: url('/en/asset/img/icon/ico_chk_on.png');
}

.form-table .agree button {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.form-btn .btn {
  max-width: 320px;
  width: 100%;
  height: 70px;
  background-color: #315CA8;
  font-size:2rem;
  font-weight:700;
  color:#fff;
  transition: var(--transition-basic);
}

@media screen and (max-width:1400px) {

}
@media screen and (max-width:1200px) {
	.form-table input {
		font-size:1.8rem;
	}

	.form-table select {
		font-size:1.8rem;
	}

	.form-table textarea {
		font-size:1.8rem;
	}

	.form-btn .btn {
		font-size: 1.8rem;
	}
}
@media screen and (max-width:1024px) {
	.form-table {
		padding-bottom: 60px;
	}

	.form-table tr:not(:last-child) {
		margin-bottom: 20px;
	}

	.form-table th {
		width: 200px;
	}
	
	.form-table td {
		width: calc(100% - 200px);
	}

	.form-table input {
		height: 50px;
		padding: 0px 16px;
	}

	.form-table select {
		height: 50px;
		padding: 0px 16px;
		background-position:right 16px center;
	}

	.form-table textarea {
		padding: 16px;
	}

	.form-table .chk-list {
		gap:60px;
	}
	
	.form-table .chk-list label {
		gap:6px;
	}

	.form-table .chk-list i {
		width: 20px;
		height:20px;
		background-size: auto 20px;
	}

	.form-table .agree {
		margin-top: 14px;
	}

	.form-table .agree label {
		gap:6px;
	}

	.form-table .agree i {
		width: 20px;
		height:20px;
		background-size: auto 20px;
	}

	.form-btn .btn {
		max-width: 240px;
		height: 60px;
	}
}
@media screen and (max-width:768px) {
	.form-table tr {
		flex-wrap: wrap;
	}

	.form-table th {
		width: 100%;
		padding:0px 0px 16px;
	}

	.form-table td {
		width: 100%;
	}

	.form-table input {
		height: 44px;
		font-size: 1.6rem;
	}

	.form-table select {
		height: 44px;
		font-size: 1.6rem;
		background-size: auto 7px;
	}

	.form-table textarea {
		height: 240px;
		font-size: 1.6rem;
	}

	.form-table .chk-list {
		height: 44px;
		gap:40px;
	}

	.form-table .chk-list i {
		width: 18px;
		height:18px;
		background-size: auto 18px;
	}

	.form-table .agree i {
		width: 18px;
		height:18px;
		background-size: auto 18px;
	}

	.form-btn .btn {
		max-width: 200px;
		height: 54px;
		font-size: 1.6rem;
	}
}
@media screen and (max-width:576px) {
	.form-table {
		padding-bottom:40px;
	}

	.form-table tr:not(:last-child) {
		margin-bottom: 14px;
	}

	.form-table th {
		padding: 0px 0px 10px;
	}

	.form-table input {
		height: 38px;
		padding: 0px 12px;
		font-size: 1.4rem;
	}

	.form-table select {
		height: 38px;
		padding: 0px 12px;
		font-size: 1.4rem;
		background-position: right 12px center;
		background-size: auto 5px;
	}

	.form-table textarea {
		height: 200px;
		padding:12px;
		font-size: 1.4rem;
	}

	.form-table .chk-list {
		gap:24px;
		height: 38px;
	}

	.form-table .chk-list i {
		width: 14px;
		height:14px;
		background-size: auto 14px;
	}

	.form-table .email-wrap {
		flex-wrap: wrap;
	}

	.form-table .email-wrap span {
    width:12px;
    text-align: center;
    margin:0px 8px;
  }

  .form-table .email-wrap .box {
    width: calc(50% - 14px);
  }

  .form-table .email-wrap .box02 {
    width: 100%;
    margin-left:0px;
    margin-top:6px;
  }

	.form-table .agree i {
		width: 14px;
		height:14px;
		background-size: auto 14px;
	}

	.form-btn .btn {
		max-width:140px;
		height: 40px;
		font-size: 1.4rem;
	}
}
