#header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10rem;

  /* lee */
  height: 12.8rem;
}

#header .logo>a {
  display: block;
  width: 20rem;
  height: 6rem;
  background: url(../images/logo.svg) no-repeat center center/cover;
}

#header .gnb>ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

#header .gnb>ul>li {
  position: relative;
}

#header .gnb>ul>li>a {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 10rem;
  padding: 0 2rem;

  /* lee */
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 12.8rem;
  white-space: nowrap;
}

#header .gnb>.m_util {
  display: none;
}

/* 헤더 유틸 */

#header .util>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

#header .util>ul>li {
  position: relative;
}

#header .util>ul>li~li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translate(0, -50%);
  width: 1px;
  height: 1.2rem;
  background: rgba(0, 0, 0, 0.3);
}

#header .util>ul>li>a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

#header .util>ul>li>a>span {
  order: 1;
  font-size: 1.4rem;
  line-height: 2rem;
}

/* 헤더 서브메뉴 */

#header .sub_menu {
  z-index: 9;
  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translate(-50%, 0);

  padding: 0.8rem 0;

  box-shadow: 0 0px 1.6rem 0.2rem rgba(0, 0, 0, 0.1);

  border-radius: 0.8rem;
  background: var(--white-color);

  border: 1px solid var(--primary-color);

  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

#header .sub_menu>li>a {
  display: block;
  padding: 0 3.2rem;
  text-align: center;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 4rem;
  color: #666;
  transition: 0.5s;
}

#header .m_btn {
  display: none;
}

@media (min-width: 769px) {
  #header .sub_menu>li>a:hover {
    color: var(--primary-color);
    transition: 0.5s;
  }

  #header .gnb>ul>li:hover .sub_menu {
    top: 9.2rem;
    opacity: 1;
    visibility: visible;
    transition: 0.5s;
  }
}

@media (max-width: 1280px) {
  #header .gnb>ul>li>a {
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  #header {
    z-index: 99999;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 1px solid var(--white-color);
    background: var(--white-color);
  }

  #header.on {
    border-bottom: 1px solid var(--line-color);
  }

  #header .inner {
    height: 8rem;
  }

  #header .logo {
    z-index: 9999;
    position: relative;
  }

  #header .logo>a {
    width: 18rem;
    height: 5rem;
  }

  #header .m_btn {
    z-index: 9999;
    position: relative;
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    transition: 0.3s;
  }

  #header .m_btn>button {
    display: block;
    width: 2.4rem;
    height: 2.4rem;
    text-indent: -9999px;
  }

  #header .m_btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--body-color);
  }

  #header .m_btn::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--body-color);
  }

  #header .m_btn>button::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--body-color);
  }

  #header .m_btn>button::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: var(--body-color);
  }

  #header .m_btn.on {
    transform: rotate(135deg);
    transition: 0.3s;
  }

  #header .gnb>.m_util {
    display: block;
    order: -1;
    background: var(--secbg-color);
  }

  #header .gnb>.m_util>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #header .gnb>.m_util>ul>* {
    flex: 1;
  }

  #header .gnb>.m_util>ul>li>a {
    padding: 1.4rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
  }

  #header .gnb {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white-color);

    display: flex;
    flex-direction: column;
    padding: 8rem 0 0 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s ease-in-out;
  }

  #header .gnb.on {
    opacity: 1;
    visibility: visible;
    transition: 0.5s ease-in-out;
  }

  #header .gnb>ul {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    overflow: auto;
    gap: 0;
  }

  #header .gnb>ul>li {
    width: 100%;
  }

  #header .gnb>ul>li>a {
    position: relative;
    font-size: 16px;
    line-height: 56px;
    padding: 0 1.6rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  #header .gnb>ul>li>a::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 2rem;
    width: 8px;
    height: 14px;
    transform: translate(0, -50%) rotate(90deg);
    background: url(../images/slide_arrow_btn_b.svg) no-repeat center center;
    transition: 0.3s;
  }

  #header .gnb>ul>li:first-child>a::before {
    transform: translate(0, -50%) rotate(0);
  }

  #header .gnb>ul>li.on>a {
    font-weight: 700;
  }

  #header .gnb>ul>li.on>a::before {
    transform: translate(0, -50%) rotate(-90deg);
    transition: 0.3s;
  }

  #header .sub_menu {
    position: static;
    display: none;
    box-shadow: none;
    transform: translate(0, 0);
    padding: 0;
    border-radius: 0;
    border: none;
    /* 
    max-height: 168px;
    overflow: auto; */

    opacity: 1;
    visibility: visible;
    transition: none;

    background: var(--secbg-color);
  }

  #header .sub_menu>li>a {
    padding: 0 1.6rem;
    font-size: 14px;
    line-height: 48px;
    text-align: left;
  }

  #header .util {
    display: none;
  }
}

