:root {
  --main_blue: #1272E0;
  --main_blue_light: #9AC9FF;
  --main_blue_dark: #113E72;
  --dark1: #3E3F40;
  --dark2: #686C72;
  --dark3: #BBC0CC;
  --dark4: #D7DCE6;
  --light1: #C9CDD7;
  --light2: #DADEE8;
  --light3: #EFF1F5;
  --light4: #FBFCFF;
  --light45: rgba(251, 252, 255, 0.5);
  --light5: #FFFFFF;
  --yellow: #FFEA00;
  --orange: #F9BB40;
  --purple: #8158BF;
  --green: #3BB058;
  --gradient: linear-gradient(90deg,
      #1272E0 0%,
      #EF236E 35%,
      #F99040 70%,
      #47CA1E 100%);
  --Light: 300;
  --Regular: 400;
  --Medium: 500;
  --Semibold: 600;
  --Bold: 700;
  --Extrabold: 800;
  --Heavy: 900;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Light.woff2') format('woff2');
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Bold.woff2') format('woff2');
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-ExtraBold.woff2') format('woff2');
  font-weight: 800;
  font-display: swap;
}

@font-face {
  font-family: 'Sweet';
  src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_2304-2@1.0/SUITE-Heavy.woff2') format('woff2');
  font-weight: 900;
  font-display: swap;
}

/* 포트폴리오 안내 팝업창 */
/* 어두운 오버레이 배경 */
.dimmed {
  width: 100%;
  height: 100%;

  position: fixed;
  left: 0;
  right: 0;

  background: rgba(0, 0, 0, 0.6);

  z-index: 99999;

  display: none;
}

.gradient_wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;

  width: 1029px;
  height: 900px;

  display: flex;
  justify-content: center;
  align-items: center;

  background: var(--gradient);

  padding-top: 70px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;

  border-radius: 0 0 30px 30px;

  display: none;
}

/* 닫기 버튼 */
.gradient_wrap .popup_close_btn {
  position: absolute;
  right: 10px;
  top: 10px;

  background: var(--light45);

  width: 50px;
  height: 50px;

  border-radius: 50%;

  cursor: pointer;
}

.gradient_wrap .popup_close_btn::after {
  position: absolute;
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 40px;
  background: var(--gradient);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(0);
  transition: 0.3s ease-in-out;
}

.gradient_wrap .popup_close_btn:hover::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.popup {
  width: 100%;
  height: 820px;
  background: var(--light5);

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;

  padding: 70px 90px;

  border-radius: 0 0 30px 30px;

  overflow: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-behavior: smooth;
}

/* 제목 */
.popup .portfolio_guide_title {
  text-align: center;

  font-size: 44px;
  font-weight: var(--Heavy);

  color: var(--main_blue_dark);

  margin-bottom: 50px;
}

.popup .portfolio_guide_title::before {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 20px;
  color: var(--yellow);
}

.popup .portfolio_guide_title::after {
  content: "\f005";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 20px;
  color: var(--yellow);
}

/* Q&A */
.popup .QnA {
  display: flex;
  flex-direction: column;
  gap: 30px;

  margin-bottom: 70px;
}

.popup .QnA ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.popup .QnA ul li .question {
  font-size: 32px;
  font-weight: var(--Bold);

  margin-bottom: 10px;

  color: var(--main_blue_dark);
}

.popup .QnA ul li .question.text {
  position: relative;
  z-index: 1;
}

.popup .QnA ul li .question.text::before {
  position: absolute;
  content: '';

  width: 100%;
  height: 10px;

  background: var(--main_blue_light);

  bottom: -1px;

  z-index: -1;
}

.popup .QnA ul li .answer {
  font-size: 24px;
  font-weight: var(--Medium);

  color: var(--main_blue_dark);
}

.popup .QnA ul li .answer.label {
  padding-left: 40px;
  padding-right: 13px;

  flex: 0 0 2.2em;
}

.popup .QnA ul li .answer.text {
  flex: 1;
  display: block;
  line-height: 1.5;
}

/* 클릭 유도 아이콘 설명 */
.popup .cta_icon_desc {
  background: var(--light3);
  display: flex;
  justify-content: space-between;
  align-items: center;

  width: 100%;
  height: 75px;

  padding: 10px 20px;

  border-radius: 50px;

  margin-bottom: 30px;
}

.popup .cta_icon_desc .click_icons {
  display: flex;
  gap: 30px;
}

.popup .cta_icon_desc .click_icon01 {
  width: 50px;
  height: 50px;
}

.popup .cta_icon_desc .click_icon02 {
  width: 50px;
  height: 50px;

  background: var(--orange);

  border-radius: 50%;
}

.popup .cta_icon_desc .desc {
  font-size: 20px;
  font-weight: var(--Bold);

  color: var(--main_blue_dark);
}

/* 리뉴얼 전후 사진 */
.popup .renewal_beforeAfter {
  display: flex;
  justify-content: space-between;

  background: var(--light3);

  width: 100%;
  height: 100%;

  padding: 20px 40px;

  border-radius: 10px;

  position: relative;
}

.popup .renewal_beforeAfter::before {
  content: "\f30b";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 120px;
  color: var(--main_blue);

  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* 리뉴얼 전후 */
.popup .renewal_beforeAfter .before,
.popup .renewal_beforeAfter .after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.popup .renewal_beforeAfter .before span,
.popup .renewal_beforeAfter .after span {
  font-size: 32px;
  font-weight: var(--Bold);

  color: var(--main_blue_dark);
}

.popup .renewal_beforeAfter .before span img,
.popup .renewal_beforeAfter .after span img {}


/* 헤더 */
#header {
  margin-bottom: 20px;
}


/* 패밀리사이트 메뉴 */
#header .top_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  height: 40px;
  background: linear-gradient(to right,
      #1272E0 0%,
      rgba(239, 35, 110, 0.8) 35%,
      rgba(249, 144, 64, 0.8) 70%,
      #47CA1E 100%);
  background-size: 200% 100%;
  animation: flow 7s linear infinite;
  animation-delay: 0s;
  animation-direction: alternate;
}

@keyframes flow {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: 100% 0;
  }
}

.top_menu .family_gnb,
.top_menu .user_menu {
  display: flex;
  height: 100%;
}

.top_menu .family_gnb li:hover,
.top_menu .user_menu li:hover {
  background: var(--light45);
}

.top_menu .family_gnb li,
.top_menu .user_menu li {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 15px;
  border-right: 1px solid var(--light45);
  transition: .4s;
}

.top_menu .family_gnb li a,
.top_menu .user_menu li a {
  color: var(--light4);
  font-size: 16px;
  font-weight: var(--Regular);
}

.top_menu .family_gnb,
.top_menu .user_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top_menu .family_gnb {
  padding-left: 174px;
}

.top_menu .user_menu {
  padding-right: 174px;
}

.top_menu .m_menu_img {
  display: none;
}

.header-main {}

/* 헤더 로고 */
.header-main .main_logo {
  margin-top: 15px;
  margin-bottom: 30px;
  padding-left: 65px;
}

.header-main .main_logo a {}

.header-main .main_logo a .img {
  width: 255px;
  height: 83px;
  background-image: url(../image/Logo_hwaseong.png);
  background-size: cover;
  background-repeat: no-repeat;
}

/* 햄버거 네비게이션 메뉴 */
.header-main .all_menu_wrap {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: space-between;
  /*  border: 1px solid black; */
}

.all_menu_wrap .nav {
  /*  border: 1px solid green; */
}

