/* Reset */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: "Noto Sans KR", serif;
	font-size: 62.5% !important;
	word-break: keep-all;
	word-wrap: break-word;
	box-sizing: border-box;
	-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%;
}

button {
	font-family: inherit;
	background-color: transparent;
	border: none;
	outline: none;
	cursor: pointer;
}

select {
	outline: none;
	border: 1px solid transparent;
	font-family: inherit;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color:transparent;
	/* background-size:14px auto; */
	/* background-image: url('/child/img/common/u_select.png'); */
	background-repeat: no-repeat;
	/* background-position:right 20px center; */
}

input, textarea {
	font-family: inherit;
	outline: none;
	border: 1px solid transparent;
}

:focus {
	outline: none;
}

::placeholder {
	color: #a7a7a7;
}


@-webkit-keyframes entry {
	to{opacity: 1;}
}

@-moz-keyframes entry {
	to{opacity: 1;}
}

@-ms-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) {

}


/* Overflow */
.hidden {
	overflow: hidden;
}


/* Display */
.mo {
	display: none;
}

@media screen and (max-width:1024px) {
	.pc {
		display: none;
	}

	.mo {
		display: block;
	}
}
@media screen and (max-width:768px) {
	.tb {
		display: none;
	}
}


/* 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);
}


/* Wrap */
.wrap {
	padding-top:90px;
}

@media screen and (max-width:1200px){
	.wrap {
		padding-top:60px;
	}	
}


/* Header */
#header {
	position: fixed;
	top:0;
	left:0;
	width:100%;
	z-index:99;
	background-color: #fff;
}

#header .h-container {
	max-width: 1820px;
	width:95%;
	margin:0 auto;
}

#header .h-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
}

#header .h-background {
	position: absolute;
	top:90px;
	left:0;
	width:100%;
	height:0;
	padding-top: 0;
	background-color: #ffffff;
	-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
}

#header .h_logo {
	width:163px;
	height:64px;
}

#header .h_logo a {
	display: block;
	width:100%;
	height:100%;
	background: url('/child/img/common/header_logo.png') no-repeat center;
}

#header .h_menu {
	display: flex;
}

#header .h_menu__list {
	position: relative;
	cursor: pointer;
}

#header .h_menu__link {
	display: block;
	position: relative;
	margin:36px 50px;
	font-size:1.8rem;
	font-weight:500;
	line-height:1;
}

#header .h_menu__link h2 {
	font-size:inherit;
	font-weight: inherit;
}

#header .h_submenu {
	position: absolute;
	top:100%;
	left:50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100%;
	height:0;
	max-height:0px;
	text-align: center;
	overflow: hidden;
	z-index:10;
	-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
}

#header .h_submenu li {
	margin-top:16px;
}

#header .h_submenu li:first-child {
	margin-top:30px;
}

#header .h_submenu a {
	display: block;
	font-size:1.6rem;
	font-weight:500;
	color:#595959;
	opacity:.8;
	-webkit-transition:all .2s ease;
	transition:all .2s ease;
}

#header .h_asst {
	display: flex;
	align-items: center;
	gap:30px;
}

#header .h_asst .group {
	display: flex;
	align-items: center;
	gap:4px;
}

#header .h_asst__user {
	display: block;
	font-size:0px;
}

#header .h_asst__link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding:14px 20px 16px;
	background-color: #191919;
	border-radius:10px;
	font-size:1.8rem;
	font-weight:700;
	line-height:1;
	color:#fff;
}

#header .h_asst__mobile {
	display: none;
}

#header .h_mobile {
	display: none;
	position: absolute;
	top:0;
	right:0;
	width: 60px;
	height: 60px;
	z-index: 1000;
}

#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: 24px;
  height: 2px;
  background-color: #191919;
}

