/* 초기화 */
: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;
  --transition-custom4: 0.8s ease-in-out;
}

*, *::before, *::after {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
	color: #262626;
  font-family: 'Pretendard Variable', 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;
	}
}

.w100{
  width: 100%;
}
/* 블록 */
.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 {
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.clamp-2 {
	-webkit-line-clamp: 2; 
}

.clamp-3 {
	-webkit-line-clamp: 3; 
}
/* Ele Position */
.ele-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--transition-custom4), transform var(--transition-custom4);
}
.ele-blur{
  letter-spacing:0.05em;
  filter:blur(20px);
  transition:letter-spacing var(--transition-custom4), filter var(--transition-custom4);
}

.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);
}
.ele-blur.in-view {
  letter-spacing: 0em;
  filter: blur(0);
}

/* 컨테이너 */
.container {
	max-width:1580px;
	width: 95%;
	margin:0 auto;
}

.container.w1700{
  max-width: 1700px;
}

/* 메인 */
#main {
}

/* 헤더 */
/*header*/
#header{
  position: fixed;
  z-index: 101;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  transition: transform .3s;
}
#header.scroll{
  transform: translateY(-100%);
}
.header-empty{
  padding-top: 90px;
}
#header .logo-color{
  display: none;
}
#header .container{
  position: relative;
}
#header .head-air{
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
#header .head-air .logo,
#header .head-air .head-inq{
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  pointer-events: auto;
}
#header .head-air .logo{
  left: 0;
}
#header .head-air .head-inq{
  display: flex;
  align-items: center;
  right: 0;
  padding: 10px 20px;
  border-radius: 40px;
  background-color: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.2);
  gap: 8px;
}
#header .head-air .head-inq:hover .ico{
  animation: rhythmic-ring 1.5s ease-in-out infinite;
}

/* 리드미컬한 움직임 정의 */
@keyframes rhythmic-ring {
  0% { transform: rotate(0); }
  10% { transform: rotate(15deg); }
  20% { transform: rotate(-15deg); }
  30% { transform: rotate(15deg); }
  40% { transform: rotate(0); }
  100% { transform: rotate(0); }
}

#header .gnb > ul{
  display: flex;
  width: 100%;
  justify-content: center;
}
#header .gnb > ul > li > a{
  display: block;
  font-size: 1.8rem;
  padding: 35px 25px;
}

/*moblie*/
#header .m_btn {
  display: none;
  width: 24px;
  text-align: right;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-end;
  padding: 10px 0;
}

#header .m_btn i {
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: 3px 0;
  background: #000;
  transition: all 0.5s;
}

#header .m_btn i:nth-of-type(2) {
  width: 84%;
}

#header .m_btn.on i:nth-of-type(1) {
  margin: 11px 0 -2px;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
}

#header .m_btn.on i:nth-of-type(2) {
  width: 0;
  margin: 0;
}

#header .m_btn.on i:nth-of-type(3) {
  margin: 0 0 11px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
}

.m_menu_bg {
  z-index: 101;
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .7);
  cursor: pointer;
}

.m_menu {
  z-index: 102;
  position: fixed;
  right: -100%;
  top: 0;
  width: 500px;
  max-width: 80%;
  height: 100%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.5s;
  overflow-y: auto;
}

.m_menu.on {
  right: 0;
}

.m_menu .top_box {
  position: relative;
  height: 60px;
  padding: 10px;
  box-sizing: border-box;
}

.m_menu .top_box .close_btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}

.m_menu .top_box .close_btn i {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #675646;
}

.m_menu .top_box .close_btn i:first-of-type {
  -webkit-transform: rotate(45deg) translate(9px, 9px);
  -moz-transform: rotate(45deg) translate(9px, 9px);
  -ms-transform: rotate(45deg) translate(9px, 9px);
  -o-transform: rotate(45deg) translate(9px, 9px);
  transform: rotate(45deg) translate(9px, 9px);
}

.m_menu .top_box .close_btn i:last-of-type {
  -webkit-transform: rotate(-45deg) translate(-7px, 8px);
  -moz-transform: rotate(-45deg) translate(-7px, 8px);
  -ms-transform: rotate(-45deg) translate(-7px, 8px);
  -o-transform: rotate(-45deg) translate(-7px, 8px);
  transform: rotate(-45deg) translate(-7px, 8px);
}

.m_menu .login_box {
  padding: 15px 0;
  background-color: #675646;
  text-align: center;
}

