#header {
  position: relative;
}

/* sub_visual */
.sub_visual {
  padding: 130px 0 0;
}

.sub_visual .sub-vi-img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: -1;
}

.sub_visual .sub-visual-txt {
  line-height: 1;
}

.sub_visual .text-up {
  position: relative;
  text-align: center;
  z-index: 10;
  opacity: 0;
  transform: translateY(20px);
  animation-name: fadeIn;
  animation-duration: .9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

.sub_visual .delay-03 {
  animation-delay: .3s;
}

.sub_visual .delay-05 {
  animation-delay: .5s;
}

.sub_visual .delay-06 {
  animation-delay: .6s;
}


.sub_visual .delay-09 {
  animation-delay: .9s;
}

.sub_visual .delay-11 {
  animation-delay: 1.1s;
}

.rc-before {
  position: relative;
  display: inline-block;
}

.rc-before:before {
  position: absolute;
  content: '';
  bottom: 100%;
  left: 100%;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  background-color: #D80C24;
}


@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


@media all and (max-width: 1200px) {
  .sub_visual {
    padding-top: 100px;
  }
}

@media all and (max-width: 1024px) {
  .sub_visual {
    padding-top: 88px;
  }
}

@media all and (max-width: 768px) {
  .sub_visual {
    padding-top: 80px;
  }
}

@media all and (max-width: 576px) {
  .sub_visual {
    padding-top: 70px;
  }
}

/* 제휴 */
.partner-cont-box {
  display: flex;
  gap: 30px;
}

.partner-cont-box .item-box {
  width: calc(33.333% - 20px);
}

@media all and (max-width:768px) {

  .partner-cont-box {
    flex-wrap: wrap;
    gap: 20px 10px;
    justify-content: center;
  }

  .partner-cont-box .item-box {
    width: calc(50% - 5px);
  }

}


/* 소개 페이지 */
.about-cont-box {
  display: flex;
  gap: 30px;
}

.about-cont-box .item-box {
  width: calc(33.333% - 20px);
  position: relative;
}

.about-cont-box .img-box {
  width: 100%;
  aspect-ratio: 1/1.333;
}

.about-cont-box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top center;
}

.about-cont-box .air-txt {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding: 45px 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.about-cont-box .air-txt:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: '';
  background: linear-gradient(180deg, rgba(255, 245, 246, 0.5) 10%, rgba(216, 12, 36, .8) 100%);
  opacity: 0;
  visibility: hidden;
  transition: .5s;
  z-index: -1;
}

.about-cont-box .air-txt .txt {
  opacity: 0;
  visibility: hidden;
  transition: .5s;
}

.about-cont-box .item-box:hover .air-txt:before,
.about-cont-box .item-box:hover .air-txt .txt {
  opacity: 1;
  visibility: visible;
}

@media all and (max-width:768px) {
  .about-cont-box {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .about-cont-box .item-box {
    width: calc(50% - 5px);
  }

  .about-cont-box .item-box .air-txt:before {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(180deg, rgba(255, 245, 246, 0.2) 10%, rgba(216, 12, 36, .6) 100%);
  }

  .about-cont-box .item-box .air-txt .txt {
    opacity: 1;
    visibility: visible;
  }

  .about-cont-box .air-txt {
    padding: 20px 0;
  }
}

.about-pin-sec {
  position: relative;
}

.about-pin-sec .hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #D80C24;
  overflow: hidden;
}

.about-pin-sec .hero-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10%;
  pointer-events: none;
  text-align: center;
}

.about-pin-sec .hero-text span {
  display: block;
}

.about-pin-sec .hero-text--white {
  z-index: 6;
  color: #ffffff;
}

.about-pin-sec .hero-text--red {
  z-index: 9;
  color: #D80C24;
  clip-path: circle(0px at 50% 50%);
  will-change: clip-path;
}

/* 무한 pulse 애니메이션 */
@keyframes pulseCircle {
  0%   { width: 0px;    height: 0px; }
  50%  { width: 200vmax; height: 200vmax; } /* 화면을 꽉 채울 만큼 충분히 큰 값 */
  100% { width: 0px;    height: 0px; }
}

