/* idx-banner */
.idx-banner {
  position: relative;
}

.idx-banner .swiper-slide img {
  width: 100%;
  aspect-ratio: 1920 / 800;
}

.idx-banner .container {
  position: absolute;
  top: 10px;
  left: 50%;
  color: #fff;
  text-align: center;
  transform: translateX(-50%);
  z-index: 1;
}

.idx-banner .title {
  font-weight: normal;
  color: var(--sub-color);
  font-family: 'DMSans-Medium';
  margin-bottom: 5px;
}

.idx-banner .info {
  color: var(--sub-color);
}

.idx-banner .swiper-pagination {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  margin-top: 0;
  z-index: 2;
}

@media (max-width: 767px) {
  .idx-banner .info-group {
    width: calc((100% / ((100vw - 30px) / 767)) * 1px);
    transform: scale(calc((100vw - 30px) / 767px));
    transform-origin: 0 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .idx-banner .container {
    top: 5px;
  }

  .idx-banner .info-group {
    transform: scale(.8);
  }
}

@media (min-width: 1200px) {
  .idx-banner .title {
    margin-bottom: 10px;
  }

  .idx-banner .info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .idx-banner .swiper-pagination {
    bottom: 20px;
    display: flex;
  }
}

@media (min-width: 1440px) {
  .idx-banner .container {
    top: 30px;
    max-width: 1230px;
  }

  .idx-banner .title {
    font-size: 50px;
  }

  .idx-banner .info {
    font-size: 20px;
  }

  .idx-banner .swiper-pagination {
    bottom: 40px;
  }
}

@media (min-width: 1640px) {
  .idx-banner .container {
    top: 60px;
  }

  .idx-banner .title {
    font-size: 60px;
    margin-bottom: 20px;
  }
}


/* idx-products */
.idx-products {
  padding: 30px 0;
}

.idx-products .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.idx-products .tab-list li {
  color: #333;
  line-height: 2;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 23px;
  background: #F4F4F4;
  font-family: 'DMSans-Semibold';
}

.idx-products .tab-list li.active {
  color: #fff;
  background: var(--bg-color);
}

.idx-products .tab-content {
  margin-top: 20px;
}

.idx-products .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.idx-products .row>div {
  padding: 0 10px;
  margin-bottom: 20px;
}

.idx-products .scale-img {
  padding: 9px;
  border-radius: 14px;
  border: 1px solid #E8E8E8;
  background: #FBFCFB;
}

.idx-products .scale-img img {
  width: 100%;
  aspect-ratio: 240 / 240;
}

.idx-products .tit {
  color: #333;
  margin-top: 10px;
  padding: 0 10px;
  text-align: center;
}

.idx-products .btn {
  width: 147px;
  color: #fff;
  line-height: 22px;
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--bg-color);
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .idx-products .tab-list {
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .idx-products .tab-list li {
    padding: 9px 24px;
  }
}

@media (min-width: 1200px) {
  .idx-products {
    padding: 60px 0;
  }

  .idx-products .sub-info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .idx-products .tab-list {
    gap: 20px;
  }

  .idx-products .tab-content {
    margin-top: 40px;
  }

  .idx-products .tit {
    margin-top: 20px;
  }

  .idx-products .tit a:hover {
    color: var(--style-color);
  }

  .idx-products .btn {
    margin-top: 40px;
  }
}

@media (min-width: 1440px) {
  .idx-products {
    padding: 80px 0;
  }

  .idx-products .row {
    margin-left: calc(-25px / 2);
    margin-right: calc(-25px / 2);
    margin-bottom: -25px;
  }

  .idx-products .row>div {
    flex: 0 0 20%;
    max-width: 20%;
    padding: 0 calc(25px / 2);
    margin-bottom: 25px;
  }

  .idx-products .tit {
    font-size: 20px;
  }
}


/* idx-advantage */
.idx-advantage {
  padding: 30px 0;
  background: #F6F7F9;
}

.idx-advantage .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.idx-advantage .tab-list li {
  color: #333;
  line-height: 2;
  font-size: 14px;
  padding: 7px 15px;
  border-radius: 23px;
  background: #F4F4F4;
  font-family: 'DMSans-Semibold';
}

.idx-advantage .tab-list li.active {
  color: #fff;
  background: var(--bg-color);
}

.idx-advantage .tab-content {
  margin-top: 30px;
}

.idx-advantage .row {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: -20px;
}

.idx-advantage .row>div {
  padding: 0 10px;
  margin-bottom: 20px;
}

.idx-advantage .row img {
  width: 100%;
  aspect-ratio: 440 / 300;
}

.idx-advantage .tit {
  margin-top: 15px;
  margin-bottom: 8px;
  color: var(--style-color);
}

@media (min-width: 768px) {
  .idx-advantage .tab-list {
    gap: 20px;
    flex-wrap: wrap;
  }

  .idx-advantage .tab-list li {
    padding: 9px 24px;
  }
}

@media (min-width: 1200px) {
  .idx-advantage {
    padding: 60px 0;
  }

  .idx-advantage .sub-info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .idx-advantage .tab-list {
    gap: 30px;
  }

  .idx-advantage .tab-content {
    margin-top: 50px;
  }

  .idx-advantage .row {
    margin-left: -20px;
    margin-right: -20px;
  }

  .idx-advantage .row>div {
    padding: 0 20px;
  }

  .idx-advantage .tit {
    margin-top: 20px;
    margin-bottom: 11px;
  }
}

@media (min-width: 1440px) {
  .idx-advantage {
    padding: 80px 0;
  }
}


/* idx-about */
.idx-about {
  padding: 30px 0;
}

.idx-about .item-wrap {
  margin-bottom: 20px;
}

.idx-about .lt {
  margin-bottom: 30px;
}

.idx-about .lt img {
  width: 100%;
}

.idx-about .title {
  text-align: left;
}

.idx-about .title::after {
  margin-left: 0;
}

.idx-about .sub-info>*:not(:last-child) {
  margin-bottom: 15px;
}

.idx-about .btn {
  width: 147px;
  color: #fff;
  margin-top: 20px;
  line-height: 22px;
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--bg-color);
}

