@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+KR&family=Nanum+Gothic&display=swap");
:root {
  --main-font: "IBM Plex Sans KR", sans-serif;
  --sub-font: "Nanum Gothic", sans-serif;
}

body {
  font-family: var(--main-font);
  font-family: var(--sub-font);
}

a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
}

.inner {
  max-width: 1600px;
  width: 95%;
  margin: 0 auto;
  position: relative;
}

#top_menu {
  position: fixed;
  width: 100%;
  background: rgba(52, 89, 46, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
  left: 0;
  z-index: 999;
  transition: all 0.4s ease-in-out;
  border: 1px solid #e1e1e1;
}
#top_menu:hover {
  background: #EDE7D9;
}
#top_menu #top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_menu .inner {
  padding: 15px 0;
}
#top_menu h1 {
  font-size: 0;
  width: 8%;
}
#top_menu h1 img {
  width: 100%;
}
#top_menu #gnb {
  width: 65%;
}
#top_menu #gnb .title_wrap {
  display: flex;
  justify-content: space-between;
  white-space: nowrap;
}
#top_menu #gnb .title_wrap .title {
  position: relative;
  color: #4A3B2E;
  font-size: 1.2rem;
  font-weight: bold;
}
#top_menu #gnb .title_wrap .title:hover {
  color: #1F2D1E;
  font-weight: bold;
  transition: all 0.2s ease-in-out;
}
#top_menu #gnb .title_wrap .title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px; /* 텍스트 아래 여백 조정 */
  width: 100%;
  height: 2px; /* 밑줄 두께 */
  background-color: #924f08; /* 밑줄 색상 */
  opacity: 0; /* 기본 상태에서는 숨김 */
  transition: opacity 0.3s ease-in-out;
}
#top_menu #gnb .title_wrap .title:hover::after {
  opacity: 1; /* 호버 시 밑줄 보이게 */
}
#top_menu #gnb .title_wrap .title > a {
  display: inline;
  padding-bottom: 50px;
}
#top_menu #gnb .title_wrap .sub {
  border-radius: 0 0 10px 10px;
  width: 9%;
  z-index: 1;
  position: absolute;
  top: 50px;
  padding: 10px 0;
  margin-left: -10px;
  visibility: hidden;
  white-space: nowrap;
}
#top_menu #gnb .title_wrap .sub ul {
  display: flex;
  flex-direction: column;
}
#top_menu #gnb .title_wrap .sub li {
  font-size: 1rem;
  line-height: 250%;
  color: #2B3A2B;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  font-weight: bold;
}
#top_menu #gnb .title_wrap .sub li:hover {
  color: #5C5045;
}
#top_menu #gnb:hover .title_wrap .sub {
  visibility: visible;
}
#top_menu #gnb .popup {
  visibility: hidden;
  position: absolute;
  width: 100%;
  height: 450px;
  background: #EDE7D9;
  border-radius: 0 0 20px 20px;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}
#top_menu #gnb:hover .popup {
  visibility: visible;
}
#top_menu .top_right {
  width: 13%;
  vertical-align: baseline;
}
#top_menu .top_right #search {
  display: inline-block;
  font-size: 0;
}
#top_menu .top_right #search input {
  border: none;
  background: none;
  border-bottom: 2px solid #222222;
  color: #222222;
  margin-top: 7px;
  width: 88%;
  margin-right: 2%;
  outline: none;
}
#top_menu .top_right #search a {
  width: 10%;
}
#top_menu .top_right #search img {
  width: 100%;
  vertical-align: -4px;
}

#main {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#main .pages {
  position: absolute;
  top: 300px;
  right: 30px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#main .pages span {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
