/* Root */
:root {
	--transition-custom : all .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2 : all .8s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom3 : all .1s ease-out;
	--transition-custom4 : all .3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Rest */
*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #191919;
	font-family: 'Roboto', 'Noto Sans KR', sans-serif;
	font-size: 62.5% !important;
	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%;
}

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:#737373; */
}

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) {

}


/* Blind */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* Overflow */
.hidden {
	overflow: hidden;
}


/* Width */
.w100 {
	width: 100%;
}

.mw100 {
	max-width: 100%;
}


/* Height */
.h100 {
	height:100%;
}

.mh {
	max-height: 100%;
}


/* Media */
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.lg {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}


/* Display */
.d-block {
	display: block;
}

.d-inline-block {
	display: inline-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) {

}


/* Flex Wrap */
@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	.flex-lg-wrap  {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:768px) {
	.flex-md-wrap  {
		flex-wrap: wrap;
	}
}
@media screen and (max-width:576px) {

}


/* Justify Content */
.justify-content-center {
	justify-content: center;
}

.justify-content-between {
	justify-content: space-between;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {
	
}
@media screen and (max-width:768px) {
	.justify-md-content-center {
		justify-content: center;
	}
}
@media screen and (max-width:576px) {
	.justify-xs-content-center {
		justify-content: center;
	}
}

@media screen and (min-width:1201px) {

}
@media screen and (min-width:1025px) {
	.justify-min-lg-between {
		justify-content: space-between;
	}
}
@media screen and (min-width:769px) {
	.justify-min-md-between {
		justify-content: space-between;
	}
}
@media screen and (min-width:577px) {

}


/* Flex Align */
.align-items-center {
	align-items: center;
}

.align-items-end {
	align-items: flex-end;
}

@media screen and (min-width:1201px) {

}
@media screen and (min-width:1025px) {
	
}
@media screen and (min-width:769px) {

}
@media screen and (min-width:577px) {

}


/* Position */
.position-relative {
	position: relative;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Text Align */
.text-center {
	text-align: center;
}

.text-start {
	text-align:start;
}

.text-end {
	text-align: end;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}


/* Text Color */
.text-white {
	color:#fff;
}
.text-gray {
	color:#a7a7a7;
}
.text-point {
	color:#ee6623;
}


@media screen and (max-width:1200px) {

}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:576px) {

}

/* Line Height */
.lh-1 {
	line-height: 1;
}


/* Letter Spacing */
.ls-1 {
	letter-spacing: -0.01em;
}

.ls-2 {
	letter-spacing: -0.02em;
}


/* Background Color */
.bg-white {
	background-color: #fff;
}

.bg-white5 {
	background-color: #f5f5f5;
}

.bg-dark2 {
	background-color: #221e1f;
}


/* Border */
.border-top-rounded {
	border-top-left-radius: 30px;
	border-top-right-radius:30px;
}


/* Container */
.container {
	position: relative;
	max-width:1600px;
	width: 95%;
	margin:0 auto;
	z-index:10;
}


/* Wrap */
.wrap {
	overflow: hidden;
}

@media screen and (max-width:1200px) {
	
}


/* Header */
#header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 100;
	transition:var(--transition-custom4);
	background-color: #fff;
}

#header .h-container {
	position: relative;
	max-width:1920px;
	width: 95%;
	margin:0 auto;
	z-index:10;
}

#header .h-background {
	overflow:hidden; 
	position:absolute; 
	top:0px;
	left:50%;
	transform:translateX(-50%);
	width:200vw; 
	height: 320px;
	background:#fff; 
	opacity:0;
	visibility: hidden;
	z-index:5;
	transition:var(--transition-custom4);
}

#header .h-inner {
	display: flex;
	justify-content: center;
	position: relative;
}

#header .h_logo {
	position: absolute;
	top:33px;
	left:0;
	width: 220px;
	aspect-ratio: 1/0.105;
	z-index:110;
}

#header .h_logo a {
	display: block;
	width: 100%;
	height:100%;
	background: url('../img/common/header_logo_new.png') no-repeat center /cover;
}

#header .h_menu__ul {
	display: flex;
	align-items: center;
}