#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;
  -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;
  -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::after {
		content:"";
		display: block;
		position: absolute;
		top:100%;
		left:0px;
		width:100%;
		height: 1px;
		background-color:#dcdcdc;
		-webkit-transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
		transition:all .5s cubic-bezier(0.46, 0.29, 0.36, 1);
	}

	#header .h_menu__link::after {
		content: "";
		display: block;
		position: absolute;
		left:50%;
		bottom:-8px;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		width:0;
		height: 1px;
		background-color: #191919;
		-webkit-transition:all .3s ease;
		transition:all .3s ease;
	}

	#header[data-hover = "on"] .h-background {
		height:210px;
		padding-top:90px;
	}

	#header[data-hover = "on"] .h_submenu {
		height: auto;
		max-height:180px;
	}

	#header .h_menu__list:hover .h_menu__link::after {
		width: 100%;
	}

	#header .h_submenu li:hover a {
		color:#191919;
		opacity:1;
	}
}
@media screen and (max-width:1366px) {
	#header .h_menu__link {
		margin:36px 40px;
	}

	#header .h_asst {
		gap:20px;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height:60px;
	}

	#header::before {
		content: "";
		display: block;
		position: absolute;
		top:0;
		left:0;
		width:100%;
		height:100%;
		background-color: #fff;
		border-bottom: 1px solid #dcdcdc;
		z-index:150;
	}

	#header .h-container {
		width: 100%;
	}

	#header .h-inner {
		display: block;
	}

	#header .h_logo {
		position: absolute;
		top:9px;
		left:15px;
		width:110px;
		height:42px;
		z-index:200;
	}

	#header .h_logo a {
		background-size: auto 42px;
	}

	#header .h_main {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		position: fixed;
		top:0;
		right:0;
		width: 100%;
		height: 100%;
		padding:80px 20px;
		background-color: #fff;
		-webkit-transition: all .4s ease-out;
		transition: all .4s ease-out;
		opacity:0;
		visibility: hidden;
		overflow-y: auto;
		z-index:100;
	}

	#header .h_menu {
		display: block;
	}

	#header .h_menu__link {
		position: relative;
		margin:0px;
		padding:15px 0px;
		font-size:1.6rem;
		border-bottom: 1px solid #bfbfbf;
	}

	#header .h_menu__toggle::before,
	#header .h_menu__toggle::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    margin-top: -1px;
    background-color: #191919;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
		-moz-transform-origin: 50% 50%;
		-ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition:all .4s ease;
		-moz-transition:all .4s ease;
		-ms-transition:all .4s ease;
    transition:all .4s ease;
	}

  #header .h_menu__toggle::before {
    z-index: 2;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
    opacity: 1;
  }

  #header .h_menu__toggle[aria-toggle="true"]::before {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
  }

  #header .h_menu__toggle[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_submenu {
		position: relative;
    top:unset;
    left: unset;
    -webkit-transform: none;
		transform: none;
    width: 100%;
		height:auto;
    max-height: 0px;
    padding: 0px;
    margin:0px;
		overflow: hidden;
		text-align: left;
	}

	#header .h_submenu li {
		text-align: left;
		margin-top:15px;
	}

	#header .h_submenu li:first-child {
		margin-top:15px;
	}

	#header .h_submenu a {
		font-size:1.4rem;
		line-height:1;
	}

	#header .h_asst {
		position: absolute;
		top:19px;
		right:65px;
		gap:0px;
		z-index:200;
	}

	#header .h_asst__link {
		display: none;
	}

	#header .h_asst__mobile {
		display: flex;
		gap:6px;
	}

	#header .h_asst__mobile a {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width:50%;
		padding:14px 20px 16px;
		background-color: #191919;
		border-radius:10px;
		font-size:1.6rem;
		font-weight:700;
		line-height:1;
		color:#fff;
	}

	#header .h_mobile {
		display: block;
	}

	#header[data-header-mobile="on"] .h_main {
		opacity:1;
		visibility: visible;
	}

	#header .h_menu__toggle[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
		-ms-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_menu__toggle[aria-toggle="true"] + .h_submenu {
		max-height:160px;
		margin:0px 0px 20px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {
	#header .h_menu__link {
		font-size:1.5rem;
	}

	#header .h_submenu a {
		font-size:1.3rem;
	}

	#header .h_asst__user {
		width:20px;
	}

	#header .h_asst__mobile a {
		padding:10px 20px 12px;
		font-size:1.5rem;
	}
}



