@charset "UTF-8";
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform.otf);
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform-Medium.otf);
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Uniform";
  src: url(../fonts/Uniform-Bold.otf);
  font-weight: 700;
  font-display: swap;
}
/**
 * * Allows you to use retina images at various pixel densities.
 * * Examples:
 * *
 * *   +retina(/images/mypic.jpg, 2);
 * *   +retina(/images/mypic.jpg, 3, 100px 100px, left top no-repeat transparent);
 * *
 * * @param  {Value}  $path               The path to the file name minus extension.
 * * @param  {Number} $cap:    2          The highest pixel density level images exist for.
 * * @param  {Value}  $size:   auto auto  The intended width of the rendered image.
 * * @param  {Value}  $extras: null       Any other `background` values to be added.
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up($breakpoint-value)
 * */
/**
 * * 往上適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-down($breakpoint-value)
 * */
/**
 * * 往下適應
 * * 引用方式: +media-up-num(自訂數值)
 * */
/**
 * * 範圍內適應
 * * 引用方式: +media-between($lower-breakpoint, $upper-breakpoint)
 * */
/**
 * * 引用方式: +lh(15,22) 前面放 line-height 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/**
 * * 引用方式: +ls(15,22) 前面放 letter-spacing 的 px 值, 後面放 font-size 的 px 值（計算）
 * */
/*  ===== firefox font weight bold 統一設定為 normal (firefox 在小字為粗體的時候會過粗) ===== */
/**
 * * 引用方式: +gradient(180deg,#fff,4%,#eee,92%)
 * */
/**
 * * margin
 * * 引用方式: +mb(15,22) 前面放 margin 的 px 值, 後面放 font-size 的 px 值
 * */
/**
 * * padding
 * * 引用方式: +pb(15,22) 前面放 padding 的 px 值, 後面放 font-size 的 px 值
 * */
.container-fluid {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}

.container {
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-inline-start: 0;
    padding-inline-end: 0;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 100%;
    padding-inline-end: 14vw;
    padding-inline-start: 14vw;
  }
}
@media (min-width: 2560px) {
  .container {
    padding-inline-end: 28vw;
    padding-inline-start: 28vw;
  }
}

@media (min-width: 2560px) {
  .container-nav {
    padding-inline-end: 19.5vw;
    padding-inline-start: 19.5vw;
  }
}

.row {
  margin-inline-start: -5px;
  margin-inline-end: -5px;
}
@media (min-width: 768px) {
  .row {
    margin-inline-start: -15px;
    margin-inline-end: -15px;
  }
}
.row > * {
  padding-inline-end: 5px;
  padding-inline-start: 5px;
}
@media (min-width: 768px) {
  .row > * {
    padding-inline-end: 15px;
    padding-inline-start: 15px;
  }
}

:root {
  scroll-behavior: initial;
}

*:focus, *:active, *:visited,
*::before:focus,
*::before:active,
*::before:visited,
*::after:focus,
*::after:active,
*::after:visited {
  outline: none !important;
  box-shadow: none !important;
}

noscript {
  position: absolute;
  top: 0;
  z-index: 9999;
}

body {
  color: #1E1E1E;
  line-height: normal;
  font-family: "Noto Sans TC", sans-serif;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  image-rendering: auto;
  touch-action: manipulation;
  -moz-osx-font-smoothing: grayscale;
}
body.is-hidden {
  overflow: hidden;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #1E1E1E;
  text-decoration: none;
  transition: all ease 400ms;
}
a:hover {
  color: currentColor;
}
a:active, a:hover, a:visited, a:focus {
  text-decoration: none;
  outline: 0;
  transition: all ease 400ms;
}

button {
  background-color: transparent;
  border: none;
  padding: 0;
  outline: 0;
  cursor: pointer;
  transition: all ease 400ms;
}
button:active, button:hover, button:visited, button:focus {
  outline: 0;
  transition: all ease 400ms;
}

ul, ol {
  padding: 0;
  margin-bottom: 0;
}

ul {
  list-style: none;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-size: 1rem;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 0;
}

p, label {
  margin-bottom: 0;
}

input, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: transparent;
  border: none;
  outline: 0;
  padding: 0;
}
input:active, input:hover, input:visited, input:focus, select:active, select:hover, select:visited, select:focus, textarea:active, textarea:hover, textarea:visited, textarea:focus {
  outline: 0;
}

input[type=submit], [type=date], [type=checkbox] {
  cursor: pointer;
  transition: all ease 400ms;
}

::placeholder {
  color: #999999;
}

input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

[fade-in] {
  opacity: 0;
  transition: all ease 400ms;
}
[fade-in].is-animate {
  opacity: 1;
  transition: all ease 400ms;
}

.u-link-range {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.u-pointer {
  cursor: pointer;
}

.u-pointer-none {
  pointer-events: none;
}

.u-hidden {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.u-img-cover {
  object-fit: cover;
  object-position: center center;
}

.u-img-contain {
  object-fit: contain;
  object-position: center center;
}

.u-bg-cover {
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.u-16x9 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
.u-16x9 > * {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.u-flex-1 {
  flex: 1;
}

.nas-article {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .nas-article {
    margin-top: 0;
  }
}
.nas-article h1, .nas-article h2, .nas-article h3, .nas-article h4, .nas-article h5, .nas-article h6 {
  font-weight: 700;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .nas-article h1, .nas-article h2, .nas-article h3, .nas-article h4, .nas-article h5, .nas-article h6 {
    margin-bottom: 20px;
  }
}
.nas-article h1 {
  font-size: 2.375rem;
  letter-spacing: 0.01em;
  line-height: normal;
}
.nas-article h2 {
  font-size: 2rem;
  letter-spacing: 0.01em;
}
.nas-article h3 {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}
.nas-article h4 {
  font-size: 1.375rem;
  line-height: 170%;
  letter-spacing: 0.01em;
}
.nas-article h5 {
  font-size: 1.25rem;
  letter-spacing: 0.01em;
}
.nas-article h6 {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: normal;
}
.nas-article p {
  font-size: 1rem;
  line-height: 170%;
  letter-spacing: 0.01em;
}
.nas-article a {
  color: #89A130;
}
.nas-article img {
  width: 100%;
}
.nas-article ul, .nas-article ol {
  padding-inline-start: 1.5rem;
}
.nas-article ul {
  list-style: revert;
}
.nas-article table {
  caption-side: initial;
  border-collapse: initial;
}
.nas-article tbody, .nas-article td, .nas-article tfoot, .nas-article th, .nas-article thead, .nas-article tr {
  border-style: inherit;
  border-width: inherit;
}

.icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  transition: all ease 400ms;
}

.swiper .swiper-button-next::after,
.swiper .swiper-button-prev::after {
  display: none;
}
.swiper .swiper-button-next:hover,
.swiper .swiper-button-prev:hover {
  transition: all ease 400ms;
}
.swiper .swiper-button-next:focus, .swiper .swiper-button-next:focus-visible,
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-prev:focus-visible {
  outline: none;
  border: none;
}
.swiper .swiper-pagination-bullet:focus, .swiper .swiper-pagination-bullet:focus-visible {
  outline: none;
  border: none;
}

.c-input, .c-input-file, .select2-container--default .select2-selection--single, .selectric {
  border-radius: 8px !important;
  border: 1px solid #999999;
  padding: 12px 18px;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .c-input:hover, .c-input-file:hover, .select2-container--default .select2-selection--single:hover, .selectric:hover {
    background-color: #F0F0F0;
    transition: all ease 400ms;
  }
}

.selectric-wrapper {
  width: 100%;
  cursor: pointer;
}

.selectric {
  position: relative;
  height: initial;
  background: transparent;
  transition: all ease 400ms;
}
.selectric::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  border: 1px solid #1FA809;
  transition: all ease 400ms;
}
.selectric .button {
  background-color: transparent;
  display: none;
}
.selectric .label {
  height: inhert;
  color: #999999;
  margin: 0;
}
.selectric .label.is-selected {
  color: #1E1E1E;
}

.selectric-items {
  width: 100% !important;
  background-color: #ffffff;
  border: 1px solid #999999;
  box-shadow: none;
  border-radius: 8px;
  overflow: hidden;
  cursor: auto;
  margin-top: 6px;
}

.selectric-items li {
  position: relative;
  color: #1E1E1E;
  padding: 10px 22px;
  transition: all ease 400ms;
}
.selectric-items li:last-child {
  margin-bottom: 0;
}
.selectric-items li.selected, .selectric-items li.highlighted {
  background-color: transparent;
}
.selectric-items li:hover {
  background: #89A130;
  color: #ffffff;
  transition: all ease 400ms;
}

.selectric-scroll {
  overflow: hidden;
  border-radius: 8px;
  max-height: 250px;
}

.selectric-open {
  z-index: 1020;
}
.selectric-open .selectric {
  border-color: #89A130;
}
.selectric-open .selectric::after {
  transform: rotate(180deg);
  transition: all ease 400ms;
}
.selectric-open .selectric-items {
  z-index: 1030;
}

.select2-container {
  width: 100% !important;
}

.select2-container--default .select2-selection--single {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  width: 100%;
  color: #999999;
  padding: 0 16px 0 0;
  transition: all ease 400ms;
}
.select2-container .select2-selection--single .select2-selection__rendered.is-selected {
  color: #1E1E1E;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  position: relative;
  width: auto;
  height: auto;
}
.select2-container--default .select2-selection--single .select2-selection__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  border: 1px solid #1FA809;
  transition: all ease 400ms;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--open {
  z-index: 1020;
}

.select2-dropdown {
  border: 1px solid #999999 !important;
  border-radius: 8px !important;
  top: 6px;
}

.select2-search--dropdown {
  padding: 12px 18px;
  display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #999999;
  border-radius: 8px;
  padding: 12px 18px;
}

.select2-results__options {
  cursor: pointer;
  max-height: 250px !important;
}
.select2-results__options::-webkit-scrollbar {
  width: 6px;
}
.select2-results__options::-webkit-scrollbar-button {
  width: 6px;
  height: 5px;
}
.select2-results__options::-webkit-scrollbar-track {
  background-color: #F0F0F0;
  border: 0;
  border-radius: 50px;
}
.select2-results__options::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.7);
  border: 0;
  border-radius: 50px;
}
.select2-results__options::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.select2-results__option {
  font-size: 1.125rem;
  letter-spacing: 0.01em;
  line-height: normal;
  padding: 10px 22px;
  transition: all ease 400ms;
}

