/* Root */
:root {

}


/* Rest */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #000;
	font-family: 'Kakao Big Sans', sans-serif;
	/* font-family:  "Kakao Big Sans", -apple-system, BlinkMacSystemFont, "Segoe UI",Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif; */
	font-size: 62.5% !important;
	letter-spacing: -0.02em;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-webkit-overflow-scrolling: touch;
	-webkit-tap-highlight-color : transparent !important;
	animation:entry .3s 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%;
}

.w-100{
	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:#888888;
}

em, i {
	font-style: normal;
}

@-webkit-keyframes entry {
	to{opacity: 1;}
}

@keyframes entry {
	to{opacity: 1;}
}

@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);
}


/* GSAP */
#smooth-content {
  /* will-change: transform; */
}

.pin-spacer {
	border:0px;
	/* pointer-events: none; */
	overflow: hidden;
}


/* Hidden */
.hidden {
	overflow: hidden;
}

@media screen and (max-width:1024px){
	.md-hidden {
		overflow: hidden;
	}
}

/* PC, Mobile */
.mo {
	display: none;
}

@media screen and (max-width:768px) {
	.pc {
		display: none;
	}

	.mo {
		display: block;
	}
}


/* Break */
.lg {
	display: none;
}

.sm {
	display: none;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.md {
		display:none;
	}

	.lg {
		display: block;
	}
}
@media screen and (max-width:768px) {
	.sm {
		display: block;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}



/* Display */
.d-inline-block {
	display: inline-block;
}

.d-block {
	display: block;
}

.d-flex {
	display: flex;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	.d-xs-block {
		display: block;
	}
}


/* Flex Wrap */
@media screen and (max-width:1200px) {
	.flex-lg-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:1024px) {
	.flex-md-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:768px) {
	.flex-sm-wrap {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:576px) {

}


/* Justify Content */
.justify-center {
	justify-content: center;
}

.justify-between {
	justify-content: space-between;
}

@media screen and (min-width:1367px) {
	.justify-ld-end {
		justify-content: flex-end;
	}
}
@media screen and (min-width:1025px) {
	.justify-lg-between {
		justify-content: space-between;
	}

	.justify-lg-end {
		justify-content: flex-end;
	}
}
@media screen and (min-width:769px) {
	.justify-md-between {
		justify-content: space-between;
	}
}
@media screen and (max-width:1366px){
	.justify-max-ld-center {
		justify-content: center;
	}
}

/* Align Items */
.align-items-center {
	align-items: center;
}


/* Position */
.position-relative {
	position: relative;
}

.position-absolute {
	position: absolute;
}


/* Background Color */
.bg-white8 {
	background-color: #f8f8f8;
}

.bg-white9 {
	background-color: #f9f9f9;
}

.bg-blue {
	background-color: #0080c7;
}

.bg-lightblue {
	background-color: #cce9f6;
}

.bg-lightblue2 {
	background-color: #f2f9fc;
}

.bg-sodomy {
	background-color:#102f6e;
}


/* Wrap */
.wrap--sub #main {
	padding-top:100px;
}

@media screen and (max-width:1200px) {
	.wrap--sub #main {
		padding-top:70px;
	}
}


/* Container */
.container {
	max-width:1600px;
	width: 95%;
	margin:0 auto;
}

.container-w1280 {
	max-width:1280px;
}

.container-w1440 {
	max-width:1440px;
}


/* Main */
#main {
	min-height: calc(100vh - 270px);
	overflow: hidden;
}


/* Header */
#header {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index:99;
}

#header .h-container {
	position: relative;
	background-color: #fff;
	transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
	z-index:10;
}

#header .h-inner {
	position: relative;
	max-width:1720px;
	width:95%;
	margin:0 auto;
	z-index:100;
}

#header .h-bak {
	position:absolute;
	top:0px;
	left:50%;
	transform:translateX(-50%);
	width:200vw;
	height: 330px;
	background:#f8f8f8;
	opacity:0;
	overflow:hidden;
	visibility: hidden;
	transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .h-inner {
	display: flex;
	justify-content: center;
	position: relative;
}

#header .h_logo {
	position: absolute;
	top:30px;
	left:0;
	width: 156px;
	aspect-ratio: 1/0.259;
	z-index:999;
}

#header .h_logo a {
	display: block;
	width: 100%;
	height:100%;
	background: url('/image/common/header_logo.png') no-repeat center / cover;
}

#header .h_ul {
	display: flex;
}

#header .h_li {
	position: relative;
}

#header .h_link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height:100px;
	margin:0px 40px;
	font-size:2rem;
	font-weight:700;
	transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .h_link h2 {
	font-size: inherit;
	font-weight: inherit;
	color:inherit;
}

