@charset "UTF-8";

/* reset */
* {
	box-sizing: border-box;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
img {vertical-align: middle;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
	text-decoration: none;
	color: inherit;
}
input {
  font-weight: 400;
  font-family: "Noto Sans KR", serif;
  letter-spacing: 0.3px;
  color: var(--text-body);
}
input::placeholder {
	color: #ADADAD;
	font-size: 14px;
}
select:focus,
input:focus {
  outline: none;
}
select {
	appearance: none;
	background: url(../images/arr_select.svg) no-repeat 94% center;
  font-weight: 400;
  font-family: "Noto Sans KR", serif;
  letter-spacing: 0.3px;
  color: var(--text-body);
}


#wrap {
  position: relative;
  min-width: 360px;
  font-family: "Noto Sans KR", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3px;
  color: var(--text-body);
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
}
@media (max-width:1024px) {
  .inner {
    padding: 0 20px;
  }
}

.notScroll {
  overflow: hidden;
  width: 100%;
  height: 100%;
  touch-action:none;
}

/* color */
:root {
  --key-color : #EA609E;
  --sub-color: #FFF1F7;
  --red-point: #EE3C3C;
  --border-color: #D9D9D9;
  --text-disabled: #D9D9D9;
  --text-detail: #828282;
  --text-body: #484848;
  --text-title: #2B2B2B;
}


/* PC부터 작업 */

/* PC에서는 안보이게 */
.notPC {display: none;}
.notM {display: block;}

/* 태블릿부터 안보이게 */
@media (max-width: 1024px) {
  .notPC {display: block;}
  .notM {display: none;}
}

#wrap {}

/* ------------ 헤더 ------------ */
/* 250205 수정 */
header {
  position: absolute;
  top: 0;
  left: 0;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 86px;
  padding: 0 30px;
  z-index: 101;
  transition: all 0.2s;
}
header:hover {
  background-color: #fff;
}
/* 250222 수정 */
header .logo {
  position: relative;
  width: 200px;
  height: 50px;
  background: url(../images/logo.png) no-repeat left center/100% auto;
  transition: all 0.2s;
  z-index: 1;
}

header:hover .logo {
  background-image: url(../images/logo2.png);
}
header .logo a {
  display: block;
}

header .mainM {
  position: relative;
  height: 86px;
  z-index: 1;
}
/* 250222 수정 */
header .mainM .g1 {
  display: flex;
  align-items: center;
  color: #fff;
  transition: all 0.2s;
}
header:hover .mainM .g1 {
  color: var(--text-title);
}
header .mainM .g1 > li {}
/* 250222 수정 */
header .mainM .g1tit {
  padding: 0 16px;
  font-size: 18px;
  font-weight: 600;
  line-height: 86px;
  color: #fff;
}
header:hover .mainM .g1tit {
  color: var(--text-title);
}
header .mainM li:hover .g1tit {
  color: var(--key-color);
}
header .mainM li:first-child .g1tit {
  padding-left: 0;
}
header .mainM li:last-child .g1tit {
  padding-right: 0;
}
header .mainM .g2 {
  position: absolute;
  top: 86px;
  left: 50%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  width: 1024px;
  height: 0;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 100;
  transition: all 0.2s;
}
header .mainM li:hover .g2 {
  height: 160px;
  padding: 20px 0;
  transition: all 0.6s 0.1s;
}
header .mainM .g2 li {
  width: 31%;
  height: 60px;
  margin-right: 3.5%;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  color: var(--text-title);
  border-radius: 10px;
  transition: all 0.2s;
}
header .mainM .g2 li:hover {
  background-color: #fde2ee;
}
header .mainM .g2 li:nth-child(3n) {
  margin-right: 0;
}
header .mainM .g2 li a {
  display: block;
}