#main .pages span:hover {
  cursor: pointer;
}
#main .pages .swiper-pagination-bullet-active {
  background-color: #4F8C32;
}
#main #top_icon {
  position: fixed;
  bottom: 50px;
  right: 40px;
  z-index: 1;
  display: block;
  padding: 15px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  width: 1.5%;
}
#main #top_icon img {
  width: 100%;
}
#main #main_view {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
#main .item {
  width: 200px;
  height: 300px;
  list-style-type: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  box-shadow: 0 20px 30px rgba(255, 255, 255, 0.3) inset;
  transition: transform 0.1s, left 0.75s, top 0.75s, width 0.75s, height 0.75s;
}
#main .item:nth-child(1) {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
}
#main .item:nth-child(2) {
  left: calc(50% + 220px);
}
#main .item:nth-child(3) {
  left: calc(50% + 440px);
}
#main .content {
  width: 40%;
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  font: 400 0.85rem helvetica, sans-serif;
  color: white;
  text-shadow: 0 3px 8px rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: none;
}
#main .content .title {
  font-family: --main-font;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  word-break: keep-all;
}
#main .item:nth-of-type(1) .content {
  display: block;
  animation: show 0.75s ease-in-out 0.3s forwards;
}
@keyframes show {
  0% {
    filter: blur(5px);
    transform: translateY(calc(-50% + 75px));
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
#main .nav {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#main .nav .btn {
  background-color: rgba(255, 255, 255, 0.5);
  color: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(0, 0, 0, 0.6);
  margin: 0 0.25rem;
  padding: 0.75rem;
  border-radius: 50%;
  cursor: pointer;
}
#main .nav .btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
#main .quick_menu {
  position: absolute;
  bottom: 1%;
  left: 5%;
  z-index: 999;
}
#main .quick_menu ul {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#main .quick_menu li {
  width: 8vw; /* 뷰포트 너비의 10% */
  height: 8vw; /* width와 동일하게 설정 */
  min-width: 50px; /* 너무 작아지는 것 방지 */
  min-height: 50px;
  background: rgba(255, 255, 255, 0.5647058824);
  text-align: center;
  color: #222222;
  line-height: 150%;
  padding: 5% 0;
  font-size: 1.25rem;
  font-weight: bold;
  border-radius: 50%;
  flex-shrink: 0;
  padding: 0; /* 내부 여백 제거 */
  margin: 0;
  display: flex;
  align-items: center; /* 세로 중앙 정렬 */
  justify-content: center; /* 가로 중앙 정렬 */
  text-align: center; /* 혹시 모를 정렬 오류 방지 */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.6), #dcdcdc);
  box-shadow: 4px 4px 10px rgba(0, 0, 0, 0.2);
}

/*2번째장 시작*/
#notice {
  height: 100vh;
  position: relative;
}
#notice::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/section_1_bg.jpg) center no-repeat;
  background-size: cover;
  opacity: 40%;
  z-index: -1;
}
#notice .notice_wrap {
  display: flex;
}
#notice #news_left {
  width: 25%;
  padding-top: 180px;
}
#notice #news_left p {
  font-family: "KOTRAHOPE";
  font-size: 1.75rem;
  color: #222222;
  padding-bottom: 20px;
}
#notice #news_left h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #222222;
  line-height: 150%;
  word-break: keep-all;
}
#notice .news_right {
  width: 75%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 180px;
}
#notice .news_box {
  width: 500px;
  background-color: #F8F8F8;
  padding: 1.5rem;
  border-radius: 0.8rem;
  margin-bottom: 10px;
}
#notice .news_box .list .list_top ul {
  display: flex;
  justify-content: space-between;
}
#notice .news_box .list .list_top ul li {
  font-size: 1.2rem;
  display: inline-block;
}
#notice .news_box .list .list_top ul li h3 {
  background: #34592E;
  border-radius: 20px;
  padding: 5px 15px;
  color: #ffffff !important;
}
#notice .news_box .list .list_top ul li a {
  color: #222222;
}
#notice .news_box .list h4 {
  padding: 30px 0 23px 0;
  line-height: 30px;
  font-size: 1.5rem;
  color: #222222;
  font-weight: bold;
  height: 60px;
  text-overflow: ellipsis;
  overflow: hidden;
  /* a{display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 2;} */
}
#notice .news_box .list p {
  text-align: right;
  color: #c3c3c3;
}
#notice .popup {
  position: absolute;
  bottom: 79px;
  left: 152px;
  width: 450px;
  overflow: hidden;
}
#notice .popup .swiper-wrapper {
  display: flex;
}
#notice .popup .swiper-slide {
  flex-shrink: 0;
}
#notice .popup .swiper-pagination {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
#notice .popup .swiper-pagination span {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #cccccc;
  border-radius: 50%;
  margin-right: 5px;
}
#notice .popup .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #4F8C32;
}
#notice .popup img {
  width: 450px;
  height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
}