.m_menu .login_box a {
  position: relative;
  padding: 0 30px;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.m_menu .login_box a + a:before {
  content: '';
  position: absolute;
  right: -1px;
  top: calc(50% - 7px);
  width: 2px;
  height: 15px;
  background-color: #fff;
}
.m_menu .login_box a .ico img{
  max-height: 15px;
}

.m_menu .gnb_box {
  border-top: 1px solid #ddd;
}

.m_menu .gnb_box > ul > li {
  border-bottom: 1px solid #dddddd;
}

.m_menu .gnb_box > ul > li > a {
  position: relative;
  display: block;
  padding: 10px 15px;
  font-size: 1.6rem;
  font-weight: bold;
  color: #222222;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}

.m_menu .gnb_box .depth02 {
  display: none;
  padding: 10px 0;
  background-color: #000;
}

.m_menu .gnb_box .depth02 li a {
  position: relative;
  display: block;
  padding: 7px 20px;
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: -0.04em;
  box-sizing: border-box;
}
@media all and (max-width:1200px){
  #header .head-air .logo img{
    max-height: 20px;
  }
}

@media all and (max-width: 1024px) {
  #header .m_btn {
    display: flex;
  }
  #header .gnb,
  #header .head-air .head-inq {
    display: none;
  }

  #header{
    padding: 10px 0;
  }
  #header .head-air{
    position: unset;
    width: auto;
  }
  #header .head-air .logo{
    position: unset;
    transform: none;
  }
  #header .container{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header-empty{
    padding-top: 64px;
  }
}

@media all and (max-width:576px){
  #header .head-air .logo img{
    max-height: 18px;
  }
}

#footer{
  padding: 55px 0;
  background-color: #675646;
}
#footer .op-70{
  opacity: .7;
}
#footer .f-flex-box{
  display: flex;
  justify-content: space-between;
}

#footer .foot-tel{
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 7px 20px;
  border-radius: 100px;
  border: 1px solid #fff;
  width: fit-content;
}
#footer .foot-tel:hover .ico{
  animation: rhythmic-ring 1.5s ease-in-out infinite;
}
#footer .lt-top{
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
#footer .info-li{
  display: flex;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.70);
  gap: 0 20px;
  overflow: hidden;
}
#footer .info-li li{
  position: relative;
}
#footer .info-li li + li:before{
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: rgba(255, 255, 255, 0.70);
  content: '';
  display: block;
}

#footer .rt-foot{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
#footer .rt-foot .top-btn{
  width: 70px;
  height: 70px;
  border-radius: 10px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
#footer .rt-foot .top-btn .txt{
}
#footer .rt-foot .top-btn:hover .txt{
  animation: rolling .8s ;
}
#footer .rt-foot .bot-userbtn{
  display: flex;
  gap: 30px;
}
#footer .rt-foot .user-btn{
  color: rgba(255, 255, 255, 0.70);
}

@keyframes rolling {
  0% {
    transform: translateY(0);
  }
  49.9% {
    transform: translateY(-45px); /* 위로 완전히 사라짐 */
  }
  50% {
    transform: translateY(45px); /* 찰나의 순간에 아래쪽으로 순간이동 */
  }
  100% {
    transform: translateY(0); /* 다시 원래 위치로 등장 */
  }
}
@media all and (max-width:768px){
  #footer{
    padding: 35px 0;
  }
  #footer .logo img{
    max-height: 23px;
  }
  #footer .foot-tel{
    padding: 5px 15px;
    gap: 10px;
  }
  #footer .foot-tel img{
    max-height: 15px;
  }
  #footer .rt-foot .top-btn{
    width: 50px;
    height: 50px;
  }
}

@media all and (max-width:576px){
  #footer .f-flex-box{
    flex-wrap: wrap;
    gap: 20px;
  }
  #footer .logo img{
    max-height: 19px;
  }
  #footer .rt-foot{
    width: 100%;
    gap: 15px;
  }
}



/* Privacy Modal, Terms Modal */
.privacy-modal,
.terms-modal {
	display: none;
	position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  place-items: center;
  z-index: 9999999;
}

.privacy-modal .modal-inner,
.terms-modal .modal-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.privacy-modal .modal-container,
.terms-modal .modal-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap:10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	max-width:680px;
	max-height: none;
	width: 95%;
	height:auto;
	margin:10px auto;
}

.privacy-modal .modal-background,
.terms-modal .modal-background {
	width:100%;
  height:100%;
	background-color: rgba(0, 0, 0, 0.6);
	cursor: pointer;
}