.idx-about .row {
  margin-bottom: -30px;
}

.idx-about .row>div {
  margin-bottom: 30px;
}

.idx-about .row>div {
  text-align: center;
}

.idx-about .num {
  line-height: calc(96 / 50);
  color: var(--style-color);
  font-family: 'DMSans-Semibold';
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.idx-about .counter {
  font-size: 1.28em;
  transform: translateY(-2px);
  line-height: 1.5;
}

.idx-about .info {
  margin-top: 4px;
}

@media (min-width: 992px) {
  .idx-about .item-wrap {
    display: flex;
  }

  .idx-about .lt {
    flex: 0 0 calc((780 / 1400) * 100%);
    margin-bottom: 0;
  }

  .idx-about .rt {
    flex: 1;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) {
  .idx-about {
    padding: 60px 0;
  }

  .idx-about .item-wrap {
    margin-bottom: 40px;
  }

  .idx-about .rt {
    padding-left: 60px;
  }

  .idx-about .btn {
    margin-top: 40px;
  }

  .idx-about .sub-info>*:not(:last-child) {
    margin-bottom: 24px;
  }

  .idx-about .row {
    margin-left: 0;
    margin-right: 0;
  }

  .idx-about .row>div {
    padding: 22px 50px;
  }

  .idx-about .counter {
    transform: translateY(-5px);
  }
}

@media (min-width: 1440px) {
  .idx-about {
    padding-top: 80px;
  }
}


/* idx-services */
.idx-services {
  padding: 30px 0;
  background: #F6F7F9;
}

.idx-services .title {
  position: relative;
  z-index: 1;
}

.idx-services .sub-info {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.idx-services .item-list {
  display: grid;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.idx-services .lt {
  margin-bottom: 20px;
}

.idx-services .tit {
  color: var(--style-color);
  margin-bottom: 8px;
}

.idx-services .info-wrap {
  width: calc(100% - 25px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.idx-services .swiper-wrap {
  padding: 0 50px;
  position: relative;
}

.idx-services .swiper-wrap::before {
  content: '';
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc((100% - 100px) * 1.6);
  height: 160%;
  border-radius: 50%;
  background: radial-gradient(37.17% 37.17% at 50% 52.15%, rgba(74, 170, 62, 0.20) 0%, rgba(74, 170, 62, 0.02) 100%);
  filter: blur(10px);
}

.idx-services .swiper-slide img {
  width: 100%;
  aspect-ratio: 500 / 500;
}

.idx-services .prev-btn, .idx-services .next-btn {
  width: 50px;
  height: 50px;
  font-size: 20px;
  border-radius: 50%;
  color: #fff;
  font-weight: bold;
  background: var(--bg-color);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.idx-services .prev-btn {
  transform: translate(-50%, -50%);
}

.idx-services .next-btn {
  transform: translate(50%, -50%);
}

.idx-services .swiper-button-disabled {
  color: var(--style-color);
  background: #fff;
}

.idx-services .swiper-button-disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(.5);
  width: 200%;
  height: 200%;
  border: 3px solid var(--style-color);
}

.idx-services .btn {
  width: 147px;
  color: #fff;
  margin-top: 16px;
  line-height: 22px;
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: var(--bg-color);
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) and (max-width: 1199px) {
  .idx-services .item-list {
    display: flex;
    flex-wrap: wrap;
  }

  .idx-services .item-list li {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (min-width: 1200px) {
  .idx-services {
    padding: 60px 0;
  }

  .idx-services .sub-info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  .idx-services .item-wrap {
    display: flex;
    align-items: center;
  }

  .idx-services .lt {
    order: -2;
    margin-bottom: 0;
  }

  .idx-services .info-wrap {
    order: -1;
    width: 500px;
    flex-shrink: 0;
    max-width: 500px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .idx-services .item-list {
    gap: 40px;
    flex: 1;
  }
}

@media (min-width: 1440px) {
  .idx-services {
    padding: 100px 0;
  }

  .idx-services .item-wrap {
    align-items: flex-start;
  }

  .idx-services .info-wrap {
    width: 600px;
    max-width: 600px;
    margin-left: 60px;
    margin-right: 60px;
  }
}


/* idx-panter */
.idx-panter {
  padding: 30px 0;
  background: var(--style-color);
}

.idx-panter .title {
  color: #fff;
}

.idx-panter .title::after {
  background: #fff;
}

.idx-panter .sub-info {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.idx-panter .swiper-container {
  height: calc((100vw - 70px) / 3 * 2 + 20px);
}

.idx-panter .swiper-slide {
  height: calc((100vw - 70px) / 3);
}

.idx-panter .swiper-slide img {
  width: 100%;
  aspect-ratio: 180 / 180;
}

.idx-panter .swiper-pagination {
  margin-top: 20px;
}

.idx-panter .swiper-pagination-bullet {
  background: #fff;
}

@media (min-width: 600px) {
  .idx-panter .swiper-container {
    height: calc((100vw - 90px) / 4 * 2 + 20px);
  }

  .idx-panter .swiper-slide {
    height: calc((100vw - 90px) / 4);
  }
}

@media (min-width: 720px) {
  .idx-panter .swiper-container {
    height: 336px;
  }

  .idx-panter .swiper-slide {
    height: 158px;
  }
}

@media (min-width: 992px) {
  .idx-panter .swiper-container {
    height: 360px;
  }

  .idx-panter .swiper-slide {
    height: 170px;
  }
}

@media (min-width: 1200px) {
  .idx-panter {
    padding: 60px 0;
  }

  .idx-panter .title {
    margin-bottom: 40px;
  }

  .idx-panter .sub-info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .idx-panter .swiper-container {
    height: 358px;
  }

  .idx-panter .swiper-slide {
    height: 169px;
  }

  .idx-panter .swiper-pagination {
    margin-top: 40px;
    display: flex;
  }
}

@media (min-width: 1440px) {
  .idx-panter {
    padding-top: 80px;
  }

  .idx-panter .swiper-container {
    height: 375px;
  }

  .idx-panter .swiper-slide {
    height: 176px;
  }
}

@media (min-width: 1640px) {
  .idx-panter .swiper-container {
    height: 383px;
  }

  .idx-panter .swiper-slide {
    height: 180px;
  }
}


/* idx-reviews */
.idx-reviews {
  padding: 30px 0;
}

.idx-reviews .sub-info {
  text-align: center;
  margin-bottom: 20px;
}

.idx-reviews .swiper-container {
  margin: -8px -12px -16px;
  padding: 8px 12px 16px;
}

.idx-reviews .swiper-slide {
  height: unset;
  padding: 20px;
  border-radius: 14px;
  background: #FFF;
  box-shadow: 0 4px 10px 2px rgba(0, 0, 0, 0.10);
}

.idx-reviews .star-wrap {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.idx-reviews .star-wrap i {
  font-size: 18px;
  line-height: 1;
  color: var(--style-color);
}

.idx-reviews .info {
  margin-bottom: 20px;
}

.idx-reviews .item-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.idx-reviews .info-wrap {
  flex: 1;
  margin-right: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.idx-reviews .img {
  width: 70px;
  height: 70px;
  padding: 4px;
  border: 1px solid var(--style-color);
  border-radius: 50%;
}

.idx-reviews .img img {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.idx-reviews .info-group {
  flex: 1;
}

.idx-reviews .icon {
  width: 80px;
  height: 80px;
}

.idx-reviews .swiper-pagination {
  margin-top: 20px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .idx-reviews .img {
    width: 50px;
    height: 50px;
  }

  .idx-reviews .icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1200px) {
  .idx-reviews {
    padding: 60px 0;
  }

  .idx-reviews .sub-info {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
  }

  .idx-reviews .star-wrap {
    margin-bottom: 20px;
  }

  .idx-reviews .info {
    margin-bottom: 30px;
  }

  .idx-reviews .swiper-pagination {
    display: flex;
    margin-top: 40px;
  }
}

@media (min-width: 1200px) and (max-width: 1439px) {
  .idx-reviews .img {
    width: 50px;
    height: 50px;
  }

  .idx-reviews .icon {
    width: 60px;
    height: 60px;
  }
}

@media (min-width: 1440px) {
  .idx-reviews {
    padding: 80px 0;
  }

  .idx-reviews .swiper-slide {
    padding: 40px;
  }
}