#header .h_menu__li {
	position: relative;
}

#header .h_menu__link {
	position: relative;
	display: block;
	padding:36px 35px;
	font-size:1.8rem;
	font-weight:500;
	line-height:1;
	color:#b4b4b4;
	transition: var(--transition-custom);
	z-index:5;
}

#header .h_menu__link h2 {
	font-size:inherit;
	font-weight: inherit;
	color:inherit;
}

#header .h_sub {
	position: absolute;
	top:100%;
	left:50%;
	transform: translateX(-50%);
	width: 100%;
	height: 221px;
	padding:30px 10px 0px;
	opacity:0;
	visibility: hidden;
	overflow: hidden;
	transition: var(--transition-custom3);
	z-index: 5;
}

#header .h_sub li {
	text-align: center;
}

#header .h_sub a {
	display: block;
	font-size:1.6rem;
	color:#221e1f;
}

#header .h_global {
	position: absolute;
	top: 36px;
	right:0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

#header .h_ir_btn{
	display: flex;
	justify-content: center;
	align-items: center;
	gap:5px;
	width: 45px;
	height: 25px;
	border-radius: 50px;
	background-color: #191919;
	position: relative;
	cursor: pointer;
}

#header .h_ir_btn::after {
	content: "";
	display: block;
	width:10px;
	height:10px;
	background: url('../img/common/header_arrow_new01.png') no-repeat center;
}

#header .h_global__btn {
	display: flex;
	justify-content: center;
	align-items: center;
	gap:5px;
	width:70px;
	height:25px;
	border-radius:50px;
	background-color: #191919;
	cursor: pointer;
}

#header .h_global__btn::before {
	content: "";
	display: block;
	width:13px;
	height:13px;
	background: url('../img/common/header_global_new01.png') no-repeat center;
}

#header .h_global__menu {
	position: absolute;
	top:35px;
	left:50%;
	transform: translateX(-50%);
	min-width: 90px;
	background-color: #fff;
	border-radius:10px;
	text-align: center;
	/* max-height:0; */
	opacity:0;
	overflow: hidden;
	visibility: hidden;
	transition: var(--transition-custom);
}

#header .h_global__menu ul {
	padding:20px;
}

#header .h_global__menu li:not(:last-child) {
	margin-bottom:10px;
}

#header .h_global__menu a {
	display: block;
	font-size:1.6rem;
	line-height:1;
}

#header .h_global .glo_box{
	position: relative;
}
#header .h_global .glo_box.on .h_global__menu {
	top:45px;
	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::after {
		content: "";
		display: block;
		position: absolute;
		top:98px;
		left:50%;
		transform:translateX(-50%);
		width:200vw; 
		height:1px;
		background-color: #c9c9c9;
		opacity: 0;
		visibility: hidden;
		z-index:10;
		pointer-events: none;
		transition:var(--transition-custom4);
	}
	
	#header .h_menu__li::after {
		content: "";
		display: block;
		position: absolute;
		top:0;
		left:0;
		width: 100%;
		height:320px;
		background-color: #fef7f4;
		opacity:0;
		visibility: hidden;
		transition: var(--transition-custom3);
	}

	#header .h_menu__li:hover::after {
		opacity: 1;
		visibility: visible;
	}

	#header .h_menu__li:hover .h_menu__link {
		color:#ee6623;
	}

	#header .h_sub li:not(:last-child) {
		margin-bottom:20px;
	}	

	#header .h_sub a:hover {
		color:#ee6623;
		text-decoration: underline;
		text-underline-offset:3px;
	}

	#header .h_global__menu a:hover {
		color:#ee6623;
	}

	#header.active {
		background-color: #fff;
	}

	#header.active .h_logo a {
		background-image: url('../img/common/header_logo_new.png');
	}

	#header.active .h_menu__link {
		color:#221e1f;
	}

	/*#header.active .h_global__btn {
		background-color: #f5f5f5;
	}*/

	#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('../img/common/header_logo_new.png');
	}

	#header[header-hover = "on"] .h_menu__link {
		padding:40px 50px;
		color:#221e1f;
	}

	#header[header-hover = "on"] .h_sub {
		opacity: 1;
		visibility: visible;
	}

	/* #header[header-hover = "on"] .h_global__btn {
		background-color: #f5f5f5;
	} */
}