.privacy-modal .modal-heading,
.terms-modal .modal-heading {
	display: flex;
	justify-content: flex-end;
}

.privacy-modal .footer-modal-close,
.terms-modal .footer-modal-close {
	display: block;
	width:23px;
	height:23px;
	background: url('/asset/img/main/btn_modal_close.png') no-repeat center;	
}

.privacy-modal .modal-area,
.terms-modal .modal-area {
	width: 100%;
	height:100%;
	background-color: #fff;
	border-radius:10px;
	padding: 60px 50px;
	overflow: hidden;
}

.privacy-modal .privacy-context,
.terms-modal .terms-context {
	height:300px;
	overflow-y: auto;
	border:1px solid #ddd;
	padding:20px;
}

@media screen and (max-width:1200px) {

}
@media screen and (max-width:992px) {
	.privacy-modal .modal-area, .terms-modal .modal-area {
		padding: 40px 30px;
	}

	.privacy-modal .privacy-context, .terms-modal .terms-context {
		padding: 16px;
	}
}
@media screen and (max-width:768px) {
	.privacy-modal .privacy-context, .terms-modal .terms-context {
		height:250px;
	}
}
@media screen and (max-width:576px) {
	.privacy-modal .modal-area, .terms-modal .modal-area {
		padding:16px;
	}

	.privacy-modal .privacy-context, .terms-modal .terms-context {
		padding:12px;
	}
}


.common-tit-box .big-tag{
  font-size: 20rem;
  font-style: italic;
  color: rgba(103, 86, 70, 0.10)
}
.common-tit-box .big-tag.white{
  color: rgba(255, 255, 255, 0.20);
}
.common-tit-box .mt--60{
  margin-top: -60px;
}
.common-tit-box .big-tag.ani span{
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.3s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}
.common-tit-box .big-tag.in-view span{
  clip-path: inset(0 0 0 0); 
}

@media all and (max-width:1024px){
  .common-tit-box .mt--60{
    margin-top: -30px;
  }
}
@media all and (max-width:768px){
  .common-tit-box .mt--60{
    margin-top: -15px;
  }
}

.common-img-box .img-box{
  aspect-ratio: 1/0.63;
}
.common-img-box .img-box img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media all and (max-width:1600px){
  .common-tit-box .big-tag{
    font-size: 15rem;
  }
}
@media all and (max-width:1200px){
  .common-tit-box .big-tag{
    font-size: 10rem;
  }
}

@media all and (max-width:1024px){
  .common-tit-box .big-tag{
    font-size: 8rem;
  }
}

@media all and (max-width:768px){
  .common-tit-box .big-tag{
    font-size: 6rem;
  }
}

@media all and (max-width:576px){
  .common-tit-box .big-tag{
    font-size: 5rem;
  }
}


.air-pencil-txt{
  transform: rotate(-5.77deg);
  font-size: 15rem;
  z-index: 10;
  clip-path: inset(0 100% 0 0); 
  transition: none; /* 비활성 상태에선 트랜지션 없음 */
  pointer-events: none;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none;     /* IE 10+ */
  user-select: none;
  color: #D8D1CC;
  white-space: nowrap;
  width: fit-content;
  padding: 0 5px;
}
/* active 클래스가 붙은 후 애니메이션 시작 */
.active .air-pencil-txt {
  clip-path: inset(0 0 0 0); 
  transition: clip-path 1.8s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}


@media all and (max-width:1024px){
  .air-pencil-txt{
    font-size: 10rem;
  }
  
}

@media all and (max-width:900px){
  .air-pencil-txt{
    font-size: 8rem;
  }
}

@media all and (max-width:576px){
  .air-pencil-txt{
    font-size: 5rem;
  }
  
}



.common-graph-box .graph-inner {
  width: 100%;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(238, 122, 124, 0.20) 100%), #F9F6F3;
  height: 100%;
  padding: 45px 70px;

}

.common-graph-box .chart-wrapper {
  position: relative;
  height: 100%;
}

.common-graph-box svg {
  width: 100%;
  height: 100%;
}

.common-graph-box .baseline {
  stroke: #898989;
  stroke-width: 1;
  stroke-dasharray: 2, 2;
}

.common-graph-box .line-path {
  fill: none;
  stroke: #E57A6B;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.common-graph-box .dot {
  fill: #fff;
  stroke: #e57373;
  stroke-width: 3;
}