.select2-results__option--selectable {
  color: #1E1E1E;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: #89A130;
  color: #ffffff;
  transition: all ease 400ms;
}

.os-custom > .os-scrollbar-horizontal {
  height: 6px;
}

.os-custom > .os-scrollbar-vertical {
  width: 6px;
}

.os-custom > .os-scrollbar-corner {
  width: 6px;
  background-color: transparent;
}

.os-custom > .os-scrollbar > .os-scrollbar-track {
  background: transparent;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track:before {
  content: "";
  display: block;
  position: absolute;
  background: #F0F0F0;
  border-radius: 50px;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:before {
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
}

.os-custom > .os-scrollbar-vertical > .os-scrollbar-track:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:before {
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
}

.os-custom > .os-scrollbar > .os-scrollbar-track > .os-scrollbar-handle:before {
  content: "";
  display: block;
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50px;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:hover:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:hover:before {
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle.active:before,
.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle.active:before {
  background: rgba(0, 0, 0, 0.7);
}

.os-custom > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle {
  height: 100%;
}

.os-custom > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle {
  width: 100%;
}

.os-custom.os-host-transition > .os-scrollbar-horizontal > .os-scrollbar-track > .os-scrollbar-handle:before {
  transition: height 0.3s, margin-top 0.3s, background 0.2s;
}

.os-custom.os-host-transition > .os-scrollbar-vertical > .os-scrollbar-track > .os-scrollbar-handle:before {
  transition: width 0.3s, margin-inline-start 0.3s, background 0.2s;
}

.air-datepicker-global-container {
  z-index: 1055;
}

.air-datepicker {
  box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.1);
}

.air-datepicker-nav--action path {
  stroke: #89A130;
  stroke-width: 1px;
}

.air-datepicker-nav--action:hover {
  background-color: transparent;
}

.air-datepicker-nav--title {
  color: #89A130;
}
.air-datepicker-nav--title i {
  color: #89A130;
}
.air-datepicker-nav--title:hover {
  background-color: transparent;
}

.air-datepicker-body--day-names,
.air-datepicker-body--cells {
  justify-items: center;
  align-items: center;
}

.air-datepicker-body--day-name {
  color: #89A130;
  width: 30px;
  height: 30px;
}

.air-datepicker-cell {
  transition: all ease 400ms;
}
.air-datepicker-cell.-focus- {
  transition: all ease 400ms;
}

.air-datepicker-body.-days- .air-datepicker-cell {
  width: 30px;
  height: 30px;
  border-radius: 50px;
}
.air-datepicker-body.-days- .air-datepicker-cell.-focus- {
  background-color: #89A130;
  color: #ffffff;
}
.air-datepicker-body.-days- .air-datepicker-cell.-current- {
  color: #89A130;
}
.air-datepicker-body.-days- .air-datepicker-cell.-current-.-focus- {
  color: #ffffff;
}
.air-datepicker-body.-days- .air-datepicker-cell.-selected- {
  background-color: #89A130;
  color: #ffffff;
}

.air-datepicker-body--cells.-months- .air-datepicker-cell.-focus- {
  background-color: transparent;
}
.air-datepicker-body--cells.-months- .air-datepicker-cell.-current- {
  color: #89A130;
}
.air-datepicker-body--cells.-months- .air-datepicker-cell.-selected- {
  background-color: transparent;
  color: #89A130;
}

.air-datepicker-body--cells.-years- .air-datepicker-cell.-focus- {
  background-color: transparent;
}
.air-datepicker-body--cells.-years- .air-datepicker-cell.-current- {
  color: #89A130;
}
.air-datepicker-body--cells.-years- .air-datepicker-cell.-selected {
  background-color: transparent;
  color: #89A130;
}

.modal {
  overflow-y: hidden;
}

.modal-dialog {
  max-width: 100%;
}
@media (min-width: 414px) {
  .modal-dialog {
    max-width: 650px;
  }
}

.modal-dialog-scrollable .modal-content {
  overflow: initial;
}
.modal-dialog-scrollable .os-host {
  overflow: hidden !important;
}

.modal-body {
  position: relative;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 500;
  text-align: center;
}
@media (min-width: 768px) {
  .modal-title {
    font-size: 1.5rem;
  }
}

.btn-close:focus {
  box-shadow: none;
}

.c-modal {
  padding: 10px;
}
.c-modal .modal-content {
  height: 100%;
  max-height: 800px;
}

.c-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: -1;
  transition: opacity 300ms;
}
.c-spinner.is-active {
  opacity: 1;
  z-index: 9999;
  transition: opacity 300ms;
}

.c-spinner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: -1;
  transition: opacity 300ms;
}
.c-spinner-inner.is-active {
  opacity: 1;
  z-index: 9999;
  transition: opacity 300ms;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-button:not(.collapsed) {
  color: currentColor;
  background-color: transparent;
  box-shadow: none;
}

.accordion-button {
  background-color: transparent;
  padding: 0;
}
.accordion-button::after {
  display: none;
}

.accordion-body {
  padding: 0;
}

.accordion-item {
  background-color: transparent;
  border: none;
}

.c-breadcrumb {
  position: relative;
  z-index: 1020;
}
.c-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
}
.c-breadcrumb__list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1E1E1E;
  padding-inline-start: 8px;
}
.c-breadcrumb__list__item:first-child {
  padding-inline-start: 0;
}
.c-breadcrumb__list__item:first-child::before {
  display: none;
}
.c-breadcrumb__list__item::before {
  content: "";
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url("../images/icon/SVG/upload.svg");
  vertical-align: middle;
  margin-inline-end: 8px;
}
.c-breadcrumb__list__item.is-active {
  font-weight: 700;
  color: #89A130;
}
.c-breadcrumb__list__item.is-active::before {
  background-image: url("../images/other-icon/upload.svg");
}
.c-breadcrumb__list__item .item__link {
  display: block;
  color: #1E1E1E;
}
.c-breadcrumb__list__item .item__link:hover {
  color: #1E1E1E;
}

.c-pagination {
  display: flex;
  justify-content: center;
  margin: 40px -5px 0 -5px;
}
@media (min-width: 992px) {
  .c-pagination {
    margin-top: 80px;
  }
}
.c-pagination .icon {
  width: 16px;
  height: 16px;
  color: #1E1E1E;
}
.c-pagination__item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5px;
}
.c-pagination__item.is-active .c-pagination__item__link {
  background-color: #89A130;
  color: #ffffff;
}
.c-pagination__item__text {
  color: #1E1E1E;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (hover: hover) {
  .c-pagination__item__text:hover {
    color: #1E1E1E;
    background-color: transparent;
  }
}
.c-pagination__item__link {
  color: #1E1E1E;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: none;
}
@media (hover: hover) {
  .c-pagination__item__link:hover {
    color: #1E1E1E;
    background-color: transparent;
  }
}