#media {
  height: 100vh;
  position: relative;
}
#media::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/section_2_bg.jpg) center no-repeat;
  background-size: cover;
  opacity: 40%;
  z-index: -1;
}
#media #media_top {
  padding-top: 150px;
  margin-right: 60px;
}
#media #media_top p {
  font-family: "KOTRAHOPE";
  font-size: 40px;
  color: #222222;
  padding-bottom: 10px;
}
#media #media_top h2 {
  font-size: 50px;
  font-weight: bold;
  color: #222222;
  line-height: 70px;
}
#media #youtube {
  margin-top: 30px;
  width: 740px;
  height: 580px;
  float: left;
}
#media #youtube .youtube_top {
  margin-bottom: 10px;
}
#media #youtube .youtube_top img {
  float: left;
}
#media #youtube .youtube_top span {
  display: inline-block;
  margin-left: 129px;
  margin-top: 16px;
  font-size: 20px;
  color: #666666;
  font-weight: bold;
}
#media #youtube .yt_box1 {
  margin-bottom: 15px;
  display: flex;
  justify-content: start;
  width: 737px;
  height: 200px;
}
#media #youtube .yt_box1 .yt_info {
  background: white;
  padding: 50px 0 0 22px;
  flex-grow: 1;
  position: relative;
}
#media #youtube .yt_box1 .yt_info h3 {
  font-size: 22px;
  color: #222222;
  font-weight: bold;
  padding-bottom: 20px;
}
#media #youtube .yt_box1 .yt_info p {
  font-size: 16px;
  line-height: 20px;
  padding-bottom: 20px;
}
#media #youtube .yt_box1 .yt_info span {
  color: #c3c3c3;
  font-weight: bold;
  font-size: 14px;
}
#media #youtube .yt_box1 .yt_info img {
  position: absolute;
  top: -50px;
  right: -50px;
}
#media #youtube .yt_bt {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
#media #youtube .yt_bt .yt_box2 {
  width: 354px;
  float: left;
  font-size: 0;
}
#media #youtube .yt_bt .yt_box2 .yt_info {
  background: white;
  padding: 17px 5px 10px 17px;
  flex-grow: 1;
}
#media #youtube .yt_bt .yt_box2 .yt_info h3 {
  font-size: 22px;
  color: #222222;
  font-weight: bold;
  padding-bottom: 20px;
  line-height: 30px;
}
#media #youtube .yt_bt .yt_box2 .yt_info span {
  color: #c3c3c3;
  font-weight: bold;
  font-size: 14px;
}
#media #youtube .yt_bt .yt_box3 {
  width: 354px;
  display: inline-block;
  font-size: 0;
  margin-left: 29px;
}
#media #youtube .yt_bt .yt_box3 .yt_info {
  background: white;
  padding: 17px 5px 10px 17px;
  flex-grow: 1;
}
#media #youtube .yt_bt .yt_box3 .yt_info h3 {
  font-size: 22px;
  color: #222222;
  font-weight: bold;
  padding-bottom: 20px;
  line-height: 30px;
}
#media #youtube .yt_bt .yt_box3 .yt_info span {
  color: #c3c3c3;
  font-weight: bold;
  font-size: 14px;
}
#media #blog {
  margin-top: 30px;
  width: 740px;
  float: right;
  height: 580px;
}
#media #blog .blog_top {
  margin-bottom: 10px;
}
#media #blog .blog_top img {
  float: left;
}
#media #blog .blog_top span {
  display: inline-block;
  margin-left: 90px;
  margin-top: 16px;
  font-size: 20px;
  color: #666666;
  font-weight: bold;
}
#media #blog .blog_box1 {
  float: left;
  font-size: 0;
}
#media #blog .blog_box1 .blog_info {
  background: white;
  flex-grow: 1;
  padding: 20px 0 0 20px;
}
#media #blog .blog_box1 .blog_info p {
  display: inline-block;
  background: #222222;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 18px;
}
#media #blog .blog_box1 .blog_info h3 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 36px;
  line-height: 30px;
}
#media #blog .blog_box1 .blog_info span {
  display: block;
  text-align: right;
  padding: 0 10px 10px 0;
  color: #c3c3c3;
  font-weight: bold;
  font-size: 14px;
}
#media #blog .blog_box2 {
  display: inline-block;
  margin-left: 32px;
  font-size: 0;
}
#media #blog .blog_box2 .blog_info {
  background: white;
  flex-grow: 1;
  padding: 20px 0 0 20px;
}
#media #blog .blog_box2 .blog_info p {
  display: inline-block;
  background: #222222;
  padding: 5px 15px;
  margin-bottom: 10px;
  border-radius: 20px;
  color: #FFFFFF;
  font-size: 18px;
}
#media #blog .blog_box2 .blog_info h3 {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 36px;
  line-height: 30px;
}
#media #blog .blog_box2 .blog_info span {
  display: block;
  text-align: right;
  padding: 0 10px 10px 0;
  color: #c3c3c3;
  font-weight: bold;
  font-size: 14px;
}

