/* Pretendard Font */
@font-face {
    font-family: 'Pretendard';
    font-weight: 100;
    font-style: normal;
    src: url('../font/Pretendard-Thin.woff2') format('woff2'),
         url('../font/Pretendard-Thin.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 200;
    font-style: normal;
    src: url('../font/Pretendard-ExtraLight.woff2') format('woff2'),
         url('../font/Pretendard-ExtraLight.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 300;
    font-style: normal;
    src: url('../font/Pretendard-Light.woff2') format('woff2'),
         url('../font/Pretendard-Light.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 400;
    font-style: normal;
    src: url('../font/Pretendard-Regular.woff2') format('woff2'),
         url('../font/Pretendard-Regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 500;
    font-style: normal;
    src: url('../font/Pretendard-Medium.woff2') format('woff2'),
         url('../font/Pretendard-Medium.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 600;
    font-style: normal;
    src: url('../font/Pretendard-SemiBold.woff2') format('woff2'),
         url('../font/Pretendard-SemiBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 700;
    font-style: normal;
    src: url('../font/Pretendard-Bold.woff2') format('woff2'),
         url('../font/Pretendard-Bold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 800;
    font-style: normal;
    src: url('../font/Pretendard-ExtraBold.woff2') format('woff2'),
         url('../font/Pretendard-ExtraBold.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Pretendard';
    font-weight: 900;
    font-style: normal;
    src: url('../font/Pretendard-Black.woff2') format('woff2'),
         url('../font/Pretendard-Black.woff') format('woff');
    font-display: swap;
}

/* Reset */
*,*:before,*:after {
  margin:0; padding:0; box-sizing:border-box;
}

html{
  /* overflow-x:hidden; */
  font-family: 'Noto Sans KR', sans-serif;
  font-size:62.5% !important;
  color:#191919;
  letter-spacing:-0.02em;
  word-break:keep-all;
  word-wrap:break-word;
  box-sizing:border-box;
  animation:entry .3s ease forwards;
  opacity: 0;
}

body {
  font-size:1.6rem;
}

img{
  max-width:100%;
  display: block;
}

a{
  text-decoration:none;
  color:inherit;
  outline:none;
}

b,strong{
  font-weight:800 !important;
}

ul,li {
  list-style: none;
}

button{
  font-family:inherit;
  background-color:transparent;
  border:none;
  outline:none;
  cursor:pointer;
}

table{
  border-collapse:collapse;
}

input,select,textarea{
  padding-left:15px;
  padding-right:15px;
  font-family:inherit;
  background-color:#fff;
  border:1px solid #e5e5e5;
  -webkit-transition:all ease .1s;
  transition:all ease .1s;
  outline: none;
  border-radius:10px;
}

textarea{
  padding:10px;
}

select{
  padding-right:30px;
  -moz-appearance:none;
  -webkit-appearance:none;
  appearance:none;
  background-color:#fff;
  background-size:14px auto;
  background-image: url('/child/img/common/select-arrow.png');
  background-repeat:no-repeat;
  background-position:right 10px center;
}

select::-ms-expand{
  display:none;
}

input[type=number]{
  -moz-appearance:textfield;
}

input:-moz-read-only,textarea:-moz-read-only{
  background-color:#f8f8f8;
}

input:read-only,textarea:read-only{
  background-color:#f8f8f8;
}
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button{
  -webkit-appearance:none;margin:0;
}

input:not([readonly="readonly"]):not(:disabled):hover{
  border-color:#bbbbbb !important;
}

select:not(:disabled):hover{
  border-color:#bbbbbb !important;
}

textarea:not(:read-only):not(:disabled):hover{
  border-color:#bbbbbb !important;
}

input:not([readonly="readonly"]):not(:disabled):focus{
  border-color:#555555 !important;

}
select:not(:disabled):focus{
  border-color:#555555 !important;
}

textarea:not(:read-only):not(:disabled):focus{
  border-color:#555555 !important;
}

:focus{
  outline:none;
}

::placeholder{
  color:#bbbbbb;
}

:-ms-input-placeholder{
  color:#bbbbbb;
}

::-ms-input-placeholder{
  color:#bbbbbb;
}

@keyframes entry {
    to{opacity: 1;}
}


/* Overflow */
.hidden {
  overflow: hidden;
}
/* Position */
.position-relative {
	position: relative;
}

/* Block */
.block {
  display: block;
}

@media(max-width:1024px){
  .pc-block {display:inline-block;}
}


/* Display */
.sp{display:none;}
.mo{display:none;}

@media(max-width:1024px){
  .sp{display:block;}
  .pc{display:none;}
}

@media(max-width:768px){
  .tb{display:none;}
  .mo{display:block;}
}


/* 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);
}


/* Font Weight */
.font-weight-thin {
  font-weight:100;
}

.font-weight-extralight {
  font-weight:200;
}

.font-weight-light {
  font-weight:300;
}

.font-weight-medium {
  font-weight:500;
}

.font-weight-semibold {
  font-weight:600;
}

.font-weight-bold {
  font-weight:700;
}

.font-weight-extraBold {
  font-weight:800;
}

.font-weight-black {
  font-weight:900;
}

/* Button */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  /*padding:14px 15px;*/
  text-align:center;
  border:1px solid transparent;
  -webkit-transition: all ease .3s;
  transition: all ease .3s;
  font-weight:300;
  cursor: pointer;
}

/* flex */
.d-flex{
  display: flex;
}

.justify-space-between{
  justify-content: space-between;
}

.justify-content-center{
  justify-content: center;
}
.justify-content-end{
  justify-content: end;
}

.align-items-center{
  align-items: center;
}
.flex-direction-column{
  flex-direction: column;
}

@media all and (max-width:768px){
  .sm-flex-wrap{
    flex-wrap: wrap;
  }

  .sm-justify-content-center{
    justify-content: center;
  }

  .sm-text-center{
    text-align: center;
    
  }
}

/* font */
.maru{font-family: 'MaruBuri', sans-serif;}
.kcc{font-family: 'KCCEunyoung', sans-serif;}
.cormor{font-family: 'Cormorant Garamond', serif;}

/* text color */
.text-white{
  color: #fff;
}
.text-green{
  color: #245647;
}
.text-yellow{
  color: #f5bf3f;
}

/* bg color */
.bg-gray{
  background-color: #EDF1EF;
}

/* section padding */
section.section{
  padding: 130px 0;
  position: relative;
}

section.p-100{
  padding: 100px 0;
}

section.section-last{
  padding-bottom: 150px;
}

section.pt-0{
  padding-top: 0 !important;
}
section.pb-0{
  padding-bottom: 0 !important;
}

@media all and (max-width:1024px){
  section.section{
    padding: 100px 0;
  }

  section.p-100{
    padding: 80px 0;
  }

  section.section-last{
    padding-bottom: 125px;
  }
}

@media all and (max-width:768px){
  section.section{
    padding: 80px 0;
  }

  section.p-100{
    padding: 65px 0;
  }

  section.section-last{
    padding-bottom: 100px;
  }
}

/* Main */
.main {
  /* overflow: hidden; */
  display: block;
  min-height: calc(100vh - 240px);
}

/* Container */
.container {
  max-width:1440px;
  width:93.75%;
  margin:0 auto;
  position: relative;
}

/* Header */
#header {
	position:fixed;
	top:0;
	left:0;
	width:100%;
	z-index: 100;
	transition:var(--transition-custom4);
}

#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: 360px;
	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:31px;
	left:0;
	width: 190px;
	height:41px;
	z-index:110;
}

#header .h_logo a {
	display: block;
	width: 100%;
	height:100%;
	background: url('/asset/img/header_logo.png') no-repeat center / cover;
}

#header .h_menu{
  width: 100%;
}

#header .h_menu__ul {
	display: flex;
	align-items: center;
  justify-content: flex-end;
}

#header .h_menu__li {
	position: relative;
}

#header .h_menu__link {
	position: relative;
	display: block;
	padding:40px;
	font-size:1.8rem;
	font-weight:500;
	line-height:1;
	color:#fff;
	transition: .5s;
	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: 260px;
	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_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 all and (max-width:1600px){
  #header .h_menu__link{padding: 40px 25px;}
  #header[header-hover = "on"] .h_menu__link{
    padding: 40px 30px;
  }
}