.c-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 40px;
  background-color: #8AA230;
  transition: all ease 400ms;
}
.c-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 6px solid #8AA230;
  animation-duration: 1s;
}
.c-btn:hover::before {
  animation-name: btn-hover;
}
@media (max-width: 991.98px) {
  .c-btn {
    padding: 12px 20px;
  }
  .c-btn::before {
    border: 3px solid #8AA230;
  }
  .c-btn:hover::before {
    animation-name: btn-hover-mobile;
  }
}
.c-btn .icon {
  width: 58px;
  height: 58px;
  margin-right: 55px;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .c-btn .icon {
    width: 30px;
    height: 30px;
    margin-right: 30px;
  }
}
.c-btn .text {
  font-size: 2.25rem;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .c-btn .text {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  .c-btn .text {
    font-size: 1.25rem;
  }
}

@keyframes btn-hover {
  100% {
    top: -12px;
    right: -12px;
    bottom: -12px;
    left: -12px;
    opacity: 0;
  }
}
@keyframes btn-hover-mobile {
  100% {
    top: -6px;
    right: -6px;
    bottom: -6px;
    left: -6px;
    opacity: 0;
  }
}
.c-btn-copy, .c-btn-spon {
  padding: 9px 35px;
  box-shadow: -5px 5px 0px 0px #3B5A32;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #ffffff;
  border: 2px solid #3B5A32;
  font-size: 1.25rem;
  font-weight: 500;
  color: #3B5A32;
  transition: all ease 0.1s;
}
@media (hover: hover) {
  .c-btn-copy:hover, .c-btn-spon:hover {
    box-shadow: none;
    transform: translate(-2px, 2px);
  }
}
@media (max-width: 991.98px) {
  .c-btn-copy, .c-btn-spon {
    font-size: 1.125rem;
  }
}
@media (max-width: 767.98px) {
  .c-btn-copy, .c-btn-spon {
    padding: 8px 20px;
    font-size: 1rem;
  }
}

.c-card {
  position: relative;
  cursor: pointer;
  transition: all ease 400ms;
}
@media (hover: hover) {
  .c-card:hover {
    transition: all ease 400ms;
  }
  .c-card:hover .c-card__img img {
    transform: translate(-50%, -50%) scale(1.1);
    transition: all ease 400ms;
  }
}
.c-card__head {
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
@media (min-width: 768px) {
  .c-card__head {
    margin-bottom: 16px;
  }
}
.c-card__body {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1px;
}
.c-card__footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.c-card__img {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.2162162162%;
}
.c-card__img img, .c-card__img video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all ease 400ms;
}
.c-card__img video {
  z-index: -1;
}
.c-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
  font-weight: 700;
}
.c-card__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-align: start;
}

.c-field {
  display: flex;
  flex-direction: column;
  margin-bottom: 17px;
}
@media (min-width: 992px) {
  .c-field {
    flex-direction: row;
    margin-bottom: 30px;
  }
}
.c-field:last-child {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .c-field.sty-column {
    flex-direction: column;
  }
}
.c-field.sty-column .c-field__start {
  margin-bottom: 8px;
}
.c-field__start {
  width: 30%;
  margin-bottom: 8px;
}
@media (min-width: 992px) {
  .c-field__start {
    margin-bottom: 0;
  }
}
.c-field__end {
  width: 100%;
}

.c-label {
  width: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-weight: 500;
  line-height: 100%;
  transition: all ease 400ms;
}

.c-input-group {
  width: 100%;
  display: flex;
}
.c-input-group > * {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-inline-end: 10px;
}
.c-input-group > *:last-child {
  margin-inline-end: 0;
}

.c-input {
  width: 100%;
  display: flex;
  align-items: center;
}
.c-input input {
  width: 100%;
  transition: all ease 400ms;
}
.c-input input:-webkit-autofill {
  box-shadow: inset 0 0 0 2000px #ffffff;
}
.c-input input:autofill {
  box-shadow: inset 0 0 0 2000px #ffffff;
}
.c-input__clear {
  width: 15px;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease 400ms;
}
.c-input__clear .icon {
  width: 15px;
  height: 15px;
}

.c-input-file {
  cursor: pointer;
}
.c-input-file * {
  cursor: pointer;
}
.c-input-file input[type=file] {
  width: 0;
  height: 0;
  display: inline-block;
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.c-input-file .c-input-text {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-input-file .c-input-text .icon {
  width: 16px;
  height: 16px;
  border: 1px solid #1FA809;
  margin-inline-start: 8px;
}

.c-file-group {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  margin-inline-start: -20px;
  margin-inline-end: -20px;
}
.c-file-group > * {
  margin-bottom: 10px;
  padding-inline-start: 20px;
  padding-inline-end: 20px;
}
.c-file-group > *:last-child {
  margin-bottom: 0;
}
.c-file-group .icon-clear {
  cursor: pointer;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -10px;
  right: -10px;
  border: 1px solid #1FA809;
}

.c-file-img {
  height: 360px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #F0F0F0;
  border-radius: 8px;
  position: relative;
  padding: 30px;
}
.c-file-img img {
  width: auto;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.c-file-text {
  position: relative;
  display: inline-flex;
  font-size: 0.875rem;
  margin-top: 4px;
}

.c-textarea {
  position: relative;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #999999;
  transition: all ease 400ms;
}
.c-textarea textarea {
  width: 100%;
  height: 100%;
  height: 128px !important;
  padding: 12px 22px !important;
}
.c-textarea .os-custom {
  height: 100%;
}

.c-checkbox-group {
  display: flex;
  flex-wrap: wrap;
  margin-inline-start: -10px;
  margin-inline-end: -10px;
  margin-bottom: -20px;
}
.c-checkbox-group > * {
  margin-inline-start: 10px;
  margin-inline-end: 10px;
  margin-bottom: 20px;
}

.c-checkbox, .c-radio {
  display: flex;
  align-items: center;
}
.c-checkbox label, .c-radio label {
  cursor: pointer;
}
.c-checkbox input[type=checkbox], .c-checkbox input[type=radio], .c-radio input[type=checkbox], .c-radio input[type=radio] {
  position: relative;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
  margin-inline-end: 10px;
  border: 1px solid #1FA809;
}
.c-checkbox input[type=checkbox]::before, .c-checkbox input[type=radio]::before, .c-radio input[type=checkbox]::before, .c-radio input[type=radio]::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-checkbox input[type=checkbox]:checked::before, .c-checkbox input[type=radio]:checked::before, .c-radio input[type=checkbox]:checked::before, .c-radio input[type=radio]:checked::before {
  content: "";
}

.c-select {
  width: 100%;
  transition: all ease 400ms;
}

.c-hint {
  font-size: 0.75rem;
  color: #999999;
  margin-top: 4px;
  transition: all ease 400ms;
}
@media (min-width: 992px) {
  .c-hint {
    font-size: 0.875rem;
  }
}
.c-hint.is-error {
  color: #FE2828;
}

[field-state] {
  transition: all ease 400ms;
}
[field-state] .c-hint.is-error {
  display: none;
}
[field-state].is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
[field-state].is-hidden {
  display: none;
}
[field-state].is-error .c-label {
  color: #FE2828;
}
[field-state].is-error .c-hint.is-error {
  display: block;
}

[input-state] {
  transition: all ease 400ms;
}
[input-state].is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
[input-state].is-hidden {
  display: none;
}
[input-state].is-focus .c-input {
  border-color: #89A130;
}
[input-state].is-typing .c-input__clear {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: all ease 400ms;
}
[input-state].is-error .c-input, [input-state].is-error .c-textarea {
  border: 1px solid #FE2828;
}
[input-state].is-error .c-input__clear {
  color: #FE2828;
  transition: all ease 400ms;
}
[input-state].is-error .c-select .selectric, [input-state].is-error .c-select .select2-container--default .select2-selection--single {
  border-color: #FE2828;
}
[input-state].is-error .c-hint.is-error {
  display: block;
}

.c-toast {
  min-width: 214px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%);
  border-radius: 8px;
  line-height: 145%;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  padding: 27px 42px;
  opacity: 0;
  pointer-events: none;
  z-index: 1080;
  transition: all ease 400ms;
}
.c-toast.is-show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
  transition: all ease 400ms;
}
.c-toast__icon {
  width: 56px;
  height: 56px;
  border-radius: 50px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 8px;
}
.c-toast__icon .icon {
  width: 28px;
  height: 28px;
  color: #89A130;
}
.c-toast__text {
  text-align: center;
}

.m-editor .article-system-wrap {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .m-editor .article-system-wrap {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}
.m-editor .nsdi-article-system {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .m-editor .nsdi-article-system {
    margin-bottom: 50px;
  }
}
.m-editor .nsdi-article-system .row {
  align-items: center;
}
.m-editor .nas-image-wrapper img {
  width: 100%;
}
.m-editor #T6 {
  margin-bottom: -24px;
}
.m-editor #T6 .nas-image-wrapper {
  margin-bottom: 24px;
}
.m-editor > div:last-child .nsdi-article-system {
  margin-bottom: 0;
}

.m-header {
  position: relative;
  overflow: hidden;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 29.1666666667%;
}
.m-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.m-cards {
  margin-bottom: -36px;
}
@media (min-width: 1200px) {
  .m-cards {
    margin-bottom: -96px;
  }
}
.m-cards > * {
  margin-bottom: 36px;
}
@media (min-width: 1200px) {
  .m-cards > * {
    margin-bottom: 96px;
  }
}