.nav .hamburger_nav {
  /*   border: 1px solid rgb(255, 0, 0); */
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.hamburger_nav .hamburger_btn {
  background: var(--light3);
  border: none;
  border-radius: 50%;
  width: 62px;
  height: 62px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  justify-content: center;
}

.hamburger_nav .hamburger_btn span {
  width: 30px;
  height: 4px;
  border-radius: 5px;
  background: var(--dark3);
  opacity: 1;
  transition: transform .3s, opacity .5s;
}

.hamburger_nav .hamburger_btn.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger_nav .hamburger_btn.active span:nth-child(2) {
  opacity: 0;
}

.hamburger_nav .hamburger_btn.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.hamburger_nav.active .lnb_list {
  display: flex;
  position: absolute;
  left: 0;
  top: 66.33px;
  z-index: 9999;
}

.hamburger_nav .hamburger_btn img {}

.hamburger_nav .lnb_list {
  display: flex;
  justify-content: flex-start;
  margin-left: 80px;
  display: none;
  background: var(--light4);
  border: 1px solid var(--light2);
  border-radius: 30px;
}

.hamburger_nav .lnb_list .lnb {
  /*   border: 1px solid red; */
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hamburger_nav .lnb_list .event {
  width: 223.74px;
}

.hamburger_nav .lnb_list .lnb li {
  /*   border: 1px solid black; */
  padding: 10px 0;
  display: flex;
  justify-content: center;
}

.hamburger_nav .lnb_list .lnb li:hover a {
  color: var(--main_blue);
  font-weight: var(--Semibold);
}

.hamburger_nav .lnb_list .lnb li a::after {
  content: 'attr(title)';
  font-weight: var(--Semibold);
  display: block;
  height: 0px;
  visibility: hidden;
}

.hamburger_nav .lnb_list .lnb li a {
  font-weight: var(--Medium);
  font-size: 18px;
  text-align: center;
}

.hamburger_nav .lnb_list .lnb li .click {
  color: var(--main_blue);
  /* 기본 색 */
  animation: blink 1s infinite;
  /* 1초 간격으로 계속 깜빡 */
}

/* 깜빡거리는 애니메이션 */
@keyframes blink {
  0% {
    opacity: 1;
  }

  /* 보임 */
  50% {
    opacity: 0;
  }

  /* 사라짐 */
  100% {
    opacity: 1;
  }

  /* 다시 보임 */
}

/* 메인 네비게이션 개별 메뉴 */
.nav .nav_gnb_wrap {
  position: absolute;
  left: 80px;
  top: 0;
}

.nav_gnb_wrap .nav_gnb {
  display: flex;
}

.nav_gnb li {
  display: flex;
  flex-direction: column;
}

.nav_gnb li .has_sub {
  padding: 18px 0;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light3);
  /*   border: 1px solid red; */
  font-weight: var(--Semibold);
  font-size: 20px;
  width: 160px;
  position: relative;
  z-index: 1;
}

.nav_gnb li .first {
  border-radius: 30px 0 0 30px;
  width: 223.74px;
}

.nav_gnb li .last {
  border-radius: 0px 30px 30px 0;
}

/* .li에 마우스오버시 흰배경 */
.nav_gnb li .has_sub::before {
  content: '';
  position: absolute;
  background: var(--light4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 78.667px;
  height: 25.333px;
  padding: 8px 10px;
  border-radius: 30px;
  z-index: -1;
  opacity: 0;
}

.nav_gnb li .first::before {
  content: '';
  position: absolute;
  background: var(--light4);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 122.407px;
  height: 25.333px;
  padding: 8px 10px;
  border-radius: 30px;
  z-index: -1;
}

.nav_gnb li.active .has_sub::before {
  opacity: 1;
}

.nav_gnb .lnb.active {
  display: flex;
}

.nav_gnb .lnb {
  display: none;
  flex-direction: column;
  align-items: center;
  background: var(--light4);
  margin-top: 5px;
  height: 100%;
  border-radius: 30px;
  z-index: 9999;

  border: 1px solid var(--light2);
}

.nav_gnb .lnb li {
  display: inline-block;
  padding: 20px 10px;
}

.nav_gnb .lnb li:hover a {
  color: var(--main_blue);
  font-weight: var(--Semibold);
}

.nav_gnb .lnb li a {
  font-size: 18px;
  font-weight: var(--Medium);
}

/* 첫 번째 a만 선택해서 애니메이션 적용 */
.nav_gnb .lnb li .click {
  color: var(--main_blue);
  /* 기본 색 */
  animation: blink 1s infinite;
  /* 1초 간격으로 계속 깜빡 */
}

/* 깜빡거리는 애니메이션 */
@keyframes blink {
  0% {
    opacity: 1;
  }

  /* 보임 */
  50% {
    opacity: 0;
  }

  /* 사라짐 */
  100% {
    opacity: 1;
  }

  /* 다시 보임 */
}

/* 서치탭 */
.all_menu_wrap .search_tab {
  background: var(--light3);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  border-radius: 30px;
  width: 300px;
  height: 60px;
}

.search_tab input {
  background: none;
  border: none;
  margin-left: 30px;
  font-size: 16px;
  font-weight: var(--Regular);
}

.search_tab input::placeholder {
  color: var(--dark3);
}

.search_tab .search_btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--light4);
  border: none;
  margin-right: 10px;
}

.search_tab .search_btn a i {
  font-size: 20px;
  color: var(--main_blue);
}

/* 모바일메뉴 */
.mobail_menu {
  display: none;
}

/* 메인비주얼 */
#mainVisual {
  margin-bottom: 200px;
}

#mainVisual .top_container {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.top_container .hero_event_swiper {
  width: 1201.88px;
  height: 647px;

  border-radius: 30px;
  overflow: hidden;
}

.hero_event_swiper .swiper-wrapper {}

.hero_event_swiper .swiper-wrapper .swiper-slide {}

.hero_event_swiper .swiper-slide a {}

.hero_event_swiper .swiper-slide a img {
  width: 100%;
  object-fit: cover;
  display: block;
  height: 100%;
}

/* 공통 스와이퍼 컨트롤 */
.swiper_controls {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-left: 27px;
  flex-direction: row;
  margin-top: 10px;
  cursor: pointer;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: auto;
}

.swiper-pagination-current {
  font-size: 32px;
  font-weight: var(--Bold);
  color: var(--main_blue);
}

.swiper-pagination-total {
  font-size: 32px;
  font-weight: var(--Bold);
  color: var(--main_blue);
}

.fraction-dash {
  display: inline-block;
  width: 24px;
  height: 3px;
  background: #d7dce6;
  margin: 0 8px;
  transform: translateY(-10px);
}

.swiper-button-pause {
  background: var(--main_blue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

.swiper-button-pause i {
  color: var(--light4);
}

.hero_event_swiper-button-prev,
.hero_event_swiper-button-next,
.hero_notice_swiper-button-prev,
.hero_notice_swiper-button-next {
  width: 40px;
  height: 40px;
  background: var(--light4);
  border: 2px solid var(--light2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero_event_swiper-button-stop i,
.hero_notice_swiper-button-stop i {
  color: var(--light4);
  font-size: 27px;
}

.hero_event_swiper-button-prev i,
.hero_event_swiper-button-next i,
.hero_notice_swiper-button-prev i,
.hero_notice_swiper-button-next i {
  color: var(--light2);
  font-size: 27px;
}

.hero_notice_swiper {
  width: 438px;
  height: 647px;

  border-radius: 30px;
  overflow: hidden;
}

.hero_notice_swiper .swiper-slide {}

.hero_notice_swiper .swiper-slide a img {
  object-fit: cover;
  object-position: center center;
  position: relative;
}

.hero_notice_swiper .swiper-slide a::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 0)60%);
  border-radius: 30px;
}

.hero_notice_swiper .swiper-slide a .slide_text_box {
  position: absolute;
  bottom: 30px;
  z-index: 2;
  width: 100%;
  padding-left: 20px;
  text-align: start;
}

.hero_notice_swiper .swiper-slide a .slide_text_box::before {
  content: '';
  position: absolute;
  width: 90%;
  height: 0.8px;
  background: var(--light4);
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
}

.hero_notice_swiper .swiper-slide a .slide_text_box .slide_info {
  font-size: 16px;
  font-weight: var(--Bold);
  margin-bottom: 15px;
  color: var(--light4);
}

.hero_notice_swiper .swiper-slide a .slide_text_box .slide_title {
  font-size: 24px;
  font-weight: var(--Bold);
  color: var(--light4);
}

/* 행사안내 */
#eventGuide {
  margin-bottom: 200px;
  background: var(--main_blue_light);
  padding: 50px 0;
  position: relative;
}