header .mainMbg {
  position: absolute;
  top: 86px;
  left: 0;
  width: 100%;
  height: 0;
  background-color: rgba(255,255,255,0.9);
  transition: all 0.3s;
}
.util {
  display: flex;
}
header .util {
  position: relative;
  z-index: 1;
}
.util > div:not(:first-child) {
  margin-left: 10px;
}
.util .lang {
  position: relative;
}
.util > div > a {
  display: block;
  height: 26px;
  padding: 0 12px;
  font-size: 13px;
  line-height: 26px;
  color: #fff;
  border-radius: 30px;
}
.util .insta a {
  background-image: linear-gradient(120deg, #ee3ebd, #bc00ca 51%, #f4b618 105%);
}
.util .facebook a {
  background-color: #1c63fd;
}
.util .lang > a {
  background-color: #2a2a2a;
}
.util .langOpt {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 100px;
  padding: 6px;
  font-size: 14px;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid var(--border-color);
}
.util .langOpt::before {
  content: "";
  position: absolute;
  top: -11px;
  right: 15px;
  width: 14px;
  height: 11px;
  background: url(../images/lang_polygon.svg) no-repeat center 1px;
}
.util .langOpt a {
  display: block;
  width: 100%;
  line-height: 180%;
  border-radius: 30px;
}
.util .langOpt a:hover {
  background-color: var(--sub-color);
}
.util .langOpt .active {
  color: var(--key-color);
  background-color: var(--sub-color);
}

/* 헤더 고정 */
header.fix {
  position: fixed;
  height: 60px;
  background-color: #fff;
  border: 1px solid var(--border-color);
}
header.fix::after {
  top: 0;
}
header.fix .logo {
  width: 160px;
  background-image: url(../images/logo2.png);
}
header.fix .mainM {
  height: 60px;
}
/* 250222 수정 */
header.fix .mainM .g1tit {
  font-size: 17px;
  line-height: 60px;
  color: var(--text-title);
  transition: 0;
}
header.fix .mainM li:hover .g2 {
  top: 59px;
}
header.fix .mainMbg {
  top: 59px;
}

/* ------------ 헤더 반응형 ------------ */
@media (max-width:1556px) {
  /* 250222 수정 */
  header .mainM .g1tit {
    padding: 0 14px;
    font-size: 17px;
  }
  
}

@media (max-width:1420px) {
  header {
    justify-content: flex-start;
    padding: 0 20px;
  }
  /* 250222 수정 */
  header .logo {
    width: 180px;
    margin-right: 4vw;
  }
  /* 250222 수정 */
  header .mainM {
    position: static;
  }
  /* 250222 수정 */
  header .mainM .g1tit {
    font-size: 16px;
  }

  /* 250222 수정 - .mainM .g1 > li 삭제 */

  /* 250222 수정 */
  header .util {
    position: absolute;
    right: 20px;
    top: 0;
  }
  /* 250222 수정 */
  .util > div > a {
    height: 23px;
    line-height: 23px;
    font-size: 12px;
    border-radius: 0 0 10px 10px;
  }
  

  /* 헤더고정 */
  header.fix {
    justify-content: space-between;
  }
  header.fix .mainM .g1 > li {
    padding-top: 0;
  }
  /* 250222 수정 */
  header.fix .mainM .g1tit {
    font-size: 15px;
    letter-spacing: -0.2px;
  }
  header.fix .util {
    position: static;
  }
  /* 250222 수정 */
  header.fix .util > div > a {
    border-radius: 30px;
  }
  header.fix .util .insta,
  header.fix .util .facebook {
    display: none;
  }
}

@media (max-width:1166px) {
  header {
    justify-content: space-between;
  }
  header .logo {
    margin-right: 0;
  }
  header .mainM .g1tit {
    padding: 0 12px;
  }

}

@media (max-width:1024px) {
  header {
    height: 60px;
  }
  header:hover {
    background-color: transparent;
  }
  header .logo {
    width: 160px;
    align-self: center;
  }
  header:hover .logo {
    background-image: url(../images/logo.svg);
  }
  header .util {
    display: none;
  }

  header .btnM {
    position: relative;
    width: 30px;
    height: 30px;
    background: url(../images/ico_menu.svg) no-repeat center/contain;
    z-index: 1;
  }
  header .btnM a {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* 헤더고정 */
  header.fix:hover {
    background-color: #fff;
  }
  header.fix:hover .logo {
    background-image: url(../images/logo_color.svg);
  }
  header.fix .btnM {
    background-image: url(../images/ico_menu_bk.svg);
  }

}


/* ------------ 모바일 사이드메뉴 ------------ */
@media (max-width:1024px) {
  .sideM {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 102;
    transition: all 0.3s;
  }
  .sideM.open {
    right: 0;
  }
  .sideM .sTop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid var(--text-title);
  }
  .sideM .sTop .util a {
    height: 26px;
    line-height: 26px;
  }

  .sideM .sTop .btnClose {}
  .sideM .sTop .btnClose img {
    width: 30px;
  }

  .sideM .mobileM {
    width: 100%;
  }
  .sideM .mobileM .g1 {}
  .sideM .mobileM .g1 > li {}
  .sideM .mobileM .g1tit {
    display: block;
    width: 100%;
    height: 56px;
    padding: 0 20px;
    line-height: 56px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.2s;
  }
  .sideM .mobileM .g1tit span {
    float: right;
    width: 16px;
    height: 16px;
    margin-top: 21px;
    background: url(../images/arr_down_bk.svg) no-repeat center/contain;
    transition: all 0.2s;
  }
  .sideM .mobileM .g2 {
    display: none;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    background-color: #efefef;
  }
  .sideM .mobileM .g2 li:not(:last-child) {
    margin-bottom: 15px;
  }
  .sideM .mobileM .g2 a {}
  
  /* 활성화 */
  .sideM .mobileM .g1 .g1tit.active {
    color: #fff;
    background-color: var(--key-color);
  }
  .sideM .mobileM .g1 .g1tit.active span {
    background-image: url(../images/arr_up_wh.svg);
  }

}

/* 컨테이너 */
.gun63th {}

/* ------------ 메인비주얼 ------------ */
.mainV {
  position: relative;
}
.mainV .mainVslider {
  position: relative;
  width: 100%;
  height: 1100px;
}
.mainV .mainVslider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 12%, rgba(0,0,0,0.15)90%);
  z-index: 1;
}
.mainV .swiper-wrapper {}
.mainV .swiper-slide {
  height: 1100px;
}
.mainV .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mainV .mainVslider-next,
.mainV .mainVslider-prev {
  position: absolute;
  top: 550px;
  width: 45px;
  height: 45px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  cursor: pointer;
  z-index: 11;
}
.mainV .mainVslider-next {
  right: 50%;
  margin-right: -100px;
  background-image: url(../images/arr_next_round_wh.svg);
}
.mainV .mainVslider-prev {
  left: 50%;
  margin-left: -100px;
  background-image: url(../images/arr_prev_round_wh.svg);
}
.mainV .mainVslider-pager {
  top: 562px;
  height: 24px;
  color: hsl(0, 9%, 90%);
  font-size: 20px;
}
.mainV .mainVslider-pager .swiper-pagination-current {
  font-weight: 700;
  font-size: 21px;
  color: #fff;
}

