#sub-main {
  width: 100%;
  height: auto;
  padding-top: 100px;
}
@media (max-width: 1280px) {
  #sub-main {
    padding-top: 60px;
  }
}

.subvisual {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #00BC70;
}
@media (max-width: 1280px) {
  .subvisual {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .subvisual {
    margin-bottom: 60px;
  }
}
.subvisual .top {
  width: 100%;
  height: 25rem;
  background: #00BC70;
}
@media (max-width: 1280px) {
  .subvisual .top {
    height: 20rem;
  }
}
.subvisual .top .container {
  width: 95%;
  height: 100%;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 1280px) {
  .subvisual .top .container {
    gap: 16px;
  }
}
.subvisual .top .container > h1 {
  font-size: 48px;
  line-height: 1.2;
  color: white;
  font-weight: 800;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .subvisual .top .container > h1 {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .subvisual .top .container > h1 {
    font-size: 28px;
  }
}
.subvisual .top .container p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  word-break: keep-all;
  color: white;
}
@media (max-width: 768px) {
  .subvisual .top .container p {
    font-size: 14px;
  }
}
.subvisual .bottom {
  width: 100%;
  height: auto;
}
.subvisual .bottom .container {
  width: 95%;
  height: auto;
  padding: 10px 0;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
}
@media (max-width: 1280px) {
  .subvisual .bottom .container {
    gap: 12px;
  }
}
.subvisual .bottom .container > a, .subvisual .bottom .container > span {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #00BC70;
}
@media (max-width: 768px) {
  .subvisual .bottom .container > a, .subvisual .bottom .container > span {
    font-size: 14px;
  }
}
.subvisual .bottom .container svg {
  flex: 0 0 auto;
  width: 22px;
  height: auto;
  fill: #00BC70;
}
@media (max-width: 768px) {
  .subvisual .bottom .container svg {
    width: 18px;
  }
}
.subvisual .product-tabs {
  width: 100%;
  height: auto;
  background: black;
}
.subvisual .product-tabs .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  padding: 10px 0;
  margin: 0 auto;
}
.subvisual .product-tabs .container .tab-list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 30px;
}
@media (max-width: 1280px) {
  .subvisual .product-tabs .container .tab-list {
    gap: 12px 24px;
  }
}
.subvisual .product-tabs .container .tab-list > li {
  flex: 0 0 auto;
}
.subvisual .product-tabs .container .tab-list > li > a {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1280px) {
  .subvisual .product-tabs .container .tab-list > li > a {
    font-size: 16px;
    font-weight: 500;
  }
}
.subvisual .product-tabs .container .tab-list > li > a:hover, .subvisual .product-tabs .container .tab-list > li > a.now {
  color: #00BC70;
}
.subvisual .product-tabs .container .tab-list .col {
  flex: 0 0 1px;
  height: 20px;
  background: #aaa;
}