#eventGuide .container .click_cursor {
  position: absolute;

  bottom: 25px;
  left: 56%;

  z-index: 2;

  transform: rotate(-30deg);

  animation-name: click;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  opacity: 0.5;
}

@keyframes click {
  0% {
    transform: rotate(-30deg) translateY(0) scale(1);
  }

  40% {
    transform: rotate(-30deg) translateY(6px) scale(1);
  }

  70% {
    transform: rotate(-30deg) translateY(0) scale(1);
  }

  100% {
    transform: rotate(-30deg) translateY(0) scale(0.95);
  }
}

#eventGuide .container .click_cursor img {
  width: 80px;
  height: 80px;
}

#eventGuide .container .title .main_title,
#eventGuide .container .title .sub_title {
  color: var(--light4);
}

#eventGuide .container .eventSwiper {}

.eventSwiper .swiper-wrapper {}

.eventSwiper .swiper-wrapper .swiper-slide {}

.eventSwiper .swiper-slide .event_Item {
  position: relative;
}

.eventSwiper .swiper-slide .event_Item a {}

.eventSwiper .swiper-slide .event_Item a .img_box {
  position: relative;
  height: 326px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

/* 호버 오버레이 */
.eventSwiper .swiper-slide .event_Item a .img_box::before {
  content: '';
  position: absolute;
  background: #00000060;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  opacity: 0;
  transition: .3s ease;
}

.eventSwiper .swiper-slide .event_Item a .img_box:hover::before {
  opacity: 1;
}

/* 이미지 */
.eventSwiper .swiper-slide .event_Item a .img_box img {
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 10px;
}

/* 호버 더보기 */
.eventSwiper .swiper-slide .event_Item a .img_box .hover_more {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  color: var(--light4);
  font-size: 20px;
  font-weight: var(--Extrabold);
  background: #00000060;
  padding: 5px 25px;
  border-radius: 5px;
  border: 2px solid var(--light4);
  white-space: nowrap;
  opacity: 0;
  transition: .3s ease;
}

.eventSwiper .swiper-slide .event_Item a .img_box:hover .hover_more {
  opacity: 1;
}

.eventSwiper .swiper-slide .event_Item .info_textBox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.eventSwiper .info_textBox .event_name {
  padding: 10px 0;
  border-bottom: 0.7px solid var(--light45);
  width: 100%;
  text-align: center;
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: var(--Extrabold);
  color: var(--light4);
  flex-wrap: nowrap;
  text-overflow: ellipsis;
}

.eventSwiper .info_textBox .event_date,
.eventSwiper .info_textBox .event_place {
  font-size: 16px;
  font-weight: var(--Bold);
  color: var(--light4);
  flex-wrap: nowrap;
}


/* 뷰올(더 많은 행사 보기) */
.eventSwiper .swiper-slide .event_Item a .img_box .black_img {
  background: var(--dark1);
  width: 100%;
  height: 100%;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eventSwiper .swiper-slide .event_Item a .img_box .black_img .view_all {
  font-size: 24px;
  font-weight: var(--Extrabold);
  color: var(--light4);
  transition: .3s;
}

.eventSwiper .swiper-slide .event_Item a .img_box:hover .view_all {
  color: var(--main_blue);
  z-index: 3;
  transform: scale(1.1);
}

.eventSwiper .swiper-slide .event_Item .info_textBox {}

.eventSwiper .swiper-slide .event_Item .info_textBox .more_desc {
  font-size: 24px;
  font-weight: var(--Extrabold);
  color: var(--light4);
  padding: 10px 0;
}


.eventSwiper .swiper-slide .allViewWrap:hover::before {
  width: 100%;
}

/* 스와이퍼 컨트롤 */
#eventGuide .container .eventSwiper_btn_wrap {
  display: flex;
  flex-direction: row;
  gap: 1340px;
  position: absolute;
  left: 223px;
  top: 40%;
  cursor: pointer;
}

.eventSwiper_btn_wrap .button-prev-wrap,
.eventSwiper_btn_wrap .button-next-wrap {}

.eventSwiper_btn_wrap .button-prev-wrap .eventSwiper-button-prev,
.eventSwiper_btn_wrap .button-next-wrap .eventSwiper-button-next {
  width: 60px;
  height: 60px;
  background: var(--light5);
  border: 2px solid var(--light2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.eventSwiper_btn_wrap .button-prev-wrap .eventSwiper-button-prev i,
.eventSwiper_btn_wrap .button-next-wrap .eventSwiper-button-next i {
  font-size: 34px;
  color: var(--light2);
}

/* 행사안내 더보기 버튼 */
.cta_btn {
  border: none;
  background: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 50px;
  position: relative;
  transition: .3s;
  cursor: pointer;

  width: 279px;
  height: 57px;
}

.cta_btn .diagram {
  transition: .3s;

  width: 100%;
  height: 100%;
}

.cta_btn span {
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  color: var(--dark2);
  right: 81px;
  transition: .3s;
}

/* 버튼 호버하면 텍스트 블루 */
.cta_btn:hover span {
  color: var(--main_blue);
}

.cta_btn .arrow {
  position: absolute;
  right: 53px;
  width: 21px;
  height: 15px;
  background-image: url(../image/Cta_btn_arrow_bk.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 41px 15px;
  background-position: -20px 0;
  transition: .3s;
}

/* 버튼 호버하면 화살표 블루 */
.cta_btn:hover .arrow {
  width: 41px;
  right: 33px;
  background-position: 0 0;
  background-image: url(../image/Cta_btn_arrow.png);
}

/* 버튼 호버하면 도형 커짐 */
.cta_btn:hover .diagram {
  transform: scale(1.02);
}

/* 자주찾는서비스 */
#quickService {
  margin-bottom: 200px;
  position: relative;
}

.QuickSwiper_wrap {
  overflow: hidden;
}

/* 고정폭 1300px -> 반응형으로 */
.QuickSwiper {
  width: 100%;
  max-width: 1300px;
  height: auto;
  padding-top: 5px;
  margin: 0 auto;
}

/* 한 슬라이드 안의 정렬(카드+텍스트 가운데) */
.QuickSwiper .swiper-slide {
  height: auto;
}

.quickItem {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 카드/텍스트 가로 가운데 */
  text-decoration: none;
}

/* 카드(아이콘 박스) */
.quickItem .box {
  width: 100%;
  height: 250px;
  border: 2px solid var(--light3);
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s;
  cursor: pointer;
}

.quickItem:hover .box {
  border: 2px solid var(--main_blue);
  transform: translateY(-5px);
}

/* 아이콘 */
.quickItem .box i {
  font-size: 63px;
  color: var(--main_blue);
  padding-bottom: 70px;
}

.quickItem:hover .box i {
  transform: translateY(-5px);
}

/* 텍스트 */
.quickItem .label {
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-weight: var(--Semibold);
  color: var(--dark2);
  padding: 15px 0;
  position: relative;
  transform: translateY(-55px);
  transition: .3s;
}

.quickItem:hover .label {
  transform: translateY(-60px);
}

.quickItem .label::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 2px;
  background: var(--light3);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* 버튼 */
.QuickSwiper_btn_wrap {
  display: flex;
  flex-direction: row;
  gap: 1340px;
  position: absolute;
  left: 210px;
  top: 50%;
  cursor: pointer;
}

.QuickSwiper-button-prev,
.QuickSwiper-button-next {
  width: 60px;
  height: 60px;
  background: var(--light5);
  border: 2px solid var(--light2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.QuickSwiper-button-prev i,
.QuickSwiper-button-next i {
  font-size: 34px;
  color: var(--light2);
}

/* 기존 버튼 아이콘 없애기 */
.QuickSwiper .swiper-button-next svg,
.QuickSwiper .swiper-button-prev svg {
  width: 0;
  height: 0;
}

/* 관광지소개 */
#tourGuide {
  margin-bottom: 200px;
  position: relative;
}

#tourGuide .container .click_cursor {
  position: absolute;

  bottom: 5%;
  left: 15%;

  z-index: 2;

  transform: rotate(10deg) scaleX(-1);

  animation-name: tourGuideClick;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  opacity: 0.5;
}

@keyframes tourGuideClick {
  0% {
    transform: rotate(10deg) translateY(0) scaleX(-1);
  }

  40% {
    transform: rotate(10deg) translateY(6px) scaleX(-1);
  }

  70% {
    transform: rotate(10deg) translateY(0) scaleX(-1);
  }

  100% {
    transform: rotate(10deg) translateY(0) scaleX(-0.95);
  }
}

#tourGuide .container .click_cursor img {
  width: 80px;
  height: 80px;
}

#tourGuide .wrap {
  display: flex;
  gap: 50px;
}

/* 왼쪽 */
#tourGuide .wrap .left {
  width: 660px;
}