/* 메인 비주얼 시작 */
#main_visual {}

#main_visual .inner {
  display: flex;
  align-items: stretch;
  gap: 1.5rem;

  /* lee */
  max-width: 165rem;
}

#main_visual .inner .left {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
}

#main_visual .main_visual_left_slide .itm {
  position: relative;
  height: 655px;
}

/* bg 추가 - lee 250722 */
#main_visual .main_visual_left_slide .itm::before {
  content: "";
  position: absolute;
  inset: 0 0 0 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.75), transparent);
}

/* bg 추가 - lee 250722  */

#main_visual .main_visual_left_slide .itm .slg {
  z-index: 9;
  position: absolute;
  top: 50%;
  left: 8rem;
  transform: translate(0, -50%);
}

#main_visual .main_visual_left_slide .itm .slg strong {
  display: block;
  margin: 0 0 2.4rem 0;

  font-size: 4.8rem;
  font-weight: 100;
  line-height: 5.6rem;
  color: var(--white-color);
}

#main_visual .main_visual_left_slide .itm .slg strong span {
  font-weight: 700;
}

#main_visual .main_visual_left_slide .itm .slg strong .point {
  color: var(--primary-color);
}

#main_visual .main_visual_left_slide .itm .slg p {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 2.6rem;
  color: var(--white-color);
}

#main_visual .main_visual_left_slide .itm01 {
  background: url(../images/main_visual01.jpg) no-repeat center center/cover;
}

#main_visual .main_visual_left_slide .itm02 {
  background: url(../images/main_visual02.jpg) no-repeat center center/cover;
}

#main_visual .main_visual_left_slide .itm03 {
  background: url(../images/main_visual03.jpg) no-repeat center center/cover;
}

#main_visual .inner .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;

  flex: 1 0 28rem;
}

#main_visual .inner .right .top {
  background: var(--secondary-color);
}

#main_visual .inner .right .bottom {
  background: var(--primary-color);
}

#main_visual .inner .right_itm {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.4rem 0;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius);
}

#main_visual .inner .right_itm .img_box {
  margin: 0 0 2.4rem 0;
}

#main_visual .inner .right_itm .txt_box strong {
  display: block;
  margin: 0 0 1.6rem 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.8rem;
  color: var(--white-color);

  text-shadow: 0.4rem 0.4rem 1.6rem rgba(0, 0, 0, 0.2);
}

#main_visual .inner .right_itm .txt_box strong span {
  font-weight: 700;
}

#main_visual .inner .right_itm .btn_wrap>a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;

  width: 21rem;
  height: 5.6rem;

  border-radius: var(--border-radius);
}

#main_visual .inner .right_itm .btn_wrap>a>span {
  order: 1;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.9rem;
  color: var(--white-color);
}

#main_visual .inner .right .top .btn_wrap>a {
  background: var(--primary-color);
  transition: 0.5s;
}

#main_visual .inner .right .top .btn_wrap>a:hover {
  background: #026523;
  transition: 0.5s;
}

#main_visual .inner .right .bottom .btn_wrap>a {
  background: var(--secondary-color);
  transition: 0.5s;
}

#main_visual .inner .right .bottom .btn_wrap>a:hover {
  background: #94c03c;
  transition: 0.5s;
}

@media (max-width: 1024px) {
  #main_visual .main_visual_left_slide .itm {
    height: 40rem;
  }

  #main_visual .main_visual_left_slide .itm .slg {
    left: 4rem;
  }

  #main_visual .inner {
    flex-direction: column;
  }

  #main_visual .inner .right {
    flex-direction: unset;
    flex: unset;
  }
}