.about-pin-sec .white-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  background: #ffffff;
  transform: translate(-50%, -50%);
  z-index: 7;
  pointer-events: none;
  will-change: width, height;
  /* 속도 조절: 2.4s → 원하는 속도로 변경 */
  animation: pulseCircle 2.4s linear infinite;
}

.about-img-cont img.mo-img {
  display: none;
}

@media all and (max-width: 768px) {
  .about-img-cont img.pc-img {
    display: none;
  }
  .about-img-cont img.mo-img {
    display: inline-block;
  }
}


.service-page-sec {
  position: relative;
}

.service-page-sec .waves {
  width: 580px;
  height: 580px;
  z-index: 2;
  pointer-events: none;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-page-sec .waves .circle {
  background: #D80C24;
  border-radius: 50%;
  width: 350px;
  height: 350px;
  position: relative;
  z-index: 1;
  box-shadow: inset 0px 2px 30px 0px rgba(17, 17, 17, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 퍼져나가는 원 (가상 요소) */
.service-page-sec .waves::before,
.service-page-sec .waves::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 350px;
  height: 350px;
  margin-left: -175px;
  /* 너비의 절반 */
  margin-top: -175px;
  /* 높이의 절반 */
  border-radius: 50%;
  opacity: 0;
  animation: wave 2s infinite linear;
  z-index: -1;
  background: rgba(216, 12, 36, .3);
}

.service-page-sec .waves::after {
  animation-delay: .4s;
}

/* 핵심 애니메이션: 0에서 커지면서 투명해짐 */
@keyframes wave {
  0% {
    transform: scale(0);
    opacity: 1;
  }

  100% {
    transform: scale(2);
    opacity: 0;
  }
}

.service-page-sec .waves .turn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 720px;
}

.service-page-sec .img-list {
  display: flex;
  justify-content: space-between;
}

.service-page-sec .img-list.center {
  justify-content: center;
}

.service-page-sec .img-list .img-box {
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(216, 12, 36, 0.20);
  padding: 20px;
}

.service-page-sec .img-list .img {
  overflow: hidden;
  border-radius: 10px;
}

@media all and (max-width:768px) {
  .service-page-sec {
    display: flex;
    flex-direction: column;
    padding-bottom: 100px;
    overflow: hidden;
  }

  .service-page-sec .img-list .img-box {
    padding: 10px 5px;
  }

  .service-page-sec .waves {
    width: 100%;
    height: auto;
  }

  .service-page-sec .waves .turn {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }

  .service-page-sec .img-list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 0;
    order: 1;
  }

  .service-page-sec .img-list.center {
    order: 2;
    margin-top: 15px;
  }

  .service-page-sec .waves {
    order: 3;
    margin-top: 100px;
  }

  .service-page-sec .waves .turn {
    display: none;
  }

  .service-page-sec .waves::before,
  .service-page-sec .waves::after {
    width: 250px;
    height: 250px;
    margin-left: -125px;
    margin-top: -125px;
  }

  .service-page-sec .waves .circle {
    width: 280px;
    height: 280px;
    padding: 50px;
  }

  .service-page-sec .waves .circle img {
    max-width: 100%;
    max-height: 100%;
  }
}





/* STICKY SECTION */
.sticky-section {
  position: relative;
  height: 700vh;
  background: url(/asset/img/sub/reserve/bg01.svg)no-repeat center center;
  background-attachment: fixed;
}


.sticky-inner {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* BACKGROUND GRID */
.sticky-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(216, 12, 36, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 12, 36, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}


/* IMAGE ITEMS */
#img-container {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.img-item {
  position: absolute;
  opacity: 0;
  transform: scale(0.4) translateY(50px);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

.img-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.img-card .card-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.7);
}


@media all and (max-width:768px) {
  .sticky-inner .service-page-sec {
    width: 100%;
  }
}

.reser-map-box .map-box {
  height: 430px;
}