#biz {
  height: 100vh;
  position: relative;
}
#biz::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/section_3_bg\ \(2\).jpg) center no-repeat;
  background-size: cover;
  opacity: 40%;
  z-index: -1;
}
#biz #biz_top {
  padding-top: 150px;
  margin-right: 60px;
}
#biz #biz_top p {
  font-family: "KOTRAHOPE";
  font-size: 40px;
  color: #222222;
  padding-bottom: 20px;
}
#biz #biz_top h2 {
  font-size: 50px;
  font-weight: bold;
  color: #222222;
  line-height: 70px;
}
#biz #biz_wrap {
  display: flex;
  margin-top: 30px;
  gap: 26px;
}
#biz #biz_wrap li {
  width: 300px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
#biz #biz_wrap li h3 {
  color: white;
  font-weight: bold;
  font-size: 30px;
  padding: 25px 0 0 15px;
}
#biz #biz_wrap li div {
  background: rgba(255, 255, 255, 0.5647058824);
  border-radius: 0 0 20px 20px;
}
#biz #biz_wrap li div p {
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  margin-bottom: 40px;
  padding: 20px 0 0 10px;
}
#biz #biz_wrap li div a {
  font-size: 15px;
  padding: 0 20px 10px 0;
  display: block;
  text-align: right;
}
#biz #biz_wrap li::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s ease-in-out;
}
#biz #biz_wrap li:hover::after {
  transform: scale(1.2);
}
#biz #biz_wrap #box1::after {
  background: url(../img/section_2_1.jpg) center no-repeat;
}
#biz #biz_wrap #box2::after {
  background: url(../img/section_2_2_1.jpg) center no-repeat;
}
#biz #biz_wrap #box3::after {
  background: url(../img/section_2_3_1.png) center no-repeat;
}
#biz #biz_wrap #box4::after {
  background: url(../img/section_2_4_1.png) center no-repeat;
}
#biz #biz_wrap #box5::after {
  background: url(../img/section_2_5.png) center no-repeat;
}
#biz #biz_wrap #box5 h3 {
  color: #000 !important;
}
#biz img {
  position: absolute;
  right: 130px;
  top: 290px;
}

