#index-main {
  width: 100%;
  height: auto;
  padding-top: 120px;
}

.ta-left {
  text-align: left;
}

.ta-center {
  text-align: center;
}

.ta-right {
  text-align: right;
}

.index-hero {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.index-hero .top {
  width: 100%;
  height: auto;
  padding: 120px 0 50px;
  background: white;
}
.index-hero .top .container {
  width: 95%;
  height: auto;
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 48px;
}
.index-hero .top .container .left {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.index-hero .top .container .left > h1 {
  padding-top: 16px;
  padding-right: 36px;
  font-size: 100px;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  background-image: url(/img/leaf.svg);
  background-position: 100% 0;
  background-repeat: no-repeat;
  background-size: 36px auto;
}
.index-hero .top .container .left p {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
}
.index-hero .top .container .right {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.index-hero .top .container .right > a {
  flex: 0 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.index-hero .top .container .right > a figure {
  width: 100%;
  height: auto;
  display: flex;
}
.index-hero .top .container .right > a figure > img {
  width: 100%;
  height: auto;
}
.index-hero .top .container .right > a > div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.index-hero .top .container .right > a > div > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: #8CB808;
  word-break: keep-all;
}
.index-hero .top .container .right > a > div > img {
  width: auto;
  height: 12px;
}
.index-hero .top .container .right > a:nth-child(2) > div > span {
  color: black;
}
.index-hero .bottom {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.index-hero .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1530px;
  margin: 0 auto;
  padding: 280px 0 100px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.index-hero .bottom .container > h1 {
  font-size: 100px;
  font-weight: 700;
  line-height: 1.1;
  word-break: keep-all;
  text-align: right;
  color: white;
}

.delicious {
  width: 100%;
  height: auto;
  padding-top: 100px;
  margin-bottom: 150px;
  background: white;
}
.delicious .title-wrap {
  width: 95%;
  margin: 0 auto;
  margin-bottom: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.delicious .title-wrap > h1 {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 1.1;
  color: #71BB0F;
  word-break: keep-all;
  text-align: center;
}
.delicious .title-wrap > strong {
  margin-bottom: 52px;
  font-size: 54px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.delicious .title-wrap > strong > em {
  font-weight: 700;
}
.delicious .title-wrap .desc {
  margin-bottom: 52px;
  font-size: 18px;
  line-height: 1.6;
  word-break: keep-all;
  color: black;
}
.delicious .title-wrap .desc > b {
  font-weight: 800;
}
.delicious .title-wrap .view-more {
  width: 200px;
  height: 56px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
  background: linear-gradient(40deg, #83C11B, #6F6EBF);
  border-radius: 10000rem;
}
.delicious .delicious-slides {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
.delicious .delicious-slides .infinite {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  animation-name: infinite-flow;
  animation-duration: 18s;
  animation-fill-mode: unset;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: linear;
}
.delicious .delicious-slides .infinite:hover {
  animation-play-state: paused;
}
.delicious .delicious-slides .slide-group {
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
}
.delicious .delicious-slides .slide-group .slide-item {
  flex: 0 0 auto;
  padding-right: 50px;
}
.delicious .delicious-slides .slide-group .slide-item figure {
  position: relative;
  display: flex;
  width: 480px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
}
.delicious .delicious-slides .slide-group .slide-item figure > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@keyframes infinite-flow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.new-sunje {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  background: white;
}
.new-sunje .title-wrap {
  width: 95%;
  height: auto;
  margin: 0 auto;
  margin-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new-sunje .title-wrap span {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #71BB0F;
  word-break: keep-all;
  text-align: center;
}
.new-sunje .title-wrap .title {
  margin-bottom: 48px;
  padding: 40px 56px 0 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 100% 0;
  background-size: 56px auto;
}
.new-sunje .title-wrap .desc {
  font-size: 18px;
  line-height: 1.5;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.new-sunje .container {
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
.new-sunje .container .content-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
}
.new-sunje .container .content-wrapper .left-swiper {
  flex: 0 0 60%;
  height: 700px;
  overflow: hidden;
  border-radius: 0 56px 0 0;
}
.new-sunje .container .content-wrapper .left-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.new-sunje .container .content-wrapper .left-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}
.new-sunje .container .content-wrapper .left-swiper .swiper-wrapper .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.new-sunje .container .content-wrapper .right-box {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 600px;
  padding: 0 200px 0 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #71BB0F;
  border-radius: 56px 0 0 0;
  z-index: 2;
}
.new-sunje .container .content-wrapper .right-box .right-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-header {
  width: 100%;
  height: auto;
  padding-bottom: 28px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  border-bottom: 1px solid white;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-header > span {
  font-size: 28px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-header > h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-contents {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-contents .row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-contents .row dt {
  flex: 0 0 140px;
  padding-right: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-contents .row dd {
  flex: 1 1 auto;
  font-size: 20px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.new-sunje .container .content-wrapper .right-box .right-swiper .swiper-wrapper .swiper-slide .slide-contents .row a {
  padding: 12px 16px;
  font-size: 20px;
  font-weight: 700;
  background: white;
  border-radius: 100000rem;
  color: #518000;
}
.new-sunje .container .content-wrapper .right-box .controls-1 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 200px;
  height: 100%;
  padding: 0 5% 40px 2%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 52px;
}
.new-sunje .container .content-wrapper .right-box .controls-1 .nav-next {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #9DCC10;
  border-radius: 100000rem;
  cursor: pointer;
}
.new-sunje .container .content-wrapper .right-box .controls-1 .nav-next > svg {
  width: 50%;
  height: 50px;
  fill: white;
}
.new-sunje .container .content-wrapper .right-box .controls-1 .swiper-pagination {
  position: relative;
  left: unset;
  top: unset;
  right: unset;
  bottom: unset;
  text-align: left;
}
.new-sunje .container .content-wrapper .right-box .controls-1 .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #DDFF7A;
  border-radius: 100000rem;
  opacity: 1;
}
.new-sunje .container .content-wrapper .right-box .controls-1 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 36px;
}
.new-sunje .container .view-more {
  width: 240px;
  height: 70px;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #464646;
  background: white;
}
.new-sunje .container .view-more span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
}
.new-sunje .container .view-more svg {
  flex: 0 0 auto;
  width: 2.4rem;
  height: auto;
  fill: #464646;
}

.facility {
  width: 100%;
  height: auto;
  margin-bottom: 14rem;
}
.facility .container {
  position: relative;
  width: 95%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
}
.facility .container .left {
  position: relative;
  flex: 0 0 auto;
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 4;
}
.facility .container .left .contents-group {
  width: 100%;
  height: auto;
  padding: 3.6rem 28rem 2.8rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.facility .container .left .contents-group span {
  margin-bottom: 2.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #DC9210;
  word-break: keep-all;
}
.facility .container .left .contents-group h1 {
  margin-bottom: 5.4rem;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
.facility .container .left .contents-group p {
  margin-bottom: 14rem;
  font-size: 1.9rem;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
}
.facility .container .left .contents-group a {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #AF740B;
  word-break: keep-all;
}
.facility .container .left .tabs {
  width: 100%;
  height: 20rem;
  padding: 4rem 4rem 4rem 10rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 0 3.6rem 0 0;
  background: #DC9210;
}
.facility .container .left .tabs .tab {
  flex: 1 1 10%;
  height: 100%;
  padding: 0 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.facility .container .left .tabs .tab:not(:last-of-type) {
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}
.facility .container .left .tabs .tab .tab-icon {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 7.8rem;
  aspect-ratio: 1/1;
}
.facility .container .left .tabs .tab .tab-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.facility .container .left .tabs .tab .tab-name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
.facility .container .right {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
}
.facility .container .right .fac-swiper {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.4rem 0 0 0;
}
.facility .container .right .fac-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.facility .container .right .fac-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.facility .container .right .fac-swiper .swiper-wrapper .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product {
  width: 100%;
  height: auto;
  margin-bottom: 14rem;
}
.product .container {
  width: 95%;
  height: auto;
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .container .title-wrap {
  width: 100%;
  height: auto;
  margin-bottom: 8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product .container .title-wrap > span {
  margin-bottom: 2.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
  color: #DC9210;
  word-break: keep-all;
  text-align: center;
}
.product .container .title-wrap > h1 {
  margin-bottom: 5.4rem;
  font-size: 5.6rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.product .container .title-wrap > p {
  font-size: 1.8rem;
  line-height: 1.5;
  word-break: keep-all;
  color: black;
  text-align: center;
}
.product .container .content-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.4rem;
}
.product .container .content-wrap .left {
  position: relative;
  flex: 0 0 auto;
  width: 28rem;
  height: -webkit-fill-available;
  height: -moz-available;
  height: stretch;
}
.product .container .content-wrap .left .gray-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 98%;
  background: #ddd;
}
.product .container .content-wrap .left .gray-bar .ball {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: #ddd;
  border-radius: 100000rem;
}
.product .container .content-wrap .left .gray-bar .ball.top {
  top: 0;
}
.product .container .content-wrap .left .gray-bar .ball.bottom {
  bottom: 0;
}
.product .container .content-wrap .left .prd-tabs {
  width: 100%;
  height: 100%;
  padding: 3.6rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.product .container .content-wrap .left .prd-tabs .tab {
  position: relative;
  width: 100%;
  height: auto;
  padding-left: 4rem;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.2;
  color: #707070;
  word-break: keep-all;
}
.product .container .content-wrap .left .prd-tabs .tab .circle {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #EF9117;
  border-radius: 100000rem;
  background: white;
}
.product .container .content-wrap .left .prd-tabs .tab .circle .inner-dot {
  width: 50%;
  height: 50%;
  border-radius: 1000000rem;
  background: #EF9117;
}
.product .container .content-wrap .left .prd-tabs .tab.active {
  font-size: 3rem;
  font-weight: 700;
  color: #EF9117;
}
.product .container .content-wrap .left .prd-tabs .tab.active .circle {
  display: flex;
}
.product .container .content-wrap .right {
  flex: 1 1 auto;
  display: flex;
}
.product .container .content-wrap .right .prod-type-box {
  width: 100%;
  height: auto;
  display: none;
  flex-direction: column;
  align-items: center;
}
.product .container .content-wrap .right .prod-type-box.active {
  display: flex;
}
.product .container .content-wrap .right .prod-type-box .box-head {
  width: 100%;
  height: auto;
  padding-bottom: 2.4rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #2D2D2D;
}
.product .container .content-wrap .right .prod-type-box .box-head div {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 2.8rem;
}
.product .container .content-wrap .right .prod-type-box .box-head div .kr-name {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
.product .container .content-wrap .right .prod-type-box .box-head div .en-name {
  font-size: 2rem;
  font-weight: 300;
  line-height: 2.8rem;
  color: #aaa;
}
.product .container .content-wrap .right .prod-type-box .box-head > a {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: flex;
}
.product .container .content-wrap .right .prod-type-box .box-head > a > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.product .container .content-wrap .right .prod-type-box .box-body {
  width: 100%;
  height: auto;
  padding: 5.4rem 0;
  display: flex;
  border-bottom: 1px solid #707070;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4rem;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .item-thumb {
  width: 100%;
  height: auto;
  display: flex;
  box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .item-thumb > img {
  width: 100%;
  height: auto;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .empty-thumb {
  width: 100%;
  height: auto;
  aspect-ratio: 359/333;
  padding: 12px;
  box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.15);
  background: #fafafa;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .empty-thumb figcaption {
  font-size: 16px;
  line-height: 1.2;
  color: #464646;
  font-weight: 700;
  word-break: keep-all;
  text-align: center;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .item-name {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.2rem;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .item-name b {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.product .container .content-wrap .right .prod-type-box .box-body .box-grid .item .item-name span {
  font-size: 1.4rem;
  color: #707070;
  word-break: keep-all;
  text-align: center;
}

.sunje-lineup {
  width: 100%;
  height: auto;
  margin-bottom: 14rem;
}
.sunje-lineup .container {
  width: 95%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
}
.sunje-lineup .container .title-wrap {
  width: 95%;
  height: auto;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sunje-lineup .container .title-wrap .sub-title {
  margin-bottom: 2.8rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #8CB808;
  word-break: keep-all;
  text-align: center;
}
.sunje-lineup .container .title-wrap .title {
  margin-bottom: 3.6rem;
  font-size: 3.6rem;
  line-height: 1.3;
  word-break: keep-all;
  color: black;
  text-align: center;
}
.sunje-lineup .container .title-wrap .title > b {
  font-size: 1.5em;
  font-weight: 700;
}
.sunje-lineup .container .title-wrap .desc {
  font-size: 1.8rem;
  line-height: 1.2;
  word-break: keep-all;
  color: black;
  text-align: center;
}
.sunje-lineup .container .title-wrap .desc b {
  font-weight: 700;
}
.sunje-lineup .container .lineup-content {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.sunje-lineup .container .lineup-content .lineup-swiper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.sunje-lineup .container .lineup-content .lineup-swiper .swiper-wrapper {
  width: 100%;
  height: auto;
}
.sunje-lineup .container .lineup-content .lineup-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 66%;
  height: 55rem;
  opacity: 0.3;
  transition: all 0.2s ease-in-out;
}
.sunje-lineup .container .lineup-content .lineup-swiper .swiper-wrapper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
.sunje-lineup .container .lineup-content .lineup-swiper .swiper-wrapper .swiper-slide .main-img {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 1.2rem;
  overflow: hidden;
}
.sunje-lineup .container .lineup-content .lineup-swiper .swiper-wrapper .swiper-slide .main-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sunje-lineup .container .lineup-content .lineup-new-image-box {
  width: 66%;
  height: auto;
}
.sunje-lineup .container .lineup-content .lineup-new-image-box figure {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  border-radius: 16px;
}
.sunje-lineup .container .lineup-content .lineup-new-image-box figure > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sunje-lineup .container .lineup-content .lineup-tabs {
  width: 66%;
  height: auto;
  padding: 2.8rem 0;
  display: flex;
  flex-direction: row;
  background: #fafafa;
  border-radius: 1.2rem;
  box-shadow: 3px 3px 8px 0 rgba(0, 0, 0, 0.15);
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab {
  padding: 0 2rem;
  flex: 1 1 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab:not(:last-child) {
  border-right: 1px solid #ddd;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab .tab-icon {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 8rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab .tab-icon > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab .tab-icon > img:nth-child(2) {
  display: none;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab .tab-name {
  font-size: 1.8rem;
  line-height: 1.1;
  font-weight: 600;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab.active .tab-icon img, .sunje-lineup .container .lineup-content .lineup-tabs .tab:hover .tab-icon img {
  display: none;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab.active .tab-icon img:nth-child(2), .sunje-lineup .container .lineup-content .lineup-tabs .tab:hover .tab-icon img:nth-child(2) {
  display: block;
}
.sunje-lineup .container .lineup-content .lineup-tabs .tab.active .tab-name, .sunje-lineup .container .lineup-content .lineup-tabs .tab:hover .tab-name {
  color: #71BB0F;
}

.partner {
  width: 100%;
  height: auto;
  margin-bottom: 140px;
}
.partner .partner-header {
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.partner .partner-header .container {
  width: 100%;
  height: auto;
  padding: 12rem 0 22rem;
  background: rgba(149, 197, 10, 0.85);
}
.partner .partner-header .container .header-inner {
  width: 95%;
  height: auto;
  max-width: 1530px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}
.partner .partner-header .container .header-inner .title-wrap {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.partner .partner-header .container .header-inner .title-wrap .sub-title {
  margin-bottom: 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.1;
  color: #DCFF71;
  word-break: keep-all;
}
.partner .partner-header .container .header-inner .title-wrap .title {
  margin-bottom: 5.6rem;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
.partner .partner-header .container .header-inner .title-wrap .desc {
  font-size: 1.8rem;
  line-height: 1.8;
  word-break: keep-all;
  color: white;
}
.partner .partner-header .container .header-inner .view-more {
  width: 24rem;
  height: 7.6rem;
  padding: 0 3.6rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border: 2px solid white;
  border-radius: 0.8rem;
}
.partner .partner-header .container .header-inner .view-more span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
}
.partner .partner-header .container .header-inner .view-more svg {
  width: 2.4rem;
  height: auto;
  fill: white;
}
.partner .partner-logos {
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.partner .partner-logos .container {
  position: relative;
  width: 100%;
  height: auto;
  margin-left: auto;
  overflow: hidden;
}
.partner .partner-logos .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3vw;
  height: 100%;
  z-index: 3;
  background: linear-gradient(to right, white, transparent);
}
.partner .partner-logos .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 3vw;
  height: 100%;
  z-index: 3;
  background: linear-gradient(to left, white, transparent);
}
.partner .partner-logos .container .infinite-zone {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  animation-name: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-duration: 30s;
}
.partner .partner-logos .container .infinite-zone:hover {
  animation-play-state: paused;
}
.partner .partner-logos .container .logo-grid {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  display: flex;
  flex-direction: row;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  background: white;
}
.partner .partner-logos .container .logo-grid .logo-item {
  position: relative;
  width: 10vw;
  height: 10rem;
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}
.partner .partner-logos .container .logo-grid .logo-item > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 70%;
  -o-object-fit: contain;
     object-fit: contain;
}

@keyframes infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.notice {
  width: 100%;
  height: auto;
  margin-bottom: 14rem;
}
.notice .container {
  width: 95%;
  height: auto;
  max-width: 1640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9rem;
}
.notice .container .title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notice .container .title-wrap .sub-title {
  margin-bottom: 2.8rem;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: #71BB0F;
  text-align: center;
  word-break: keep-all;
}
.notice .container .title-wrap .title {
  margin-bottom: 5.6rem;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.notice .container .title-wrap .desc {
  font-size: 1.8rem;
  line-height: 1.5;
  word-break: keep-all;
  text-align: center;
  color: black;
}
.notice .container .notice-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  border-top: 3px solid black;
  border-bottom: 3px solid black;
}
.notice .container .notice-list .wip {
  width: 100%;
  height: auto;
  padding: 100px 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #fafafa;
}
.notice .container .notice-list .wip svg {
  width: 60px;
  height: auto;
  aspect-ratio: 1/1;
  fill: #aaa;
  animation-name: spin;
  animation-timing-function: linear;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.notice .container .notice-list .wip b {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: #aaa;
}
.notice .container .notice-list .notice-item {
  width: 100%;
  height: 20rem;
}
.notice .container .notice-list .notice-item .item-link {
  width: 100%;
  height: 100%;
  padding: 0 6.4rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14rem;
  transition: all 0.2s ease-in-out;
}
.notice .container .notice-list .notice-item .item-link .date-box {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .date-box .day {
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1;
  color: #aaa;
  text-align: center;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .date-box .year-month {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.1;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .content-box {
  flex: 1 1 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .content-box .category {
  flex: 0 0 auto;
  width: 10rem;
  height: 4rem;
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.1;
  color: white;
  word-break: keep-all;
  text-align: center;
  border-radius: 0.4rem;
  background: #aaa;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .content-box .inner-wrapper {
  flex: 1 1 auto;
  padding-top: 0.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.2rem;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .content-box .inner-wrapper .subject {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .content-box .inner-wrapper .summary {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.8rem;
  line-height: 1.6;
  word-break: keep-all;
  color: #707070;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .view-more {
  flex: 0 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 3rem;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .view-more span {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  color: #464646;
  word-break: keep-all;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link .view-more svg {
  flex: 0 0 auto;
  width: 1.8rem;
  height: auto;
  fill: #464646;
  transition: inherit;
}
.notice .container .notice-list .notice-item .item-link:hover {
  background: #f0f0f0;
}
.notice .container .notice-list .notice-item .item-link:hover .date-box .day, .notice .container .notice-list .notice-item .item-link:hover .date-box .year-month {
  color: black;
}
.notice .container .notice-list .notice-item .item-link:hover .content-box .category {
  background: #71BB0F;
}
.notice .container .notice-list .notice-item .item-link:hover .view-more span {
  color: #71BB0F;
}
.notice .container .notice-list .notice-item .item-link:hover .view-more svg {
  fill: #71BB0F;
}/*# sourceMappingURL=main.css.map */