@media all and (max-width:1440px){
	#header .h_logo{
		width: 170px;
		top: 39px;
	}

	#header .h_menu__link{
		padding: 34px 15px;
	}
}
@media screen and (max-width:1200px) {
	#header {
		height:70px;
		background-color: #fff;
	}

	#header .h-container {
		width: 100%;
	}

	#header .h_logo {
		top: 24px;
		left:20px;
		width: 200px;
	}

	#header .h_menu {
		position: fixed;
		top:0;
		left:0;
		width: 100%;
		height:100%;
		padding: 80px 20px;
		background-color: #fff;
		opacity: 0;
		visibility: hidden;
		transition: var(--transition-custom);
		z-index: 99;
	}

	#header .h_menu__ul {
		flex-wrap: wrap;
	}

	#header .h_menu__li {
		flex:1 1 100%;
	}

	#header .h_menu__link {
		padding:20px 0px;
		border-bottom: 1px solid #e3e3e3;
		font-size:1.7rem;
		color:#221e1f;
	}

	#header .h_menu__link::before,
	#header .h_menu__link::after {
		content: "";
    display: block;
    position: absolute;
    top: 50%;
    right:0px;
    width: 10px;
    margin-top: -1px;
    background-color: #221e1f;
    height: 2px;
    -webkit-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transition:all .4s ease;
    transition:all .4s ease;
	}

  #header .h_menu__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;
		transition: var(--transition-custom);
	}

	#header .h_sub li {
		text-align: left;
		margin-bottom:0px;
		margin-top:20px;
	}

	#header .h_global {
		top:23px;
		right:70px;
	}

	/* #header .h_global__btn {
		background-color: #f5f5f5;
	} */

	#header .h_mobile {
		display: block;
	}

	#header[data-header-mobile = "on"] .h_menu {
		opacity: 1;
		visibility: visible;
	}

	#header .h_menu__link[aria-toggle="true"] {
		color:#ee6623;
		border-color:#ee6623;
	}

	#header .h_menu__link[aria-toggle="true"]::before,
	#header .h_menu__link[aria-toggle="true"]::after {
		background-color:#ee6623;
	}

  #header .h_menu__link[aria-toggle="true"]::before {
    -webkit-transform: rotate(0deg);
		transform: rotate(0deg);
  }

  #header .h_menu__link[aria-toggle="true"]::after {
    opacity: 0;
    -webkit-transform: rotate(180deg);
		transform: rotate(180deg);
  }

	#header .h_menu__link[aria-toggle="true"] + .h_sub {
		max-height:260px;
		margin:0px 0px 30px;
	}
}
@media screen and (max-width:1024px) {

}
@media screen and (max-width:768px) {

}
@media screen and (max-width:650px) {
	#header .h_logo{
		width: 145px;
		left: 15px;
		top: 29px;
	}

}


/* Footer */
#footer {
	background-color: #FE4811;
	padding: 80px 0;
}

#footer .ft_top{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

#footer .arw_btn{
	width: 100px;
	height: 100px;
	background-color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

#footer .ft_bot{
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

#footer .ft_info li{
	display: flex;
	line-height: 1.625em;
}
#footer .ft_info li + li{
	margin-top: 20px;
}

#footer .ft_info .tit_text{
	min-width: 265px;
}

#footer .bot_rt{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-end;
}

#footer .cpn_btn{
	width: 250px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	border: 1px solid #fff;
}

#footer .cpn_btn:hover{
	background-color: #fff;
}
#footer .cpn_btn:hover span{
	color: #FE4811;
	font-weight: 500;
}
#footer .cpn_btn:hover img{
	filter: invert(36%) sepia(97%) saturate(2335%) hue-rotate(351deg) brightness(97%) contrast(106%);
}
#footer .cpn_btn,
#footer .cpn_btn span,
#footer .cpn_btn img{transition: .5s;}

#footer .ft_under{
	margin-top: 60px;
	padding-top:20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #fff;

}