.mainVtxt {
  position: absolute;
  top: 18%;
  width: 100%;
  padding: 0 30px;
  color: #fff;
  text-align: center;
  line-height: 150%;
  z-index: 2;
}
.mainVtxt .t1 {
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: 500;
  line-height: 140%;
}
.mainVtxt h2 {
  margin-bottom: 20px;
  font-size: 78px;
  font-weight: 700;
  line-height: 130%;
  word-break: keep-all;
}
.mainVtxt h2 span {
  color: #ffcaf5;
}
.mainVtxt .t2 {
  font-size: 28px;
  line-height: 140%;
}

@media (max-width:1024px) {
  .mainV .mainVslider {
    height: 800px;
  }
  .mainV .mainVslider::before {
   top: 340px;
   width: 360px;
   transform: translateX(100%);
  }
  .mainV .mainVslider-next,
  .mainV .mainVslider-prev {
    top: 400px;
    width: 36px;
    height: 36px;
  }
  .mainV .mainVslider-next {
    margin-right: -80px;
  }
  .mainV .mainVslider-prev {
    margin-left: -80px;
  }
  .mainV .mainVslider-pager {
    top: 408px;
    font-size: 16px;
  }
  .mainV .mainVslider-pager .swiper-pagination-current {
    font-size: 17px;
  }

  .mainVtxt {
    top: 16%;
    padding: 0 20px;
  }
  .mainVtxt .t1 {
    margin-bottom: 15px;
    font-size: 28px;
  }
  .mainVtxt h2 {
    margin-bottom: 30px;
    font-size: 54px;
  }
  .mainVtxt .t2 {
    font-size: 22px;
  }
}

@media (max-width:768px) {
  .mainV .mainVslider::before {
    top: 280px;
    width: 320px;
    transform: translateX(100%);
  }
  .mainV .mainVslider-next,
  .mainV .mainVslider-prev {
    top: 340px;
  }
  .mainV .mainVslider-pager {
    top: 348px;
  }
  .mainVtxt .t1 {
    font-size: 20px;
  }
  .mainVtxt h2 {
    font-size: 38px;
  }
  .mainVtxt .t2 {
    font-size: 16px;
  }
}
@media (max-width:500px) {
  
  .mainV .mainVslider::before {
    top: 350px;
    width: 220px;
    transform: translateX(100%);
  }

  /* 250222 수정 */
  .mainV .mainVslider-next, .mainV .mainVslider-prev {
    top: 360px;
  }
  /* 250222 수정 */
  .mainV .mainVslider-pager {
    top: 368px;
  }
}