.tourSpotSwiper {
  height: 100%;
}

.tourSpotSwiper .swiper-wrapper:first-child.active {}

.tourSpotSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 255px;
}

#tourGuide .slide-overlay {
  position: absolute;
  inset: 0;
  /* top, right, bottom, left의 축약*/
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.slide-overlay {
  pointer-events: none;
}

.slide-overlay a,
.slide-overlay button {
  pointer-events: auto;
}

.top-info {
  position: absolute;
  top: 50px;
}

.top-info .place-info {
  display: flex;
  margin-bottom: 10px;
}

.top-info .place-title {
  background: #ffd400;
  border-radius: 50px;
  font-weight: var(--Heavy);
  font-size: 36px;
  padding: 7px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--dark1);
}

.top-info .rate {
  background: #ffd400;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: var(--dark1);
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info {
  background: var(--main_blue);
  color: var(--light4);
  padding: 8px 10px;
  border-radius: 16px;
  width: max-content;
  font-size: 15px;
  border-radius: 50px;
  font-weight: var(--Bold);
}

.contact-info i {
  margin-right: 3px;
  color: var(--light4);
}

.hashtags {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
}

.hashtags span {
  background: #EFF1F5;
  color: var(--main_blue);
  padding: 10px 20px;
  border-radius: 50px;
  margin-left: 6px;
  display: block;
  font-size: 15px;
  width: fit-content;
  text-align: right;
  font-weight: var(--Bold);
}

.hashtags span:first-child {
  background: #0b5cff;
  color: #fff;
  border-radius: 0 50px 50px 80px;
}

/* 오른쪽 */
.right {
  flex: 1;
}

.right-top {
  display: flex;
  margin-bottom: 20px;
  gap: 5px;
}

#tourGuide .tab-controls {
  display: flex;
  align-items: center;
  gap: 5px;
}

#tourGuide .tab-controls #play {
  background: var(--main_blue);
  border: none;
}

#tourGuide .tab-controls #play i {
  color: var(--light4);
}

#tourGuide .tab-controls button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light4);
  cursor: pointer;
  border: 2px solid var(--light2);
}

#tourGuide .tab-controls button i {
  color: var(--light2);
  font-size: 18px;
}

#tourGuide .fraction {
  font-size: 18px;
  font-weight: bold;
  display: inline-block;
  margin-left: auto;
  width: 127px;
  height: 40px;
  line-height: 40px;
  font-size: 23px;
}

#tourGuide .fraction .blue {
  color: var(--main_blue);
}

#tourGuide .fraction .dash {
  margin: 0 6px;
  color: var(--dark4);
}

#tourGuide .tab-controls button.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* 전체 페이지 */
.fraction .swiper-pagination-total {
  color: var(--dark3);
}

.thumb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.thumb {
  height: 120px;
  border-radius: 16px;
  background: #f2f4f7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  background-size: cover;
  background-position: center;
  transition: .3s;
  position: relative;
  overflow: hidden;
}

/* 첫번째 슬라이드 서브페이지 클릭 유도 */
.thumb-grid>a:first-child {
  position: relative;
}

.thumb-grid>a:first-child .click_cta {
  position: absolute;

  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);

  z-index: 2;
}

.thumb-grid>a:first-child .click_cta .click_anim {
  width: 50px;
  height: 50px;

  background: var(--orange);

  opacity: 0.8;

  border-radius: 50%;

  animation-name: clickCta;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  animation-duration: 1.5s;
}

@keyframes clickCta {
  0% {
    transform: scale(1) translateY(0);
  }

  30% {
    transform: scale(1.15) translateY(0);
  }

  50% {
    transform: scale(0.95) translateY(4px);
  }

  70% {
    transform: scale(1) translateY(0);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

/* 호버하면 오버레이 */
.thumb::after {
  background: rgba(0, 0, 0, 0.56);
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0;
}

.thumb.active::after,
.thumb:hover::after {
  opacity: 1;
  z-index: 1;
}

.thumb.active span,
.thumb:hover span {
  color: var(--light4);
}

.thumb span {
  z-index: 3;
  color: var(--main_blue);
  font-weight: var(--Semibold);
  font-size: 20px;
}

/* 모바일 안 보이게 */
.tour-m {
  display: none;
}

/* 문화공간 */
#cultural_space {
  margin-bottom: 200px;
  /*   border: 1px solid red; */
}

#cultural_space .container {
  /*   border: 1px solid black; */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  /* 탭 Swiper를 겹쳐서 숨기기 때문에 필요 */
  height: 100%;
}

/* 탭 리스트 */
#cultural_space .cultural_Tab_list {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: var(--light3);
  height: 80px;
  width: 1200px;
  gap: 153px;
  border-radius: 50px;
  margin-bottom: 122px;
}

.cultural_Tab_list li .tab_item {
  font-size: 24px;
  font-weight: var(--Bold);
  color: var(--dark3);
  border: none;
  position: relative;
  padding-bottom: 5px;
  background: transparent;
  cursor: pointer;
}

.cultural_Tab_list li .tab_item::before {
  content: '';
  position: absolute;
  width: 130px;
  height: 3px;
  background: var(--main_blue);
  bottom: 0;
  left: 22px;
  border-radius: 5px;
  display: none;
}

.cultural_Tab_list li .tab_item.active {
  color: var(--main_blue);
}

.cultural_Tab_list li .tab_item.active::before {
  display: inline;
}

/* Swiper 탭 콘텐츠 영역
   - display:none 금지 (Swiper 폭 계산 깨짐)
   - 겹쳐놓고(opacity/visibility)로만 숨김
*/
#cultural_space .swiper_mask {
  clip-path: inset(-2000px 0px -2000px 0px);
  width: 100%;
  height: 100%;
  /*  border: 1px solid black; */
}

#cultural_space .culturalSwiper {
  width: 100%;
  height: auto;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  position: absolute;
  /* 비활성은 겹쳐 숨김 */
  left: 0;
  top: 0;
  pointer-events: none;
}

/* active된 Swiper만 노출 */
#cultural_space .culturalSwiper.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

#cultural_space .culturalSwiper.active .swiper-wrapper {
  align-items: center;
  padding: 70px 0;
  /* 센터 슬라이드 확대될 때 위아래 여유 */
}

/* 슬라이드 */
.culturalSwiper .swiper-wrapper .place {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 312.13px;
  height: 220px;
  cursor: pointer;

  transform: scale(1);
  transition: transform 0.3s ease;
  border-radius: 50px 0 50px 0;
  overflow: hidden;
  opacity: 0.5;

  position: relative;
}

/* 가운데(현재) 슬라이드만 크게 */
.culturalSwiper .swiper-wrapper .place.swiper-slide-active {
  transform: scale(1.65);
  z-index: 2;
  opacity: 1;
}

/* 이미지 */
.place .img_box {
  position: relative;
  width: 100%;
  height: 100%;
}

.place .img_box::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 0)70%);
}

.place.swiper-slide-active:hover .img_box::before {
  display: none;
}

.place .img_box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* 이름 */
.place.swiper-slide-active .place_name {
  opacity: 1;
  z-index: 2;
}