#header .h_sub {
	text-align: center;
	position: absolute;
	top:100%;
	left:50%;
	transform: translateX(-50%);
	height: 210px;
	opacity:0;
	visibility: hidden;
	overflow: hidden;
	transition: all .4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 10;
}

#header .h_sub li {
	margin-top:20px;
}

#header .h_sub li:first-child {
	margin-top:30px;
}

#header .h_sub a {
	white-space: nowrap;
	font-size: 1.8rem;
	line-height: 1;
	color:#444444;
}

#header .h_lang {
	position: absolute;
	top:31px;
	right:0;
	display: none;
}

#header .h_lang__btn {
	position: relative;
	display: flex;
	align-items: center;
	gap:10px;
	padding:8px 15px;
	font-size:1.8rem;
	font-weight:700;
	line-height: 1;
	border-radius: 20px;
	transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index:20;
}

#header .h_lang__btn i {
	display: block;
	width: 20px;
	height:20px;
	background: url('/image/common/header_lang_off.png') no-repeat center;
}

#header .h_lang__ul {
	position: absolute;
	top:36px;
	left:50%;
	transform: translateX(-50%);
	width: 100%;
	text-align: center;
	opacity:0;
	visibility: hidden;
	transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
}

#header .h_lang__ul::after {
	content: "";
	display: block;
	position: absolute;
	left:0;
	bottom:0;
	width: 100%;
	height:calc(100% + 36px);
	border-radius:20px;
	background-color: #d82952;
}

#header .h_lang__ul li {
	position: relative;
	padding:10px 0px;
	z-index:10;
}

#header .h_lang__ul a {
	font-size:1.8rem;
	font-weight:700;
	line-height: 1;
	color:#fff;
}

#header .h_lang.on .h_lang__btn {
	color:#fff;
	background-color: #b2163a;
}

#header .h_lang.on .h_lang__btn i {
	background-image: url('/image/common/header_lang_on.png');
}

#header .h_lang.on .h_lang__ul {
	opacity: 1;
	visibility: visible;
}

#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;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn span::after {
  margin-top: 8px;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  -webkit-transition-duration: 0.2s;
	transition-duration: 0.2s;
  -webkit-transition-delay: 0.2s, 0s;
	transition-delay: 0.2s, 0s;
}

#header .h_mobile__btn[aria-pressed="true"] span {
  background-color: rgba(0, 0, 0, 0) !important;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::before {
	margin-top: 0;
	background-color: #191919;
  -webkit-transform: rotate(45deg);
	transform: rotate(45deg);
  -webkit-transition-delay: 0s, 0.2s;
	transition-delay: 0s, 0.2s;
}

#header .h_mobile__btn[aria-pressed="true"] span::after {
	margin-top: 0;
	background-color: #191919;
  -webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
  -webkit-transition-delay: 0s, 0.2s;
	transition-delay: 0s, 0.2s;
}

@media screen and (min-width:1201px) {
	#header .h_link::after {
		content: "";
		display: block;
		position: absolute;
		left:0;
		bottom:-1px;
		width:100%;
		height:3px;
		background-color: #b2163a;
		opacity:0;
		visibility: hidden;
		transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
	}

	#header[header-hover = "on"] .h-bak {
		opacity: 1;
		visibility: visible;
	}

	#header[header-hover = "on"] .h_link {
		margin:0px 50px;
	}

	#header[header-hover = "on"] .h_sub {
		opacity: 1;
		visibility: visible;
	}

	#header .h_li:hover > a::after {
		opacity: 1;
		visibility: visible;
	}

	#header .h_sub a:hover {
		color:#b2163a;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height:70px;
		background-color: #fff;
	}

	#header .h-inner {
		width: 100%;
	}

	#header .h_menu {
		position: fixed;
		top:0;
		left:0;
		width: 100%;
		height:100%;
		padding: 80px 20px;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		transition:all .4s cubic-bezier(0.4, 0, 0.2, 1);
		z-index: 99;
	}

	#header .h_logo {
		left:15px;
		width:110px;
		top: 20px;
	}


	#header .h_ul {
		display: block;
	}

	#header .h_link {
		display: block;
		height: auto;
		margin:0px;
		padding:15px 0px;
		font-size:1.6rem;
		border-bottom: 1px solid #e3e3e3;
	}

	#header .h_link::before,
	#header .h_link::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    right:0px;
    width: 10px;
    margin-top: -1px;
    background-color: #000;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition:all .4s ease;
    transition:all .4s ease;
	}

  #header .h_link::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
    opacity: 1;
  }

	#header .h_sub {
		position: relative;
		top:unset;
		left: unset;
		transform: none;
		height:auto;
		max-height: 0px;
		padding: 0px;
		opacity: 1;
		overflow: hidden;
		visibility: visible;
		text-align: left;
	}

	#header .h_sub li {
		margin-top:15px;
	}

	#header .h_sub li:first-child {
		margin-top:15px;
	}

	#header .h_sub a {
		font-size:1.4rem;
	}

	#header .h_lang {
		top:17px;
		right:80px;
	}

	#header .h_lang__btn {
		font-size:1.6rem;
	}

	#header .h_lang__ul li {
		padding:6px 0px;
	}

	#header .h_lang__ul a {
		font-size:1.6rem;
	}

	#header .h_mobile {
		display: block;
	}

	#header[data-header-mobile = "on"] .h_menu {
		opacity: 1;
		visibility: visible;
	}

	#header .h_link[aria-toggle="true"] {
		color:#b2163a;
	}

	#header .h_link[aria-toggle="true"]::before,
	#header .h_link[aria-toggle="true"]::after {
		background-color:#b2163a;
	}

  #header .h_link[aria-toggle="true"]::before {
    -webkit-transform: rotate(0deg);
		transform: rotate(0deg);
  }

  #header .h_link[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_link[aria-toggle="true"] + .h_sub {
		max-height:200px;
		margin:0px 0px 20px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Footer */