@media (max-width: 480px) {
  #main_visual .main_visual_left_slide .itm .slg {
    left: 50%;
    width: 100%;
    padding: 0 1.6rem;
    transform: translate(-50%, -50%);
  }

  #main_visual .main_visual_left_slide .itm .slg strong {
    font-size: 3.2rem;
    line-height: 4rem;
    text-align: center;
  }

  #main_visual .main_visual_left_slide .itm .slg p {
    text-align: center;
  }

  #main_visual .inner .right {
    flex-direction: column;
  }

  #main_visual .main_visual_left_slide .itm::before {
    background: rgba(0, 0, 0, 0.5);
  }
}

/* 메인 비주얼 끝 */

/* 메인 일반체험 프로그램 섹션 시작 */
#main_basic_pro {
  overflow: hidden;
}

#main_basic_pro .tit .btn_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#main_basic_pro .tit .btn_wrap .main_basic_pro_nav {
  display: none;
  position: relative;
}

#main_basic_pro .tit .btn_wrap .main_basic_pro_nav::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translate(0, -50%);
  height: 2.4rem;
  width: 1px;
  background: var(--line-color);
}

#main_basic_pro .main_basic_pro_slide {
  padding: 1.6rem;
}

#main_basic_pro .main_basic_pro_slide .itm {
  box-shadow: var(--box-shadow);
  transition: 0.5s;
}

#main_basic_pro .main_basic_pro_slide .txt_box {
  padding: 2.4rem;
}

#main_basic_pro .main_basic_pro_slide .itm_more_btn {
  position: absolute;
  top: 0;
  right: 2.4rem;
  opacity: 0;
  transition: 0.5s;
}

#main_basic_pro .main_basic_pro_slide .itm:hover {
  box-shadow: var(--box-shadow-hover);
  transition: 0.5s;
}

#main_basic_pro .main_basic_pro_slide .itm:hover .itm_more_btn {
  top: 2.4rem;
  opacity: 1;
  transition: 0.5s;
}

@media(max-width: 1730px) {
  #main_basic_pro .tit .btn_wrap .main_basic_pro_nav {
    display: flex;
  }
}

@media (max-width: 480px) {
  #main_basic_pro .tit .btn_wrap .main_basic_pro_nav {
    display: none;
  }

  #main_basic_pro .main_basic_pro_slide .itm_more_btn {
    opacity: 1;
    top: unset;
    bottom: 2.4rem;
  }

  #main_basic_pro .main_basic_pro_slide .itm:hover .itm_more_btn {
    top: unset;
  }
}

/* 메인 일반체험 프로그램 섹션 끝 */
/* 메인 특수목적형 체험 프로그램 섹션 시작 */
#main_pro {
  background: var(--secbg-color);
}

#main_pro .itm {
  border-radius: 0;
}

#main_pro .itm .img_box {
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: var(--border-radius);
}

#main_pro .itm .txt_box {
  padding: 1.6rem 0 0 0;
}

#main_pro .itm .itm_sub_tit {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  margin: 0 0 1.6rem 0;
  border-radius: 1.2rem;
  background: var(--primary-color);
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 700;
  color: var(--white-color);
}

#main_pro .itm .itm_more_btn {
  position: absolute;
  top: 0;
  right: 2.4rem;
  opacity: 0;
  transition: 0.5s;
}

#main_pro .itm:hover .itm_more_btn {
  top: 2.4rem;
  opacity: 1;
  transition: 0.5s;
}

@media (max-width: 480px) {
  #main_pro .itm .itm_more_btn {
    top: unset;
    bottom: 2.4rem;
    right: 0;
    opacity: 1;
  }

  #main_pro .itm:hover .itm_more_btn {
    top: unset;
  }

  #main_pro .itm .itm_more_btn>button {
    background: var(--white-color) url(../images/slide_more_btn_p.svg) no-repeat center center;
  }
}

/* 메인 특수목적형 체험 프로그램 섹션 끝 */
/* 메인 체험 농장 섹션 시작 */
#main_map {
  overflow: hidden;
}

#main_map .inner {
  margin: -1.6rem auto 0 auto;
  display: flex;
  gap: 3rem;
}

#main_map .inner>* {
  flex: 1;
}

#main_map .inner .left {
  width: 100%;
  padding: 1.6rem 0 0 0;
}

#main_map .inner .left .map_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.4rem 0;
  height: 100%;
  background: var(--secbg-color);
  border-radius: var(--border-radius);
}