.place.swiper-slide-active:hover .place_name {
  opacity: 0;
}

.place .place_name {
  position: absolute;
  left: 20px;
  bottom: 10px;
  font-size: 28px;
  font-weight: var(--Bold);
  color: var(--light4);
  z-index: 9;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* 뷰올 */
.place .img {
  width: 100%;
  height: 100%;
  background: var(--dark1);
}

.place .img:hover {
  background: rgb(40, 40, 40);
}

.place .img:hover .view_all {
  color: var(--main_blue);
  transform: translate(-50%, -50%) scale(1.1);
  font-weight: var(--Extrabold);
}

.place .view_all {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  font-size: 28px;
  font-weight: var(--Bold);
  color: var(--light4);
  flex-wrap: nowrap;
  transition: .3s;
}

/* hover_box가 스와이프 이벤트를 막지 않도록하기
   - 기본은 무조건 pointer-events:none
   - "중앙 슬라이드 + hover 중"일 때만 pointer-events:auto
*/
.place .hover_box {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;

  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.place.swiper-slide-active:hover .hover_box {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.place .hover_box h4 {
  color: var(--light4);
  font-size: 28px;
  font-weight: var(--Extrabold);
}

.place .hover_box p {
  color: var(--light4);
  font-weight: var(--Medium);
  text-align: center;
  margin-top: 5px;
  font-size: 13px;
}

.place .hover_box .place_info {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.place_info i {
  color: var(--light4);
  font-size: 13px;
}

.place_info span {
  color: var(--light4);
  font-weight: var(--Light);
  font-size: 10px;
}

/* 버튼 */
.culturalSwiper_btn_wrap {
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  /* 슬라이드 확대보다 위로 */
  gap: 600px;

  pointer-events: none;
  /* 래퍼는 이벤트 막고 */
}

/* 실제 버튼만 클릭 가능 */
.culturalSwiper-button-next,
.culturalSwiper-button-prev {
  pointer-events: auto;

  width: 90px;
  height: 90px;
  background: var(--light5);
  border: 2px solid var(--light2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.culturalSwiper-button-next i,
.culturalSwiper-button-prev i {
  font-size: 52.2px;
  color: var(--light2);
}


/* 재단소식  */
#foundation_news {
  margin-bottom: 200px;
  position: relative;
}

/* 구름 뒷배경 */
#foundation_news .cloudBg_img {
  position: absolute;

  background-image: url(../image/newsSection_cloudBG.png);
  background-size: cover;
  background-repeat: no-repeat;

  width: 1023px;
  height: 380px;

  right: -15px;
  top: -102px;

  z-index: -1;

  overflow: visible;
}

#foundation_news .container {
  /*   border: 1px solid rgb(11, 190, 68); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#foundation_news .container .click_cursor {
  position: absolute;
  top: 120px;
  left: 57%;

  z-index: 2;

  transform: rotate(-30deg);

  animation-name: click;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;

  opacity: 0.5;

  pointer-events: none;
}

@keyframes click {
  0% {
    transform: rotate(-30deg) translateY(0) scale(1);
  }

  40% {
    transform: rotate(-30deg) translateY(6px) scale(1);
  }

  70% {
    transform: rotate(-30deg) translateY(0) scale(1);
  }

  100% {
    transform: rotate(-30deg) translateY(0) scale(0.95);
  }
}

#foundation_news .container .click_cursor img {
  width: 80px;
  height: 80px;
}

#foundation_news .title .sub_title span {
  color: var(--light4);
}

#foundation_news .area_wrap {
  display: flex;
  align-items: end;
  gap: 30px;
}

.area_wrap .news_area {
  width: 790.83px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news_area .top_menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  /*   border: 1px solid black; */
  margin-bottom: 5px;
}

.top_menu .newsTab_list {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.newsTab_list li {
  border-radius: 30px;
  padding: 2px 2px;
  background: transparent;
}

/* 자식 요소인 news_tab_item이 active가 되면 부모 요소인 li의 css가 바뀌게 */
.newsTab_list li:has(.news_tab_item.active) {
  background: var(--gradient);
}

.newsTab_list .news_tab_item {
  font-size: 22px;
  font-weight: var(--Bold);
  border: none;
  background: none;
  padding: 5px 20px;
}

.newsTab_list .news_tab_item.active {
  background: var(--light5);
  border-radius: 30px;
  padding: 5px 20px;
  color: var(--dark2);
}

.top_menu .pagination_bottons {
  display: flex;
  gap: 5px;
  /*   border: 1px solid black; */

}

.news_swiper-button-prev,
.news_swiper-button-next,
.news_view_more {
  width: 30px;
  height: 30px;
  background: var(--light4);
  border: 2px solid var(--light2);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.news_swiper-button-prev i,
.news_swiper-button-next i,
.news_view_more i {
  color: var(--light2);
  font-size: 20px;
}

#foundation_news .swiper {
  width: 100%;
  height: 350px;
  background: var(--light45);
  border: 3px solid var(--light3);
  border-radius: 10px;
  display: none;
}

#foundation_news .swiper.active {
  display: block;
}

#foundation_news .swiper .swiper-wrapper {}

#foundation_news .swiper .swiper-slide {
  height: 100%;
  width: 100%;
}

.swiper_grid {
  display: grid;
  /*  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto); */
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  height: 100%;
  /*   border: 1px solid black; */
  position: relative;
}

.swiper_grid::before {
  content: '';
  position: absolute;
  width: 750px;
  height: 2px;
  background: var(--light3);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper_grid::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 310px;
  background: var(--light3);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.swiper_grid .box {
  /*   border: 1px solid black; */
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
}

.swiper_grid .box .boardName {
  font-size: 20px;
  font-weight: var(--Bold);
  padding: 5px;
  /*   border: 1px solid black; */
  display: inline-block;
  margin-bottom: 13px;
  position: relative;
  width: fit-content;
}

.swiper_grid .box .boardName::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--main_blue);
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  border-radius: 5px;
}

.swiper_grid .box .boardTitle {
  font-size: 16px;
  font-weight: var(--Regular);
  margin-bottom: 10px;
}

.swiper_grid .box .boardDate {
  font-size: 14px;
  font-weight: lighter;
  color: var(--dark3);
}

.swiper_grid .box .boardDate i {
  font-size: 14px;
  font-weight: lighter;
  margin-right: 10px;
  color: var(--dark3);
}

#foundation_news .webjin_area {}

.webjin_area .webjin_title {
  display: flex;
  align-items: center;
  /*   border: 1px solid black; */
  gap: 5px;
  margin-bottom: 5px;
  cursor: pointer;
}

.webjin_title h4 {
  font-size: 18px;
  font-weight: var(--Extrabold);

  color: var(--main_blue);
}

.webjin_title span {
  font-size: 14px;
  font-weight: var(--Bold);

  color: var(--light4);
}

.webjin_area .newsContant_box {
  border: 3px solid var(--light3);
  width: 482.67px;
  height: 350px;
  padding: 20px;
  border-radius: 10px;
  background: var(--light45);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.newsContant_box .main_contant {
  position: relative;
  margin-bottom: 5px;
}

.main_contant img {
  width: 100%;
  border-radius: 10px 10px 0 0;
}

.main_contant span {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: var(--Extrabold);
  white-space: nowrap;
  color: var(--light4);
}

.newsContant_box .sub_wrap {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

.sub_wrap .sub_contant {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.sub_contant img {
  border-radius: 5px;
  width: 105.5825px;
  cursor: pointer;
}

.sub_contant span {
  font-size: 12px;
  font-weight: var(--Medium);
  text-align: center;
  display: inline-block;
}

/* SNS */
#SNS {
  margin-bottom: 200px;
}

.sns_box_wrap {
  display: flex;
  gap: 20px;
}

.sns_box {
  border: 2px solid var(--light2);
  border-radius: 10px;
  transition: .3s;
}

.sns_box:hover .sns_img::before {
  background: #00000070;
}

.sns_box:hover .sns_img::after {
  transform: scale(1.2) translate(-50%, -50%);
}

.sns_box a {
  display: block;
  width: 100%;
  height: 100%;
}

.sns_box a .sns_name {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
}

.sns_box a .sns_name img {}

.sns_box a .sns_img {
  position: relative;
  width: 240px;
  height: 225px;
}

.sns_box a .sns_img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: #00000050;
}

.sns_box a .sns_img::after {
  content: '';
  position: absolute;
  background-image: url(../image/badge.png);
  background-size: cover;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  left: 50%;
  top: 50%;
  transform: scale(1) translate(-50%, -50%);
  transition: .3s;
}

.sns_box a .sns_img img {
  width: 100%;
  height: 100%;
}

.sns_box a .sns_channel_icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 45px;
  width: 100%;
  gap: 8px;
  padding-left: 10px;
}

.sns_box a .sns_channel_icon img {
  width: 23.77px;
  height: 23.77px;
}

.sns_box a .site_name {
  font-size: 20px;
  font-weight: var(--Bold);
  color: var(--dark2);
}

/* 탑버튼 */
.top_btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--light4);
  border: 2px solid var(--light2);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: .3s ease;
  z-index: 9999;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.top_btn i {
  font-size: 20px;
}

