@import url("https://cdn.jsdelivr.net/npm/pretendard@latest/dist/web/variable/pretendardvariable-dynamic-subset.css");
/* reset.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  line-height: 1.4;
  color: #111;
  background-color: #fff;
}

body {
  min-width: 1200px;
  overflow-x: auto;
}

ul,
ol,
li {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font: inherit;
}

input,
textarea {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

body,
.site {
  min-width: 1200px;
  overflow-x: auto;
  color: #000000;
}

@media screen and (max-width: 768px) {
  body,
  .site {
    min-width: initial;
    overflow-x: hidden;
  }
}
.site__header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 1200px;
  z-index: 10;
  height: 80px;
  transition: background 0.3s ease;
  background-color: transparent;
}
.site__header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
  pointer-events: none;
  z-index: -1;
}
.site__header.scrolled {
  background: #4a8e47;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
}
.site__header .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.5rem;
}
.site__header .header-in {
  transition: transform 0.1s ease;
  will-change: transform;
}
.site__header .logo {
  width: 160px;
  display: flex;
  align-items: center;
}
.site__header .logo img {
  width: 71px;
  height: 55px;
  object-fit: cover;
  filter: brightness(0) invert(1);
}
.site__header .logo span {
  font-size: 12px;
  font-weight: bold;
  color: white;
}
.site__header .lang-search {
  width: 160px;
}
.site__header .search button {
  color: white;
}
.site__header .gnb .gnb__list {
  display: flex;
  gap: 2rem;
}
.site__header .gnb .gnb__list .gnb__item .gnb__link {
  display: inline-block;
  padding: 1rem;
  font-weight: 500;
  color: white;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.site__header .gnb-area {
  position: relative;
}
.site__header .gnb-area .dropdown-wrap {
  z-index: 8;
  display: none;
  position: absolute;
  top: -23%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  background-color: #4a8e47;
}
.site__header .gnb-area .dropdown-wrap .dropdown {
  width: 20%;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.2s;
  padding-bottom: 1rem;
}
.site__header .gnb-area .dropdown-wrap .dropdown .title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  padding: 1rem;
  font-size: 14px;
  font-weight: bold;
}
.site__header .gnb-area .dropdown-wrap .dropdown .title:hover {
  transform: scale(1);
}
.site__header .gnb-area .dropdown-wrap .dropdown.dropdown--product {
  width: 40%;
}
.site__header .gnb-area .dropdown-wrap .dropdown:nth-child(odd) {
  background-color: #4a8e47;
}
.site__header .gnb-area .dropdown-wrap .dropdown:nth-child(even) {
  background-color: #386c36;
}
.site__header .gnb-area .dropdown-wrap .dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.5rem 1rem;
  color: white;
  background-color: transparent;
  transition: transform 0.3s ease;
  will-change: transform;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translateZ(0);
  font-size: 14px;
}
.site__header .gnb-area .dropdown-wrap .dropdown a:hover {
  transform: scale(1.05);
}
.site__header .gnb-area:hover .dropdown-wrap {
  display: flex;
}
.site__header .gnb-area .dropdown--product {
  position: relative;
}
.site__header .gnb-area .dropdown--product .product__split {
  display: flex;
  gap: 2rem;
  padding: 0 1rem;
}
.site__header .gnb-area .dropdown--product .product__column {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.site__header .gnb-area .dropdown--product .product__label {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 14px;
}
.site__header .gnb-area .dropdown--product a {
  color: #fff;
  font-size: 0.95rem;
}
.site__header .gnb-area .dropdown--product a:hover {
  text-decoration: underline;
}
.site__header .lang-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.site__header .lang-search .search {
  padding: 1rem;
}

.site__footer {
  background-color: #f4f4f4;
  padding: 2rem 1rem 1rem;
  font-size: 0.8rem;
  color: #444;
}
.site__footer .container {
  max-width: 1200px;
  margin: 0 auto;
}
.site__footer .footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.site__footer .footer__left {
  flex: 0 0 200px;
}
.site__footer .footer__left .footer__logo {
  display: flex;
  align-items: flex-start;
}
.site__footer .footer__left .footer__logo .footer__logo-img {
  width: 60px;
  margin-bottom: 0.5rem;
}
.site__footer .footer__left .footer__logo p {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
}
.site__footer .footer__left h3 {
  font-size: 1rem;
  margin-top: 1rem;
}
.site__footer .footer__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  line-height: 1.4;
  color: #333;
}
.site__footer .footer__right p {
  font-size: 14px;
  color: #333;
}
.site__footer .footer__right a {
  color: #333;
  text-decoration: underline;
}
.site__footer .footer__divider {
  border-top: 1px solid #ddd;
  width: 100%;
  margin: 1.5rem 0 1rem;
}
.site__footer .footer__copyright {
  text-align: center;
  font-size: 0.75rem;
  color: #888;
}

@media screen and (max-width: 768px) {
  .site__footer .footer__left .footer__logo {
    flex-direction: row;
  }
  .site__footer .footer__left .footer__logo p {
    text-align: left;
  }

  .site__footer .footer__left {
    flex: initial;
  }
}
.chat__btn {
  z-index: 30;
  position: fixed;
  bottom: 24px;
  right: 24px;
  color: rgb(255, 255, 255);
  background-color: rgb(61, 44, 37);
  border-radius: 30px;
  min-width: 178px;
  height: 56px;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.chat__box {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 320px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}

.chat__box.active {
  display: flex;
}

.chat__header {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #f2f2f2;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
}

.chat__header img {
  width: 24px;
  margin-right: 0.5rem;
}

.chat__header .chat__close {
  margin-left: auto;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

.chat__body {
  padding: 1rem;
  font-size: 0.95rem;
  overflow-y: auto;
  max-height: 400px;
  background-color: rgb(232, 230, 230);
}

.chat__message.time {
  text-align: center;
  font-size: 0.75rem;
  color: gray;
  margin-bottom: 0.5rem;
}

.chat__message.bubble {
  background-color: #f4f4f4;
  padding: 0.75rem 1rem;
  border-radius: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.chat__form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background-color: #f4f4f4;
  padding: 1.5rem;
  border-radius: 16px;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.chat__form input {
  border: none;
  border-bottom: 1px solid #ccc;
  padding: 0.5rem;
  font-size: 0.9rem;
}

.chat__form button {
  margin-top: 1rem;
  padding: 0.75rem;
  background-color: #000;
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
}

.local__nav {
  background: #fff;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  font-size: 1rem;
}
.local__nav .container {
  display: flex;
  justify-content: center;
}
.local__nav .local__nav-list {
  display: flex;
  width: 100%;
  max-width: 1200px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.local__nav .local__nav-list .local__nav-item {
  position: relative;
  text-align: center;
  border-right: 1px solid #eee;
}
.local__nav .local__nav-list .local__nav-item:first-child {
  width: 80px;
  border-left: 1px solid #eee;
}
.local__nav .local__nav-list .local__nav-item:first-child a {
  justify-content: center;
}
.local__nav .local__nav-list .local__nav-item a,
.local__nav .local__nav-list .local__nav-item .nav__btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: none;
  border: none;
  font-weight: 500;
  color: #222;
  cursor: pointer;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  font-size: 16px;
}
.local__nav .local__nav-list .local__nav-item a.rotated .arrow,
.local__nav .local__nav-list .local__nav-item .nav__btn.rotated .arrow {
  transform: rotate(180deg);
}
.local__nav .local__nav-list .local__nav-item a .arrow,
.local__nav .local__nav-list .local__nav-item .nav__btn .arrow {
  transform: rotate(0);
  color: #216535;
  font-size: 0.875rem;
}
.local__nav .local__nav-list .local__nav-item a i,
.local__nav .local__nav-list .local__nav-item .nav__btn i {
  font-size: 1.25rem;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown {
  min-width: 220px;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-top: none;
  z-index: 6;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown .dropdown li {
  border-top: 1px solid #eee;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown .dropdown li a {
  display: block;
  padding: 0.75rem 1rem;
  text-align: left;
  color: #333;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown .dropdown li a:hover {
  background: #f9f9f9;
}
.local__nav .local__nav-list .local__nav-item.has-dropdown.on .dropdown {
  display: block;
}

@media screen and (max-width: 768px) {
  .local__nav {
    display: none;
  }
}
.fancybox__toolbar,
.fancybox__backdrop,
.fancybox__slide {
  z-index: inherit;
}

.search__modal {
  position: fixed;
  inset: 0;
  z-index: 10;
  height: 350px;
  background: #fff;
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
}
.search__modal.on {
  display: flex;
}
.search__modal .search__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.search__modal .search__inner {
  max-width: 600px;
  width: 100%;
}
.search__modal .search__inner h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.search__modal .search__inner p {
  margin-bottom: 2rem;
  color: #333;
}
.search__modal .search__inner form {
  display: flex;
  position: relative;
}
.search__modal .search__inner form input {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: none;
  border-bottom: 2px solid #76c087;
  outline: none;
  background: transparent;
}
.search__modal .search__inner form .search__submit {
  width: 3rem;
  background: #bce3b6;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.search__modal .search__inner form .search__submit i {
  font-size: 1rem;
  color: #222;
}

.search__area {
  margin-bottom: 6rem;
}
.search__area .search__form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.search__area .search__form input {
  flex: 1;
  max-width: 400px;
  padding: 0.75rem 1rem;
  border: 1px solid #cccccc;
  border-radius: 4px;
  font-size: 1rem;
}
.search__area .search__form button {
  padding: 0.75rem 1.5rem;
  background-color: #4a8e47;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.search__area .search__form button:hover {
  background-color: #417d3f;
}
.search__area .search__summary {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 1rem;
  color: #2e323b;
}
.search__area .search__summary strong {
  color: #4a8e47;
  font-weight: 700;
}
.search__area .search__results {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.search__area .search__results .search__item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border-bottom: 1px solid #eeeeee;
  padding-bottom: 2rem;
}
.search__area .search__results .search__item a {
  display: flex;
  gap: 1.5rem;
  text-decoration: none;
  color: inherit;
}
.search__area .search__results .search__item a img {
  max-width: 34%;
  width: 160px;
  height: 110px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.search__area .search__results .search__item a .info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.search__area .search__results .search__item a .info .badge {
  display: inline-block;
  background-color: #0072ce;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
}
.search__area .search__results .search__item a .info strong {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1.125rem;
  font-weight: 700;
  color: #000000;
}
.search__area .search__results .search__item a .info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1rem;
  color: #2e323b;
  line-height: 1.5;
}

.swiper-button-next, .swiper-button-prev {
  color: black !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  font-size: 1.5rem !important;
  font-weight: bold;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 86%;
  height: 100vh;
  background-color: #fff;
  z-index: 1000;
  padding: 4rem 1rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  display: none;
}
.mobile__menu.active {
  display: block;
  transform: translateX(0);
}
.mobile__menu .mobile__menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 1rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
}
.mobile__menu .mobile__menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #000000;
}
.mobile__menu .mobile__menu-list > li {
  border-bottom: 1px solid #eee;
}
.mobile__menu .mobile__menu-list > li .mobile__menu-link {
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}
.mobile__menu .mobile__menu-list > li .mobile__menu-link i.arrow {
  transition: transform 0.3s ease;
  color: #000;
}
.mobile__menu .mobile__menu-list > li.on .arrow {
  transform: rotate(180deg);
}
.mobile__menu .mobile__menu-list > li .mobile__submenu {
  display: none;
  flex-direction: column;
  padding: 0.5rem 0 1rem;
  color: #4a8e47;
}
.mobile__menu .mobile__menu-list > li .mobile__submenu strong {
  padding: 0.5rem 0 0.5rem 1rem;
}
.mobile__menu .mobile__menu-list > li .mobile__submenu a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-size: 1rem;
  color: #444;
}
.mobile__menu .mobile__menu-list > li .mobile__submenu a:hover {
  color: #4a8e47;
}
.mobile__menu .mobile__menu-list > li.on .mobile__submenu {
  display: flex;
}
.mobile__menu .mobile__menu-list > li:last-child {
  border-bottom: 1px solid #eee;
}

.mobile__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.mobile__overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile__submenu.columns {
  display: none;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0 1.5rem;
}
.mobile__submenu.columns ul {
  flex: 1;
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile__submenu.columns ul li a {
  font-size: 0.95rem;
  padding-left: 0.5rem;
  color: #444;
}
.mobile__submenu.columns ul li a:hover {
  color: #4a8e47;
}

.mobile__menu-list > li.on .mobile__submenu.columns {
  display: flex;
}

.lang-search {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}
.lang-search .search {
  padding: 1rem;
}
.lang-search .search button {
  background: none;
  border: none;
  font-size: 1.25rem;
  color: white;
}
.lang-search .mobile__menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: white;
  cursor: pointer;
  display: none;
}

@media screen and (max-width: 768px) {
  .site__header {
    height: 64px;
    min-width: 100%;
  }
  .site__header .container {
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .site__header .logo {
    width: 120px;
  }
  .site__header .logo img {
    width: 60px;
    height: 48px;
  }
  .site__header .logo span {
    font-size: 11px;
  }
  .site__header .gnb-area,
  .site__header .gnb,
  .site__header .dropdown-wrap {
    display: none;
  }
  .site__header .lang-search {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.5rem;
    width: auto;
  }
  .site__header .lang-search .search {
    padding: 0.25rem;
  }
  .site__header .lang-search .search button {
    font-size: 1.25rem;
    color: white;
    background: none;
    border: none;
  }
  .site__header .lang-search .mobile__menu-btn {
    display: block !important;
    font-size: 1.5rem;
    color: white;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mobile__menu {
    display: block;
  }

  .site__footer {
    padding: 2rem 1rem;
  }
  .site__footer .footer__grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .site__footer .footer__logo-img {
    margin-bottom: 0.25rem;
  }
}
.site__main .main__hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.site__main .main__hero video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: opacity 1s ease-in-out;
}
.site__main .main__hero .hero__overlay {
  z-index: 1;
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5rem 6rem;
  color: #fff;
}
.site__main .main__hero .hero__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site__main .main__hero .hero__content .hero__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
.site__main .main__hero .hero__content .hero__title h2 {
  font-size: 3rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.site__main .main__hero .hero__content .hero__title .highlight {
  color: #4a8e47;
}
.site__main .main__hero .hero__content .hero__desc {
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-size: 1.25rem;
  text-align: center;
}
.site__main .main__hero .hero__action .hero__cta {
  display: inline-block;
  padding: 0.75rem 3rem;
  border: 1px solid #fff;
  border-radius: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.site__main .main__hero .hero__action .hero__cta:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

@media screen and (max-width: 768px) {
  .site__main .main__hero .hero__overlay {
    padding: 2rem 1.5rem;
    align-items: center;
    text-align: center;
  }
  .site__main .main__hero .hero__content .hero__title {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid white;
  }
  .site__main .main__hero .hero__content .hero__title h2 {
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }
  .site__main .main__hero .hero__content .hero__desc {
    font-size: 1rem;
  }
  .site__main .main__hero .hero__action {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .site__main .main__hero .hero__action .hero__cta {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
  }
}
.site__sub .intro__hero {
  position: relative;
  height: 480px;
  text-align: center;
  background-image: url("../../image/sub/hero_01.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .site__sub .intro__hero {
    height: 320px;
  }
  .site__sub .intro__hero .page__title {
    font-size: 40px !important;
  }
}
.site__sub .intro__hero .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site__sub .intro__hero.hero--type-01 {
  background-image: url("../../image/sub/hero_01.jpg");
}
.site__sub .intro__hero.hero--type-02 {
  background-image: url("../../image/sub/hero_02.jpg");
}
.site__sub .intro__hero.hero--type-03 {
  background-image: url("../../image/sub/hero_03.jpg");
}
.site__sub .intro__hero.hero--type-04 {
  background-image: url("../../image/sub/hero_04.jpg");
}
.site__sub .intro__hero.hero--type-05 {
  background-image: url("../../image/sub/hero_05.jpg");
}
.site__sub .intro__hero.hero--type-06 {
  background-image: url("../../image/sub/hero_06.jpg");
}
.site__sub .intro__hero .page__title {
  font-weight: bold;
  margin-bottom: 1rem;
  color: white;
  font-size: 56px;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.site__sub .intro__hero .page__subtitle {
  font-size: 1.125rem;
  color: #555f74;
}
.site__sub .intro__content {
  padding: 3rem 0;
}
.site__sub .intro__content .intro__section-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.site__sub .intro__content .intro__text {
  font-size: 1rem;
  line-height: 1.75;
  color: #2e323b;
  margin-bottom: 2rem;
}
.site__sub .intro__content .intro__values {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 1rem;
  color: #000000;
}
.site__sub .intro__content .intro__values li {
  background: #f8f8f8;
  padding: 0.75rem 1.5rem;
  border-radius: 100px;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.section__content {
  padding: 4rem 0;
}
.section__content > .container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section__content .section__content-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  color: #4a8e47;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .section__content .section__content-title {
    font-size: 20px;
  }
  .section__content .section__content-title br {
    display: none;
  }
  .section__content span br {
    display: none;
  }
}

.core__values {
  background-color: #ffffff;
}
.core__values .grid {
  display: flex;
  flex-direction: column;
  margin-bottom: 4rem;
}
.core__values .grid .item {
  display: flex;
  text-align: center;
}
.core__values .grid .item .text {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #4A8E47;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.core__values .grid .item img {
  width: 50%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.core__values .grid .item:last-child {
  grid-column: span 2;
}

@media screen and (max-width: 768px) {
  .core__values .grid {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .core__values .grid .item {
    flex-direction: column;
    gap: 1rem;
  }
  .core__values .grid .item .text {
    order: 2;
    width: 100%;
    font-size: 2rem;
  }
  .core__values .grid .item img {
    order: 1;
    width: 100%;
  }
}
.contact__wrap {
  background-color: #ffffff;
  border-top: 1px solid #eeeeee;
}
.contact__wrap .contact__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.contact__wrap .contact__info {
  width: 50%;
  padding: 4rem;
}
.contact__wrap .contact__info .contact__logo {
  width: 160px;
  margin-bottom: 1rem;
}
.contact__wrap .contact__info h3 {
  font-size: 1.5rem;
  font-weight: bold;
}
.contact__wrap .contact__info p,
.contact__wrap .contact__info li {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  font-weight: normal;
}
.contact__wrap .contact__info p a,
.contact__wrap .contact__info li a {
  color: #4a8e47;
  text-decoration: underline;
}
.contact__wrap .contact__form {
  width: 50%;
  padding: 4rem;
  border-left: 1px solid #eeeeee;
}
.contact__wrap .contact__form h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.contact__wrap .contact__form > p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}
.contact__wrap .contact__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact__wrap .contact__form form label {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
  color: #000000;
}
.contact__wrap .contact__form form select,
.contact__wrap .contact__form form input,
.contact__wrap .contact__form form textarea {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 2px solid #000000;
  font-size: 1rem;
  padding: 0.5rem 0;
  font-family: inherit;
  color: #000000;
  resize: none;
}
.contact__wrap .contact__form form select:focus,
.contact__wrap .contact__form form input:focus,
.contact__wrap .contact__form form textarea:focus {
  outline: none;
  border-bottom: 2px solid #4a8e47;
}
.contact__wrap .contact__form form .contact__row {
  display: flex;
  gap: 1rem;
}
.contact__wrap .contact__form form .contact__row > div {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.contact__wrap .contact__form form textarea {
  resize: none;
  height: 50px;
  overflow-y: auto;
}
.contact__wrap .contact__form form button {
  width: 240px;
  background-color: #000000;
  color: #ffffff;
  font-weight: bold;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  cursor: pointer;
  margin: 0 auto;
  transition: 0.5s;
}
.contact__wrap .contact__form form button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.greeting__content .row {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.greeting__content .row div {
  width: 45%;
}
.greeting__content .row .greeting__img {
  width: 55%;
}
.greeting__content p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 1.5rem;
}
.greeting__content .greeting__highlight {
  font-size: 28px;
  line-height: 1.8;
  font-weight: bold;
  color: #4a8e47;
  text-align: left;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .greeting__content .row {
    flex-direction: column;
  }
  .greeting__content .row > * {
    width: 100% !important;
  }
  .greeting__content .row .greeting__img {
    order: 1;
  }
  .greeting__content .greeting__text {
    order: 2;
  }
}

.greeting__sign {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 3rem;
}

.logo_full {
  width: 214px;
  display: flex;
  align-items: center;
}
.logo_full img {
  width: 84px;
  height: 56px;
}
.logo_full p {
  font-weight: bold;
  font-size: 1rem;
  color: #000000;
  line-height: 1;
  margin: 0;
  text-align: left;
}
.logo_full .sign__logo {
  width: 160px;
  margin-bottom: 0.5rem;
}
.logo_full p {
  font-weight: bold;
  font-size: 1.25rem;
}

.history__content {
  padding: 4rem 0;
  background: #ffffff;
}
.history__content .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.history__content .timeline {
  position: relative;
  padding-left: 2rem;
  border-left: 2px solid #cccccc;
}
.history__content .timeline .entry {
  display: flex;
  position: relative;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.history__content .timeline .entry::before {
  content: "";
  position: absolute;
  left: -49px;
  top: 0;
  width: 32px;
  height: 32px;
  border: 8px solid #C8D5CA;
  background: #748276;
  border-radius: 50%;
  box-sizing: border-box;
}
.history__content .timeline .entry .date {
  width: 172px;
  font-weight: bold;
  color: #000000;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.history__content .timeline .entry .desc {
  color: #000000;
  line-height: 1.6;
  font-size: 1rem;
}
.history__content .timeline .entry .desc strong {
  font-weight: 700;
  color: #4a8e47;
}
@media screen and (max-width: 768px) {
  .history__content .timeline .entry .date {
    width: 100px;
  }
  .history__content .timeline .entry .desc {
    width: calc(100% - 100px);
  }
}

.certificate__content {
  padding: 4rem 0;
}
.certificate__content .certificate__title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: bold;
  margin-bottom: 2.5rem;
}
.certificate__content .cert__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  justify-items: center;
}
.certificate__content .cert__item {
  text-align: center;
}
.certificate__content .cert__item .img__wrap {
  overflow: hidden;
  border: 1px solid #eeeeee;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  background: #ffffff;
  padding: 1rem;
}
.certificate__content .cert__item .img__wrap img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  transition: transform 0.3s ease-in-out;
}
.certificate__content .cert__item .img__wrap img:hover {
  transform: scale(1.08);
}
.certificate__content .cert__item .cert__desc {
  margin-top: 0.75rem;
  font-weight: 500;
  color: #000000;
}

.location__map {
  position: relative;
  padding: 4rem 0;
}
.location__map .map__tooltip {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translate(-50%, -100%);
  background: white;
  border-radius: 6px;
  padding: 6px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  text-align: center;
  line-height: 1.4;
  z-index: 2;
}
.location__map .map__tooltip a {
  color: #0078eb;
  text-decoration: underline;
  font-size: 13px;
}
.location__map .location__info {
  margin-bottom: 2rem;
}
.location__map .location__info h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.location__map .location__info ul {
  font-size: 1rem;
  line-height: 1.8;
}
.location__map .location__info ul li {
  font-size: 16px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .location__map .location__info ul li {
    font-size: 14px;
  }
}
.location__map .location__info ul li strong {
  color: #4a8e47;
  display: inline-block;
  width: 6rem;
}
.location__map .location__info ul li a {
  color: #4a8e47;
  text-decoration: underline;
}
.location__map .location__map-embed iframe {
  width: 100%;
  height: 400px;
  border-radius: 6px;
  border: 1px solid #cccccc;
}

.product__content {
  padding: 4rem 0;
}
.product__content .product__title {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.product__content .product__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.2em;
  height: 1em;
  background-color: #a2dba1;
  z-index: -1;
  width: 0;
  transition: width 1s ease;
}
.product__content .aos-animate.product__title::before {
  width: 100%;
}
.product__content .product__desc {
  font-size: 1rem;
  color: #000;
  margin-bottom: 1.5rem;
}
.product__content .product__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .product__content .product__grid {
    justify-content: center;
  }
  .product__content .product__grid .product__card {
    max-width: 360px;
    width: 100%;
  }
}
.product__content .product__card {
  overflow: hidden;
  width: 280px;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 7px 7px 20px;
  opacity: 1;
  display: block;
  cursor: pointer;
}
.product__content .product__card:hover .product__img {
  transform: scale(1.1);
}
.product__content .product__card .product__img {
  width: 100%;
  height: 210px;
  transition: 1s;
}
.product__content .product__card .product__label {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 22px 30px;
  box-sizing: border-box;
  background-color: #fefefe;
}
.product__content .product__card .product__label strong {
  color: #4a8e47;
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 4px;
  word-break: break-word;
}
.product__content .product__card .product__label p {
  font-size: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gallery__slider {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.gallery__slider .swiper-slide {
  text-align: center;
}

.gallery__slider img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.product__detail {
  /*position: fixed;*/
  /*inset: 0;*/
  /*background: rgba(0, 0, 0, 0.8);*/
  /*display: none;*/
  /*z-index: 20;*/
  /*overflow: auto;*/
}
.product__detail .product__slider .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.product__detail .product__slider .swiper-wrapper {
  align-items: center !important;
}
.product__detail.show {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product__detail-inner {
  display: flex;
  background: #fff;
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product__detail-inner {
    flex-direction: column;
  }
}
.product__detail-left {
  position: relative;
  width: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .product__detail-left {
    width: 100%;
  }
  .product__detail-left .swiper {
    height: 100%;
  }
}
.product__detail-left .btn__zoom {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: background-color 0.2s;
}
.product__detail-left .btn__zoom:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.product__detail-left .btn__zoom i {
  font-size: 16px;
}
.product__detail-left .swiper-slide img {
  max-width: 100%;
  height: auto;
  max-height: 80vh;
  aspect-ratio: 1/1;
  border: 1px solid #efefef;
  border-radius: 4px;
}
.product__detail-right {
  width: 50%;
  padding: 0 2rem;
  overflow-y: auto;
}
@media screen and (max-width: 768px) {
  .product__detail-right {
    width: 100%;
  }
}
.product__detail-right .product__name {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.product__detail-right .product__desc,
.product__detail-right .product__pn,
.product__detail-right .product__features,
.product__detail-right .product__lead {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.5;
}
.product__detail-right .inquiry__btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.75rem 1.5rem;
  background-color: #7bb87c;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.product__detail-right .inquiry__btn:hover {
  background-color: #68a56b;
}
.product__detail .modal__close {
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0.5rem;
  right: 0.5rem;
  font-size: 2rem;
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
}

.clients__content {
  padding: 4rem 0;
}
.clients__content .clients__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .clients__content .clients__grid {
    flex-direction: column;
  }
  .clients__content .clients__grid .client__item {
    width: 100% !important;
  }
}
.clients__content .client__item {
  width: calc(33.3333333333% - 1.3333333333rem);
  text-align: center;
}
.clients__content .client__item .img_box {
  display: flex;
  align-items: center;
  justify-content: center;
  widtg: 100%;
  height: 200px;
}
.clients__content .client__item img {
  height: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease-in-out;
}
.clients__content .client__item img:hover {
  transform: scale(1.05);
}
.clients__content .client__item .client__info {
  padding: 1rem;
  background-color: #f8f8f8;
}
.clients__content .client__item .client__info strong {
  display: block;
  font-size: 1.25rem;
  font-weight: 600;
  color: #4a8e47;
}
.clients__content .client__item .client__info span {
  font-size: 0.9rem;
  color: #555f74;
  margin-top: 0.25rem;
  display: block;
}