#main_map .inner .left .map_wrap .map_img_box {
  position: relative;
  margin: 0 auto;
  max-width: 60rem;
}

#main_map .inner .left .map_wrap .map_link_list_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn01 {
  top: 79%;
  left: 63%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn02 {
  top: 11%;
  left: 18.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn03 {
  top: 68%;
  left: 40.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn04 {
  top: 48%;
  left: 75.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn05 {
  top: 34%;
  left: 71%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn06 {
  top: 65%;
  left: 30%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn07 {
  top: 40%;
  left: 17.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn08 {
  top: 40%;
  left: 86.4%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn09 {
  top: 40.5%;
  left: 40%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn10 {
  top: 53.5%;
  left: 32%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn11 {
  top: 31%;
  left: 53.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn12 {
  top: 52.5%;
  left: 64.5%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn13 {
  top: 88%;
  left: 43%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn14 {
  top: 59%;
  left: 10.4%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn15 {
  top: 49%;
  left: 48.4%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn16 {
  top: 24.5%;
  left: 7.7%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn17 {
  top: 27%;
  left: 32%;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn button {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-indent: -9999px;
  border-radius: 50%;
  border: 1px solid var(--primary-color);
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary-color);
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--primary-color);
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--primary-color);
  opacity: 0.1;
  animation: list_btn 5s infinite ease-in-out;
}

@keyframes list_btn {
  0% {
    width: 0rem;
    height: 0rem;
  }

  50% {
    width: 2.4rem;
    height: 2.4rem;
  }

  100% {
    width: 0rem;
    height: 0rem;
  }
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn.on button {
  border: none;
  background: #00983320;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn.on button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  background: transparent;

  border-radius: 50%;
  border: 1px solid rgba(0, 152, 51, 0.8);

  animation: list_btn_8rem 3s infinite ease-in-out;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn.on::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 50%;
  border: 1px solid rgba(0, 152, 51, 0.8);

  animation: list_btn_12rem 3s infinite ease-in-out;
}

#main_map .inner .left .map_wrap .map_link_list_btn .list_btn.on::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  border-radius: 50%;
  border: 1px solid rgba(0, 152, 51, 0.8);

  animation: list_btn_16rem 3s infinite ease-in-out;
}

@keyframes list_btn_8rem {
  0% {
    width: 0rem;
    height: 0rem;
    opacity: 1;
  }

  90% {
    width: 8rem;
    height: 8rem;
  }

  100% {
    opacity: 0;
  }
}

@keyframes list_btn_12rem {
  0% {
    width: 0rem;
    height: 0rem;
    opacity: 1;
  }

  90% {
    width: 12rem;
    height: 12rem;
  }

  100% {
    opacity: 0;
  }
}

@keyframes list_btn_16rem {
  0% {
    width: 0rem;
    height: 0rem;
    opacity: 1;
  }

  90% {
    width: 16rem;
    height: 16rem;
  }

  100% {
    opacity: 0;
  }
}

#main_map .inner .left .map_list_hover {
  z-index: 9;
  position: absolute;

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

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;

  padding: 1.6rem 2.4rem;

  box-shadow: var(--box-shadow-hover);
  white-space: nowrap;

  border: 1px solid var(--primary-color);
  border-radius: 0.8rem;
  background: var(--white-color);

  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

#main_map .inner .left .list_btn:hover .map_list_hover {
  top: 2.8rem;
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

#main_map .inner .left .map_list_hover>li {
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 300;
}

#main_map .inner .right {
  overflow: hidden;
}

#main_map .inner .right .map_link_itm_list_slide_wrap .map_link_itm_list_slide {
  padding: 1.6rem;
}

#main_map .inner .right .map_link_itm_list .map_link_itm {
  animation: map_link_itm_list_on 1s linear;
}

#main_map .inner .right .map_link_itm_list .map_link_itm.on {}

@keyframes map_link_itm_list_on {
  0% {
    opacity: 0;
    transform: translate(0, 2.4rem);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

#main_map .inner .right .map_link_itm_list .map_link_itm .txt_box {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  box-shadow: var(--box-shadow);
  border-radius: var(--border-radius);
  transition: 0.5s;
  height: 100%;
}

#main_map .inner .right .map_link_itm_list .map_link_itm .num {
  margin: 0 0 1.6rem 0;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 2.8rem;
  color: var(--primary-color);
}

#main_map .inner .right .map_link_itm_list .map_link_itm .img_box {
  margin: 0 0 1.6rem 0;
  border-radius: 1.6rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

#main_map .inner .right .map_link_itm_list .map_link_itm .map_link_subject {
  margin: 0 0 1.6rem 0;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2rem;
  word-break: break-word;

  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#main_map .inner .right .map_link_itm_list .map_link_itm .map_link_pro {
  margin: 0 0 2.4rem 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;

  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#main_map .inner .right .map_link_itm_list .map_link_itm .map_link_btn {
  padding: 1.5rem 0;
  margin: auto 0 0 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius);
  transition: 0.5s;
}

#main_map .inner .right .map_link_itm_list .map_link_itm .txt_box:hover .map_link_btn {
  color: var(--white-color);
  background: var(--primary-color);
  transition: 0.5s;
}

#main_map .inner .right .map_link_itm_list .map_link_itm .txt_box:hover {
  box-shadow: var(--box-shadow-hover);
  transition: 0.5s;
}



@media (max-width: 1024px) {
  #main_map .inner {
    flex-direction: column;
  }

  #main_map .inner .right .map_link_itm_list_slide_wrap .map_link_itm_list_slide {
    padding: 0;
    overflow: visible;
  }

  #main_map .inner .right {
    flex: unset;
    overflow: visible;
  }

  #main_map .inner .right .map_link_itm_list .map_link_itm.on {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #main_map .inner .right .map_link_itm_list .map_link_itm.on {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  #main_map .inner .right .map_link_itm_list .map_link_itm .map_link_pro {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}

@media (max-width: 480px) {
  #main_map .inner .left .map_wrap {
    padding: 1.6rem;
  }

  #main_map .inner .right .map_link_itm_list .map_link_itm.on {
    grid-template-columns: repeat(2, 1fr);
  }

  #main_map .inner .right .map_link_itm_list .map_link_itm .map_link_btn {
    padding: 1rem 0;
  }

  #main_map .inner .left .map_wrap .map_link_list_btn .list_btn {
    width: 2rem;
    height: 2rem;
  }

  @keyframes list_btn {
    0% {
      width: 0rem;
      height: 0rem;
    }

    50% {
      width: 2rem;
      height: 2rem;
    }

    100% {
      width: 0rem;
      height: 0rem;
    }
  }

  #main_map .inner .right .map_link_itm_list .map_link_itm .map_link_pro {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
}