/* ------------ 배경 ------------ */
.backgrounds {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}
.bg1 {
  top: 500px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  overflow: hidden;
  transition: all 0.6s;
}
.bg1.move {
  top: 400px;
  transition: all 0.6s 0.4s;
}

.bg1 img {}

@media (max-width:1024px) {
  .bg1 {
    top: 320px;
    transition-delay: 0;
  }
  .bg1.move {
    top: 220px;
    transition-delay: 0.4s;
  }
}

@media (max-width:768px) {
  .bg1 {
    top: 420px;
  }
  .bg1.move {
    top: 320px;
  }
  .bg1 img {
    width: 1920px;
  }
}

/* ------------ 꽃 배경 ------------ */
.floBg {
  position: absolute;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: contain;
  transition: top 0.5s, background-position 0.5s;
}
.floBgLeft {
  top: 700px;
  left: 0;
  width: 38vw;
  height: 415px;
  background-image: url(../images/illu_flower1.png);
  background-position: -60px 0;
}
.floBgLeft.move {
  top: 800px;
  background-position: 0 0;
  transition-delay: 0.2s;
}
.floBgRight {
  top: 680px;
  right: 0;
  width: 36vw;
  height: 530px;
  background-image: url(../images/illu_flower2.png);
  background-position: calc(100% + 80px) 0;
}
.floBgRight.move {
  top: 800px;
  background-position: 100% 0;
  transition-delay: 0.4s;
}
.floBgRight2 {
  top: 1340px;
  right: 50px;
  width: 270px;
  height: 220px;
  background-image: url(../images/illu_flower3.png);
  background-position: calc(100% + 30px) 0;
}
.floBgRight2.move {
  top: 1400px;
  background-position: 0 0;
}

@media (max-width:1024px) {
  .floBgLeft {
    top: 600px;
    width: 34vw;
  }
  .floBgLeft.move {
    top: 700px;
  }
  .floBgRight {
    top: 580px;
    width: 32vw;
  }
  .floBgRight.move {
    top: 700px;
  }
  .floBgRight2 {
    top: 1000px;
    right: 0;
    width: 20vw;
  }
  .floBgRight2.move {
    top: 1080px;
  }
  
}

@media (max-width:768px) {
  .floBgLeft {
    top: 440px;
    width: 38vw;
  }
  .floBgLeft.move {
    top: 540px;
  }
  .floBgRight {
    top: 460px;
    width: 35vw;
  }
  .floBgRight.move {
    top: 540px;
  }
  .floBgRight2 {
    top: 940px;
  }
  .floBgRight2.move {
    top: 980px;
  }
  
}

@media (max-width:500px)  {
  .floBgLeft {
    top: 500px;
  }
  .floBgLeft.move {
    top: 580px;
  }
  .floBgRight {
    top: 480px;
  }
  .floBgRight.move {
    top: 580px;
  }
  .floBgRight2 {
    top: 700px;
  }
  .floBgRight2.move {
    top: 740px;
  }
}

.positionCon {
  position: absolute;
  top: 1080px;
  left: 0;
  width: 100%;
  z-index: 1;
}

/* ------------ 디데이 ------------ */
.dday {
  width: 1024px;
  margin: 0 auto;
  text-align: center;
}
.dday .tit {
  color: var(--key-color);
}
.dday .tit .t1 {
  margin-bottom: 20px;
  font-size: 40px;
}
.dday .tit .t2 {
  font-size: 70px;
  font-weight: 600;
}
.dday .dateBox {
  width: 640px;
  height: 260px;
  margin: 40px auto 0;
  background: url(../images/ddayboard.png) no-repeat center top/contain;
}
.dday #remain-time {
  padding: 96px 60px 0;
  font-size: 86px;
  font-weight: 700;
  color: var(--text-title);
}

@media (max-width:1024px) {
  .positionCon {
    top: 900px;
  }

  .dday {
    width: 100%;
  }
  .dday .tit .t1 {
    font-size: 30px;
  }
  .dday .tit .t2 {
    font-size: 50px;
  }
  .dday .dateBox {
    width: 540px;
    height: 220px;
  }
  .dday #remain-time {
    padding: 74px 60px 0;
    font-size: 75px;
  }
  
}

@media (max-width:768px) {
  .positionCon {
    top: 730px;
  }
  .dday .tit .t1 {
    font-size: 26px;
  }
  .dday .tit .t2 {
    font-size: 38px;
  }
  .dday #remain-time {
    font-size: 64px;
  }
}