/* 보이기 */
.top_btn.show {
  opacity: 0.8;
  pointer-events: auto;
  box-shadow: 0 0 10px rgba(94, 94, 94, 0.285);
}

/* 푸터 */
#footer {
  position: relative;
  height: 320px;
  overflow: hidden;
  background: #fff;
}

/* 하단 그라데이션 */
.footer-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      #1272E0 0%,
      rgba(239, 35, 110, 0.85) 35%,
      rgba(249, 144, 64, 0.85) 70%,
      #47CA1E 100%);
  pointer-events: none;
}

.wave_wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  transform: scaleY(-1);
  z-index: 2;
  pointer-events: none;
}

/* 물결 공통 */
.wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 220px;
  display: flex;
  pointer-events: none;
}

/* 물결 색 */
.wave-1 path {
  fill: rgba(255, 255, 255, 0.80);
}

.wave-2 path {
  fill: rgba(255, 255, 255, 0.60);
  transform: scaleY(1.30);
  transform-origin: center;
}


/* 물결 애니메이션 */
.wave-1,
.wave-2 {
  animation-delay: 0s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.wave-1 {
  animation: waveMove 18s linear infinite;
  z-index: 2;
}

.wave-2 {
  animation: waveMove 22s linear infinite;
  z-index: 1;
  top: 10px;
}

@keyframes waveMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.container .footer_contents {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;

  align-items: flex-end;
  transform: translateY(100px);

  z-index: 3;
}

.footer_contents .footer_left {
  display: flex;
  flex-direction: column;
}

.footer_contents .footer_left .logo {
  margin-bottom: 10px;
}

.footer_contents .footer_left .wrap {
  display: flex;
  flex-direction: column;
}

.footer_contents .footer_left .wrap .footer_policy {
  display: flex;
  gap: 10px;
  margin-bottom: 25px;
}

.footer_contents .footer_left .wrap .footer_policy li a {
  font-size: 14px;
  font-weight: var(--Bold);
  color: var(--light4);
}

.footer_contents .footer_left .wrap .footer_address {
  color: var(--light4);
  opacity: 80%;
  font-weight: var(--Semibold);
  font-size: 14px;
}

.footer_contents .footer_left .wrap .footer_info {
  display: flex;
  margin-bottom: 10px;
}

.footer_contents .footer_left .wrap .footer_info li {
  color: var(--light4);
  opacity: 80%;
  font-weight: var(--Semibold);
  font-size: 14px;
}

.footer_contents .footer_left .wrap .footer_copyright {
  color: var(--light4);
  opacity: 50%;
  font-weight: var(--Semibold);
}

.footer_contents .footer_right {
  display: flex;
  align-items: flex-end;
  gap: 15px;
}

.footer_contents .footer_right img {
  width: 76px;
  height: 74px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box {
  margin-bottom: 20px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment {
  display: flex;
  gap: 5px;
  font-size: 24px;
  font-weight: var(--Bold);
  margin-bottom: 10px;
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment i,
.footer_contents .footer_right .footer_right_content .footer_help_box .help_ment p {
  color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_help_box .help_callNumber li {
  font-size: 14px;
  font-weight: var(--Bold);
  color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_family {
  position: relative;
  width: 170px;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle {
  border: 3px solid var(--light4);
  height: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5px;

  cursor: pointer;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle.active+.family_list {
  display: block;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle.active i {
  transform: rotate(180deg);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle p,
.footer_contents .footer_right .footer_right_content .footer_family .family_toggle i {
  font-size: 14px;
  font-weight: var(--Bold);
  color: var(--light4);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_toggle i {
  transition: .3s;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list {
  position: absolute;
  width: 100%;
  top: -150px;
  background: var(--light4);
  display: none;
  transition: .3s;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li {
  height: 30px;
  border-bottom: 3px solid var(--light3);
  padding-left: 10px;
  line-height: 30px;
  width: 100%;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li a {
  font-weight: var(--Medium);
  font-size: 14px;
  display: block;
  cursor: pointer;
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li:hover a {
  color: var(--main_blue);
}

.footer_contents .footer_right .footer_right_content .footer_family .family_list li:last-child {
  border: none;
}

@media (max-width : 500px) {
  body>* {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* 공통클래스 */
  .container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .top_container {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .title {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
  }

  .main_title {
    font-size: 35px;
  }

  .sub_title {
    font-size: 16px;
  }

  /* 헤더 */
  #header {
    display: flex;
    flex-direction: column;
  }

  #header .top_menu {
    order: 2;
    display: none;
    background: var(--light4);
    height: 60px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
    border-bottom: 2px solid var(--light2);
  }

  #header .top_menu.active {
    display: flex;
  }

  #header .top_menu::after {
    content: '';
    position: absolute;
    background: var(--light45);
    opacity: 50%;
    inset: 0;
    z-index: 2;
  }

  .top_menu .family_gnb {
    display: none;
  }

  .top_menu .user_menu {
    padding-right: 0;
    z-index: 3;
  }

  .family_gnb li,
  .top_menu .user_menu li {
    border-right: 1px solid var(--light2);
  }

  .top_menu .user_menu li {
    padding: 0 5px;
  }

  .top_menu .family_gnb li:hover,
  .top_menu .user_menu li:hover {
    background: none;
  }

  .top_menu .family_gnb li a,
  .top_menu .user_menu li a {
    color: var(--dark2);
    font-size: 20px;
    font-weight: var(--Semibold);
  }

  .top_menu .m_menu_img {
    display: flex;
    z-index: 3;
    padding-left: 10px;
    padding-top: 8px;
  }

  .header-main {
    order: 1;
    width: 100%;
    background: linear-gradient(to right,
        #1272E0 0%,
        rgba(239, 35, 110, 0.8) 35%,
        rgba(249, 144, 64, 0.8) 70%,
        #47CA1E 100%);
    background-size: 200% 100%;
    animation: flow 7s linear infinite;
    animation-delay: 0s;
    animation-direction: alternate;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    height: 70px;
  }

  /* 헤더 로고 */
  .header-main .main_logo {
    padding-left: 20px;
  }

  .header-main .main_logo a .img {
    width: 150px;
    height: 49px;
    background-image: url(../image/Logo_hwaseong_white.png);
    background-size: cover;
  }

  .header-main .all_menu_wrap {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65px;
  }

  /* pc 햄버거 메뉴 안 보이게 */
  .hamburger_nav.active .lnb_list {
    display: none;
  }

  .hamburger_nav .hamburger_btn {}

  /* pc 네비게이션 안 보이게*/
  .nav .nav_gnb_wrap {
    display: none;
  }

  /* 햄버거 버튼 디자인*/
  .hamburger_nav .hamburger_btn {
    background: var(--light4);
    width: 40px;
    height: 40px;
  }

  .hamburger_nav .hamburger_btn span {
    background: linear-gradient(to right,
        #1272E0 0%,
        rgba(239, 35, 110, 0.8) 35%,
        rgba(249, 144, 64, 0.8) 70%,
        #47CA1E 100%);
    background-size: 200% 100%;
    animation: flow 7s linear infinite;
    animation-delay: 0s;
    animation-direction: alternate;
  }

  /* 서치탭 */
  .all_menu_wrap .search_tab_wrap {
    background: white;
    width: 100%;
    height: 50px;
    margin: 20px auto 20px auto;
    display: none;
  }

  .all_menu_wrap .search_tab {
    width: 100%;
    margin: 20px auto 0 auto;
    height: 60px;
  }

  .search_tab input {}

  /* 모바일 메뉴 */
  /* 햄버거 */
  .m_hamburger_btn {
    display: block;
    background: var(--light3);
  }

  /* 모바일 메뉴만 보이게 */
  .m_menu_open.active {
    overflow: hidden;
  }

  .mobail_menu {
    display: none;
    position: fixed;
    top: 130px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: #FFFFFF;
    z-index: 999999;
    overflow-y: auto;
  }

  .mobail_menu.active {
    display: flex;
  }

  .mobail_menu_lift {
    width: 100%;
    background: var(--light3);
    flex: 1.5;
  }

  .mobail_gnb_tab {
    display: flex;
    flex-direction: column;
  }

  .mobail_gnb_tab li {
    padding: 30px 0;
    /*  border: 1px solid black; */
    width: 100%;
    text-align: center;
    font-size: 20px;
    font-weight: var(--Semibold);
    border: none;
    border-bottom: 1px solid var(--light4);
    color: var(--dark3);

    cursor: pointer;
  }

  .mobail_gnb_tab li.active {
    background: var(--light4);
    border: none;
    border-bottom: 2px solid var(--main_blue);
    color: var(--dark2);
  }

  .mobail_menu_right {
    background: var(--light4);
    flex: 3;
    /*    border: 1px solid black; */
    overflow-y: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .m_lnb {
    display: none;
  }

  .m_lnb.active {
    display: block;
  }

  .m_lnb li {
    padding: 30px 0;
    padding-left: 20px;
  }

  .m_lnb li a {
    font-size: 20px;
    font-weight: var(--Medium);
  }

  .m_lnb li .depth {
    margin-top: 10px;
  }

  .m_lnb li .depth li {
    /*   border: 1px solid black; */
    padding: 5px 0;
    list-style: square;
    list-style-position: inside;
  }

  /* 메인비주얼 */
  #mainVisual {
    margin-bottom: 100px;
  }

  #mainVisual .top_container {
    flex-direction: column;
    max-width: 460px;
    padding: 0 20px;
  }

  .top_container .hero_event_swiper {
    width: 100%;
    height: 200px;
  }

  .hero_event_swiper .swiper-slide a img {
    object-fit: cover;
  }

  .hero_notice_swiper {
    width: 100%;
    height: 100px;

    border-radius: 30px;
    overflow: hidden;
  }

  .hero_notice_swiper .swiper-slide a img {
    object-position: bottom right;
  }

  .hero_notice_swiper .swiper-slide a::after {
    background-image: linear-gradient(#00000060);
  }

  .hero_notice_swiper .swiper-slide a .slide_text_box {
    bottom: 20px;
    width: 100%;
    left: 0;
    text-align: start;
  }

  .hero_notice_swiper .swiper-slide a .slide_text_box::before {
    bottom: -10px;
  }

  .hero_notice_swiper .swiper-slide a .slide_text_box .slide_info {
    margin-bottom: 5px;
    font-size: 12px;
  }

  .hero_notice_swiper .swiper-slide a .slide_text_box .slide_title {
    font-size: 20px;
  }

  /* 행사안내 */
  #eventGuide .container .click_cursor {
    bottom: 35px;
    left: 70%;

    opacity: 0.8;
  }

  #eventGuide .container .click_cursor img {
    width: 60px;
    height: 60px;
  }

  .eventSwiper {}


  .eventSwiper .swiper-wrapper {
    padding: 30px 0;
  }

  .eventSwiper .swiper-wrapper .swiper-slide {
    width: 100%;
    max-width: 286px;
    transform: scale(0.9);
    opacity: 0.5;
  }

  .eventSwiper .swiper-wrapper .swiper-slide-active {
    transform: scale(1);
    z-index: 99;
    opacity: 1;
  }

  .eventSwiper .swiper-slide .event_Item a .img_box {
    height: 330px;
    border-radius: 10px;
    overflow: hidden;
  }

  /* 호버 오버레이랑 더보기 display: none */
  .eventSwiper .swiper-slide .event_Item a .img_box .hover_more {
    display: none;
  }

  .eventSwiper .swiper-slide .event_Item a .img_box::before {
    display: none;
  }

  .eventSwiper .swiper-slide .event_Item a .img_box img {
    object-fit: contain;
  }

  .eventSwiper .info_textBox .event_name {
    font-size: 18px;
  }

  /* 스와이퍼 컨트롤 display: none; */
  #eventGuide .container .eventSwiper_btn_wrap {
    display: none;
  }

  /* 자주찾는서비스 */
  #quickService {
    margin-bottom: 100px;
  }

  .QuickSwiper_wrap {
    overflow: visible;
  }

  .QuickSwiper {
    max-width: 460px;
    width: 100%;
  }

  /* 모바일 카드 크기 */
  .quickItem .box {
    width: 100%;
    height: 100px;
    border-radius: 25px;
  }

  .quickItem .box i {
    font-size: 40px;
    padding-bottom: 0;
  }

  .quickItem:hover .box i {
    transform: translateY(-5px);
  }

  .quickItem .label {
    width: 100px;
    margin-top: 5px;
    padding-top: 0;
    font-size: 14px;
    white-space: normal;
    word-break: keep-all;
    line-height: 1.2;
    transform: translateY(0);
  }

  .quickItem:hover .label {
    transform: translateY(0);
  }

  .quickItem .label::before {
    display: none;
  }

  .QuickSwiper_btn_wrap {
    display: none;
  }

  /* 관광지안내 */
  #tourGuide {
    margin-bottom: 100px;
  }

  #tourGuide .container .click_cursor {
    top: 50%;
    left: -20px;

    opacity: 0.8;
  }

  #tourGuide .container .click_cursor img {
    width: 60px;
    height: 60px;
  }

  #tourGuide .wrap {
    display: none;
  }


  .contact-info-wrap {
    display: none;
  }

  /* 모바일 */
  .tour-m {
    display: block;
    max-width: 500px;
    margin: 0 auto;
  }

  /* 탭 네비게이션 */
  .mobile-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .mobile-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-tabs .tab {
    flex-shrink: 0;
    padding: 10px 20px;
    color: var(--main_blue);
    border-radius: 50px;
    cursor: pointer;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 24px;
    font-weight: var(--Bold);
    z-index: 3;
  }

  .tab.active {
    background: var(--main_blue);
    color: var(--light4);
  }

  .mobile-tabs .tab[data-index="0"] {
    position: relative;
  }

  .mobile-tabs .click_cta {
    position: absolute;

    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);

    z-index: 2;
  }

  .mobile-tabs .click_cta .click_anim {
    width: 40px;
    height: 40px;

    background: var(--orange);

    opacity: 0.8;

    border-radius: 50%;

    animation-name: clickCta;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
  }

  /* 슬라이드 래퍼 */
  .mobile-slides-wrapper {}

  .mobile-slide {
    display: none;
  }

  .mobile-slide.active {
    display: block;
  }

  /* 이미지 래퍼 */
  .image-wrapper {
    position: relative;
    overflow: visible;
    margin-bottom: 10px;
  }

  .mobile-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 30px;
    cursor: pointer;
  }

  /* 슬라이드 오버레이 */
  .slide-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .slide-overlay>* {
    pointer-events: auto;
  }

  .top_wrap {
    display: flex;
    flex-direction: row;
  }

  /* 프로그레스 바 */
  .progress-bar {
    position: absolute;
    top: 16px;
    left: 10px;
    right: 10px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    overflow: hidden;
    max-width: 260px;
    width: 100%;
  }

  .progress-fill {
    height: 100%;
    background: #ff006b;
    width: 0%;
    transition: width 0.1s linear;
  }

  /* 현재 라벨 */
  .current-label {
    position: absolute;
    top: -13px;
    right: 0;
    background: #ffd400;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 20px;
  }

  /* 아이콘 */
  .mobile-icons {
    position: absolute;
    left: 15px;
    bottom: 10px;
    left: 20px;
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .icon-btn {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    background: var(--main_blue);
  }

  .icon-btn.home i,
  .icon-btn.location i {
    color: var(--light4);
    font-size: 25px;
  }

  .rating {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .rating span {
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    flex-wrap: nowrap;
  }

  /* 설명, 컨트롤 버튼 */
  .mobile-slide-bottom {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    justify-content: space-between;
  }

  .mobile-desc {
    background: var(--light3);
    color: var(--main_blue);
    width: 100%;
    padding: 13px 15px;
    font-size: 15px;
    color: var(--main_blue);
    font-weight: bold;
    border-radius: 50px;
    text-align: center;
    order: 1;
  }

  .mobile-controls {
    display: flex;
    justify-content: end;
    gap: 5px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--light2);
    background: var(--light4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .control-btn:first-child {
    background: var(--main_blue);
    border: none;
  }

  .control-btn i {
    color: var(--light2);
    font-size: 20px;
  }

  .control-btn:first-child i {
    color: var(--light4);
    font-size: 16px;
  }

  /* 태그 */
  .mobile-tags {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 10px;
    padding: 13px 0;
    border-radius: 50px;
    background: var(--light3);
  }

  .mobile-tags span {
    color: var(--main_blue);
    font-size: 15px;
    font-weight: var(--Bold);
    display: inline-block;
    text-align: center;
  }

  /* 푸터 */
  .mobile-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: #fff;
  }

  .footer-btn {
    padding: 13px 5px;
    border: none;
    background: var(--main_blue);
    color: var(--light4);
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    font-weight: var(--Bold);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .footer-btn i {
    font-size: 15px;
    color: var(--light4);
  }

  .mobile-footer .call {
    flex: 1;
  }

  .mobile-footer .address {
    flex: 2;
  }

  /* 문화공간 */
  #cultural_space {
    margin-bottom: 100px;
  }

  #cultural_space .cultural_Tab_list {
    width: 100%;
    height: fit-content;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    margin-bottom: 20px;
    white-space: nowrap;
    /* 스크롤바 안 보이게 */
    scrollbar-width: none;
    /* border: 1px solid black; */
    justify-content: flex-start;
  }

  .cultural_Tab_list li {
    flex: 0 0 auto;
  }

  .cultural_Tab_list li .tab_item {
    font-size: 20px;
    display: grid;
    flex-wrap: nowrap;
    /*     border: 1px solid black; */
    margin: 12px 10px;
  }

  .cultural_Tab_list li .tab_item::before {
    width: 100px;
  }

  #cultural_space .culturalSwiper.active .swiper-wrapper {
    padding: 0 0;
  }

  .culturalSwiper .swiper-wrapper .place.swiper-slide-active {
    transform: scale(1);
  }

  .culturalSwiper .swiper-wrapper .place {
    width: 100%;
    height: 270.98px;
  }

  .place .img_box {}

  .place .img_box::before {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 1)0%, rgba(0, 0, 0, 0)50%);
  }

  .place.swiper-slide-active:hover .img_box::before {
    display: block;
  }

  .place .hover_box {
    background: transparent;
    inset: unset;
    left: 0;
    bottom: 0;
  }

  .place .place_name {
    display: none;
  }

  .place.swiper-slide-active .hover_box {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    align-items: flex-start;
    z-index: 1;
  }

  .place .hover_box h4 {
    font-size: 24px;
    font-weight: bold;
  }

  .place .hover_box p {
    text-align: left;
    white-space: wrap;

  }

  .place .hover_box p br {
    display: none;
  }

  .place .hover_box .place_info {
    display: none;
  }

  /* 재단소식 */
  #foundation_news {
    margin-bottom: 100px;
    overflow: visible;
  }

  /* 구름 뒷배경 */
  #foundation_news .cloudBg_img {
    background: url(../image/Background_cloud_m.png);
    background-repeat: no-repeat;
    width: 273px;
    height: 205px;

    right: 0;
    top: -5px;
  }

  #foundation_news .container .click_cursor {
    top: 15px;
    right: 10px;
    transform: rotate(209deg);
    animation-name: verticalClick;
  }

  @keyframes verticalClick {
    0% {
      transform: rotate(209deg) translateY(0) scale(1);
    }

    40% {
      transform: rotate(209deg) translateY(6px) scale(1);
    }

    70% {
      transform: rotate(209deg) translateY(0) scale(1);
    }

    100% {
      transform: rotate(209deg) translateY(0) scale(0.95);
    }
  }

  #foundation_news .container .click_cursor img {
    width: 60px;
    height: 60px;
  }

  #foundation_news .area_wrap {
    flex-direction: column;
    width: 100%;
  }

  .area_wrap .news_area {
    width: 100%;
  }

  .top_menu .newsTab_list {}

  .newsTab_list .news_tab_item {
    font-size: 20px;
    padding: 0 10px;
  }

  .newsTab_list .news_tab_item.active {
    padding: 5px 10px;
  }

  .swiper_grid .box {
    padding-left: 16px;
  }

  .swiper_grid .box .boardName {
    font-size: 16px;
  }

  .swiper_grid .box .boardTitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    /* 3줄까지 표시 */
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    font-size: 15px;
  }

  #foundation_news .webjin_area {
    width: 100%;
  }

  .webjin_title span {
    color: var(--light1);
  }

  .webjin_area .newsContant_box {
    width: 100%;
    height: auto;
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .main_contant span {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .newsContant_box .sub_wrap {
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
  }


  .sub_wrap .sub_contant {
    /*     border: 1px solid black; */
    flex: 1;
    height: auto;
    min-width: 0;
    gap: 10px;
  }

  .sub_contant img {
    width: 100%;
    height: 60px;
    overflow: hidden;
    object-fit: cover;
    display: block;
    border-radius: 10px;
  }

  .sub_contant span {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    font-weight: var(--Medium);
  }

  /* sns */
  #SNS {
    margin-bottom: 100px;
  }

  .sns_box_wrap {
    gap: 10px;
    flex-direction: column;
  }

  .sns_box {
    width: 100%;
    height: 80px;
  }

  .sns_box a {
    display: flex;
    align-items: center;
  }

  .sns_box a .sns_name {
    display: none;
  }

  .sns_box a .sns_img {
    display: none;
  }

  .sns_box a .sns_channel_icon {
    justify-content: flex-start;
    padding-left: 30px;
  }

  /* 탑버튼 */
  .top_btn {
    bottom: 30px;
    right: 10px;
  }

  /* 푸터 */
  #footer {
    width: 100%;
    min-height: 320px;
    height: auto;
    overflow-x: hidden;
  }

  .wave_wrap {
    top: -10px;
  }

  .container .footer_contents {
    align-items: flex-end;
    transform: translateY(0);
    padding-top: 100px;
  }

  .footer_contents .footer_left .wrap .footer_policy {
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 13px;
  }

  .footer_contents .footer_left .wrap .footer_policy li a {
    font-size: 13px;
  }

  .footer_contents .footer_left .wrap .footer_address {
    font-size: 10px;
    margin-bottom: 3px;
  }

  .footer_contents .footer_left .wrap .footer_info {
    flex-direction: column;
  }

  .footer_contents .footer_left .wrap .footer_copyright {
    font-size: 10px;
  }

  .footer_contents .footer_left .wrap .footer_info li {
    font-size: 10px;
  }

  .footer_contents .footer_right {
    transform: translateY(-20px);
  }

  .footer_contents .footer_right .footer_help_box {
    display: none;
  }

  .footer_contents .footer_right .footer_family {
    display: none;
  }
}