.news__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.news__list .news__item {
  border: 1px solid #ededed;
  padding: 2rem;
  border-radius: 0.5rem;
}
.news__list .news__item a {
  text-decoration: none;
  color: #000000;
  display: block;
}
.news__list .news__item a:hover .news__title {
  color: #0072ce;
}
.news__list .news__item .news__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}
.news__list .news__item .news__meta {
  font-size: 0.875rem;
  color: #555f74;
  margin-bottom: 1rem;
}
.news__list .news__item .news__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: #2e323b;
}

.news__detail {
  padding: 2rem 0;
}
.news__detail .news__title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #000000;
}
.news__detail .news__meta {
  font-size: 0.875rem;
  color: #555f74;
  margin-bottom: 2rem;
}
.news__detail .news__body {
  font-size: 1rem;
  line-height: 1.75;
  color: #2e323b;
}
.news__detail .news__body .news__img {
  display: block;
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  border-radius: 8px;
}
.news__detail .news__body p {
  font-size: 1rem;
  color: #000000;
  font-weight: normal;
}
.news__detail .news__footer {
  margin-top: 2rem;
}
.news__detail .news__footer .news__share {
  display: flex;
  justify-content: flex-end;
}
.news__detail .news__footer .news__share button {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #2e323b;
  background: none;
  border: none;
  cursor: pointer;
}
.news__detail .news__footer .news__share button:hover {
  color: #000000;
}