/* Quick */
#quick {
	position: fixed;
	right:40px;
	bottom:60px;
	z-index:80;
	animation: quick-ani .8s ease forwards;
}

#quick .q-menu li {
	margin-bottom:10px;
}

#quick .q-menu li:last-child {
	margin-bottom:0px;
}

#quick .q-menu a, 
#quick .q-menu button {
	display:flex;
	flex-direction: column;
	justify-content: center;
	align-items:center;
	width:54px;
	height:54px;
	border-radius:50%;
	background-color: #313131;
	box-shadow: 0px 3px 10px 0px rgba(0,0,0,.15);
}

#quick .q-menu .icon {
	display: block;
	background-repeat: no-repeat;
	background-position: center;	
}

#quick .q-menu .icon01 {
	width:25px;
	height:31px;
	background-image: url('/child/img/common/quick_icon_01.png');
}

#quick .q-menu .icon02 {
	width:24px;
	height:25px;
	background-image: url('/child/img/common/quick_icon_02.png');
}

#quick .q-menu .icon03 {
	width:33px;
	height:29px;
	background-image: url('/child/img/common/quick_icon_03.png');
}

#quick .q-menu .icon04 {
	width:33px;
	height:22px;
	background-image: url('/child/img/common/quick_icon_04.png');
}

#quick .q-menu .scroll-btn__img {
  display:block;
  width:22px;
  height:23px;
  background:url('/child/img/common/quick_arr.png') no-repeat center;
}

@keyframes quick-ani {
	from {
		right: -40px;
		opacity: 0;
		visibility: hidden;
	}
	to {
		right:40px;
		opacity:1;
		visibility: visible;
	}
}

@media screen and (max-width:1200px) {
	#quick {
		right:20px;
		bottom:40px;
	}

	@keyframes quick-ani {
		from {
			right: -40px;
		}
		to {
			right:20px;
		}
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {
	#quick .q-menu li {
		margin-bottom:6px;
	}

	#quick .q-menu a, 
	#quick .q-menu button {
		width:42px;
		height:42px;
	}

	#quick .q-menu .icon01 {
		height:24px;
		background-size:auto 24px;
	}
	
	#quick .q-menu .icon02 {
		height:18px;
		background-size:auto 18px;
	}
	
	#quick .q-menu .icon03 {
		height:20px;
		background-size:auto 20px;
	}
	
	#quick .q-menu .icon04 {
		height:16px;
		background-size:auto 16px;
	}
	
	#quick .q-menu .scroll-btn__img {
		height:16px;
		background-size:auto 16px;
	}
}
@media screen and (max-width:576px) {
	#quick {
		right:16px;
		bottom:20px;
	}

	#quick .q-menu li {
		margin-bottom:4px;
	}

	#quick .q-menu a, 
	#quick .q-menu button {
		width:38px;
		height:38px;
	}

	#quick .q-menu .icon01 {
		height:20px;
		background-size:auto 20px;
	}
	
	#quick .q-menu .icon02 {
		height:16px;
		background-size:auto 16px;
	}
	
	#quick .q-menu .icon03 {
		height:18px;
		background-size:auto 18px;
	}
	
	#quick .q-menu .icon04 {
		height:14px;
		background-size:auto 14px;
	}
	
	#quick .q-menu .scroll-btn__img {
		height:14px;
		background-size:auto 14px;
	}

	
	@keyframes quick-ani {
		from {
			right: -40px;
		}
		to {
			right:16px;
		}
	}
}