.common-graph-box .label {
  font-size: 2.8rem;
  font-weight: 700;
  fill: #e57373;
}

.common-graph-box .label-large {
  font-size: 3.6rem;
  font-weight: 800;
  fill: #C82E31;
}

.common-graph-box .x-label {
  font-size: 2rem;
  font-weight: 600;
  fill: #898989;
  text-anchor: middle;
}
.common-graph-box .x-label.on{
  fill: #262626;
  font-size: 2.4rem;
}

.common-graph-box .callout {
  background: #C82E31;
  fill: #fff;
  padding: 15px 37px;
  border-radius: 5px;
  font-size: 3.6rem;
  font-weight: 800;
  position: relative;
  display: inline-block;
}


.common-graph-box .vertical-line {
  stroke: #898989;
  stroke-width: 1;
  stroke-dasharray: 2, 2;
}

.common-graph-box .note-text {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.common-graph-box .note-text .color-red{
  fill: #C82E31;
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.common-graph-box .animated-line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}
.common-graph-box .active .animated-line{
  animation: drawLine 2s ease-out forwards;
}
@keyframes drawLine {
  to {
    stroke-dashoffset: 0;
  }
}

.common-graph-box .animated-dot {
  opacity: 0;
}
.common-graph-box .active .animated-dot {
    animation: fadeIn 0.5s ease-out forwards;
}

.common-graph-box .dot-large {
  fill: #fff;
  stroke: #C82E31;
  stroke-width: 5;
  
}
.common-graph-box .active .dot-large{
  animation: 
    fadeIn 0.5s ease-out forwards, 
    blink-shadow 1.5s infinite ease-in-out 0.5s; /* fadeIn이 끝나는 0.5초 뒤에 시작 */
}


@keyframes blink-shadow {
    0%, 100% {
        /* 그림자가 거의 안 보이는 상태 */
        filter: drop-shadow(0 0 2px rgba(200, 46, 49, 0.2));
    }
    50% {
        /* 피그마 설정값 적용: Blur 10px, 투명도 0.5 */
        filter: drop-shadow(0 0 10px rgba(200, 46, 49, 0.5));
    }
}

.common-graph-box .active .delay-05{animation-delay: .5s;}
.common-graph-box .active .delay-10{animation-delay: 1s;}
.common-graph-box .active .delay-13{animation-delay: 1.3s;}
.common-graph-box .active .delay-15{animation-delay: 1.5s;}
.common-graph-box .active .delay-20{animation-delay: 2s;}
.common-graph-box .active .delay-25{animation-delay: 2.5s;}

@media all and (max-width:1024px){
  .common-graph-box .graph-inner{
    padding: 0 40px;
  }
}

@media all and (max-width:768px){
  .common-graph-box .graph-inner{
    padding: 40px;
  }
}

@media all and (max-width:576px){
  .common-graph-box .graph-inner{
    padding: 20px 10px;
  }
}


.list-style-dotted > li{
  position: relative;
  padding-left: 10px;
}
.list-style-dotted > li:before{
  position: absolute;
  content: '';
  left: 2px;
  top: 13px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background-color: #262626;
}



.qna-box-cont .circle {
  width: 38px;
  min-width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.qna-box-cont .circle.bg-white {
  background-color: #fff;
}

.qna-box-cont .circle.bg-point {
  background-color: #675646;
}

.qna-box-cont .q-box {
  padding: 20px 30px;
  border-radius: 10px 10px 0 0;
  background-color: #675646;
}

.qna-box-cont .a-box {
  padding: 30px;
  border-radius: 0 0 10px 10px;
  background-color: #F1EFED;
}

.qna-box-cont .q-box,
.qna-box-cont .a-box,
.qna-box-cont .a-flex{
  display: flex;
  gap: 20px;
}
.qna-box-cont .a-cont-box{
  width: 100%;
}
.qna-box-cont .square-box{
  padding: 20px 10px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #ACA39A;
  width: 100%;
}

@media all and (max-width:768px) {
  .qna-box-cont .circle {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }

  .qna-box-cont .q-box {
    padding: 15px 20px;
  }

  .qna-box-cont .a-box {
    padding: 20px;
  }

  .qna-box-cont .q-box,
  .qna-box-cont .a-box,
  .qna-box-cont .a-flex {
    gap: 10px;
  }
  .qna-box-cont .square-box{
    padding: 10px 5px;
  }
  .qna-box-cont .a-cont-box .lh-18{
    line-height: 1.4;
  }
}
