:root {
  --bg-color: #F9F9F9;
  --black-color: #333333;
  --sub-txt-color: #555555;
  --border-color: #D9D9D9;
}
* {
  box-sizing: border-box;
  /*
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  */
  -webkit-tap-highlight-color : transparent;
}
html {
  scroll-behavior : smooth;
}
body {
  font-family: "Pretendard", "Open Sans";
  position: relative;
}
/*메인 팝업*/
.popup-area {
  background-color: #fff;
  position: fixed;
  z-index: 99999;
  box-shadow: 0 0 10px 10px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}
.popup-area .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.popup-area .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: bottom;
}
.popup-area .popup-btn {
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup-area .popup-btn button {
  flex: 1;
  padding: 16px 12px;
  font-size: 14px;
  color: #fff;
  background-color: var(--sub-txt-color);
}
.popup-area .popup-btn button:hover {
  opacity: 0.9;
}
.popup-area .popup-btn button:nth-child(2) {
  background-color: #000;
}
/*공통*/
.wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}
.sm-wrap {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.top-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.1);
  background-color: #000;
  cursor: pointer;
  z-index: 98;
}
.top-btn img {
  width: 20px;
  height: 20px;
}
.cover {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 3;
  transition: .2s linear;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.cover > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 24px;
}
.cover > div > .cover-logo {
  height: 80px;
}
.cover > div > .cover-more {
  width: 24px;
  height: 24px;
}
/*Header*/
.ham {
  display: none;
}
#ham_btn {
  display: none;
}
#ham_btn + label {
  position: relative;
  display: block;
  width: 32px;
  height: 22px;
  cursor: pointer;
  z-index: 10;
}
#ham_btn + label > span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 5px;
  transition: all 300ms;
}
#ham_btn:checked + label > span:nth-child(1) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(45deg);
}
#ham_btn + label > span:nth-child(2) {
  top: 50%;
  transform: translate(0, -50%);
}
#ham_btn:checked + label > span:nth-child(2) {
  opacity: 0;
}
#ham_btn + label > span:nth-child(3) {
  bottom: 0;
}
#ham_btn:checked + label > span:nth-child(3) {
  top: 50%;
  transform: translate(0, -50%);
  transform: rotate(-45deg);
}