@media (max-width:540px) {
  .dday .dateBox {
    width: 100%;
    height: 37vw;
  }
  .dday #remain-time {
    padding-top: 12vw;
    font-size: 60px;
  }

}

/* ------------ 주요프로그램 ------------ */
/* 공통제목 */
.secTit {
  margin-bottom: 40px;
  text-align: center;
  font-size: 46px;
  color: var(--text-title);
  line-height: 150%;
}
.secTit .bold {
  font-weight: 700;
}

.program {
  margin-top: 140px;
}
.program .inner {
  width: 1180px;
}
.secCon {
  position: relative;
  height: 500px;
}
.secCon > div {
  position: absolute;
}

.programImg {
  left: 0;
}
.programImgSlider {
  position: absolute;
  left: 0;
  width: 480px;
  height: 440px;
  border-radius: 20px;
}
.programImgSlider .swiper-wrapper {}
.programImgSlider .swiper-slide {}
.programImgSlider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.programTxt {
  top: 80px;
  right: 0;
}
.programTxtSlider {
  width: 760px;
  color: #fff;
}
.programTxtSlider .swiper-wrapper {}
/* 250222 수정 */
.programTxtSlider .swiper-slide {
  height: 420px;
  padding: 40px 60px;
  font-size: 18px;
  line-height: 150%;
  background-color: var(--key-color);
  border-radius: 20px;
}
/* 250222 수정 */
.programTxtSlider .swiper-slide h3 {
  height: 90px;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 140%;
  font-weight: 600;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.programTxtSlider .swiper-slide .sub {
  height: 90px;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
/* 250222 수정 */
.programTxtSlider .swiper-slide .info {
  margin-top: 20px;
  font-size: 16px;
  line-height: 150%;
}
/* 250222 수정 */
.programTxtSlider .swiper-slide .info p:first-child {
  margin-bottom: 10px;
}
.programTxtSlider .swiper-slide .tit {
  display: inline-block;
  margin-right: 8px;
  font-weight: 300;
}
.programTxtSlider .swiper-slide .con {}

/* 250222 수정 */
.programTxtSlider .slideBtns {
  position: absolute;
  bottom: 20px;
  right: 40px;
  display: flex;
  align-items: center;
  z-index: 1;
}
/* 250222 수정 */
.programSlider-next,
.programSlider-prev {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  cursor: pointer;
}
.programSlider-next {
  background-image: url(../images/arr_next_round_wh.svg);
}
.programSlider-prev {
  background-image: url(../images/arr_prev_round_wh.svg);
}
.programSlider-pager {
  position: static !important;
  margin: 0 20px;
}

@media (max-width:1180px) {
  .program .inner {
    width: 100%;
    padding: 0 20px;
  }
  .secCon {
    height: 460px;
  }
  .programImgSlider {
    width: 40vw;
    height: 36vw;
  }
  .programTxt {
    top: 60px;
  }
  .programTxtSlider {
    width: 63vw;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide {
    height: 400px;
    font-size: 16px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide h3 {
    height: 72px;
    font-size: 24px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide .sub {
    height: 74px;
  }
}

@media (max-width:1024px) {

  /* 공통제목 */
  .secTit {
    margin-bottom: 30px;
    font-size: 34px;
  }

  .program {
    margin-top: 100px;
  }
  .secCon {
    height: 420px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide {
    height: 360px;
    padding: 20px 30px;
  }
  .programTxtSlider .swiper-slide .sub {
    margin-bottom: 20px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide .info {
    position: static;
    width: 100%;
    font-size: 14px;
    line-height: 150%;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide .info p:first-child {
    margin-bottom: 10px;
  }
  /* 250222 수정 */
  .programTxtSlider .slideBtns {
    bottom: 14px;
  }
}

@media (max-width:768px) {
  /* 공통제목 */
  .secTit {
    font-size: 28px;
  }

  .secCon {
    height: 610px;
  }
  .programImgSlider {
    width: 80vw;
    height: 300px;
  }
  .programTxt {
    top: 280px;
  }
  .programTxtSlider {
    width: 80vw;
  }
  .programTxtSlider .swiper-slide {
    height: 330px;
    padding: 20px;
    font-size: 14px;
  }
  .programTxtSlider .swiper-slide h3 {
    height: 62px;
    margin-bottom: 15px;
    font-size: 22px;
  }
  .programTxtSlider .swiper-slide .sub {
    height: 64px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide .info p:first-child {
    margin-bottom: 6px;
  }
  /* 250222 수정 */
  .programTxtSlider .swiper-slide .info {
    font-size: 13px;
  }

  /* 250222 수정 */
  .programTxtSlider .slideBtns {
    font-size: 14px;
  }
  /* 250222 수정 */
  .programSlider-next, .programSlider-prev {
    width: 26px;
    height: 26px;
  }
  .programSlider-pager {
    margin: 0 10px;
  }
}

/* 꽃 배경 */
.floBg1 {
  position: absolute;
  top: 880px;
  left: 0;
  width: 560px;
  height: 700px;
  background: url(../images/illu_flower4.png) no-repeat -50px 0/100% auto;
  transition: background-position 0.5s;
}
.floBg1.move {
  background-position: 0 0;
}

@media (max-width:1024px) {
  .floBg1 {
    top: 760px;
    width: 40vw;
    height: 360px;
  }
}

@media (max-width:768px) {
  .floBg1 {
    top: 1020px;
    width: 42vw;
  }
}

/* ------------ 축제영상 ------------ */
.fesVideo {
  margin-top: 140px;
  padding: 100px 0;
  background: #533B46 url(../images/bg_darkblossom.png) no-repeat center -20px/100% auto;
}
.fesVideo .secTit {
  color: #fff;
}
.fesVideo iframe {
  width: 100%;
  height: 680px;
}

@media (max-width:1024px) {
  .fesVideo {
    margin-top: 100px;
  }
  .fesVideo iframe {
    height: 64vw;
  }
}

/* ------------ 관광안내 ------------ */
.touristInfo {
  position: relative;
  padding: 100px 0;
  background-color: #FFF1F7;
}
.touristInfo::after {
  content: "";
  position: absolute;
  right: 0;
  top: 76%;
  width: 480px;
  height: 260px;
  background: url(../images/illu_flower5.png) no-repeat 100% -80px/100% auto;
}
.touristInfo .inner {
  max-width: none;
}
.touristInfo ul {
  position: relative;
  display: flex;
  justify-content: center;
  z-index: 1;
}
.touristInfo li {
  height: 250px;
  background-color: #fff;
  border-radius: 20px;
  transition: all 0.2s;
  box-shadow: 2px 2px 16px rgba(167, 68, 112,.15);
}
.touristInfo li:hover {
  background-color: var(--key-color);
}
.touristInfo li:not(:last-child) {
  margin-right: 20px;
}
.touristInfo a {}
.touristInfo img {}
.touristInfo li p {
  padding-top: 20px;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-title);
  text-align: center;
}
.touristInfo li:hover p {
  color: #fff;
}

@media (max-width:1560px) {
  .touristInfo ul {
    padding: 0 50px;
  }
  .touristInfo li {
    width: calc((100% - 100px) / 6);
    height: 16vw;
  }
  .touristInfo img {
    width: 100%;
  }
  
}

@media (max-width:1024px) {
  .touristInfo::after {
    top: 85%;
  }

  .touristInfo ul {
    flex-wrap: wrap;
    padding: 0;
  }
  .touristInfo li {
    width: 31%;
    height: 30vw;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .touristInfo li:hover {
    background-color: #fff;
  }
  .touristInfo li:not(:last-child) {
    margin-right: 20px;
  }
  .touristInfo li:nth-child(3n) {
    margin-right: 0;
  }
  .touristInfo li p {
    font-size: 18px;
  }
  .touristInfo li:hover p {
    color: var(--text-title);
  }

}

@media (max-width:768px) {
  .touristInfo::after {
    top: 88%;
  }

  .touristInfo li {
    width: calc((100% - 20px) / 2);
    height: 45vw;
    min-height: 205px;
  }
  .touristInfo li:nth-child(3n) {
    margin-right: 20px;
  }
  .touristInfo li:nth-child(even) {
    margin-right: 0;
  }
  .touristInfo li img {
    min-height: 148px;
  }
  .touristInfo li p {
    font-size: 16px;
  }

}

@media (max-width:500px) {
  .touristInfo::after {
    top: 89%;
    width: 360px;
  }
}

/* ------------ 교통상황 ------------ */
.traffic {
  display: flex;
  justify-content: space-between;
  padding: 140px 0;
}
.traffic .secTit {
  text-align: left;
}
.traffic .secTit span {
  display: block;
}

.traffic .con {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 68%;
}
.traffic .con a {
  height: 70px;
  margin-left: 20px;
  margin-bottom: 20px;
  padding: 0 50px;
  font-size: 24px;
  line-height: 64px;
  background-color: #fff;
  border: 3px solid var(--key-color);
  border-radius: 60px;
}
.traffic .con a:hover {
  color: #fff;
  background-color: var(--key-color);
}

@media (max-width:1280px) {
  .traffic {
    padding: 140px 20px;
  }
}

@media (max-width:1024px) {
  .traffic {
    padding: 140px 20px 100px;
  }
  .traffic .con {
    width: 75%;
  }
  .traffic .con a {
    height: 60px;
    padding: 0 40px;
    font-size: 20px;
    line-height: 54px;
  }
  .traffic .con a:hover {
    color: var(--text-body);
    background-color: #fff;
  }
}

@media (max-width:768px) {
  .traffic {
    flex-direction: column;
  }
  .traffic .secTit {
    text-align: center;
  }
  .traffic .secTit span {
    display: inline-block;
  }
  .traffic .con {
    width: 100%;
  }
  .traffic .con a {
    height: 54px;
    padding: 0 20px;
    font-size: 18px;
    line-height: 48px;
  }
}

/* ------------ 게시판 ------------ */
.board {
  padding: 100px 0;
  background-color: #FFF1F7;
}
.board .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.board .notice {
  width: 700px;
}
.board .notiTab {
  position: relative;
  display: flex;
  justify-content: center;
  width: 372px;
  margin: 0 auto;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 50px;
  box-shadow: 2px 2px 13px rgba(167, 68, 112,.11);
}
.board .notiTab a {
  position: relative;
  width: 186px;
  height: 62px;
  text-align: center;
  line-height: 62px;
  font-size: 24px;
  color: var(--text-disabled);
  z-index: 1;
}
.board .notiTab a.active {
  color: #fff;
}
.board .notiTab .bg {
  position: absolute;
  left: 0;
  width: 186px;
  height: 62px;
  border-radius: 60px;
  background-color: var(--key-color);
  transition: all 0.3s;
}
.board .notiTab .noticeTab.active + .bg {
  left: 0;
}
.board .notiTab .pressTab.active + .bg {
  left: 50%;
}

.board .notiCon {}
.board .notiCon > div {
  display: none;
  padding: 30px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 2px 2px 13px rgba(167, 68, 112,.11);
}
.board .notiCon > .active {
  display: block;
}

.board .noticeSec {}
.board .pressSec {}

.board .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--text-detail);
}
.board .top .tit {
  font-size: 24px;
  font-weight: 600;
}
.board .top .more {
  font-size: 15px;
}
.board .top .more span {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 5px;
  background: url(../images/ico_more.svg) no-repeat center/contain;
}
.board ul {}
.board li {
  position: relative;
  height: 40px;
  line-height: 40px;
}
.board li:not(:last-child) {
  margin-bottom: 5px;
}
.board li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% + 20px);
  height: 40px;
  transform: translate(-50%,-50%);
  background-color: var(--sub-color);
  opacity: 0;
  transition: all 0.2s;
}
.board li:hover::after {
  opacity: 1;
}
.board li a {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 18px;
  z-index: 1;
}
.board li .conTit {
  width: 80%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.board li .date {
  width: 16%;
  text-align: right;
  color: var(--text-detail);
}

.board .fesInfo {
  display: flex;
  justify-content: space-between;
  width: 540px;
}
.board .fesInfo > div {
  width: 260px;
  height: 300px;
  text-align: center;
  color: #fff;
  background-color: var(--key-color);
  border-radius: 20px;
}
.board .fesInfo a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.board .fesInfo .btnLocate {}
.board .fesInfo .btnSchedule {}
.board .fesInfo img {
  width: 60px;
}
.board .fesInfo > div:hover img {
  animation: iconMove 0.4s infinite alternate;
}
@keyframes iconMove {
  0% {transform: translate(0,0) rotate(0);}
  100% {transform: translate(5px,-10px) rotate(10deg);}
}
.board .fesInfo p {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 600;
}

@media (max-width:1280px) {
  .board .notice {
    width: 54%;
  }
  .board .fesInfo {
    width: 44%;
  }
  .board .fesInfo > div {
    width: 48%;
  }
}

@media (max-width:1024px) {
  .board .notice {
    width: 58%;
  }
  .board .notiTab a {
    height: 55px;
    line-height: 55px;
    font-size: 20px;
  }
  .board .notiTab .bg {
    height: 55px;
  }
  .board .notiCon > div {
    padding: 20px;
  }
  .board .top .tit {
    font-size: 22px;
  }
  .board .top .more {
    font-size: 14px;
  }
  .board li {
    height: 34px;
    line-height: 34px;
  }
  .board li:hover::after {
    opacity: 0;
  }
  .board li a {
    font-size: 16px;
  }
  .board .fesInfo {
    width: 40%;
  }
  .board .fesInfo > div {
    height: 262px;
  }
  .board .fesInfo img {
    width: 48px;
  }
  .board .fesInfo p {
    font-size: 20px;
  }
  
}

@media (max-width:768px) {
  .board .inner {
    flex-direction: column;
  }
  .board .notice {
    width: 100%;
  }
  /* 250206 수정 */
  .board .notiTab {
    width: 100%;
  }
  .board .notiTab a {
    width: 50%;
    font-size: 18px;
  }
  .board .notiTab .bg {
    width: 50%;
  }
  /* 250206 수정 끝 */
  .board .top .tit {
    font-size: 20px;
  }
  .board li {
    height: 30px;
    line-height: 30px;
  }
  .board li a {
    font-size: 14px;
  }
  .board li .conTit {
    width: 73%;
  }
  .board li .date {
    width: 24%;
  }
  .board .fesInfo {
    width: 100%;
    margin-top: 30px;
  }
  .board .fesInfo > div {
    height: 220px;
  }
  .board .fesInfo > div:hover img {
    animation: none;
  }
  .board .fesInfo p {
    margin-top: 30px;
    font-size: 18px;
  }
}

/* ------------ 스폰서 ------------ */
.sponsor {
  padding: 100px 0;
  background: url(../images/bg_spon.png) no-repeat center -80px/100% auto;
}
.sponsor .inner {
  max-width: 1580px;
}
.sponSlider {
  width: 1420px;
}
.sponSlider .swiper-wrapper {}
.sponSlider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  height: 260px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid var(--key-color);
}
.sponSlider .swiper-slide img {
  width: 60%;
  height: auto;
}
.sponSlider-next,
.sponSlider-prev {
  position: absolute;
  top: 55%;
  width: 30px;
  height: 60px;
  background-repeat: no-repeat;
  background-size: contain;
}
.sponSlider-next {
  right: 0;
  background-image: url(../images/arr_next_pk.svg);
  background-position: right center;
}
.sponSlider-prev {
  left: 0;
  background-image: url(../images/arr_prev_pk.svg);
  background-position: left center;
}

@media (max-width:1520px) {
  .sponsor .inner {
    max-width: 1280px;
  }
  .sponSlider {
    width: 1120px;
  }
  .sponSlider .swiper-slide {
    width: 200px;
    height: 200px;
  }
}

@media (max-width:1200px) {
  .sponsor .inner {
    max-width: none;
  }
  .sponSlider {
    width: 85%;
  }
}

@media (max-width:800px) {
  .sponSlider {
    width: 100%;
  }
  .sponSlider .swiper-slide {
    width: 160px;
    height: 160px;
  }
  .sponSlider-next,
  .sponSlider-prev {
    top: 2px;
    width: 20px;
    height: 40px;
  }
  .sponSlider-next {
    right: 50%;
    margin-right: -180px;
  }
  .sponSlider-prev {
    left: 50%;
    margin-left: -180px;
  }
}

/* ------------ 푸터 ------------ */
footer {
  padding: 50px 0;
  color: #fff;
  font-size: 14px;
  line-height: 180%;
  font-weight: 300;
  background-color: #565454;
}
footer .inner {
  position: relative;
  display: flex;
}
footer h1 {
  margin-right: 50px;
}
footer h1 img {
  width: 120px;
}

footer .fcon {}
footer .fcon .company {
  font-weight: 500;
}
footer .fcon .address {}
footer .fcon .address .bold {
  font-weight: 500;
}
footer .fcon .address .bar {
  margin: 0 6px;
}
footer .fcon .copy {
  margin-top: 20px;
}
footer .fcon .notPC {
  display: none;
}
footer .fcon .notM {
  display: inline-block;
}

footer .fsns {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
}
footer .fsns a {
  width: 40px;
  height: 40px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
}
footer .fsns_f {
  margin-right: 15px;
  background-image: url(../images/sns_f.svg);
}
footer .fsns_i {
  background-image: url(../images/sns_i.svg);
}

@media (max-width:1024px) {
  footer .inner {
    flex-direction: column;
  }
  footer h1 {
    margin-right: 0;
    margin-bottom: 20px;
  }
  footer h1 img {
    width: 140px;
  }
  footer .fsns {
    top: 10px;
    right: 20px;
  }
  
}

@media (max-width:768px) {
  footer .fcon .notPC {
    display: inline-block;
  }
  footer .fcon .notM {
    display: none;
  }
}