/* 메인 체험 농장 섹션 끝 */

/* 메인 알림 섹션 시작 */
#main_anmt {
  background: var(--secbg-color);
}

#main_anmt .w_inner {
  display: flex;
  align-items: center;
}

#main_anmt .w_inner>* {
  flex: 1;
  padding: 1.6rem;
  overflow: hidden;
}

#main_anmt .main_anmt_slide_wrap {
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: 0.5s;
}

#main_anmt .main_anmt_slide_wrap:hover {
  box-shadow: var(--box-shadow-hover);
  transition: 0.5s;
}

#main_anmt .main_anmt_slide_wrap>.swiper {
  overflow: visible;
}

#main_anmt .itm {
  display: flex;
  align-items: stretch;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: 0.5s;
}

#main_anmt .itm .img_box {
  border-radius: 0 3.2rem 3.2rem 0;
}

#main_anmt .itm .txt_box {
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: end;

  padding: 2.4rem;
  border-radius: 2.4rem 0 0 2.4rem;
  background: var(--white-color);
}

#main_anmt .itm .txt_box>span {
  display: inline-block;
  margin: 0 0 0.8rem 0;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4rem;
  color: var(--primary-color);
}

#main_anmt .arrow {
  z-index: 9;
  position: absolute;
  top: 2.4rem;
  right: -2.4rem;
  width: 50%;
}

#main_anmt .arrow .arrow_prev {
  position: absolute;
  top: 0;
  left: 0;
}

#main_anmt .arrow .arrow_next {
  position: absolute;
  top: 0;
  left: 4.8rem;
}

#main_anmt .main_anmt_slide_wrap .itm_more_btn {
  z-index: 9;
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
}

#main_anmt .main_anmt_slide_wrap .itm_more_btn>a {
  transition: 0.5s;
}

