/* 초기화 */
:root {
	--transition-basic: .3s;
	--transition-custom: .4s cubic-bezier(0.4, 0, 0.2, 1);
	--transition-custom2: 1s ease-in-out;
	--transition-custom3: 1.5s ease;
}

*, *::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;
	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:#A4A4A4;
}

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 {
	overflow: hidden;
}

/* 블라인드 */
.blind {
	overflow: hidden;
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}


/* 줄바꿈 */
@media screen and (max-width:1200px) {
	.lg {
		display: none;
	}
}
@media screen and (max-width:1024px) {
	.md {
		display: none;
	}
}
@media screen and (max-width:768px) {
	.sm {
		display: none;
	}
}
@media screen and (max-width:576px) {
	.xs {
		display: none;
	}
}


.fm-cafe24{
  font-family: 'Cafe24Surround', sans-serif;
}
.fm-nunito{
  font-family: 'Nunito', sans-serif;
}

.fm-dunggeunmo{
  font-family: 'BoldDungGeunMo', sans-serif;
}

/* 블록 */
.d-block {
	display: block;
}
.d-inline-block {
	display: inline-block;
}


.ellip {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.clamp-1 {
	-webkit-line-clamp: 1; 
}

.clamp-2 {
	-webkit-line-clamp: 2; 
}


/* 컨테이너 */
.container {
	max-width:78.125vw;
	width: 95%;
	margin:0 auto;
}

/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(5.208vw);
  transition: opacity var(--transition-custom3), transform var(--transition-custom3);
}

.ele-delay1 {transition-delay: .1s;}
.ele-delay2 {transition-delay: .2s;}
.ele-delay3 {transition-delay: .3s;}
.ele-delay4 {transition-delay: .4s;}
.ele-delay5 {transition-delay: .5s;}
.ele-delay6 {transition-delay: .6s;}
.ele-delay7 {transition-delay: .7s;}
.ele-delay8 {transition-delay: .8s;}
.ele-delay9 {transition-delay: .9s;}
.ele-delay10 {transition-delay: 1s;}
.ele-delay11 {transition-delay: 1.1s;}
.ele-delay12 {transition-delay: 1.2s;}

.ele-up.in-view {
  opacity: 1;
  transform: translateY(0);
}


/* 메인 */
#main {
}

/* 헤더 */
/*header*/
#header{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  padding: 1.042vw 0;
  background-color: #fff;
  z-index: 1;
}
#header .head-icon-list{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.125vw;
}

#header .head-icon-list .img{
  display: block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#header .head-icon-list .img01{
  width: 8.9583vw;
  aspect-ratio: 1/0.249;
  background-image: url(/asset/img/main/header_img01.png);
}
#header .head-icon-list .img02{
  width: 9.8958vw;
  aspect-ratio: 1/0.226;
  background-image: url(/asset/img/main/header_img02.png);
}
#header .head-icon-list .img03{
  width: 8.6979vw;
  aspect-ratio: 1/0.359;
  background-image: url(/asset/img/main/header_img03.png);
}

#footer{
  padding: 2.604vw 0;
  background-color: #044877;
}

#footer .d-flex{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#footer .top-foot{
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.2);
}


html.modal-open,
body.modal-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}


#footer .modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#footer .modal-overlay.active {
  display: flex;
}

#footer .modal-content {
  position: relative;
  width: 40%;
  max-width: 800px;
  height: 500px;
  background-color: #fff;
  border-radius: 10px;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

#footer .modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  color: #fff;
  font-size: 48px;
  font-weight: 200;
  cursor: pointer;
}

#footer .policy-wrap {
  flex: 1;                
  overflow-y: auto;       
  border: 1px solid #ddd;
  padding: 20px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

#footer .policy-wrap p {
  overflow-y: auto;
}

#footer .policy-box{
  display: flex;
  gap: 1.042vw;
}
#footer .policy-box .polcy-btn{
  position: relative;
}
#footer .policy-box .polcy-btn + .polcy-btn:before{
  position: absolute;
  content: '';
  width: 0.156vw;
  height: 0.156vw;
  background-color: #fff;
  border-radius: 50%;
  left: -0.521vw;
  top: 50%;
  transform: translate(-50%, -50%);
}
#footer .site-btn{
  display: flex;
  align-items: center;
  gap: 0.365vw;
}
#footer .site-btn i.arw{
  width: 0.833vw;
  height: 0.833vw;
  background: url(/asset/img/main/footer_arw01.png)no-repeat center center /cover;
}

#footer .logo{
  display: block;
  width: 6.354vw;
  aspect-ratio: 1/0.369;
  background: url(/asset/img/main/footer_logo.png)no-repeat center center/cover;
}

#footer .sns-list{
  display: flex;
  gap: 0.2604vw;
}
#footer .sns-list .sns-btn{
  width: 1.823vw;
  height: 1.823vw;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
#footer .sns-list .sns-btn.sns-facebook{
  background-image: url(/asset/img/main/footer_sns01.png);
}
#footer .sns-list .sns-btn.sns-naver{
  background-image: url(/asset/img/main/footer_sns02.png);
}
#footer .sns-list .sns-btn.sns-youtube{
  background-image: url(/asset/img/main/footer_sns03.png);
}
#footer .sns-list .sns-btn.sns-insta{
  background-image: url(/asset/img/main/footer_sns04.png);
}

#footer .foot-info-list ul{
  display: flex;
  gap: 30px;
  line-height: 1.6;
}

/* quick menu */
.quick-menu{
  position: fixed;
  right: 1.875vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 11;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  max-width: 7.292vw;
  overflow: hidden;
  box-shadow: 0 0.208vw 0.208vw 0 rgba(0,0,0,.2);
  transition: top 0.3s ease-out;
  font-size: 0.938vw;
}
.quick-menu .click-btn{
  display: block;
}
.quick-menu .quick-href{
  background-color: #fff;
  padding: 1.354vw 0.781vw;
  color: #3A9DD3;
}
.quick-menu .top-btn{
  background-color: #3A9DD3;
  padding: 0.521vw 0;
}