#footer .icon_li{
	display: flex;
	align-items: center;
	gap: 15px;
}

@media all and (max-width:1300px){
	#footer .ft_bot{
		flex-wrap: wrap;
		justify-content: center;
		gap: 30px;
	}

	#footer .bot_rt{
		align-items: center;
		gap: 20px;
	}
}

@media all and (max-width:650px){
	#footer{
		padding: 50px 0;
	}
	#footer .ft_top{
		flex-wrap: wrap;
		justify-content: center;
        text-align: center;
		gap: 20px;
	}
	#footer .ft_under{
		flex-wrap: wrap;
		justify-content: center;
		text-align: center;
		gap: 10px;
	}

	#footer .ft_info .tit_text{
		min-width: auto;
	}

	#footer .ft_info li{
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	#footer .arw_btn{
		width: 80px;
		height: 80px;
	}

	#footer .cpn_btn{
		width: 180px;
		height: 50px;
	}
}


/* section 패딩 값 */
.secPadd{
	padding: 100px 0;
}

.secPadd.pt0{
	padding-top: 0;
}

.secPadd.pt200{
	padding-top: 200px;
}

.secPadd.pb0{
	padding-bottom: 0;
}

@media all and (max-width:1024px){
	.secPadd{
		padding: 80px 0;
	}
	
	.secPadd.pt200{
		padding-top: 150px;
	}
}

@media all and (max-width:768px){
	.secPadd.xs-pb0{
		padding-bottom: 0;
	}
	.secPadd.pt200{
		padding-top: 100px;
	}
}


/* step_li */

.ic_on_new ul{
	gap: 20px;
}
.ic_on_new li{
	text-align: center;
}
.ic_on_new.list02 li{
	width: calc(50% - 10px);
}

.ic_on_new.list04 li{
	width: calc(25% - 15px);
}

.ic_on_new.list05 li{
	width: calc(20% - 16px);
}

.ic_on_new .ne_icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.ic_on_new .ne_icon i{
	width: 100%;
	max-width: 289px;
	aspect-ratio: 1/1;
	display: flex;
	align-items: center;
	justify-content: center;

}
.ic_on_new .st_ep{
	background-color: #191919;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 40px;
	margin: 0 auto;
	padding: 2px 8px;
}

.ic_on_new .te_xt_tit{
	padding: 20px 0;
	text-align: center;
	border-top: 1px solid #d9d9d9;
	border-bottom: 1px solid #d9d9d9;
	margin: 20px 0 30px;
}
.ic_on_new .te_xt_sm p + p{
	margin-top: 20px;
}

.are_txt_box{
	padding-top: 50px;
	border-top: 1px solid #a7a7a7;
}

.ic_on_new .arw_i_con{
	width: 21px;
	height: 21px;
	transform: rotate(45deg);
	border-bottom: 1px solid #a7a7a7;
	border-right: 1px solid #a7a7a7;
	margin: 0 auto;
}

.ic_on_new .trpb-60{
	margin-top: 60px;
}

.ic_on_new .mt-40-li li:nth-child(odd){
	margin-top: 40px;
}

.ic_on_new img.mo_img{display: none;}
@media all and (max-width:1600px){
	br.pc_br{display: none;}
}

@media all and (max-width:1400px){
	.ic_on_new ul{
		flex-wrap: wrap;
	}
	.ic_on_new.list05 li,
	.ic_on_new.list04 li,
	.ic_on_new.list03 li{
		width: calc(50% - 10px);
	}
	.ic_on_new.list05 ul,
	.ic_on_new.list03 ul{
		justify-content: center;
	}
	
	.ic_on_new .mt-40-li li:nth-child(odd){
		margin-top: 0;
	}
}
@media all and (max-width:768px){
	.ic_on_new.list05 li,
	.ic_on_new.list04 li,
	.ic_on_new.list03 li,
	.ic_on_new.list02 li{
		width: 100%;
	}

	
	.ic_on_new .trpb-60{
		margin-top: 0;
		}
	.ic_on_new img.pc_img{display: none;}
	.ic_on_new img.mo_img{display: block;}
}