#main_anmt .main_anmt_slide_wrap .itm_more_btn:hover>a {
  transition: 0.5s;
  background: var(--primary-color) url(../images/slide_more_btn_w.svg) no-repeat center center;
}

@media (max-width: 768px) {
  #main_anmt .w_inner {
    display: block;
  }
}

@media (max-width: 480px) {
  #main_anmt .itm {
    flex-direction: column;
  }

  #main_anmt .itm .img_box {
    border-radius: 0;
  }

  #main_anmt .itm .txt_box {
    position: static;
    border-radius: 0;
    width: 100%;
  }
}

/* 메인 알림 섹션 끝 */

/* 메인 커뮤니티 섹션 시작 */
#main_community {}

#main_community .main_community_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

#main_community .main_community_wrap>* {
  flex: 1;
}

#main_community .main_community_wrap .itm {
  box-shadow: var(--box-shadow);
  transition: 0.5s;
}

#main_community .main_community_wrap .itm>a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  aspect-ratio: 1;
}

#main_community .main_community_wrap .itm:hover {
  box-shadow: var(--box-shadow-hover);
  transition: 0.5s;
}

#main_community .main_community_wrap .itm .img_box {
  position: relative;
  margin: 0 0 4rem 0;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background: var(--primary-color);
}

#main_community .main_community_wrap .itm .img_box svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#main_community .main_community_wrap .itm .txt_box {
  text-align: center;
}

@media (max-width: 1024px) {
  #main_community .main_community_wrap .itm .img_box {
    margin: 0 0 2.4rem 0;
  }
}

@media (max-width: 768px) {
  #main_community .main_community_wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  #main_community .main_community_wrap {
    /* grid-template-columns: repeat(1, 1fr); */
  }

  #main_community .main_community_wrap .itm>a {
    padding: 1.6rem;
  }

  #main_community .main_community_wrap .itm .img_box {
    width: 6.4rem;
    height: 6.4rem;
    margin: 0 0 1.6rem 0;
  }

  #main_community .main_community_wrap .itm .img_box svg {
    width: 30%;
  }

  #main_community .main_community_wrap .itm .txt_box .itm_desc br {
    display: none;
  }
}

/* 메인 커뮤니티 섹션 끝 */
/* 푸터 시작 */
#footer {
  padding: 8rem 0;
  color: var(--white-color);
  background: var(--footerbg-color);
}

#footer .footer_top {
  padding: 0 0 4rem 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

#footer .footer_top .txt_box strong {
  display: block;
  margin: 0 0 3.2rem 0;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 3.2rem;
}

#footer .footer_top .txt_box p {
  margin: 0 0 2.4rem 0;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.4rem;
}

#footer .footer_top address>.l_list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#footer .footer_top address>.l_list>li {
  display: flex;
  gap: 1.6rem;
  align-items: center;
}

#footer .footer_top address>.l_list>li>span {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.4rem;
  font-weight: 700;
}

#footer .footer_top address>.l_list>li>span~span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -8px;
  transform: translate(0, -50%);
  width: 1px;
  height: 0.8rem;
  background: rgba(255, 255, 255, 0.2);
}

#footer .footer_top address>.l_list>li>span:last-child {
  font-weight: 300;
}

#footer .footer_top .right .ft_nav>ul {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4rem;
}

#footer .footer_top .right .ft_nav>ul>li {
  position: relative;
}

#footer .footer_top .right .ft_nav>ul>li~li::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: -2rem;
  transform: translate(0, 0);
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
}

#footer .footer_top .right .ft_nav>ul>li>a {
  display: block;
  margin: 0 0 1.6rem 0;
  font-weight: 700;
}

#footer .footer_top .right .ft_nav .sub_menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

#footer .footer_top .right .ft_nav .sub_menu>li>a {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4rem;
  color: rgba(255, 255, 255, 0.6);
}

#footer .footer_bottom {
  padding: 4rem 0 0 0;

  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

#footer .footer_bottom .left .l_list {
  display: flex;
  align-items: center;
  gap: 4rem;
}

#footer .footer_bottom .left .l_list>li {
  position: relative;
}

#footer .footer_bottom .left .l_list>li~li::before {
  content: "";
  position: absolute;
  top: 0.2rem;
  left: -2rem;
  transform: translate(0, 0);
  width: 1px;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.2);
}

#footer .footer_bottom .left .l_list>li>a {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.6rem;
}