.news__recent {
  margin-top: 4rem;
}
.news__recent .recent__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.news__recent .recent__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news__recent .recent__list .recent__item {
  margin-bottom: 1.5rem;
}
.news__recent .recent__list .recent__item a {
  text-decoration: none;
  color: #000000;
}
.news__recent .recent__list .recent__item a h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.news__recent .recent__list .recent__item a p {
  font-size: 0.875rem;
  color: #2e323b;
}
.news__recent .recent__list .recent__item a:hover {
  text-decoration: underline;
}

.news__comments {
  margin-top: 4rem;
}
.news__comments .comments__title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.news__comments textarea {
  width: 100%;
  height: 120px;
  padding: 1rem;
  border: 1px solid #bbbbbb;
  border-radius: 4px;
  font-size: 1rem;
  margin-bottom: 1rem;
  resize: none;
  overflow-y: auto;
}
.news__comments .btn--primary {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.5);
  color: #ffffff;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.news__comments .btn--primary:hover {
  background-color: #00569b;
}

.news__recent {
  padding: 3rem 0;
  background-color: #f8f8f8;
}
.news__recent .news__recent-title {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}
.news__recent .news__card {
  background: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s;
}
.news__recent .news__card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.news__recent .news__card .news__card-link {
  text-decoration: none;
  color: inherit;
}
.news__recent .news__card .news__card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.news__recent .news__card .news__card-desc {
  font-size: 0.875rem;
  color: #2e323b;
  margin-bottom: 1rem;
}
.news__recent .news__card .news__card-meta {
  font-size: 0.75rem;
  color: #555f74;
  display: flex;
  gap: 1rem;
}
.news__recent .news__card .news__card-meta i {
  margin-right: 0.25rem;
}