.l-nav {
  background-color: transparent;
  position: absolute;
  top: 0;
  padding: 18px;
  z-index: 1040;
  transition: all ease 400ms;
}
.l-nav__logo {
  white-space: nowrap;
  overflow: hidden;
  text-indent: 101%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 247px;
  height: 57.09405px;
  background-image: url("../images/layout/logo.svg");
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min--moz-device-pixel-ratio: 1.25), only screen and (-o-min-device-pixel-ratio: 1.25/1), only screen and (min-device-pixel-ratio: 1.25), only screen and (min-resolution: 200dpi), only screen and (min-resolution: 1.25dppx) {
  .l-nav__logo {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 247px;
    height: 57.09405px;
    background-image: url("../images/layout/logo@2x.png");
  }
}
@media (max-width: 991.98px) {
  .l-nav__logo {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 172.9px;
    height: 39.965835px;
    background-image: url("../images/layout/logo.svg");
  }
}
@media only screen and (max-width: 991.98px) and (-webkit-min-device-pixel-ratio: 1.25), only screen and (max-width: 991.98px) and (min--moz-device-pixel-ratio: 1.25), only screen and (max-width: 991.98px) and (-o-min-device-pixel-ratio: 1.25/1), only screen and (max-width: 991.98px) and (min-device-pixel-ratio: 1.25), only screen and (max-width: 991.98px) and (min-resolution: 200dpi), only screen and (max-width: 991.98px) and (min-resolution: 1.25dppx) {
  .l-nav__logo {
    white-space: nowrap;
    overflow: hidden;
    text-indent: 101%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 172.9px;
    height: 39.965835px;
    background-image: url("../images/layout/logo@2x.png");
  }
}
.l-nav__logo__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
.l-nav .container-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-nav .control-wrap .control-list {
  display: flex;
  align-items: center;
}
.l-nav .control-wrap .control-list .control-item {
  margin-right: 18px;
}
.l-nav .control-wrap .control-list .control-item:nth-child(2) {
  margin-right: 24px;
}
.l-nav .control-wrap .control-list .control-item:last-of-type {
  margin-right: 0;
}
@media (max-width: 1199.98px) {
  .l-nav .control-wrap .control-list .control-item:nth-child(1), .l-nav .control-wrap .control-list .control-item:nth-child(2) {
    display: none;
  }
}
.l-nav .control-wrap .control-list .control-item .control-donate {
  padding: 9px 27px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #89A130;
  font-size: 1.125rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  .l-nav .control-wrap .control-list .control-item .control-donate {
    font-size: 1rem;
    padding: 8px 16px;
  }
}
.l-nav .w3-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199.98px) {
  .l-nav .w3-wrap {
    display: none;
  }
}
.l-nav .w3-wrap .w3-list {
  display: flex;
  align-items: center;
}
.l-nav .w3-wrap .w3-list .w3-item {
  margin-right: 37px;
}
.l-nav .w3-wrap .w3-list .w3-item:last-of-type {
  margin-right: 0;
}
.l-nav .w3-wrap .w3-list .w3-item .w3-link {
  font-size: 1.125rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

.l-footer {
  padding-bottom: 90px;
  background-color: #E9EDDB;
}
@media (max-width: 2559.98px) {
  .l-footer {
    padding-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  .l-footer {
    padding-bottom: 40px;
  }
}
.l-footer__copy {
  text-align: center;
  font-size: 1.25rem;
  line-height: 70px;
  font-family: "Poppins", sans-serif;
  color: #3B5A32;
}
@media (max-width: 2559.98px) {
  .l-footer__copy {
    line-height: normal;
  }
}
@media (max-width: 991.98px) {
  .l-footer__copy {
    font-size: 1rem;
  }
}
@media (max-width: 767.98px) {
  .l-footer__copy {
    font-size: 0.875rem;
  }
}
.l-footer__copy .footer-bold {
  font-weight: 700;
}

.l-loading {
  background-color: #ffffff;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
}
.l-loading.is-hidden {
  opacity: 0;
  z-index: -99;
  transition: all ease 400ms;
}

[data-page=index] section.banner-section {
  background-color: #E8ECE1;
  padding-top: 215px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section {
    padding-top: 200px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.banner-section {
    padding-top: 165px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.banner-section {
    padding-top: 110px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section {
    padding-top: 80px;
  }
}
[data-page=index] section.banner-section .container {
  position: relative;
  z-index: 2;
}
[data-page=index] section.banner-section .container .title-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media (max-width: 1199.98px) {
  [data-page=index] section.banner-section .container .title-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section .container .title-wrap {
    flex-direction: unset;
    align-items: center;
    flex-wrap: wrap;
  }
}
[data-page=index] section.banner-section .container .sub-title {
  font-size: 3.125rem;
  font-weight: 500;
  color: #695B55;
  margin-right: 8px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section .container .sub-title {
    font-size: 2.75rem;
  }
}
[data-page=index] section.banner-section .container .banner-logo {
  margin-bottom: 45px;
  width: 550px;
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section .container .banner-logo {
    width: 500px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.banner-section .container .banner-logo {
    width: 400px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.banner-section .container .banner-logo {
    width: 100%;
  }
}
[data-page=index] section.banner-section .container .banner-logo .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.9640062598%;
}
[data-page=index] section.banner-section .container .banner-logo .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.banner-section .container .banner-title {
  font-size: 4.125rem;
  font-weight: 700;
  color: #695B55;
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section .container .banner-title {
    font-size: 3.75rem;
  }
}
[data-page=index] section.banner-section .container .banner-description {
  margin-bottom: 86px;
  max-width: 625px;
  width: 625px;
  font-size: 1.125rem;
  line-height: 140%;
  font-weight: 600;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.banner-section .container .banner-description {
    max-width: 590px;
    width: 590px;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section .container .banner-description {
    max-width: 500px;
    width: 500px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.banner-section .container .banner-description {
    max-width: 400px;
    width: 400px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section .container .banner-description {
    max-width: 100%;
    width: 100%;
    margin-bottom: 40px;
  }
}
[data-page=index] section.banner-section .bg-img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}
[data-page=index] section.banner-section .bg-img .bg-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
[data-page=index] section.banner-section .bg-img .bg-wrap .earth {
  position: absolute;
  width: 1256px;
  right: 0;
  bottom: -450px;
}
@media (max-width: 2047.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    width: 1100px;
    bottom: -360px;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    width: 1000px;
    bottom: -300px;
    right: -5%;
  }
}
@media (max-width: 1619.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    width: 800px;
    bottom: -150px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    width: 700px;
    bottom: -50px;
    right: -3%;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    width: 600px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .earth {
    display: none;
  }
}
[data-page=index] section.banner-section .bg-img .bg-wrap .earth .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 94.7452229299%;
}
[data-page=index] section.banner-section .bg-img .bg-wrap .earth .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
  position: absolute;
  width: 200px;
  top: 37%;
  left: 19%;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
    top: 30%;
    left: 2%;
  }
}
@media (max-width: 2047.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
    top: 36%;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
    width: 180px;
    top: 44%;
  }
}
@media (max-width: 1619.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
    width: 150px;
    top: 52%;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp {
    display: none;
  }
}
[data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 83.5%;
}
[data-page=index] section.banner-section .bg-img .bg-wrap .post-stamp .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.banner-section .bg-img .bg-wrap .sign {
  position: absolute;
  left: 12%;
  bottom: 0;
  width: 329px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .sign {
    left: 0;
    width: 300px;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .sign {
    width: 260px;
  }
}
@media (max-width: 1619.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .sign {
    width: 200px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.banner-section .bg-img .bg-wrap .sign {
    display: none;
  }
}
[data-page=index] section.banner-section .bg-img .bg-wrap .sign .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 97.26443769%;
}
[data-page=index] section.banner-section .bg-img .bg-wrap .sign .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.marquee-section {
  height: 140px;
  background-color: #89A130;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 1920.98px) {
  [data-page=index] section.marquee-section {
    height: 110px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.marquee-section {
    height: 78px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.marquee-section {
    height: 57px;
  }
}
[data-page=index] section.marquee-section .marquee {
  display: inline-block;
  font-size: 6rem;
  letter-spacing: 0.5rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@media (max-width: 1920.98px) {
  [data-page=index] section.marquee-section .marquee {
    font-size: 4.375rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.marquee-section .marquee {
    font-size: 3rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.marquee-section .marquee {
    font-size: 2.25rem;
  }
}
[data-page=index] section.marquee-section .hollow {
  position: relative;
  color: #89A130;
  z-index: 10;
}
[data-page=index] section.marquee-section .hollow:before {
  position: absolute;
  z-index: -1;
  -webkit-text-stroke: 5px #ffffff;
  content: attr(data-stroke);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
[data-page=index] section.video-section {
  position: relative;
  padding: 130px 0;
  background-image: url("../images/pages/index/video/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 991.98px) {
  [data-page=index] section.video-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.video-section {
    padding: 40px 0;
  }
}
[data-page=index] section.video-section .video-wrap {
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
[data-page=index] section.video-section .video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.video-section .shin-hye-sun {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 512px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.video-section .shin-hye-sun {
    left: 0;
    width: 460px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.video-section .shin-hye-sun {
    display: none;
  }
}
[data-page=index] section.video-section .shin-hye-sun .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 120.8984375%;
}
[data-page=index] section.video-section .shin-hye-sun .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.africa-section .grid-wrap {
  display: grid;
  grid-template-columns: 28.203125% 11.5625% 3.59375% 2.734375% 14.0625% 11.640625% 28.203125%;
}
[data-page=index] section.africa-section .grid-wrap .section-title {
  grid-column: 2/6;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 575.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title {
    grid-column: 1/6;
    padding-left: 20px;
  }
}
[data-page=index] section.africa-section .grid-wrap .section-title .description {
  font-size: 2.5rem;
  color: #8AA230;
  margin-bottom: 26px;
  font-weight: 500;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .description {
    font-size: 1.875rem;
    margin-bottom: 15px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .description {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .description {
    font-size: 1rem;
  }
}
[data-page=index] section.africa-section .grid-wrap .section-title .africa {
  display: block;
  font-size: 6.25rem;
  color: #435736;
  font-weight: 900;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .africa {
    font-size: 3.75rem;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .africa {
    font-size: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .africa {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .africa {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .africa {
    display: inline-block;
  }
}
[data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
  display: block;
  font-size: 6.25rem;
  color: #8AA230;
  font-weight: 900;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
    font-size: 3.75rem;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
    font-size: 3.125rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-title .ethiopia {
    display: inline-block;
  }
}
[data-page=index] section.africa-section .grid-wrap .description-bg {
  background-color: #434343;
  grid-column: 3/8;
  grid-row: 3/4;
}
[data-page=index] section.africa-section .grid-wrap .section-description {
  grid-column: 4/8;
  grid-row: 3/4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
[data-page=index] section.africa-section .grid-wrap .section-description span {
  font-size: 2.5rem;
  color: #ffffff;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description span {
    font-size: 1.875rem;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description span {
    font-size: 1.5rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description span {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description span {
    font-size: 1rem;
  }
}
[data-page=index] section.africa-section .grid-wrap .section-description .description-bold {
  margin-top: 40px;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description .description-bold {
    margin-top: 15px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.africa-section .grid-wrap .section-description .description-bold {
    margin-top: 0;
  }
}
[data-page=index] section.africa-section .grid-wrap .section-description .description-bold .children {
  color: #89A130;
}
[data-page=index] section.africa-section .grid-wrap .africa-1 {
  grid-column: 6/8;
  grid-row: 1/3;
}
[data-page=index] section.africa-section .grid-wrap .africa-2 {
  grid-column: 1/3;
  grid-row: 2/3;
}
[data-page=index] section.africa-section .grid-wrap .africa-3 {
  grid-column: 3/6;
  grid-row: 2/3;
}
[data-page=index] section.africa-section .grid-wrap .africa-4 {
  grid-column: 1/3;
  grid-row: 3/5;
}
[data-page=index] section.africa-section .grid-wrap .africa-5 {
  grid-column: 3/6;
  grid-row: 4/5;
}
[data-page=index] section.africa-section .grid-wrap .africa-6 {
  grid-column: 6/8;
  grid-row: 4/5;
}
[data-page=index] section.africa-section .grid-wrap .img-wrap {
  width: 100%;
  height: 100%;
}
[data-page=index] section.africa-section .grid-wrap .img-wrap img {
  width: 100%;
  height: 100%;
}
[data-page=index] section.discover-section {
  padding: 260px 0;
  background-color: #E9EDDB;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.discover-section {
    padding: 110px 0;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section {
    padding: 40px 0;
  }
}
[data-page=index] section.discover-section .section-title {
  margin-bottom: 50px;
  text-align: center;
  font-size: 4.375rem;
  font-weight: 700;
  color: #3B5A32;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.discover-section .section-title {
    font-size: 3.75rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .section-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .section-title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.discover-section .section-title .climate {
  color: #80911F;
}
[data-page=index] section.discover-section .section-description {
  margin-bottom: 115px;
  text-align: center;
  font-size: 2.25rem;
  line-height: 120%;
  font-weight: 500;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.discover-section .section-description {
    font-size: 1.875rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .section-description {
    margin-bottom: 30px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .section-description {
    font-size: 1.25rem;
  }
}
[data-page=index] section.discover-section .card-wrap {
  display: flex;
  flex-wrap: wrap;
}
[data-page=index] section.discover-section .card-wrap .each-card {
  width: calc((100% - 50px) / 3);
  margin-right: 25px;
}
[data-page=index] section.discover-section .card-wrap .each-card:last-of-type {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  [data-page=index] section.discover-section .card-wrap .each-card:last-of-type {
    margin-bottom: 0;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-head .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 123.595505618%;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-head .img-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 100%;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-head .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body {
  position: relative;
  padding: 120px 20px 75px;
  background-color: #ffffff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body {
    padding: 100px 20px 50px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body {
    padding: 50px 20px 40px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body {
    padding: 40px 20px 30px;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .card-title {
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
  line-height: 120%;
  font-weight: 600;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .card-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .card-title {
    font-size: 1.25rem;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .hashtag-wrap {
  margin-bottom: 37px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .hashtag-wrap {
    margin-bottom: 24px;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .hashtag-wrap .each-hashtag {
  text-align: center;
  font-size: 1.25rem;
  line-height: 140%;
  font-weight: 600;
  color: #8AA230;
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .hashtag-wrap .each-hashtag {
    font-size: 1rem;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .button-wrap .more {
  padding: 18px 32px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  background-color: #3B5A32;
  width: 255px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .button-wrap .more {
    padding: 12px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .button-wrap .more {
    padding: 8px;
    font-size: 1rem;
  }
}
[data-page=index] section.discover-section .card-wrap .each-card .card-body .number {
  position: absolute;
  top: -10px;
  left: 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #8AA230;
  color: #ffffff;
  font-size: 3rem;
  line-height: 120%;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
@media (max-width: 991.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .number {
    width: 60px;
    height: 60px;
    font-size: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.discover-section .card-wrap .each-card .card-body .number {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}
[data-page=index] section.travel-section {
  padding: 110px 0;
  background-color: #E9EDDB;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section {
    padding: 40px 0;
  }
}
[data-page=index] section.travel-section .section-title {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  font-size: 6rem;
  font-weight: 700;
  color: #3B5A32;
}
[data-page=index] section.travel-section .section-title::before, [data-page=index] section.travel-section .section-title::after {
  content: "";
  position: absolute;
  width: 62px;
  height: 48px;
  top: 50%;
  transform: translateY(-50%);
}
[data-page=index] section.travel-section .section-title::before {
  background-image: url("../images/pages/index/travel/title-before.png");
  background-size: contain;
  left: -124px;
}
[data-page=index] section.travel-section .section-title::after {
  background-image: url("../images/pages/index/travel/title-after.png");
  background-size: contain;
  right: -124px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.travel-section .section-title {
    font-size: 3.75rem;
  }
  [data-page=index] section.travel-section .section-title::before, [data-page=index] section.travel-section .section-title::after {
    width: 46.5px;
    height: 36px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .section-title {
    font-size: 2.25rem;
    margin-bottom: 35px;
  }
  [data-page=index] section.travel-section .section-title::before, [data-page=index] section.travel-section .section-title::after {
    width: 31px;
    height: 24px;
  }
  [data-page=index] section.travel-section .section-title::before {
    left: -62px;
  }
  [data-page=index] section.travel-section .section-title::after {
    right: -62px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .section-title {
    font-size: 1.5rem;
  }
  [data-page=index] section.travel-section .section-title::before, [data-page=index] section.travel-section .section-title::after {
    width: 23.25px;
    height: 18px;
  }
}
[data-page=index] section.travel-section .section-title span {
  color: #8AA230;
}
[data-page=index] section.travel-section .dialog {
  position: relative;
  padding: 25px 50px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #8AA230;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 38px;
}
[data-page=index] section.travel-section .dialog::before {
  content: "";
  position: absolute;
  width: 28px;
  height: 24px;
  bottom: -18px;
  left: 25px;
  background: url("../images/pages/index/travel/dialog-arrow.png");
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .dialog {
    padding: 20px 30px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .dialog {
    margin-bottom: 25px;
    padding: 10px;
    font-size: 1.25rem;
  }
}
[data-page=index] section.travel-section .video {
  padding: 30px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.2);
  background-color: #ffffff;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .video {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .video {
    margin-bottom: 30px;
    padding: 10px;
  }
}
[data-page=index] section.travel-section .video .video-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
}
[data-page=index] section.travel-section .video .video-wrap iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.travel-section .step-wrap {
  display: flex;
  flex-wrap: wrap;
}
[data-page=index] section.travel-section .step-wrap .each-step {
  padding: 35px;
  width: calc((100% - 2px) / 3);
  margin-right: 1px;
  background-color: #ABBE65;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
}
[data-page=index] section.travel-section .step-wrap .each-step:last-of-type {
  margin-right: 0;
}
[data-page=index] section.travel-section .step-wrap .each-step:nth-child(2) {
  background-color: #8AA230;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step {
    width: 100%;
    padding: 20px;
    margin-right: 0;
  }
}
[data-page=index] section.travel-section .step-wrap .each-step .step-head {
  display: flex;
  margin-bottom: 15px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-head {
    align-items: center;
  }
}
[data-page=index] section.travel-section .step-wrap .each-step .step-head .tag {
  flex-shrink: 0;
  height: fit-content;
  margin-right: 24px;
  padding: 6px 25px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #ffffff;
  font-size: 1.375rem;
  color: #8AA230;
  font-weight: 900;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-head .tag {
    padding: 6px 15px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-head .tag {
    font-size: 1rem;
    margin-right: 16px;
  }
}
[data-page=index] section.travel-section .step-wrap .each-step .step-head .step-title {
  font-size: 2.125rem;
  font-weight: 600;
  color: #ffffff;
}
@media (max-width: 991.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-head .step-title {
    font-size: 1.875rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-head .step-title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.travel-section .step-wrap .each-step .step-body .text {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: #000000;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-body .text {
    font-size: 1.25rem;
  }
}
[data-page=index] section.travel-section .step-wrap .each-step .step-img {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767.98px) {
  [data-page=index] section.travel-section .step-wrap .each-step .step-img {
    width: 150px;
    margin: auto;
  }
}
[data-page=index] section.ready-section {
  padding: 110px 0;
  background-color: #E0E6C0;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section {
    padding: 40px 0;
  }
}
[data-page=index] section.ready-section .title-wrap {
  margin-bottom: 75px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .title-wrap {
    margin-bottom: 30px;
  }
}
[data-page=index] section.ready-section .title-wrap .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title {
    margin-bottom: 20px;
  }
}
[data-page=index] section.ready-section .title-wrap .section-title .tag {
  margin-right: 32px;
  padding: 6px 45px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #000000;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .tag {
    padding: 6px 35px;
    font-size: 1.875rem;
    margin-right: 24px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .tag {
    padding: 6px 15px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .tag {
    font-size: 1rem;
    margin-right: 16px;
  }
}
[data-page=index] section.ready-section .title-wrap .section-title .title {
  font-size: 4.8125rem;
  font-weight: 700;
  color: #3B5A32;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .title {
    font-size: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .title-wrap .section-title .title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.ready-section .title-wrap .section-description {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .title-wrap .section-description {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .title-wrap .section-description {
    font-size: 1.25rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap {
  padding: 85px 45px;
  background-color: #F1F7DD;
  box-shadow: 0 26px 13px rgba(121, 126, 104, 0.3412);
  margin-bottom: 65px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.ready-section .carbon-wrap {
    padding: 45px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap {
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 13px 13px rgba(121, 126, 104, 0.3412);
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-head {
  margin-bottom: 70px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head {
    margin-bottom: 35px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head {
    margin-bottom: 20px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-title {
  margin-bottom: 12px;
  text-align: center;
  font-size: 3.375rem;
  font-weight: 600;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-description {
  text-align: center;
  font-size: 1.875rem;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-description {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-head .carbon-description {
    font-size: 1.25rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -40px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list {
    margin-bottom: -20px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item {
  box-shadow: 10px 5px 20px rgba(0, 0, 0, 0.1);
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 40px;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item:nth-child(3n) {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
    margin-bottom: 20px;
  }
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item:nth-child(3n) {
    margin-right: 20px;
  }
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item {
    width: 100%;
    margin-right: 0;
  }
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item:nth-child(3n) {
    margin-right: 0;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content {
  width: 100%;
  position: relative;
  overflow: hidden;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
  display: block;
  width: 100%;
  height: 320px;
  padding: 30px;
  background-color: #ffffff;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 400px;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 350px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 320px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    padding: 20px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 380px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 330px;
  }
}
@media (max-width: 413.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
    height: 280px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head {
  margin-bottom: 20px;
  display: flex;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .check-block, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .check-block {
  margin-right: 20px;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  background-color: transparent;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .title, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .description, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .title, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description {
  display: block;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .title, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .title {
  margin-bottom: 8px;
  font-size: 1.4375rem;
  line-height: 120%;
  font-weight: 600;
  color: #4F5740;
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .title, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .title {
    font-size: 1.25rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .description, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description {
  font-size: 1.125rem;
  line-height: 120%;
  color: #4F5740;
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-head .label-title-wrap .description, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description {
    font-size: 1rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-body, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body {
  display: block;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-body .img-wrap, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .img-wrap {
  display: block;
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 51.9230769231%;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked .label-body .img-wrap img, [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .not-checked {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked {
  position: absolute;
  top: -100%;
  background-color: #628059;
  transition: all ease 0.2s;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .title {
  color: #ffffff;
  font-weight: 700;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .title .number {
  font-family: "Poppins", sans-serif;
  color: #c5e356;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description {
  display: flex;
  align-items: center;
  color: #ffffff;
  font-size: 1.4375rem;
  font-weight: 500;
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description {
    font-size: 1rem;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-head .label-title-wrap .description img {
  margin-left: 2px;
  transform: translateY(2px);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -5px;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
  position: relative;
  display: inline-block;
  width: calc((100% - 30px) / 7);
  height: 50px;
  margin-right: 5px;
  margin-bottom: 5px;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree:nth-child(7n) {
  margin-right: 0;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 91px;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 65px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 40px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 60px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 85px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 65px;
  }
}
@media (max-width: 413.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree {
    height: 50px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg {
  position: absolute;
  top: 0;
  left: 0;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .st0 {
  fill: #4a6242;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .st1 {
  fill: #c5e356;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .handkerchief {
  clip-path: polygon(0 40%, 100% 40%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .air-condition {
  clip-path: polygon(0 20%, 100% 20%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .recycle {
  clip-path: polygon(0 30%, 100% 30%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .reusable-cup {
  clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .unplug {
  clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-body .tree-wrap .each-tree svg .eco {
  clip-path: polygon(0 20%, 100% 20%, 100% 100%, 0 100%);
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-foot {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 1.3125rem;
  width: 100%;
  height: 70px;
  line-height: 70px;
  text-align: center;
  color: #ffffff;
  background-color: #56714D;
}
@media (max-width: 767.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-foot {
    font-size: 1.25rem;
    height: 50px;
    line-height: 50px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content .is-checked .label-foot .number {
  font-weight: 900;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content > .check-block {
  position: absolute;
  top: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-color: #ECF1DD;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content > .check-block {
    top: 20px;
    left: 20px;
  }
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item .label-content > .check-block .img-wrap {
  display: none;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item input {
  position: absolute;
  left: -100000%;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item input:checked ~ .label-content .is-checked {
  top: 0;
}
[data-page=index] section.ready-section .carbon-wrap .carbon-body .carbon-list .carbon-item input:checked ~ .label-content .check-block .img-wrap {
  display: block;
}
[data-page=index] section.ready-section .qa-wrap {
  padding: 0 30px;
}
[data-page=index] section.ready-section .qa-wrap .qa-list {
  list-style: disc;
}
[data-page=index] section.ready-section .qa-wrap .qa-list .qa-item {
  font-size: 1.125rem;
  color: #4F5740;
}
@media (max-width: 991.98px) {
  [data-page=index] section.ready-section .qa-wrap .qa-list .qa-item {
    font-size: 1rem;
  }
}
[data-page=index] section.ready-section .qa-wrap .qa-list .qa-item .question {
  font-weight: 700;
}
[data-page=index] section.register-section {
  position: relative;
  padding: 110px 0;
  background-color: #F1F7DD;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section {
    padding: 40px 0;
  }
}
[data-page=index] section.register-section .stamp {
  position: absolute;
  top: 155px;
  right: 19.5vw;
  transform: rotate(-8deg);
  width: 280px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .stamp {
    right: 4.5vw;
  }
}
@media (max-width: 1920.98px) {
  [data-page=index] section.register-section .stamp {
    width: 220px;
    top: 180px;
  }
}
@media (max-width: 1399.98px) {
  [data-page=index] section.register-section .stamp {
    top: 300px;
    right: 1.5vw;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .stamp {
    display: none;
  }
}
[data-page=index] section.register-section .stamp .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 83.2142857143%;
}
[data-page=index] section.register-section .stamp .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.register-section .title-wrap {
  margin-bottom: 75px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .title-wrap {
    margin-bottom: 30px;
  }
}
[data-page=index] section.register-section .title-wrap .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .title-wrap .section-title {
    margin-bottom: 20px;
  }
}
[data-page=index] section.register-section .title-wrap .section-title .tag {
  margin-right: 32px;
  padding: 6px 45px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #000000;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .tag {
    padding: 6px 35px;
    font-size: 1.875rem;
    margin-right: 24px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .tag {
    padding: 6px 15px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .tag {
    font-size: 1rem;
    margin-right: 16px;
  }
}
[data-page=index] section.register-section .title-wrap .section-title .title {
  font-size: 4.8125rem;
  font-weight: 700;
  color: #3B5A32;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .title {
    font-size: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .title-wrap .section-title .title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.register-section .title-wrap .section-description {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .title-wrap .section-description {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .title-wrap .section-description {
    font-size: 1.25rem;
  }
}
[data-page=index] section.register-section .information-wrap {
  margin-bottom: 70px;
  padding: 70px 60px;
  background-color: #ffffff;
  box-shadow: 0 26px 13px rgba(121, 126, 104, 0.3412);
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap {
    padding: 20px;
  }
}
[data-page=index] section.register-section .information-wrap .information-title {
  margin-bottom: 30px;
  font-size: 3rem;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .information-title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .information-title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.register-section .information-wrap .horizon {
  margin-bottom: 60px;
  width: 100%;
  height: 5px;
  background: url("../images/pages/index/register/lines.png") repeat;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .horizon {
    margin-bottom: 30px;
  }
}
[data-page=index] section.register-section .information-wrap .each-information-row {
  display: flex;
  margin-bottom: 20px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row {
    flex-direction: column;
  }
}
[data-page=index] section.register-section .information-wrap .each-information-row .each-information {
  width: calc((100% - 35px) / 2);
  margin-right: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
[data-page=index] section.register-section .information-wrap .each-information-row .each-information:last-of-type {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information:last-of-type {
    margin-bottom: 0;
  }
}
[data-page=index] section.register-section .information-wrap .each-information-row .each-information label {
  font-size: 1.5625rem;
  color: #064B5A;
  min-width: 160px;
  width: 160px;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information label {
    min-width: 30%;
    width: 30%;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information label {
    font-size: 1.25rem;
  }
}
[data-page=index] section.register-section .information-wrap .each-information-row .each-information select {
  position: relative;
  padding: 5px 10px;
  width: 275px;
  height: 50px;
  border: 1px solid #CDCDCD;
  background-image: url("../images/icon/icons/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: 95% center;
  font-size: 1.5625rem;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information select {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information select {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information select {
    width: 70%;
  }
}
[data-page=index] section.register-section .information-wrap .each-information-row .each-information input {
  padding: 5px 10px;
  width: 275px;
  height: 50px;
  border: 1px solid #CDCDCD;
  font-size: 1.5625rem;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information input {
    width: 60%;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information input {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .each-information-row .each-information input {
    width: 70%;
  }
}
[data-page=index] section.register-section .information-wrap .agree-wrap {
  margin-top: 60px;
  margin-bottom: 30px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .agree-wrap {
    margin-top: 30px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .agree-wrap {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
[data-page=index] section.register-section .information-wrap .agree-wrap input:checked ~ label::before {
  content: "";
  background: #ffffff url("../images/pages/index/register/radio-checked.png") center center no-repeat;
}
[data-page=index] section.register-section .information-wrap .agree-wrap label {
  cursor: pointer;
}
[data-page=index] section.register-section .information-wrap .agree-wrap label::before {
  content: "";
  display: inline-block;
  width: 37px;
  height: 37px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid #D0D0D0;
  vertical-align: middle;
  background-color: #ffffff;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .agree-wrap label::before {
    width: 25px;
    height: 25px;
  }
}
[data-page=index] section.register-section .information-wrap .agree-wrap label span {
  font-size: 1.25rem;
  color: #000000;
  vertical-align: middle;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .agree-wrap label span {
    font-size: 1rem;
  }
}
[data-page=index] section.register-section .information-wrap .agreement {
  margin-bottom: 50px;
  padding: 24px;
  background-color: #EFF0EC;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .information-wrap .agreement {
    margin-bottom: 30px;
    padding: 20px;
    max-height: 300px;
    height: 300px;
    overflow-y: auto;
  }
}
[data-page=index] section.register-section .information-wrap .agreement .agreement-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 500;
  color: #646464;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .information-wrap .agreement .agreement-title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.register-section .information-wrap .agreement .agreement-content {
  font-size: 1rem;
  color: #646464;
}
[data-page=index] section.register-section .information-wrap .agreement .agreement-content ul {
  padding-left: 20px;
  margin: 20px 0;
  list-style: disc;
}
[data-page=index] section.register-section .information-wrap .agreement .agreement-content a {
  color: #89A130;
}
[data-page=index] section.register-section .information-wrap .button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] section.register-section .ticket-wrap {
  margin-bottom: 50px;
  overflow: hidden;
}
[data-page=index] section.register-section .ticket-wrap .printtic {
  position: relative;
  width: 100%;
  height: 60px;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #4F5740;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic {
    height: 35px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic {
    height: 20px;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .top {
  position: relative;
  margin: auto;
  width: 95%;
  height: 5px;
  z-index: 2;
  background-color: #4F5740;
}
[data-page=index] section.register-section .ticket-wrap .printtic .top::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  background: linear-gradient(180deg, rgba(79, 87, 64, 0.9) 0%, rgba(79, 87, 64, 0.5) 10.33%, rgba(79, 87, 64, 0) 108.23%);
  bottom: -23px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .top {
    width: 90%;
  }
  [data-page=index] section.register-section .ticket-wrap .printtic .top::before {
    height: 15px;
    bottom: -15px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .top::before {
    height: 6px;
    bottom: -6px;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .top.on-trans::before {
  display: none;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket {
  position: relative;
  width: 95%;
  margin: auto;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  animation-name: ticketUpDown;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket {
    width: 90%;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket img {
  width: 100%;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket img.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket img.mobile {
    display: none;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content {
  position: absolute;
  width: 59%;
  top: 33%;
  left: 6%;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content {
    top: 24%;
    left: 4%;
    width: 92%;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
  display: flex;
  margin-bottom: 65px;
}
@media (max-width: 1619.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
    margin-bottom: 45px;
  }
}
@media (max-width: 1199.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
    margin-bottom: 30px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
    margin-bottom: 60px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
    margin-bottom: 40px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap {
    margin-bottom: 5%;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location {
  display: flex;
  align-items: center;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .title, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .title {
  font-size: 1.875rem;
  font-weight: 600;
  color: #75910A;
  margin-right: 10px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .title, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .title, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .title {
    font-size: 0.875rem;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .title.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .title.on-trans {
  transform: translateY(-10px);
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .title.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .title.on-trans {
    transform: translateY(-6px);
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .content, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .content {
  position: relative;
  padding: 0 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #E7EBCB;
  width: 100%;
  overflow: hidden;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location {
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media (max-width: 1399.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location {
    font-size: 1.625rem;
    line-height: 1.6923076923;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location {
    font-size: 1.25rem;
    line-height: 1.5909090909;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location {
    font-size: 0.875rem;
    line-height: 2;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location.on-trans {
  transform: translateY(-10px);
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-name.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name .ticket-location.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-name.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location .ticket-location.on-trans {
    transform: translateY(-6px);
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-name {
  width: 56%;
  max-width: 56%;
  margin-right: 10px;
  white-space: nowrap;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .info-wrap .info-location {
  width: calc(44% - 10px);
  max-width: calc(44% - 10px);
  white-space: nowrap;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .claim {
  font-size: 1.375rem;
  color: #6A5E56;
  margin-bottom: 30px;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .claim {
    font-size: 1rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .claim {
    font-size: 0.625rem;
    margin-bottom: 5%;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission {
  margin-bottom: 37px;
  display: flex;
  align-items: center;
}
@media (max-width: 1199.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission {
    margin-bottom: 25px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission {
    margin-bottom: 35px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission {
    margin-bottom: 25px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission {
    margin-bottom: 2%;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission:last-of-type {
  margin-bottom: 0;
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .title {
  width: 30px;
  max-width: 30px;
  font-size: 1.875rem;
  color: #75910A;
  margin-right: 20px;
  flex-shrink: 0;
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .title {
    font-size: 1.25rem;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .title {
    font-size: 0.875rem;
    width: 15px;
    max-width: 15px;
    margin-right: 10px;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .title.on-trans {
  transform: translateY(-10px);
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .title.on-trans {
    transform: translateY(-6px);
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .content {
  position: relative;
  padding: 0 10px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  background-color: #E7EBCB;
  width: calc(100% - 30px - 20px);
  max-width: calc(100% - 30px - 20px);
  overflow: hidden;
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .content {
    width: calc(100% - 15px - 10px);
    max-width: calc(100% - 15px - 10px);
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3 {
  font-size: 1.875rem;
  line-height: 1.4666666667;
}
@media (max-width: 1399.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3 {
    font-size: 1.625rem;
    line-height: 1.6923076923;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3 {
    font-size: 1.25rem;
    line-height: 1.5909090909;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3 {
    font-size: 0.875rem;
    line-height: 2;
  }
}
[data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3.on-trans {
  transform: translateY(-10px);
}
@media (max-width: 575.98px) {
  [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission1.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission2.on-trans, [data-page=index] section.register-section .ticket-wrap .printtic .ticket .ticket-content .mission-wrap .each-mission .ticket-mission3.on-trans {
    transform: translateY(-6px);
  }
}
[data-page=index] section.register-section .download-description {
  margin-bottom: 50px;
  padding: 0 60px;
  font-size: 1.125rem;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.register-section .download-description {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.register-section .download-description {
    font-size: 1rem;
  }
}
[data-page=index] section.register-section .button-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] section.start-section {
  padding: 110px 0;
  background-color: #DAE3B9;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section {
    padding: 40px 0;
  }
}
[data-page=index] section.start-section .title-wrap {
  margin-bottom: 75px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .title-wrap {
    margin-bottom: 30px;
  }
}
[data-page=index] section.start-section .title-wrap .section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .title-wrap .section-title {
    margin-bottom: 20px;
  }
}
[data-page=index] section.start-section .title-wrap .section-title .tag {
  margin-right: 32px;
  padding: 6px 45px;
  font-size: 2.5rem;
  font-weight: 500;
  color: #ffffff;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  border-radius: 100px;
  background-color: #000000;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .tag {
    padding: 6px 35px;
    font-size: 1.875rem;
    margin-right: 24px;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .tag {
    padding: 6px 15px;
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .tag {
    font-size: 1rem;
    margin-right: 16px;
  }
}
[data-page=index] section.start-section .title-wrap .section-title .title {
  font-size: 4.8125rem;
  font-weight: 700;
  color: #3B5A32;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .title {
    font-size: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .title-wrap .section-title .title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.start-section .title-wrap .section-description {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .title-wrap .section-description {
    font-size: 1.75rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .title-wrap .section-description {
    font-size: 1.25rem;
  }
}
[data-page=index] section.start-section .start-swiper {
  position: relative;
  margin-bottom: 50px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .start-swiper {
    margin-bottom: 30px;
  }
}
[data-page=index] section.start-section .start-swiper .swiper {
  padding-bottom: 30px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .start-swiper .swiper {
    padding-bottom: 0;
  }
}
[data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper {
  align-items: center;
}
[data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
[data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide .slide-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  box-shadow: 5px 20px 10px rgba(0, 0, 0, 0.1);
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide .slide-content {
    box-shadow: unset;
  }
}
[data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide .slide-content p {
  width: 100%;
  padding: 10px 26px;
  text-align: end;
  font-size: 1.625rem;
  color: #000000;
  background-color: #ffffff;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide .slide-content p {
    font-size: 1.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .start-swiper .swiper .swiper-wrapper .swiper-slide .slide-content p {
    padding: 10px;
    font-size: 1rem;
  }
}
[data-page=index] section.start-section .start-swiper .startSwiper-button-prev, [data-page=index] section.start-section .start-swiper .startSwiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1399.98px) {
  [data-page=index] section.start-section .start-swiper .startSwiper-button-prev, [data-page=index] section.start-section .start-swiper .startSwiper-button-next {
    display: none;
  }
}
[data-page=index] section.start-section .start-swiper .startSwiper-button-prev.swiper-button-disabled, [data-page=index] section.start-section .start-swiper .startSwiper-button-next.swiper-button-disabled {
  display: none;
}
[data-page=index] section.start-section .start-swiper .startSwiper-button-prev {
  left: -100px;
}
[data-page=index] section.start-section .start-swiper .startSwiper-button-next {
  right: -100px;
}
[data-page=index] section.start-section .show-wrap {
  display: flex;
  flex-wrap: wrap;
}
[data-page=index] section.start-section .show-wrap .each-show {
  display: flex;
  width: calc((100% - 50px) / 2);
  margin-right: 50px;
}
[data-page=index] section.start-section .show-wrap .each-show:last-of-type {
  margin-right: 0;
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .show-wrap .each-show {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
  [data-page=index] section.start-section .show-wrap .each-show:last-of-type {
    margin-bottom: 0;
  }
}
[data-page=index] section.start-section .show-wrap .each-show .icon-wrap {
  flex-shrink: 0;
  width: 100px;
  margin-right: 24px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .icon-wrap {
    width: 80px;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .icon-wrap {
    width: 60px;
  }
}
[data-page=index] section.start-section .show-wrap .each-show .icon-wrap .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 100%;
  margin-bottom: 15px;
}
[data-page=index] section.start-section .show-wrap .each-show .icon-wrap .img-wrap:last-of-type {
  margin-bottom: 0;
}
[data-page=index] section.start-section .show-wrap .each-show .icon-wrap .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap {
  padding-top: 14px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .text-wrap {
    padding-top: 0;
  }
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .show-title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: 700;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .text-wrap .show-title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .text-wrap .show-title {
    font-size: 1.25rem;
  }
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .hashtag-wrap {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .hashtag-wrap .each-hashtag {
  font-size: 1.125rem;
  color: #3B5A32;
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .show-wrap .each-show .text-wrap .hashtag-wrap .each-hashtag {
    font-size: 1rem;
  }
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .c-btn-copy {
  margin-bottom: 10px;
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .copy-description {
  margin-bottom: 10px;
}
[data-page=index] section.start-section .show-wrap .each-show .text-wrap .other-ref {
  transition: all ease 400ms;
}
@media (hover: hover) {
  [data-page=index] section.start-section .show-wrap .each-show .text-wrap .other-ref:hover {
    color: #89A130;
  }
}
[data-page=index] section.start-section .event-wrap {
  margin-top: 50px;
}
[data-page=index] section.start-section .event-wrap .event-description {
  text-align: center;
  font-size: 1.125rem;
  color: #3B5A32;
}
@media (max-width: 767.98px) {
  [data-page=index] section.start-section .event-wrap .event-description {
    font-size: 1rem;
  }
}
[data-page=index] section.start-section .event-wrap .event-description a {
  font-weight: 700;
}
[data-page=index] section.save-section {
  padding: 210px 0 120px 0;
  background-color: #E9EDDB;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section {
    padding: 60px 0;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section {
    padding: 40px 0;
  }
}
[data-page=index] section.save-section .section-title {
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .section-title {
    margin-bottom: 30px;
  }
}
[data-page=index] section.save-section .section-title .sub-title {
  display: block;
  margin-bottom: 16px;
  font-size: 3.125rem;
  color: #3B5A32;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .section-title .sub-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .section-title .sub-title {
    font-size: 1.25rem;
  }
}
[data-page=index] section.save-section .section-title .title {
  display: block;
  font-size: 4rem;
  font-weight: 600;
  color: #8AA230;
}
@media (max-width: 2559.98px) {
  [data-page=index] section.save-section .section-title .title {
    font-size: 3.75rem;
  }
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .section-title .title {
    font-size: 2.25rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .section-title .title {
    font-size: 1.5rem;
  }
}
[data-page=index] section.save-section .section-title .title .save {
  color: #3B5A32;
}
[data-page=index] section.save-section .project-title {
  margin-bottom: 130px;
  position: relative;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .project-title {
    margin-bottom: 60px;
  }
}
[data-page=index] section.save-section .project-title .bg {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8AA230;
}
[data-page=index] section.save-section .project-title .title {
  position: relative;
  z-index: 2;
  left: 15px;
  padding: 30px 50px;
  background-color: #ffffff;
  font-size: 1.875rem;
  font-weight: 600;
  color: #3B5A32;
  text-align: center;
  width: calc(100% - 30px);
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .project-title .title {
    padding: 20px;
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .project-title .title {
    padding: 10px;
    font-size: 1.25rem;
  }
}
[data-page=index] section.save-section .project-wrap {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -24px;
}
[data-page=index] section.save-section .project-wrap .each-project {
  width: calc((100% - 24px) / 2);
  margin-right: 24px;
  margin-bottom: 24px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
[data-page=index] section.save-section .project-wrap .each-project:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .project-wrap .each-project {
    width: 100%;
    margin-right: 0;
  }
}
[data-page=index] section.save-section .project-wrap .each-project .project-head img {
  width: 100%;
}
[data-page=index] section.save-section .project-wrap .each-project .project-body {
  padding: 30px;
  background-color: #ffffff;
  display: flex;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .project-wrap .each-project .project-body {
    padding: 20px;
  }
}
[data-page=index] section.save-section .project-wrap .each-project .project-body .project-icon {
  flex-shrink: 0;
  margin-right: 27px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .project-wrap .each-project .project-body .project-icon {
    margin-right: 15px;
  }
}
[data-page=index] section.save-section .project-wrap .each-project .project-body .project-content .title {
  margin-bottom: 23px;
  font-size: 2rem;
  font-weight: 600;
  color: #000000;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.save-section .project-wrap .each-project .project-body .project-content .title {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .project-wrap .each-project .project-body .project-content .title {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }
}
[data-page=index] section.save-section .project-wrap .each-project .project-body .project-content .description {
  font-size: 1.25rem;
  color: #3B5A32;
}
@media (max-width: 767.98px) {
  [data-page=index] section.save-section .project-wrap .each-project .project-body .project-content .description {
    font-size: 1rem;
  }
}
[data-page=index] section.company-section {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #E9EDDB;
}
@media (max-width: 991.98px) {
  [data-page=index] section.company-section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
[data-page=index] section.company-section .container .section-title {
  font-size: 3.75rem;
  line-height: 1.1666666667;
  font-weight: 700;
  color: #8AA230;
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.company-section .container .section-title {
    font-size: 2.25rem;
    margin-bottom: 40px;
  }
}
[data-page=index] section.company-section .container .company-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  [data-page=index] section.company-section .container .company-list {
    margin-bottom: 20px;
  }
}
[data-page=index] section.company-section .container .company-list .company-item {
  padding: 20px 25px;
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
  margin-bottom: 20px;
}
[data-page=index] section.company-section .container .company-list .company-item:last-of-type {
  margin-right: 0;
}
@media (max-width: 991.98px) {
  [data-page=index] section.company-section .container .company-list .company-item {
    padding: 10px;
    width: calc((100% - 20px) / 2);
  }
  [data-page=index] section.company-section .container .company-list .company-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 575.98px) {
  [data-page=index] section.company-section .container .company-list .company-item {
    width: 100%;
    margin-right: 0;
    padding: 0;
  }
}
[data-page=index] section.company-section .container .company-list .company-item .img-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 39.2045454545%;
}
[data-page=index] section.company-section .container .company-list .company-item .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
[data-page=index] section.company-section .container .btn-wrap {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767.98px) {
  [data-page=index] section.company-section .container .btn-wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}
[data-page=index] section.company-section .container .btn-wrap .c-btn-spon {
  width: 260px;
  text-align: center;
}

/*# sourceMappingURL=main.css.map */