#footer .footer_bottom .left .l_list>.b>a {
  font-weight: 700;
}

#footer .footer_bottom .right .copy {
  margin: 0 0 0.4rem 0;
  font-size: 1.2rem;
  line-height: 1.2rem;
  font-weight: 700;
}

#footer .footer_bottom .right .customer {
  text-align: right;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  #footer .footer_top .right {
    display: none;
  }
}

@media (max-width: 480px) {
  #footer {
    padding: 4rem 0;
  }

  #footer .footer_top .txt_box strong {
    font-size: 2.4rem;
    line-height: 2.4rem;
    margin: 0 0 1.6rem 0;
  }

  #footer .footer_top .txt_box p {
    margin: 0 0 1.6rem 0;
  }

  #footer .footer_bottom .left .l_list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  #footer .footer_top address>.l_list>li {
    flex-direction: column;
    align-items: baseline;
    gap: 0;
  }

  #footer .footer_top address>.l_list>li>span {
    line-height: 2.2rem;
  }

  #footer .footer_top address>.l_list>li>span~span::before {
    display: none;
  }
}

/* 푸터 끝 */

/* 쇼핑몰 헤더 시작 */
.shop_header .util {}

.shop_header .util>ul>li {
  position: relative;
  cursor: pointer;

  height: 12.8rem;
}

.shop_header .util>ul>li>a,
.shop_header .util>ul>li .icon_box {
  height: 100%;
}

.shop_header .util>ul>li>a>svg,
.shop_header .util>ul>li .icon_box svg {
  height: 100%;
}

.shop_header .util .util_sub_menu {
  z-index: 9;

  position: absolute;
  top: 12rem;
  left: 50%;
  transform: translate(-50%, 0);
  opacity: 0;
  visibility: hidden;

  padding: 0.8rem 0;
  box-shadow: 0 0px 1.6rem 0.2rem rgba(0, 0, 0, 0.1);
  border-radius: 0.8rem;
  background: var(--white-color);
  border: 1px solid var(--primary-color);

  transition: 0.5s;
}

.shop_header .util>ul>li:hover .util_sub_menu {
  top: 9.2rem;
  opacity: 1;
  visibility: visible;

  transition: 0.5s;
}

.shop_header .util_sub_menu>li>a {
  display: block;
  padding: 0 3.2rem;
  text-align: center;
  white-space: nowrap;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 4rem;
  color: #666;
  transition: 0.5s;
}

.shop_header .util_sub_menu>li:hover>a {
  color: var(--primary-color);
  transition: 0.5s;
}

#header.shop_header .util>ul>li~li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translate(0, -50%);
  width: 1px;
  height: 2.4rem;
  background: rgba(0, 0, 0, 0.2);
}

@media(max-width: 768px) {
  #header.shop_header .m_util {
    background: transparent;
  }

  .shop_header .m_util>.top {
    background: rgba(0, 152, 51, 1);
  }

  .shop_header .m_util>.top>ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;
  }

  .shop_header .m_util>.top>ul>* {
    flex: 1;
  }

  .shop_header .m_util>.top>ul>li>a {
    position: relative;
    display: block;
    font-size: 2rem;
    line-height: 4.8rem;
    font-weight: 500;
    color: var(--white-color);
    text-align: center;
  }

  .shop_header .m_util>.top>ul>li~li>a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    width: 1px;
    height: 2rem;
    opacity: 0.2;
    background: var(--white-color);
  }

  .shop_header .m_util>.bottom>ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .shop_header .m_util>.bottom>ul>* {
    flex: 1;
  }

  .shop_header .m_util>.bottom>ul>li>a {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.6rem;

    padding: 1.6rem 0;
  }

  .shop_header .m_util>.bottom>ul>li>a>span {
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 300;
  }

  .shop_header .m_util>.bottom>ul>li>a>svg {
    order: -1;
  }
}


/* 쇼핑몰 헤더 끝 */

/* shop main_visual */
#shop_main_visual {
  overflow: hidden;
  position: relative;
}

#shop_main_visual .shop_main_visual_slide .itm {
  position: relative;
  height: 56rem;
  max-width: 165rem;
}

#shop_main_visual .shop_main_visual_slide .itm img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