@media screen and (min-width:1441px) {
	#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:360px;
		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:#f5bf3f;
	}

	#header .h_sub li:not(:last-child) {
		margin-bottom:20px;
	}	

	#header .h_sub a:hover {
		color:#f5bf3f;
		text-decoration: underline;
		text-underline-offset:3px;
	}

	#header .h_global__menu a:hover {
		color:#f5bf3f;
	}

	#header.active {
		background-color: #fff;
	}

	#header.active .h_logo a {
		background-image: url('/asset/img/footer_logo01.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('/asset/img/footer_logo01.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 screen and (max-width:1440px) {
	#header {
		height:70px;
		background-color: #fff;
	}

	#header .h-container {
		width: 100%;
	}

	#header .h_logo {
		top: 24px;
		left:20px;
		width:150px;
		height:27px;
	}

	#header .h_logo a {
		background-image: url('/asset/img/footer_logo01.png');
	}

	#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[header-hover = "on"] .h_menu__link{
    padding: 16px 0;
  }
	#header .h_menu__link {
    transition: 0s;
		padding:16px 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:#f5bf3f;
		border-color:#f5bf3f;
	}

	#header .h_menu__link[aria-toggle="true"]::before,
	#header .h_menu__link[aria-toggle="true"]::after {
		background-color:#f5bf3f;
	}

  #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:576px) {

}