#footer {
	padding:60px 0px;
	background-color: #f5f5f5;
}

#footer .f-container {
	max-width:1280px;
	width: 95%;
	margin:0 auto;
}

#footer .f-btm {
	margin-top:40px;
	padding-top:30px;
	border-top: 1px solid #ffffff;
}

#footer .f-info {
	margin:0px -60px;
		width: calc(100% - 200px);
		margin-left: auto;
		margin-right: 0;
}

#footer .f-info dl {
	padding:0px 60px;
}

#footer .f-info dl:first-child {
	border-right:1px solid #a9a9a9;
}

#footer .f-info dd {
	display: flex;
	line-height:1.5;
}

#footer .f-info b {
	width:125px;
}

#footer .f-info .so {
	width:125px;
}

#footer .f-info span {
	display: block;
	width: calc(100% - 125px);
}

#footer .f-logo {
	position: absolute;
	top:50%;
	left:0;
	transform: translateY(-50%);
	width: 156px;
	aspect-ratio: 1/0.259;
	background: url('/image/common/header_logo.png') no-repeat center/ cover;
}

#footer .f-mem ul {
	margin:0px -15px;
}

#footer .f-mem li {
	padding:0px 15px;
}

#footer .f-copy {
	font-family: "Pretendard", sans-serif;
}
#footer .color-white{
	color: #333;
}
@media screen and (max-width:1200px) {
	#footer .f-info {
		margin:0px -30px;
		width: 100%;
	}

	#footer .f-info dl {
		padding:0px 30px;
	}
}
@media screen and (max-width:1024px) {
	#footer .f-top {
		display: flex;
		flex-direction: column;
	}

	#footer .f-btm {
		margin-top:28px;
		padding-top: 22px;
	}

	#footer .f-logo {
		margin: 0 auto;
		position: relative;
		top:unset;
		left: unset;
		transform: none;
		width:96px;
		height:44px;
		background-size: auto 44px;
		order: 1;
		margin-bottom:20px;
	}

	#footer .f-info {
		margin:-20px 0px;
		order: 2;
	}

	#footer .f-info dl {
		width: 100%;
		padding:20px 0px;
	}

	#footer .f-info dl:first-child {
		border-right:0px;
		border-bottom: 1px solid #a9a9a9;
	}
}
@media screen and (max-width:768px) {
	#footer {
		padding:50px 0px;
	}

	#footer .f-btm {
		margin-top:20px;
		padding-top:18px;
	}

	#footer .f-info {
		margin:-16px 0px;
	}

	#footer .f-info dl {
		/* width: 100%; */
		padding:16px 0px;
	}
/*
	#footer .f-info dl:first-child {
		border-right:0px;
		border-bottom: 1px solid #a9a9a9;
	} */

	#footer .f-copy {
		width: 100%;
		order: 2;
	}

	#footer .f-mem {
		order: 1;
		margin-bottom:20px;
	}

	#footer .f-mem ul {
		margin:0px -8px;
	}

	#footer .f-mem li {
		padding:0px 8px;
	}
}
@media screen and (max-width:576px) {
	#footer .f-btm {
		margin-top:16px;
		padding-top:14px;
	}

	#footer .f-logo {
		width:76px;
		height:36px;
		background-size:auto 36px;
		margin-bottom:12px;
	}

	#footer .f-info {
		margin:-10px 0px;
	}

	#footer .f-info dl {
		padding:10px 0px;
	}
/*
	#footer .f-info b {
		width:60px;
	} */

	#footer .f-info b {
		width:90px;
	}

	#footer .f-info .so {
		width:90px;
	}

	#footer .f-info span {
		width: calc(100% - 90px);
	}


	#footer .f-info span br {
		display: none;
	}

	#footer .f-mem {
		margin-bottom:12px;
	}
}