#shop_main_visual .shop_main_visual_slide_arrow {
  width: 8rem;
  height: 8rem;
  top: 50%;
  transform: translate(0, -50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  color: var(--white-color);
  transition: 0.5s;
  margin: 0;
}

#shop_main_visual .shop_main_visual_slide_arrow::after {
  font-size: 2.4rem;
}

#shop_main_visual .shop_main_visual_slide_next {
  right: -8rem;
  transition: 0.5s;
}

#shop_main_visual:hover .shop_main_visual_slide_next {
  right: 2.4rem;
  transition: 0.5s;
}

#shop_main_visual .shop_main_visual_slide_prev {
  left: -8rem;
  transition: 0.5s;
}

#shop_main_visual:hover .shop_main_visual_slide_prev {
  left: 2.4rem;
  transition: 0.5s;
}

#shop_main_visual .shop_main_visual_slide_nav .swiper-pagination-bullet-active {
  background: var(--white-color);
}

/* shop_tab_wrap */
.shop_itm_link {
  padding: 4rem 0 0 0;
}

.shop_itm_link>ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}

.shop_itm_link>ul>li .icon_box {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 12rem;
  height: 12rem;
  border-radius: var(--border-radius);
  background: var(--secbg-color);
  margin: 0 auto 1.6rem auto;
  transition: 0.5s;
}

.shop_itm_link>ul>li .icon_box>svg {
  width: 5.6rem;
  height: 5.6rem;
}

.shop_itm_link>ul>li .icon_box>svg>path {}

.shop_itm_link>ul>li .txt_box>p {
  text-align: center;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 700;
  color: var(--body-color);
}

/* shop_itm */
.shop_itm_slide_wrap {
  overflow: hidden;
}

.shop_itm_slide_wrap .btn_wrap {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.shop_itm_slide_wrap .btn_wrap .arrow {
  position: relative;
}

.shop_itm_slide_wrap .btn_wrap .arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -2rem;
  transform: translate(0, -50%);
  height: 2.4rem;
  width: 1px;
  background: var(--line-color);
}

.shop_itm_slide_wrap02,
.shop_itm_slide_wrap04 {
  background: var(--secbg-color);
}

.shop_itm_slide_wrap02 .btn_wrap .arrow .arrow_btn,
.shop_itm_slide_wrap04 .btn_wrap .arrow .arrow_btn {
  background-color: #f1f1f1;
}

.shop_itm>a {}

.shop_itm>a>.img_box {
  margin: 0 0 1.6rem 0;
}

.shop_itm>a>.img_box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--border-radius);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.shop_itm_slide_wrap .itm_slide_nav {
  position: static;
  margin: 2.4rem 0 0 0;
}

.shop_itm_slide_wrap .itm_slide_nav .swiper-pagination-bullet-active {
  background: var(--primary-color);
}

.shop_itm .product_name {
  margin: 0 0 0.8rem 0;
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 700;
}

.shop_itm .product_desc {
  padding: 0 0 1.6rem 0;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 300;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.shop_itm .price_box {
  padding: 1.6rem 0 0 0;
}

.shop_itm .product_price {
  font-size: 2rem;
  line-height: 2rem;
  font-weight: 500;
}

@media(min-width: 1025px) {
  .shop_itm_link>ul>li:hover .icon_box {
    box-shadow: var(--box-shadow);
    transform: translate(0, -4px);
    background: transparent;
    transition: 0.5s;
  }
}

@media(max-width: 1024px) {
  #shop_main_visual .shop_main_visual_slide .itm {
    height: 40rem;
  }
}

@media(max-width: 768px) {
  #shop_main_visual .shop_main_visual_slide .itm {
    height: 32rem;
  }

  .shop_itm_link>ul {
    gap: 1.6rem;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media(max-width: 480px) {
  #shop_main_visual .shop_main_visual_slide .itm .slg {
    padding: 0 1.6rem;
  }

  #shop_main_visual .shop_main_visual_slide .itm .slg strong {
    font-size: 3.2rem;
    line-height: 4rem;
    text-align: center;
  }

  .shop_itm_link {
    padding: 4rem 0 0 0;
  }

  .shop_itm_link>ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem 1.6rem;
    overflow-y: hidden;
  }

  .shop_itm_link>ul>li .icon_box {
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
  }

  .shop_itm_slide_wrap .btn_wrap .arrow::before {
    height: 1.6rem;
  }
}