#info {
  height: 100vh;
  position: relative;
}
#info::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(../img/section_4_1bg.png) center no-repeat;
  background-size: cover;
  opacity: 40%;
  z-index: -1;
}
#info #info_wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 130px;
}
#info #info_wrap #info_lt {
  margin-right: 60px;
  margin-top: 10px;
  width: 75%;
}
#info #info_wrap #info_lt p {
  font-family: "KOTRAHOPE";
  font-size: 40px;
  color: #222222;
  padding-bottom: 20px;
}
#info #info_wrap #info_lt .label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
#info #info_wrap #info_lt .label input {
  display: none;
}
#info #info_wrap #info_lt .label label {
  display: block;
  width: 100px;
  height: 430px;
  transition: all 0.4s;
  background: center no-repeat;
  background-size: cover;
  border-radius: 10px;
  font-size: 22px;
  line-height: 1.2em;
  font-weight: bold;
  color: #222222;
  text-align: center;
  align-self: center;
}
#info #info_wrap #info_lt .label .info_1 {
  background-image: url(../img/info_1.jpg);
  background-position-x: -252px;
}
#info #info_wrap #info_lt .label .info_2 {
  background-image: url(../img/info_2.jpg);
  background-position-x: -261px;
}
#info #info_wrap #info_lt .label .info_3 {
  background-image: url(../img/info_3.jpg);
  background-position-x: -123px;
}
#info #info_wrap #info_lt .label .info_4 {
  background-image: url(../img/info_4.jpg);
  background-position-x: -39px;
}
#info #info_wrap #info_lt .label .info_5 {
  background-image: url(../img/info_5.jpg);
}
#info #info_wrap #info_lt .label h3 {
  width: 30px;
  word-break: break-all;
  margin: 50px auto 0;
}
#info #info_wrap #info_lt .label p {
  display: none;
}
#info #info_wrap #info_lt .label input:checked + label {
  flex-grow: 1;
  background-position-x: 0;
}
#info #info_wrap #info_lt .label input:checked + label h3 {
  width: auto;
  text-align: left;
  margin-left: 30px;
}
#info #info_wrap #info_lt .label input:checked + label p {
  display: block;
  text-align: right;
  font-size: 20px;
  padding: 50px 25px 0 0;
  color: #222222;
  font-family: "Prentendard";
}
#info #info_wrap #info_rt {
  margin-top: 10px;
  width: 25%;
}
#info #info_wrap #info_rt p {
  font-family: "KOTRAHOPE";
  font-size: 40px;
  color: #222222;
  padding-bottom: 20px;
}
#info #info_wrap #info_rt ul {
  display: flex;
  flex-wrap: wrap;
  height: 430px;
  justify-content: space-between;
  gap: 5px;
}
#info #info_wrap #info_rt ul li {
  width: calc((100% - 10px) / 3);
  background: rgba(255, 255, 255, 0.5647058824);
  border-radius: 20px;
}
#info #info_wrap #info_rt ul li .link {
  text-align: center;
}
#info #info_wrap #info_rt ul li .link a {
  width: 100%;
}
#info #info_wrap #info_rt ul li .link img {
  width: 60%;
}
#info #info_wrap #info_rt ul li .link p {
  font-family: "Prentendard";
  font-weight: bold;
  font-size: 16px;
  line-height: 20px;
  padding: 10px 0;
}
#info #info_wrap #info_rt ul li:nth-child(1) .link p,
#info #info_wrap #info_rt ul li:nth-child(6) .link p {
  line-height: 40px;
}
#info #info_wrap #info_rt ul li:last-child {
  display: flex;
  justify-content: center;
  align-items: center;
}
#info #info_wrap #info_rt ul li:last-child p {
  text-align: center;
}

footer {
  background: #fff;
  padding-top: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
footer #policy {
  margin-bottom: 30px;
  border-bottom: 1px solid #666666;
}
footer #policy ul {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  padding-bottom: 20px;
}
footer #policy ul li {
  font-size: 16px;
}
footer #policy ul li:hover {
  color: #4F8C32;
  font-weight: bold;
}
footer #bt_logo {
  margin-bottom: 20px;
  float: left;
}
footer #bt_logo h2 {
  width: 100px;
}
footer #address {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  color: #222222;
  line-height: 22px;
}
footer #bt_r {
  float: right;
}
footer #bt_r li {
  display: inline-block;
  margin-left: 30px;
}
footer #bt_r li img {
  height: 40px;
}/*# sourceMappingURL=style.css.map */