.product-page {
  width: 100%;
  height: auto;
  padding-bottom: 120px;
}
@media (max-width: 1280px) {
  .product-page {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .product-page {
    padding-bottom: 60px;
  }
}
.product-page .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}
@media (max-width: 1280px) {
  .product-page .container {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .product-page .container {
    gap: 40px;
  }
}
.product-page .container .sec-head {
  width: 100%;
  height: auto;
}
.product-page .container .sec-head > h1 {
  width: 100%;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: #00BC70;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .product-page .container .sec-head > h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-head > h1 {
    font-size: 24px;
  }
}
.product-page .container .sec-body {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body {
    gap: 60px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-body {
    gap: 40px;
  }
}
.product-page .container .sec-body .product-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 52px 12px;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list {
    gap: 40px 12px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-body .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-page .container .sec-body .product-list .item {
  width: 100%;
  height: auto;
  border: 1px solid #00BC70;
  transition: all 0.2s ease-in-out;
}
.product-page .container .sec-body .product-list .item > a {
  width: 100%;
  height: auto;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list .item > a {
    padding: 12px;
    gap: 16px;
  }
}
.product-page .container .sec-body .product-list .item > a .product-image {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.15);
}
.product-page .container .sec-body .product-list .item > a .product-image > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap {
  width: 100%;
  height: auto;
  padding: 0 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.2s ease-in-out;
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-code {
  margin-bottom: 8px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  background: #00BC70;
  transition: inherit;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-code {
    font-size: 14px;
  }
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-name {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  color: #00BC70;
  word-break: keep-all;
  transition: inherit;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-name {
    margin-bottom: 12px;
    font-size: 16px;
  }
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-size {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  transition: inherit;
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-size em {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
  transition: inherit;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-size em {
    font-size: 14px;
  }
}
.product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-size span {
  font-size: 16px;
  font-weight: 200;
  line-height: 1.2;
  color: #464646;
  word-break: keep-all;
  transition: inherit;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .product-list .item > a .product-content-wrap .prod-size span {
    font-size: 14px;
  }
}
.product-page .container .sec-body .product-list .item:hover {
  background: #00BC70;
}
.product-page .container .sec-body .product-list .item:hover .product-content-wrap .prod-code {
  background: white;
  color: #00BC70;
}
.product-page .container .sec-body .product-list .item:hover .product-content-wrap .prod-name {
  color: white;
}
.product-page .container .sec-body .product-list .item:hover .product-content-wrap .prod-size em, .product-page .container .sec-body .product-list .item:hover .product-content-wrap .prod-size span {
  color: white;
}
.product-page .container .sec-body .pagination {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .pagination {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-body .pagination {
    gap: 16px;
  }
}
@media (max-width: 480px) {
  .product-page .container .sec-body .pagination {
    gap: 10px;
  }
}
.product-page .container .sec-body .pagination > a {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  color: #aaa;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .pagination > a {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-body .pagination > a {
    font-size: 14px;
  }
}
.product-page .container .sec-body .pagination > a.now {
  color: #00BC70;
}
.product-page .container .sec-body .pagination > a.material-symbols-outlined {
  font-size: 28px;
  color: #00BC70;
}
@media (max-width: 1280px) {
  .product-page .container .sec-body .pagination > a.material-symbols-outlined {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .product-page .container .sec-body .pagination > a.material-symbols-outlined {
    font-size: 18px;
  }
}

.view-page {
  width: 100%;
  height: auto;
  padding-bottom: 120px;
}
@media (max-width: 1280px) {
  .view-page {
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .view-page {
    padding-bottom: 60px;
  }
}
.view-page .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .view-page .container {
    gap: 40px;
  }
}
.view-page .container .summary-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row {
    flex-direction: column;
  }
}
.view-page .container .summary-row .left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .left {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .left {
    flex: unset;
    width: 100%;
  }
}
.view-page .container .summary-row .left .product-swiper {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid #00BC70;
}
.view-page .container .summary-row .left .product-swiper .swiper-wrapper {
  width: 100%;
  height: 100%;
}
.view-page .container .summary-row .left .product-swiper .swiper-wrapper .swiper-slide {
  position: relative;
  width: 100% !important;
  height: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.view-page .container .summary-row .left .product-swiper .swiper-wrapper .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
.view-page .container .summary-row .left .product-swiper .swiper-navigation {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: auto;
  padding: 0 4%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  z-index: 3;
}
.view-page .container .summary-row .left .product-swiper .swiper-navigation div {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border-radius: 100000rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px) brightness(1.4);
  -webkit-backdrop-filter: blur(10px) brightness(1.4);
  cursor: pointer;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .left .product-swiper .swiper-navigation div {
    width: 36px;
    height: 36px;
  }
}
.view-page .container .summary-row .left .product-swiper .swiper-navigation div > span {
  font-size: 24px;
  color: #04804E;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .left .product-swiper .swiper-navigation div > span {
    font-size: 20px;
  }
}
.view-page .container .summary-row .left .swiper-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .left .swiper-grid {
    gap: 10px;
  }
}
.view-page .container .summary-row .left .swiper-grid .cell {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  overflow: hidden;
  border: 1px solid #00BC70;
  cursor: pointer;
}
.view-page .container .summary-row .left .swiper-grid .cell > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.view-page .container .summary-row .right {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right {
    flex: unset;
    width: 100%;
  }
}
.view-page .container .summary-row .right .name-row {
  width: 100%;
  height: auto;
  padding: 0 4%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.view-page .container .summary-row .right .name-row .prod-code {
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  background: #00BC70;
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .name-row .prod-code {
    font-size: 14px;
  }
}
.view-page .container .summary-row .right .name-row .prod-name {
  margin-bottom: 12px;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  color: #00BC70;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .name-row .prod-name {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .name-row .prod-name {
    font-size: 24px;
  }
}
.view-page .container .summary-row .right .name-row .prod-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  word-break: keep-all;
  color: #3D3D3D;
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .name-row .prod-desc {
    font-size: 14px;
  }
}
.view-page .container .summary-row .right .spec-row {
  width: 100%;
  height: auto;
  padding: 28px 4%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: #fafafa;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row {
    padding: 24px;
    gap: 28px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .spec-row {
    padding: 16px;
    gap: 20px;
  }
}
.view-page .container .summary-row .right .spec-row .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row .top {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .spec-row .top {
    gap: 16px;
  }
}
.view-page .container .summary-row .right .spec-row .top .spec-title {
  padding-bottom: 6px;
  border-bottom: 1px solid #00BC70;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row .top .spec-title {
    font-size: 16px;
  }
}
.view-page .container .summary-row .right .spec-row .top .spec-title .green-dot {
  font-weight: 900;
  color: #00BC70;
}
.view-page .container .summary-row .right .spec-row .top .spec-table {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .spec-row .top .spec-table {
    grid-template-columns: 1fr;
  }
}
.view-page .container .summary-row .right .spec-row .top .spec-table .cell {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.view-page .container .summary-row .right .spec-row .top .spec-table .cell dt {
  flex: 0 0 100px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row .top .spec-table .cell dt {
    flex: 0 0 60px;
    font-size: 14px;
  }
}
.view-page .container .summary-row .right .spec-row .top .spec-table .cell dd {
  flex: 1 1 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.2;
  color: #3D3D3D;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row .top .spec-table .cell dd {
    font-size: 14px;
  }
}
.view-page .container .summary-row .right .spec-row .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.view-page .container .summary-row .right .spec-row .bottom > a {
  flex: 0 0 auto;
  width: 180px;
  height: 50px;
  padding: 0 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #00BC70;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .view-page .container .summary-row .right .spec-row .bottom > a {
    width: 150px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .view-page .container .summary-row .right .spec-row .bottom > a {
    font-size: 14px;
  }
}
.view-page .container .summary-row .right .spec-row .bottom > a.go-back {
  background: black;
}
.view-page .container .content-row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.view-page .container .content-row .row-title {
  width: 100%;
  height: 60px;
  margin-bottom: 48px;
  padding: 0 4%;
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #00BC70;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
}
@media (max-width: 1280px) {
  .view-page .container .content-row .row-title {
    height: 52px;
    margin-bottom: 36px;
  }
}
@media (max-width: 768px) {
  .view-page .container .content-row .row-title {
    height: 48px;
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.view-page .container .content-row .content-box {
  width: 90%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .view-page .container .content-row .content-box {
    width: 100%;
  }
}
.view-page .container .content-row .content-box img {
  max-width: 100%;
  height: auto;
}

.company-summary {
  width: 100%;
  height: auto;
  margin-bottom: 120px;
}
@media (max-width: 1280px) {
  .company-summary {
    margin-bottom: 80px;
  }
}
@media (max-width: 768px) {
  .company-summary {
    margin-bottom: 60px;
  }
}
.company-summary .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1280px) {
  .company-summary .container {
    gap: 16px;
  }
}
.company-summary .container > h1 {
  width: 100%;
  height: auto;
  padding-bottom: 16px;
  font-size: 50px;
  font-weight: 900;
  word-break: keep-all;
  line-height: 1.3;
  color: black;
  border-bottom: 3px solid #00BC70;
}
@media (max-width: 1280px) {
  .company-summary .container > h1 {
    padding-bottom: 12px;
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .company-summary .container > h1 {
    font-size: 24px;
  }
}
.company-summary .container .summary-box {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
}
@media (max-width: 1280px) {
  .company-summary .container .summary-box {
    flex-direction: column;
  }
}
.company-summary .container .summary-box > img {
  width: 100%;
  height: auto;
}
.company-summary .container .summary-box .r-b-content {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 24px 40px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.5;
  word-break: keep-all;
  color: white;
  border-radius: 24px 0 0 0;
  background: rgba(0, 188, 112, 0.9);
}
@media (max-width: 1280px) {
  .company-summary .container .summary-box .r-b-content {
    position: relative;
    right: unset;
    bottom: unset;
    width: 100%;
    height: auto;
    padding: 20px 24px;
    border-radius: 0 0 20px 0;
  }
}
@media (max-width: 768px) {
  .company-summary .container .summary-box .r-b-content {
    padding: 16px;
    font-size: 14px;
    border-radius: 0 0 16px 0;
  }
}

.special-features {
  width: 100%;
  height: auto;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
.special-features .cover {
  width: 100%;
  height: auto;
  background: rgba(0, 188, 112, 0.7);
}
.special-features .cover .container {
  width: 95%;
  height: auto;
  max-width: 1280px;
  padding: 100px 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  .special-features .cover .container {
    padding: 48px 0;
    gap: 28px;
  }
}
.special-features .cover .container .title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
@media (max-width: 1280px) {
  .special-features .cover .container .title-wrap {
    gap: 16px;
  }
}
.special-features .cover .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .special-features .cover .container .title-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .special-features .cover .container .title-wrap > h1 {
    font-size: 28px;
  }
}
.special-features .cover .container .title-wrap > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5;
  word-break: keep-all;
  color: white;
  text-align: center;
}
@media (max-width: 1280px) {
  .special-features .cover .container .title-wrap > p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .special-features .cover .container .title-wrap > p {
    font-size: 14px;
  }
}
.special-features .cover .container .feature-body {
  width: 100%;
  height: auto;
}
.special-features .cover .container .feature-body ul {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 768px) {
  .special-features .cover .container .feature-body ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .special-features .cover .container .feature-body ul {
    grid-template-columns: 1fr;
  }
}
.special-features .cover .container .feature-body ul li {
  width: 100%;
  height: 320px;
  padding: 40px 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: white;
  border-radius: 20px;
}
@media (max-width: 1280px) {
  .special-features .cover .container .feature-body ul li {
    padding: 28px 16px 0;
    border-radius: 16px;
  }
}
@media (max-width: 768px) {
  .special-features .cover .container .feature-body ul li {
    height: 100%;
    padding: 24px 16px;
  }
}
.special-features .cover .container .feature-body ul li b {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: #04804E;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .special-features .cover .container .feature-body ul li b {
    margin-bottom: 24px;
    font-size: 20px;
  }
}
.special-features .cover .container .feature-body ul li figure {
  position: relative;
  width: 70px;
  height: 70px;
  margin-bottom: 35px;
  overflow: hidden;
}
@media (max-width: 1280px) {
  .special-features .cover .container .feature-body ul li figure {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
}
.special-features .cover .container .feature-body ul li figure > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.special-features .cover .container .feature-body ul li p {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.special-features .cover .container .feature-body ul li p > span {
  position: relative;
  padding-left: 12px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: black;
}
@media (max-width: 1280px) {
  .special-features .cover .container .feature-body ul li p > span {
    font-size: 14px;
  }
}
.special-features .cover .container .feature-body ul li p > span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: 4px;
  border-radius: 100000rem;
  background: #00BC70;
}

.worry-solution {
  width: 100%;
  height: auto;
  padding: 120px 0;
}
@media (max-width: 1280px) {
  .worry-solution {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .worry-solution {
    padding: 48px 0;
  }
}
.worry-solution .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  .worry-solution .container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .worry-solution .container {
    gap: 24px;
  }
}
.worry-solution .container .title-wrap {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1280px) {
  .worry-solution .container .title-wrap {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .worry-solution .container .title-wrap {
    gap: 12px;
  }
}
.worry-solution .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 1280px) {
  .worry-solution .container .title-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .worry-solution .container .title-wrap > h1 {
    font-size: 24px;
  }
}
.worry-solution .container .title-wrap p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: #707070;
}
@media (max-width: 1280px) {
  .worry-solution .container .title-wrap p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .worry-solution .container .title-wrap p {
    font-size: 14px;
  }
}
.worry-solution .container .worry-body {
  width: 100%;
  height: auto;
}
.worry-solution .container .worry-body .worry-list {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
@media (max-width: 1280px) {
  .worry-solution .container .worry-body .worry-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .worry-solution .container .worry-body .worry-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.worry-solution .container .worry-body .worry-list .item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.worry-solution .container .worry-body .worry-list .item .worry-thumb {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.worry-solution .container .worry-body .worry-list .item .worry-thumb > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.worry-solution .container .worry-body .worry-list .item span {
  align-self: stretch;
  padding-bottom: 12px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  text-align: center;
  color: #2D2D2D;
  border-bottom: 2px solid rgba(0, 188, 112, 0.3);
}
@media (max-width: 1280px) {
  .worry-solution .container .worry-body .worry-list .item span {
    padding-bottom: 10px;
    font-size: 16px;
  }
}
.worry-solution .container .worry-body .worry-list .item:hover span {
  color: #00BC70;
  border-bottom-color: #00BC70;
}

.onestop {
  width: 100%;
  height: auto;
  padding: 100px 0;
  background: #00BC70;
}
@media (max-width: 1280px) {
  .onestop {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .onestop {
    padding: 40px 0;
  }
}
.onestop .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 100px;
}
@media (max-width: 1280px) {
  .onestop .container {
    flex-direction: column;
    gap: 24px;
  }
}
.onestop .container .title-wrap {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1280px) {
  .onestop .container .title-wrap {
    flex: unset;
    width: 100%;
    height: auto;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .onestop .container .title-wrap {
    gap: 12px;
  }
}
.onestop .container .title-wrap > h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .onestop .container .title-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .onestop .container .title-wrap > h1 {
    font-size: 24px;
  }
}
.onestop .container .title-wrap > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .onestop .container .title-wrap > p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .onestop .container .title-wrap > p {
    font-size: 14px;
  }
}
.onestop .container .onestop-grid {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (max-width: 1280px) {
  .onestop .container .onestop-grid {
    flex: unset;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .onestop .container .onestop-grid {
    grid-template-columns: 1fr;
  }
}
.onestop .container .onestop-grid .cell {
  width: 100%;
  height: 200px;
  padding: 0 5% 0 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("/img/icon-redpin.svg");
  background-position: 20px 20px;
  background-size: 32px auto;
  background-repeat: no-repeat;
  background-color: white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 1280px) {
  .onestop .container .onestop-grid .cell {
    height: 160px;
    padding: 0 4% 0 40px;
    background-position: 10px 10px;
    background-size: 24px;
  }
}
@media (max-width: 480px) {
  .onestop .container .onestop-grid .cell {
    height: 140px;
  }
}
.onestop .container .onestop-grid .cell .cell-contents {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.onestop .container .onestop-grid .cell .cell-contents > b {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .onestop .container .onestop-grid .cell .cell-contents > b {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .onestop .container .onestop-grid .cell .cell-contents > b {
    font-size: 16px;
  }
}
.onestop .container .onestop-grid .cell .cell-contents > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: #464646;
}
@media (max-width: 768px) {
  .onestop .container .onestop-grid .cell .cell-contents > p {
    font-size: 14px;
  }
}

.ceo-greeting {
  width: 100%;
  height: auto;
  padding: 100px 0;
}
@media (max-width: 1280px) {
  .ceo-greeting {
    padding: 60px 0;
  }
}
@media (max-width: 768px) {
  .ceo-greeting {
    padding: 40px 0;
  }
}
.ceo-greeting .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
}
.ceo-greeting .container .greeting-grid {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1280px) {
  .ceo-greeting .container .greeting-grid {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .ceo-greeting .container .greeting-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.ceo-greeting .container .greeting-grid .greeting-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
@media (max-width: 1280px) {
  .ceo-greeting .container .greeting-grid .greeting-box {
    grid-column: 1/-1;
  }
}
.ceo-greeting .container .greeting-grid .greeting-box > span {
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.1;
  color: white;
  background: #00BC70;
}
@media (max-width: 768px) {
  .ceo-greeting .container .greeting-grid .greeting-box > span {
    font-size: 14px;
  }
}
.ceo-greeting .container .greeting-grid .greeting-box > h4 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.2;
  color: #00BC70;
  word-break: keep-all;
}
@media (max-width: 768px) {
  .ceo-greeting .container .greeting-grid .greeting-box > h4 {
    font-size: 24px;
  }
}
.ceo-greeting .container .greeting-grid .greeting-box > p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
  word-break: keep-all;
  color: black;
}
@media (max-width: 768px) {
  .ceo-greeting .container .greeting-grid .greeting-box > p {
    font-size: 14px;
  }
}
.ceo-greeting .container .greeting-grid .box {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 2.4/1;
  border-radius: 16px;
  overflow: hidden;
}
.ceo-greeting .container .greeting-grid .box:nth-child(2) {
  grid-column: 1/-1;
}
.ceo-greeting .container .greeting-grid .box > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.direction {
  width: 100%;
  height: auto;
  padding: 100px 0;
  border-radius: 100px 100px 0 0;
  background: #00BC70;
}
@media (max-width: 1280px) {
  .direction {
    padding: 60px 0;
    border-radius: 60px 60px 0 0;
  }
}
@media (max-width: 768px) {
  .direction {
    padding: 40px 0;
    border-radius: 40px 40px 0 0;
  }
}
.direction .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 64px;
}
@media (max-width: 1280px) {
  .direction .container {
    flex-direction: column-reverse;
    gap: 28px;
  }
}
.direction .container .map-box {
  flex: 1 1 auto;
}
@media (max-width: 1280px) {
  .direction .container .map-box {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
.direction .container .map-box .root_daum_roughmap {
  width: 100%;
  height: 430px;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid white;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .direction .container .map-box .root_daum_roughmap {
    height: 400px;
  }
}
.direction .container .map-box .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}
.direction .container .content-box {
  flex: 0 0 45%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 1280px) {
  .direction .container .content-box {
    flex: unset;
    width: 100%;
    height: auto;
  }
}
.direction .container .content-box .title-wrap {
  width: 100%;
  height: auto;
  padding-bottom: 48px;
  margin-bottom: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid white;
}
@media (max-width: 1280px) {
  .direction .container .content-box .title-wrap {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.direction .container .content-box .title-wrap > h1 {
  font-size: 50px;
  font-weight: 900;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .direction .container .content-box .title-wrap > h1 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .direction .container .content-box .title-wrap > h1 {
    font-size: 24px;
  }
}
.direction .container .content-box .title-wrap > p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  word-break: keep-all;
  color: white;
}
@media (max-width: 1280px) {
  .direction .container .content-box .title-wrap > p {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .direction .container .content-box .title-wrap > p {
    font-size: 14px;
  }
}
.direction .container .content-box .direction-infos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
@media (max-width: 1280px) {
  .direction .container .content-box .direction-infos {
    gap: 10px;
  }
}
.direction .container .content-box .direction-infos .row {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
}
.direction .container .content-box .direction-infos .row > img {
  width: 36px;
  height: auto;
}
@media (max-width: 1280px) {
  .direction .container .content-box .direction-infos .row > img {
    width: 32px;
  }
}
@media (max-width: 768px) {
  .direction .container .content-box .direction-infos .row > img {
    width: 28px;
  }
}
.direction .container .content-box .direction-infos .row > span {
  margin-top: 6px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .direction .container .content-box .direction-infos .row > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .direction .container .content-box .direction-infos .row > span {
    font-size: 14px;
  }
}

.homepage-inquiry {
  width: 100%;
  height: auto;
  padding-bottom: 120px;
}
.homepage-inquiry .container {
  width: 95%;
  height: auto;
  max-width: 1500px;
  margin: 0 auto;
}

.ard-inquiry-form {
  width: 100%;
  padding: 100px;
  display: flex;
  flex-direction: column;
  grid-gap: 50px;
  background: #f0f0f0;
  border-radius: 30px;
}
.ard-inquiry-form .form-part {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.ard-inquiry-form .form-part .part-name {
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: black;
}
.ard-inquiry-form .form-part .input-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.ard-inquiry-form .form-part .input-list .input-item {
  width: 100%;
}
.ard-inquiry-form .form-part .input-list .input-item > label {
  width: 100%;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.ard-inquiry-form .form-part .input-list .input-item > label > span {
  flex: 0 0 130px;
  font-size: 18px;
  font-weight: 500;
  color: #3D3D3D;
  border-right: 1px solid #aaa;
}
.ard-inquiry-form .form-part .input-list .input-item > label > span > i {
  padding-left: 16px;
}
.ard-inquiry-form .form-part .input-list .input-item > label > input {
  padding: 0 16px;
  flex: 1 1 auto;
  font-size: 18px;
  line-height: 1;
  color: #2D2D2D;
  border: none;
  outline: none;
  background: transparent;
}
.ard-inquiry-form .form-part .input-list .input-item .types {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.ard-inquiry-form .form-part .input-list .input-item .types > label {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
  font-size: 18px;
  line-height: 1;
  color: #2D2D2D;
}
.ard-inquiry-form .form-part .input-list .input-item .types > label > input {
  width: 14px;
  height: 14px;
}
.ard-inquiry-form .form-part .input-list .input-item > textarea {
  width: 100%;
  resize: none;
  font-size: 16px;
  line-height: 1.4;
  color: #2D2D2D;
  box-shadow: none;
}
.ard-inquiry-form .form-submit {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 30px;
}
.ard-inquiry-form .form-submit > label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
}
.ard-inquiry-form .form-submit > label > input {
  width: 12px;
  height: 12px;
}
.ard-inquiry-form .form-submit > label > span {
  font-size: 14px;
  line-height: 1;
  color: #2D2D2D;
}
.ard-inquiry-form .form-submit > label > span > i {
  font-weight: 600;
  text-decoration: underline;
}
.ard-inquiry-form .form-submit > button {
  width: 300px;
  height: 60px;
  align-self: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: #00BC70;
  font-size: 25px;
  font-weight: 700;
  line-height: 1;
  color: white;
  text-align: center;
  border: none;
  outline: none;
}

@media (max-width: 1280px) {
  .ard-inquiry-form {
    padding: 50px;
    grid-gap: 30px;
  }
  .ard-inquiry-form .form-part {
    grid-gap: 20px;
  }
  .ard-inquiry-form .form-part .part-name {
    font-size: 24px;
  }
  .ard-inquiry-form .form-part .input-list {
    grid-gap: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label {
    padding-bottom: 12px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label > span {
    flex: 0 0 110px;
    font-size: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label > span > i {
    padding-left: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label > input {
    font-size: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 20px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 14px;
    height: 14px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > textarea {
    font-size: 14px;
  }
  .ard-inquiry-form .form-submit {
    grid-gap: 20px;
  }
  .ard-inquiry-form .form-submit > button {
    width: 220px;
    height: 45px;
    font-size: 20px;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .ard-inquiry-form {
    padding: 20px;
    grid-gap: 20px;
  }
  .ard-inquiry-form .form-part {
    grid-gap: 16px;
  }
  .ard-inquiry-form .form-part .part-name {
    font-size: 18px;
  }
  .ard-inquiry-form .form-part .input-list {
    grid-gap: 12px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label {
    padding-bottom: 10px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label > span {
    flex: 0 0 110px;
    font-size: 14px;
  }
  .ard-inquiry-form .form-part .input-list .input-item > label > input {
    font-size: 14px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 20px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 16px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 14px;
    height: 14px;
  }
  .ard-inquiry-form .form-submit {
    grid-gap: 16px;
    align-items: center;
  }
  .ard-inquiry-form .form-submit > button {
    width: 220px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }
}
@media (max-width: 480px) {
  .ard-inquiry-form .form-part .input-list .input-item .types {
    grid-gap: 14px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label {
    font-size: 14px;
  }
  .ard-inquiry-form .form-part .input-list .input-item .types > label > input {
    width: 12px;
    height: 12px;
  }
  .ard-inquiry-form .form-submit > button {
    width: 180px;
    height: 40px;
    font-size: 16px;
    font-weight: 500;
  }
}/*# sourceMappingURL=sub.css.map */