.support__content {
  padding: 4rem 0;
}
.support__content .support__intro {
  text-align: center;
  margin-bottom: 3rem;
}
.support__content .support__intro .support__highlight {
  color: #4a8e47;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.support__content .support__intro .support__desc {
  font-size: 1rem;
  color: #2e323b;
}
.support__content .support__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.support__content .support__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #bbbbbb;
  border-radius: 8px;
  width: 240px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}
.support__content .support__box img {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}
.support__content .support__box p {
  font-weight: bold;
  font-size: 1rem;
  color: #000000;
}
.support__content .support__box:hover {
  border-color: #4a8e47;
  background: #f8f8f8;
  transform: translateY(-4px);
}

.support__content .section__content-title {
  text-align: center;
}
.support__content span {
  display: block;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 20px;
}

.support__grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.support__grid li {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  width: 390px;
  height: 248px;
  padding: 2rem;
  border: 1px solid #ddd;
  border-radius: 1rem;
  cursor: pointer;
}

.support__grid li:hover {
  
}

.support__grid li strong {
  font-size: 20px;
  font-weight: normal;
}
.support__grid li i {
  width: 80px;
  height: 80px;
  font-size: 80px;
  color: #4a8e47;
}
@media screen and (max-width: 768px) {
  .support__grid {
    flex-direction: column;
    gap: 1rem;
  }
  .support__grid li {
    width: 100%;
  }
}