.reser-map-box .info-box {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.reser-map-box .info-box .info-li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reser-map-box .info-box .tit {
  display: flex;
  align-items: center;
  gap: 5px;
}

@media all and (max-widtH:1024px) {
  .reser-map-box .info-box {
    gap: 10px 15px;
    flex-wrap: wrap;
  }

  .reser-map-box .map-box {
    height: 350px;
  }
}


/* 부스 페이지 */
.booth-item-list {
  display: flex;
  gap: 30px;
}

.booth-item-list .item-box {
  width: calc(25% - 22.5px);
  border-radius: 10px;
  background: #FFF;
  box-shadow: 0 2px 12px 0 rgba(216, 12, 36, 0.20);
  padding: 50px 45px;
}

.booth-item-list .item-box .img-box {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
}

.booth-item-list .item-box .img-box img {
  max-width: 100%;
  max-height: 100%;
}

.booth-pyo-sec {
  position: relative;
  overflow: hidden;
}

.booth-pyo-sec:before {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 163vw;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(180deg, rgba(216, 12, 36, 0.08) 10%, rgba(255, 255, 255, 0) 40%);
  content: '';
  pointer-events: none;
}

.booth-pyo-sec .list-box {
  display: flex;
  gap: 50px;
  justify-content: center;
}

.booth-pyo-sec .pyo-box {
  width: calc(50% - 25px);
}

.booth-pyo-sec .arw-txt .arw-box {
  display: flex;
  justify-content: center;
}

.booth-pyo-sec .arw-txt .txt-box {
  width: 700px;
  max-width: 100%;
  height: 190px;
  border-radius: 500px;
  background-color: #D80C24;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width:1200px) {
  .booth-item-list .item-box {
    padding: 30px 20px;
  }
}

@media all and (max-width:768px) {
  .booth-item-list {
    gap: 30px 15px;
    flex-wrap: wrap;
  }

  .booth-item-list .item-box {
    width: calc(50% - 7.5px);
  }

  .booth-pyo-sec .list-box {
    gap: 20px;
  }

  .booth-pyo-sec .pyo-box {
    width: calc(50% - 10px);
  }

  .booth-pyo-sec .arw-txt .txt-box {
    height: 150px;
  }

  .booth-pyo-sec .arw-txt .arw-box img {
    height: 230px;
  }
}

@media all and (max-width:576px) {
  .booth-item-list {
    gap: 15px 10px;
  }

  .booth-item-list .item-box {
    padding: 15px 10px;
    width: calc(50% - 5px);
  }

  .booth-pyo-sec .list-box {
    gap: 40px;
    flex-wrap: wrap;
  }

  .booth-pyo-sec .pyo-box {
    width: 100%;
  }

  .booth-pyo-sec .arw-txt .txt-box {
    height: 100px;
  }

  .booth-pyo-sec .arw-txt .arw-box img {
    height: 180px;
  }
}

/* 설치점 */
.reser_loca_list {
  display: flex;
  flex-wrap: wrap;
  gap: 70px 30px;
}

.reser_loca_list .rl_box {
  width: calc(33.333% - 20px);
  background-color: #fff;
}

.reser_loca_list .rl_img {
  aspect-ratio: 1/.585;
}

.reser_loca_list .rl_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reser_loca_list .rl_info {
  padding: 30px;
}

.reser_loca_list .rl_tag {
  display: flex;
  gap: 5px 10px;
  flex-wrap: wrap;
}

.reser_loca_list .rl_tag .rtag_box {
  padding: 5px 20px;
  background-color: #FFF2F4;
  border-radius: 50px;
}

.reser_loca_list .rinfo_bot {
  border-top: 1px solid #999999;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reser_loca_list .rinfo_bot .rl_href {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 80px;
  background-color: #D80C24;
}

.reser_loca_list .rinfo_bot .rl_href i {
  transition: .5s;
}

.reser_loca_list .rinfo_bot .rl_href:hover i {
  transform: translateX(5px);
}

.reser_loca_btn {
  width: 483px;
  max-width: 100%;
  height: 59px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #D80C24;
  margin-left: auto;
  margin-right: auto;
}

@media all and (max-width:1300px) {
  .reser_loca_list .rl_box {
    width: calc(50% - 15px);
  }
}

@media all and (max-width:1024px) {
  .reser_loca_list {
    gap: 30px;
  }

  .reser_loca_list .rl_info {
    padding: 15px;
  }

  .reser_loca_list .rinfo_bot .rl_href {
    padding: 10px 15px;
    gap: 5px;
  }
}

@media all and (max-width:768px) {
  .reser_loca_list {
    gap: 30px 20px;
  }

  .reser_loca_list .rl_box {
    width: calc(50% - 10px);
  }

  .reser_loca_list .rinfo_bot .rl_href {
    padding: 7px 9px;
    gap: 3px;
  }

  .reser_loca_list .rl_tag {
    gap: 3px 5px;
  }

  .reser_loca_list .rl_tag .rtag_box {
    padding: 3px 10px;
  }
}

@media all and (max-width:576px) {
  .reser_loca_list .rl_box {
    width: 100%;
  }
}

/* 제품 페이지 */
.booth_tit_text {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.booth_tit_text:before {
  width: 5px;
  height: 25px;
  background-color: #D80C24;
  content: '';
  display: inline-block;
}

.booth_pac_list {
  display: flex;
  gap: 30px;
}

.booth_pac_list .bp_box {
  width: calc(33.333% - 20px);
  background-color: #F5F5F5;
}

.booth_pac_list .bp_img {
  aspect-ratio: 1/1.17;
}

.booth_pac_list .bp_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booth_pac_list .bp_info {
  padding: 30px;
}

@media all and (max-width:1024px){
  .booth_pac_list{
    gap: 15px;
  }
  .booth_pac_list .bp_box{
    width: calc(33.333% - 10px);
  }
  .booth_pac_list .bp_info{
    padding: 20px 15px;
  }
}

@media all and (max-width:768px){
  .booth_pac_list{
    gap: 20px 10px;
    flex-wrap: wrap;
  }
  .booth_pac_list .bp_box{
    width: calc(50% - 5px);
  }

}


@media all and (max-width:576px){
  .booth_pac_list{
    gap: 15px;
  }
  .booth_pac_list .bp_box{
    width: 100%;
    display: flex;
  }
  .booth_pac_list .bp_img{
    min-width: 135px;
    width: 135px;
  }
  .booth_pac_list .bp_info{
    padding: 10px;
  }
}

.booth_tab_btn {
  display: flex;
  gap: 10px;
}
.booth_tab_btn .bt_btn{
  padding: 12px 29px;
  border-radius: 80px;
  border:1px solid #d9d9d9;
  background-color: #fff;
}
.booth_tab_btn .bt_btn.active{
  background-color: #D80C24;
  color: #fff;
  font-weight: 700;
}

.bc_tab_list{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.bc_tab_list .bc_box{
  width: calc(50% - 15px);
  background-color: #fff;
}
.bc_tab_list .bc_img{
  aspect-ratio: 1/.638;
}
.bc_tab_list .bc_img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bc_tab_list .bc_info{
  padding: 30px;
}

.booth_tab_conts .bt_tab{display: none;}
.booth_tab_conts .bt_tab.active{display: block;}
@media all and (max-width:1024px){
  .booth_tab_btn{
    gap: 5px;
  }
  .booth_tab_btn .bt_btn{
    padding: 8px 15px;
  }
}

@media all and (max-width:768px){
  .bc_tab_list{
    gap: 15px;
  }
  .bc_tab_list .bc_box{
    width: calc(50% - 7.5px);
  }
  .bc_tab_list .bc_info{
    padding: 15px;
  }
}
@media all and (max-width:576px){
  .bc_tab_list{
    gap: 10px;
  }
  .bc_tab_list .bc_box{
    width: calc(50% - 5px);
  }
  .bc_tab_list .bc_info{
    padding: 10px;
  }
  .booth_tab_btn .bt_btn{
    padding: 5px 7px;
  }

}