.header-wrap {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 24px 0;
  z-index: 5;
  background-color: transparent;
}
.header-wrap.on {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 12px 0;
}
.header-wrap > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header-wrap .h-logo {
  display: inline-block;
}
.header-wrap .h-logo > img {
  height: 80px;
  object-fit: contain;
  transition: .1s linear;
}
.header-wrap.on .h-logo > img {
  height: 60px;
  transition: .1s linear;
}
.gnb {
  display: flex;
  align-items: center;
  column-gap: 40px;
  transition: .1s linear;
}
.header-wrap.on .gnb li a {
  font-size: 14px;
  transition: .1s linear;
}
.header-wrap.on .gnb {
  column-gap: 24px;
  transition: .1s linear;
}
.gnb li a {
  display: inline-block;
  font-weight: 300;
  color: #fff;
  transition: .1s linear;
}
.gnb li a:hover {
  opacity: .8;
}
/*Footer*/
footer {
  margin-top: 150px;
}
.footer-wrap {
  border-top: 1px solid var(--border-color);
}
.f-notice-area {
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  display: flex;
  align-items: center;
  column-gap: 24px;
}
.f-notice-area > span {
  display: inline-block;
  white-space: nowrap;
  font-weight: 500;
}
.notice-slider {
  width: 100%;
  overflow: hidden;
}
.notice-slider .swiper-slide {
  width: 100%;
  display: flex;
}
.notice-slider .swiper-slide > a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
}
.notice-slider .swiper-slide .tit {
  display: flex;
  align-items: center;
  column-gap: 24px;
  font-weight: 300;
}
.notice-slider .swiper-slide .tit > span:first-child {
  display: inline-block;
}
.notice-slider .swiper-slide .tit > span:nth-child(2) {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.notice-slider .swiper-slide .more-view > img {
  height: 20px;
  transition: .2s linear;
}
.notice-slider .swiper-slide > a:hover .more-view > img {
  transform: rotate(180deg);
  transition: .2s linear;
}
.fnb-area {
  padding: 48px 0;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
}
.fnb-box {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.fnb-box .f-logo {
  display: inline-block;
}
.fnb-box .f-logo img {
  height: 80px;
}
.fnb {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.fnb li a {
  display: inline-block;
  font-weight: 300;
}
.convenience-box {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  width: 100%;
  max-width: 220px;
}
.convenience-box > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.convenience-box > a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: .2s linear;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.convenience-box > a:hover::after {
  width: 100%;
  transition: .2s linear;
}

.convenience-box > a > img {
  width: 22px;
  transition: .2s linear;
}
.convenience-box > a:hover > img {
  transform: rotate(-45deg);
  transition: .2s linear;
}
.info-area {
  padding: 24px 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 24px;
}
.info-area .info-box {
  width: 50%;
}
.info-area .info-box > p {
  font-weight: 400;
  color: var(--sub-txt-color);
  margin-bottom: 24px;
}
.info-area .info-box .info {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
}
.info-area .info-box .info > span {
  display: inline-flex;
  align-items: center;
  color: var(--sub-txt-color);
  font-weight: 300;
}
.info-area .info-box .info > span:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 10px;
  background-color: var(--sub-txt-color);
  margin: 0 20px;
}
.info-area .copy {
  color: var(--sub-txt-color);
  font-weight: 300;
}

/*메인*/
.banner-area {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner-slider {
  width: 100%;
  overflow: hidden;
}
.banner-slider .swiper-slide .img-box {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.banner-slider .swiper-slide .img-box::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(0,0,0);
  background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0) 30%, rgba(255,255,255,0) 70%, rgba(0,0,0,0.5) 100%);
}
.banner-slider .swiper-slide .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.banner-area > .wrap {
  height: 100%;
  position: absolute;
  left: 50%;
  bottom: 100px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.banner-area > .wrap .content p:first-child {
  font-family: "Nanum Brush Script";
  display: block;
  font-size: 58px;
  color: #fff;
  text-align: right;
  margin-bottom: 24px;
}
.banner-area > .wrap .content p:nth-child(2) {
  display: block;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  text-align: right;
  margin-bottom: 48px;
}

.control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 20px;
}
.control .navigation {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.control .navigation > span {
  cursor: pointer;
}
.control .navigation > span img {
  height: 15px;
}
.pager {
  display: inline-block;
  width: max-content;
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  min-width: 40px;
  color: #fff;
  text-align: right;
}
.swiper-pagination-total {
  color: #d1d1d1;
}
.swiper-progress-bar {
  position: relative;
  width: 100px;
  display: block;
  z-index: 1;
  height: 3px;
  .slide_progress-bar {
    position: absolute;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    width: auto;
    clear: both;
    opacity: 0;
    left: 0;
    right: 0;
    &:after {
      position: absolute;
      top: 0;
      left: 0;
      background: #fff;
      height: 100%;
      width: 0;
      content: "";
      transition: 0.1s width linear;
    }
  }
  &.active {
    .slide_progress-bar {
      opacity: 1;
    }
  }
  &.animate {
    .slide_progress-bar {
      &:after {
        transition: width linear;
        transition-delay: unset;
        width: 100%;
        transition-duration: 2.5s;
      }
    }
  }
}
.short-area {
  margin-top: 150px;
}
.short-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.short-grid .item {
  position: relative;
  display: inline-block;
}
.short-grid .item:first-child {
	grid-row: 1 / 3;
}
.short-grid .item:first-child::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.short-grid .item .tit {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  width: calc(100% - 96px);
}
.short-grid .item .tit .page-name {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
}
.short-grid .item .tit .page-expl {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
}
.short-grid .item .tit > span {
  display: flex;
  align-items: center;
  column-gap: 10px;
  color: #fff;
  font-weight: 300;
}
.short-grid .item .tit > span > img {
  width: 22px;
  height: 22px;
  transition: .2s linear;
}
.short-grid .item:hover .tit > span > img {
  transform: rotate(-45deg);
  transition: .2s linear;
}
.short-grid .item .img-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.short-grid .item .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.short-grid .item .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fac-area {
  margin-top: 150px;
}
.main-tit {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.main-tit .tit p:first-child {
  font-size: 58px;
  font-weight: 400;
  margin-bottom: 24px;
  display: block;
}
.main-tit .tit p:nth-child(2) {
  font-size: 20px;
  font-weight: 400;
  display: block;
}
.main-tit > a {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.main-tit > a > img {
  width: 22px;
  height: 22px;
  transition: .2s linear;
}
.main-tit > a:hover > img {
  transform: rotate(-45deg);
  transition: .2s linear;
}

.fac-slider {
  width: 100%;
  overflow: hidden;
}
.fac-slider .swiper-slide > a {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
}
.fac-slider .swiper-slide > a:hover .cover {
  transition: .2s linear;
  opacity: 1;
}
.fac-slider .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
}
.fac-slider .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.fac-slider .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fac-slider .tit {
  position: absolute;
  left: 48px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  width: calc(100% - 96px);
}
.fac-slider .tit .page-name {
  color: #fff;
  font-size: 42px;
  font-weight: 500;
}

.gallery-area {
  margin-top: 150px;
}
.gallery-area .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.gallery-area .grid .item {
  position: relative;
  display: block;
}
.gallery-area .grid .item:first-child {
  background-color: var(--bg-color);
  display: flex;
  align-items: center;
  grid-column: 1 / 3;
}
.gallery-area .grid .item:first-child::after {
  content: unset !important;
}
.gallery-area .grid .item:first-child > a {
  position: absolute;
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.gallery-area .grid .item:first-child > a:hover .tit span img {
  transform: rotate(-45deg);
  transition: .2s linear;
}
.gallery-area .grid .item:first-child .tit {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.gallery-area .grid .item:first-child .tit .page-name {
  font-size: 42px;
  font-weight: 500;
}
.gallery-area .grid .item:first-child .tit .page-expl {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
}
.gallery-area .grid .item:first-child .tit > span {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 300;
}
.gallery-area .grid .item:first-child .tit > span > img {
  width: 22px;
  height: 22px;
  transition: .2s linear;
}
.gallery-area .grid .item::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.gallery-area .grid .item > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.gallery-area .grid .item .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-area .grid .item .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.gallery-area .grid .item .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-area .grid .item:hover .cover {
  transition: .2s linear;
  opacity: 1;
}

.notice-area {
  margin-top: 150px;
}
.notice-area.m-0 {
  margin-top: 0;
}
.notice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}
.notice-grid .item:not(.empty) {
  width: 100%;
  display: block;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}
.notice-grid .item.empty {
  grid-column: 1 / 5;
  text-align: center;
  padding: 48px 12px;
  font-size: 20px;
}
.notice-grid .item::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: #000;
  transition: .2s linear;
  position: absolute;
  left: 0;
  bottom: -1px;
}
.notice-grid .item:hover::after {
  width: 100%;
}
.notice-grid .item .img-box {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
}
.notice-grid .item .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.notice-grid .item .img-box .empty-img {
  height: 80px;
  object-fit: contain;
}
.notice-grid .item .img-box .thumb-img {
  width :100%;
  height: 100%;
  object-fit: cover;
}
.notice-grid .item .tit {
  font-size: 20px;
  font-weight: 300;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  text-align: left;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 24px;
}
.notice-grid .item .date {
  color: var(--sub-txt-color);
  margin-bottom: 24px;
}
.contact-banner {
  margin-top: 150px;
}
.contact-banner a {
  width: 100%;
  aspect-ratio: 5 / 1;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.contact-banner .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.contact-banner .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.contact-banner .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact-banner .content {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  position: absolute;
  padding: 0 48px;
}
.contact-banner .content > p {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 1.3;
  word-break: keep-all;
}
.contact-banner .content > span {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 300;
  color: #fff;
}
.contact-banner .content > span > img {
  width: 22px;
  height: 22px;
  transition: .2s linear;
}
.contact-banner a:hover .content > span > img {
  transform: rotate(-45deg);
  transition: .2s linear;
}

/*페이지네이션*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
  margin-top: 80px;
}
.pagination li {
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
}
.pagination li:not(.arrow):hover a {
  background-color: #000;
  color: #fff;
}
.pagination li.on {
  color: #fff;
  background-color: #000;
}
.pagination li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination li a > img {
  width: 8px;
}

/*페이지*/
.page-banner {
  width: 100%;
  height: 700px;
  position: relative;
}
.page-banner .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.page-banner .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
.page-banner .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-banner .content {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-banner .content > p:first-child {
  font-family: "Nanum Brush Script";
  font-size: 58px;
  color: #fff;
  margin-bottom: 24px;
  text-align: center;
}
.page-banner .content > p:last-child {
  font-size: 20px;
  color: #fff;
  text-align: center;
}
.page-banner .sub-menu {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-banner .sub-menu > a {
  display: inline-flex;
  align-items: center;
}
.page-banner .sub-menu > a::after {
  content: "";
  width: 1px;
  height: 16px;
  background-color: rgba(255, 255, 255, 0.5);
  margin: 0 30px;
}
.page-banner .sub-menu > a > img {
  height: 16px;
}
.page-banner .sub-menu .sub-list {
  position: relative;
}
.page-banner .sub-menu .sub-list button {
  width: 200px;
  display: flex;
  align-items: center;
  background-image: url('../images/icons/select_arrow_down.png');
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: 182px 50%;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
}
.page-banner .sub-menu .sub-list button.on {
  background-image: url('../images/icons/select_arrow_up.png');
}
.location-sub {
  width: 100%;
  position: absolute;
  top: 48px;
  left: 0;
  display: none;
  z-index: 3;
}
.location-sub li {
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.9);
}
.location-sub li.on {
  background-color: rgba(0, 0, 0, 0.8);
}
.location-sub li:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.location-sub li:last-child {
  border-bottom: 0;
}
.location-sub li a {
  display: inline-block;
  width: 100%;
  height: 100%;
  font-weight: 300;
  color: #fff;
}
.main-toggle.on + .location-sub {
  display: block;
}
.fixed-tit {
  padding: 80px 0;
}
.fixed-tit .sub {
  font-size: 24px;
  font-weight: 400;
  color: var(--sub-txt-color);
  margin-bottom: 24px;
  text-align: center;
}
.fixed-tit .main {
  font-size: 58px;
  font-weight: 300;
  margin-bottom: 24px;
  text-align: center;
  line-height: 1.3;
}
.fixed-tit .main b {
  font-weight: 600;
}
.editor-area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid #000;
  padding-top: 80px;
  white-space: pre-line;
  line-height: 1.2;
}
.editor-area img {
  max-width: 100%;
}
/*캠핑장 소개*/
.about-banner {
  width: 100%;
  height: 500px;
  position: relative;
  margin-bottom: 80px;
}
.about-banner .img-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-banner .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.about-banner .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-banner .content {
  width: 100%;
  padding : 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 48px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
}
.about-banner .content b {
  font-weight: 600;
}

/*현장 운영 안내*/
.oper-area ul {
  width: 100%;
  height: 650px;
  display: flex;
  column-gap: 5px;
}
.oper-area ul li {
  width: 100%;
  height: 100%;
  background: olive;
  flex: 1;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.oper-area ul li:hover {
  flex: 2.5;
}
.oper-area li .content {
  width: 100%;
  height: 100%;
  display: block;
  color: #fff;
  position: relative;
}
.oper-area li .content .img-box {
  width: 100%;
  height: 100%;
  position: relative;
}
.oper-area li .content .img-box::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.oper-area li .content .img-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.oper-area li .content .expl-box {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 48px 24px;
}
.oper-area li .content .expl-box p:nth-child(2) {
  font-size: 18px;
  color: #fff;
  line-height: 1.3;
  word-break: keep-all;
  margin-top: 24px;
}
.oper-area li .content .expl-box p:first-child {
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  line-height: 1.3;
  word-break: keep-all;
  opacity: 0;
  white-space: pre-line;
}
.oper-area li:hover .content .expl-box p:first-child {
  opacity: 1;
  transition: 1.5s ease-in-out;
}

/*시설 안내*/
.fac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px 24px;
}
.fac-grid .item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}
.fac-grid .item.empty {
  grid-column: 1 / 5;
  text-align: center;
  padding: 48px 12px;
  font-size: 20px;
}
.fac-grid .item:hover .cover {
  transition: .2s linear;
  opacity: 1;
}
.fac-grid .item .img-box {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}
.fac-grid .item .img-box a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.fac-grid .item .img-box a::after {
  content: "";
  background-image: url('../images/icons/more_logo.png');
  background-size: 70px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .2s linear;
}
.fac-grid .item:hover .img-box a::after {
  opacity: 1;
  transition: .2s linear;
}

.fac-grid .item .img-box a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fac-grid .item .tit {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.fac-grid .item .tit .page-name {
  color: #fff;
  font-size: 24px;
  font-weight: 500;
}

/*오시는 길*/
.map-area {
  display: flex;
  align-items: center;
}
.map-area .map-box {
  flex: 1;
  position: relative;
  border-right: 1px solid var(--border-color);
  padding-right: 48px;
}
.map-area .map-box::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.map-area .map-box > div {
  width: calc(100% - 48px);
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}
.map-area .map-box .wrap_map {
  height: 100%;
}
.wrap_controllers.hide {
  display: none;
}
.map-area .info-box {
  flex: 1;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-area .info-box .center {
  display: flex;
  flex-direction: column;
}
.map-area .info-box .center > p {
  font-size: 42px;
  font-weight: 500;
  margin-bottom: 24px;
}

.map-area .info-box .center .box {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 48px;
}
.map-area .info-box .center a {
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-weight: 300;
  transition: .2s linear;
}
.map-area .info-box .center a > img {
  width: 22px;
  height: 22px;
  transition: .2s linear;
}
.map-area .info-box .center a:hover > img {
  transform: rotate(-45deg);
  transition: .2s linear;
}

/*갤러리*/
.gallery-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(33.3%, auto));
  overflow: hidden;
}
.gallery-grid .gallery-item {
  position: relative;
}
.gallery-grid .gallery-item:first-child {
  grid-row:  span 2;
}
.gallery-grid .gallery-item:not(:first-child) {
  grid-row:  span 1;
}
.gallery-grid .gallery-item:first-child .img-box {
  aspect-ratio: 4 / 6;
}
.gallery-grid .gallery-item:nth-child(4n) {
  grid-row:  span 2;
}
.gallery-grid .gallery-item:nth-child(4n) .img-box {
  aspect-ratio: 4 / 6;
}

.gallery-grid .gallery-item.empty {
  grid-column: 1 / 4 !important;
  text-align: center !important;
  padding: 48px 12px;
  font-size: 20px;
}
.gallery-grid .gallery-item:hover .cover {
  transition: .2s linear;
  opacity: 1;
}
.gallery-grid .gallery-item .img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.gallery-grid .gallery-item .img-box a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.gallery-grid .gallery-item .img-box a::after {
  content: "";
  background-image: url('../images/icons/more_logo.png');
  background-size: 70px auto;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: .2s linear;
}
.gallery-grid .gallery-item:hover .img-box a::after {
  opacity: 1;
  transition: .2s linear;
}
.gallery-grid .gallery-item .img-box a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*이용 규칙*/
.rule-area {
  display: flex;
  flex-direction: column;
  row-gap: 80px;
}
.rule-item > p {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 48px;
}
.rule-item ul {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
}
.rule-item ul li {
  display: flex;
  align-items: flex-start;
  column-gap: 150px;
  padding: 48px 24px;
  border-bottom: 1px solid var(--border-color);
}
.rule-item ul li:last-child {
  border-bottom: none;
}
.rule-item .num-tit {
  font-size: 20px;
  font-weight: 400;
  display: flex;
  align-items: center;
  column-gap: 12px;
  min-width:  300px;
}
.rule-item .num-tit > b {
  font-size: 38px;
  font-weight: 700;
  color: #999;
}
.rule-item .rule-list {
  display: inline-block;
  line-height: 1.3;
  white-space: pre-line;
  font-size: 20px;
  font-weight: 400;
  color: var(--sub-txt-color);
}
/* .rule-item .rule-list > p {
  font-size: 20px;
  font-weight: 400;
  color: var(--sub-txt-color);
  line-height: 1.3;
  text-indent: -10px;
  margin-left: 10px;
} */

/*문의하기*/
.contact-area {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.contact-area .expl-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.contact-area .expl-box span {
  display: inline-block;
  font-weight: 300;
  color: var(--sub-txt-color);
  text-align: center;
  word-break: keep-all;
  line-height: 1.3;
}
.contact-area .expl-box span:nth-child(2)::before {
  content: "*";
  font-weight: 700;
  color: #D83636;
  margin-right: 5px;
}
.contact-area .input-box {
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}
.contact-area .input-box .item {
  display: flex;
  align-items: center;
}
.contact-area .input-box .item > span {
  display: inline-block;
  min-width: 200px;
  font-size: 20px;
  font-weight: 300;
}
.contact-area .input-box .item > span::after {
  content: "*";
  font-weight: 700;
  color: #D83636;
  margin-left: 5px;
}
.contact-area .input-box .item input[type="text"] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0 24px;
}
.contact-area .input-box .item textarea {
  width: 100%;
  height: 200px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
}
.contact-area .terms-box {
  margin-top: 48px;
}
.contact-area .terms-box > label {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  cursor: pointer;
}
.contact-area .terms-box > label > input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid var(--border-color);
  margin: 0;
  margin-right: 10px;
}
.contact-area .terms-box > label > span {
  display: inline-block;
  font-size: 20px;
  font-weight: 300;
}
.contact-area .terms-box > label > span::after {
  content: "*";
  font-weight: 700;
  color: #D83636;
  margin-left: 5px;
}
.contact-area .terms-box textarea {
  width: 100%;
  height: 200px;
  line-height: 1.3;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  color: var(--sub-txt-color);
}

.btn-wrap {
  text-align: center;
  margin-top: 48px;
}
.btn-wrap button {
  width: 150px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  background-color: #000;
}
.btn-wrap button:hover {
  opacity: .8;;
}

/*공지사항*/
.search-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.search-box > span {
  display: inline-block;
  font-weight: 300;
}
.search-box > span > b {
  font-weight: 600;
  color: #5EB444;
}
.search-box .search {
  display: flex;
  align-items: center;
  column-gap: 24px;
  width: 250px;
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
}
.search-box .search > input[type="text"] {
  border: none;
  width: 100%;
}
.search-box .search button img {
  width: 18px;
  height: 18px;
}
.notice-tit {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 24px;
  margin-bottom: 80px;
}
.notice-tit .tit {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 48px;
}
.notice-tit .date {
  font-size: 24px;
  font-weight: 300;
  text-align: center;
  color: var(--sub-txt-color);
}
.other-post {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  padding: 24px 0;
}
.other-post > a {
  display: flex;
  align-items: center;
  column-gap: 48px;
  color: var(--sub-txt-color);
}
.other-post > a > span {
  display: inline-block;
  color: #000;
}
.other-post > a:hover {
  opacity: .8;
}