.contact__page {
  padding: 5rem 0;
  background-color: #f9fafc;
}
@media screen and (max-width: 768px) {
  .contact__page {
    padding: 0;
  }
  .contact__page .contact__formbox form .form__row {
    flex-direction: column;
  }
}
.contact__page .contact__formbox {
  max-width: 720px;
  margin: 0 auto;
  background: #fff;
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}
.contact__page .contact__formbox h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.contact__page .contact__formbox p {
  color: #2e323b;
  margin-bottom: 2rem;
}
.contact__page .contact__formbox form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.contact__page .contact__formbox form .form__row {
  display: flex;
  gap: 1rem;
}
.contact__page .contact__formbox form .form__row .form__group {
  flex: 1;
}
.contact__page .contact__formbox form .form__group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact__page .contact__formbox form .form__group label {
  font-weight: 600;
}
.contact__page .contact__formbox form .form__group input,
.contact__page .contact__formbox form .form__group select,
.contact__page .contact__formbox form .form__group textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  resize: none;
  background-color: white;
  color: #000;
  box-sizing: border-box;
  background-clip: padding-box;
  line-height: 1.4;
}
.contact__page .contact__formbox form .form__group select {
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23444' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px 8px;
  padding-right: 2.5rem;
}
.contact__page .contact__formbox form .form__group textarea {
  min-height: 160px;
  resize: none;
}
.contact__page .contact__formbox form button.btn--primary {
  align-self: flex-start;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  background-color: #4a8e47;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin: 0 auto;
}
.contact__page .contact__formbox form button.btn--primary:hover {
  background-color: #386c36;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 2rem;
}
.pagination .page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  padding: 0 0.5rem;
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
  font-size: 0.95rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s;
}
.pagination .page.on {
  background: #7bb87c;
  color: #fff;
  border-color: #7bb87c;
  font-weight: bold;
}
.pagination .page.dots {
  border: none;
  background: none;
  cursor: default;
  color: #999;
}
.pagination .page:disabled {
  opacity: 0.5;
  cursor: default;
}
.pagination .page i {
  font-size: 1rem;
}
.pagination .page:hover:not(.on):not(:disabled):not(.dots) {
  background: #f4f4f4;
}

.inquiry__modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.inquiry__modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
}
.inquiry__modal .inquiry__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.inquiry__modal .inquiry__box {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  width: 100%;
  max-width: 500px;
  z-index: 1;
}
.inquiry__modal h3 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: bold;
}
.inquiry__modal .form__group {
  margin-bottom: 1rem;
}
.inquiry__modal .form__group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.inquiry__modal .form__group input,
.inquiry__modal .form__group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: none;
}
.inquiry__modal .btn--primary {
  display: flex;
  padding: 0.75rem 1.5rem;
  background-color: #7bb87c;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin: 0 auto;
}
.inquiry__modal .btn--primary:hover {
  background-color: #68a56b;
}
.inquiry__modal .inquiry__close {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

#mainVideo {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  transition: opacity 1s ease;
  opacity: 1;
}

#mainVideo.fade-out {
  opacity: 0;
}

/*# sourceMappingURL=style.css.map */