/* Footer */
.footer {
  padding: 70px 0 65px;
}
.footer .foot_line{
  margin: 25px 0;
  width: 100%;
  height: 1px;
  background-color: rgba(0,0,0,.33);
}

.footer .foot_info{
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
  line-height: 1.625em;
}
.footer .foot_info p{
  position: relative;
  font-size: 16px;
}
.footer .foot_info p + p:before{
  position: absolute;
  content: '';
  width: 1px;
  height: 10px;
  left: -10px;
  top: 7px;
  background-color: #191919;
}

@media all and (max-width:1024px){
  .footer .foot_info p + p:before{
    content: none;
  }
}

@media all and (max-width:650px){
  .footer .foot_info {
    justify-content: center;
    text-align: center;
  }
  .footer .top_logo{
    display: flex;
    justify-content: center
  }
}

/* main title */
.main-tit-box .main-pt{
  text-decoration:underline;
  text-underline-offset: 3px;
}

.footer .foot_balist {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer .foot_balist .ba_img{
  flex: 1;
}

@media all and (max-width:768px){
  
.footer .foot_balist .ba_img{
  flex: none;
  width: calc(33.333% - 6.6666px);
}
}
@media all and (max-width:576px){
  
.footer .foot_balist {
  gap: 5px;
}
.footer .foot_balist .ba_img{
  width: calc(50% - 2.5px);
}
}


.privacy-pop-up {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999999;
  background-color: rgba(0, 0, 0, .6);
}

.privacy-pop-up.active {
  display: block;
}

.privacy-pop-up .pop-wrap {
  width: 1200px;
  max-width: 95%;
  background-color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 60px;
  border-radius: 10px;
}

.privacy-pop-up .pop-closed {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: url(/asset/img/btn_close.svg) no-repeat 50% 50%;
  cursor: pointer;
  z-index: 8040;
}

.privacy-pop-up .pop-contents {
  max-height: 65vh;
  overflow-y: auto;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

.privacy-pop-up .pop-contents::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media all and (max-width:1024px) {
  .privacy-pop-up .pop-closed {
    width: 70px;
    height: 70px;
  }
}

@media all and (max-width:650px) {
  .privacy-pop-up .pop-closed {
    width: 55px;
    height: 55px;
  }

  .privacy-pop-up .pop-wrap {
    padding: 40px 30px;
  }
}

@media all and (max-width:576px) {
  .privacy-pop-up .pop-wrap {
    padding: 20px 15px;
  }
}