.index-banner {
  margin-top: 80px;
  height: calc(100vh - 80px);
  position: relative;
}

.index-banner .swiper-slide {
  background-position: center;
  color: #fff;
  flex-direction: column;
}

.index-banner .swiper-pagination-bullet {
  width: 30px;
  border-radius: 5px;
  background-color: #fff;
  opacity: 1;
  transition: .3s;
}

.index-banner .swiper-pagination-bullet-active {
  width: 40px;
  background-color: var(--theme-color);
}

.index-banner .swiper-slide h1 {
  font-weight: 300;
  font-size: clamp(34px, 68 * var(--custom-size), 68px);
}

.index-banner .swiper-slide h2 {
  font-weight: 700;
  font-size: clamp(34px, 68 * var(--custom-size), 68px);
}

.ring-wrap,
.ring {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
}

.ring {
  border: 1px solid #fff;
}

.ring-wrap .ring:nth-child(1) {
  animation: ringMove linear 2s infinite;
}

.ring-wrap .ring:nth-child(2) {
  animation: ringMove linear 2s 1s infinite;
}

.ring-wrap .ring:nth-child(3) {
  animation: ringMove linear 2s 2s infinite;
}

@keyframes ringMove {
  0% {
    width: 100%;
    opacity: .7;
    border-color: #fff;
  }

  100% {
    width: 300%;
    top: -100%;
    left: -100%;
    opacity: 0;
    border-color: var(--theme-color);
  }
}

.sec1 {
  padding-bottom: 0;
}

.sec1 .btn-cont {
  color: #333;
}

.sec1 .btn {
  background-color: #F5F5F5;
}

.sec1 .btn .icon-img {
  transform: rotateZ(-90deg);
}

.sec2 .details {
  width: 70%;
  color: #fff;
  position: relative;
}

.sec2 .detail:not(:first-child) {
  display: none;
}

.sec2 .detail {
  height: 100%;
  padding: clamp(20px, 40 * var(--custom-size), 40px);
  position: relative;
}

.sec2 .detail::after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(180.00deg, rgb(0, 0, 0), rgba(0, 0, 0, 0) 63.958%);
  opacity: 0.6;
}

.sec2 .detail .title {
  font-size: clamp(20px, 38 * var(--custom-size), 38px);
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.sec2 .detail .feature {
  font-size: clamp(16px, 20 * var(--custom-size), 20px);
  position: relative;
  z-index: 1;
}

.sec2 .detail .icon {
  width: clamp(50px, 200 * var(--custom-size), 200px);
  height: clamp(50px, 200 * var(--custom-size), 200px);
  position: absolute;
  bottom: clamp(20px, 40 * var(--custom-size), 40px);
  right: clamp(20px, 40 * var(--custom-size), 40px);
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .5);
  padding: clamp(20px, 40 * var(--custom-size), 40px);
  z-index: 1;
}

.sec2 .detail .icon .icon-img {
  width: 100%;
}

.sec2 .switch {
  width: 30%;
  background-color: var(--theme-color);
  color: #fff;
}

.sec2 .switch .item {
  padding: clamp(20px, 30 * var(--custom-size), 30px);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  transition: .3s;
  cursor: pointer;
}

.sec2 .switch .item .title {
  transition: .3s;
}

.sec2 .switch .item .icon-img {
  transform: rotateZ(-90deg);
  opacity: 0;
  transition: .3s;
}

.sec2 .switch .item.active,
.sec2 .switch .item:hover {
  background-color: #fff;
}

.sec2 .switch .item.active .title,
.sec2 .switch .item:hover .title {
  color: var(--theme-color);
  transform: translateX(10%);
}

.sec2 .switch .item.active .icon-img,
.sec2 .switch .item:hover .icon-img {
  opacity: 1;
}

.sec3 {
  background-color: #f5f5f5;
}

.sec3 .intro .left {
  align-items: center;
}

.sec3 .switch {
  margin-left: clamp(20px, 50 * var(--custom-size), 50px);
  font-size: clamp(12px, 18 * var(--custom-size), 18px);
  height: auto;
}

.sec3 .switch .switch-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 300px;
  padding: 8px clamp(15px, 38 * var(--custom-size), 38px);
  margin-right: clamp(5px, 20 * var(--custom-size), 20px);
  cursor: pointer;
}

.sec3 .switch .switch-btn.active,
.sec3 .switch .switch-btn:hover {
  border: 1px solid var(--theme-color);
  color: var(--theme-color);
}

.sec3 .swiper-btn {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  width: clamp(40px, 60 * var(--custom-size), 60px);
  height: clamp(40px, 60 * var(--custom-size), 60px);
  cursor: pointer;
  transition: .3s;
}

.sec3 .swiper-btn:hover {
  border-color: var(--theme-color);
}

.sec3 .swiper-btn-prev {
  transform: rotate(90deg);
  margin-right: 10px;
}

.sec3 .swiper-btn-next {
  transform: rotate(-90deg);
}

.sec3 .swiper {
  display: none;
}

.sec3 .swiper.active {
  display: block;
}

.sec3 .swiper-slide {
  aspect-ratio: 7 / 8;
}

.sec3 .swiper-slide .cont {
  flex-direction: column;
  height: 100%;
}

.sec3 .swiper-slide .txt {
  background: #fff;
  padding: clamp(20px, 40 * var(--custom-size), 40px);
  height: 50%;
}

.sec3 .swiper-slide-active .txt {
  transition: .3s;
  height: 0;
  padding: 0;
  opacity: 0;
}

.sec3 .swiper-slide .pic {
  height: 50%;
}

.sec3 .swiper-slide-active .pic {
  transition: .3s;
  height: 100%;
}

.sec3 .swiper-slide .txt h1,
.sec3 .parameter .title {
  font-size: clamp(18px, 28 * var(--custom-size), 28px);
  margin-bottom: clamp(10px, 20 * var(--custom-size), 20px);
}

.sec3 .swiper-slide .txt p {
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  word-break: break-word;
}

.sec3 .parameter {
  display: flex;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .5);
  padding: clamp(20px, 40 * var(--custom-size), 40px);
  color: #fff;
  flex-direction: column;
  opacity: 0;
}

.sec3 .swiper-slide-active .parameter {
  transition: .3s;
  transition-delay: .25s;
  opacity: 1;
  z-index: 1;
}

.sec3 .parameter .items .item {
  border-top: 1px solid rgba(255, 255, 255, .5);
  padding: 10px 0;
}

.sec3 .parameter .items .item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.sec3 .parameter .items .item .label {
  font-size: 14px;
}

.sec3 .parameter .items .item .num {
  font-size: clamp(18px, 28 * var(--custom-size), 28px);
}

.sec3 .learn-more {
  display: flex;
  justify-content: flex-end;
}

.sec3 .learn-more .btn-wrap {
  border-color: transparent;
}

.sec3 .learn-more .btn-wrap span {
  margin-right: 20px;
}

.sec3 .learn-more .btn-wrap .icon-img {
  transform: rotateZ(-90deg);
}

.sec3 .learn-more .btn-wrap:hover {
  border-color: var(--theme-color);
}

.sec4 .left {
  width: 30%;
}

.sec4 .data {
  flex-wrap: wrap;
}

.sec4 .data .item {
  width: 50%;
  border-bottom: 0;
  padding: clamp(20px, 24* var(--custom-size), 24px) 0;
}

.sec4 .data .item p {
  font-size: clamp(28px, 58 * var(--custom-size), 58px);
}

.sec4 .right {
  width: 60%;
}


.video-wrap {
  width: 80%;
  margin: 0 auto;
  position: relative;
}

.video-wrap .video {
  width: 100%;
  aspect-ratio: 16 / 9;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, .5);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-wrap .play {
  width: 100%;
  height: 100%;
}

.video-wrap .play .icon {
  background: rgba(255, 255, 255, 0.2);
  width: clamp(50px, 240 * var(--custom-size), 240px);
  height: clamp(50px, 240 * var(--custom-size), 240px);
  border-radius: 50%;
  cursor: pointer;
}

.video-wrap .play .icon:hover .icon-wrap {
  width: 100%;
  height: 100%;
}

.video-wrap .play .icon:hover .icon-img {
  transform: scale(1.1);
}

.video-wrap .play .icon-wrap {
  width: 80%;
  height: 80%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  transition: .3s;
}

.video-wrap .play .icon-wrap .icon-img {
  width: clamp(20px, 75 * var(--custom-size), 75px);
  margin-left: clamp(0px, 25 * var(--custom-size), 25px);
  transition: .3s;
  transition-delay: .1s;
}

.action--site-about_us .sec4 .left,
.action--site-about_us .sec4 .right {
  width: 50%;
}

.sec-bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--theme-color);
  opacity: .8;
}

.sec-bg .main {
  position: relative;
  z-index: 1;
}

.cardWrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  --column: 3;
  --gap: clamp(10px, 30 * var(--custom-size), 30px);
}

.cardWrap .item {
  width: calc((100% - (var(--column) - 1) * var(--gap)) / var(--column));
  margin-right: var(--gap);
  margin-bottom: var(--gap);
}

.cardWrap .item .pic img {
  transition: .3s;
}

.cardWrap .item .pic {
  overflow: hidden;
}

.cardWrap .item:hover .pic img {
  transform: scale(1.1);
}

.sec5 .cardWrap .item {
  aspect-ratio: 7 / 8;
}

.sec5 .cardWrap .item:nth-child(3n) {
  margin-right: 0;
}

.sec5 .item .pic {
  height: 50%;
}

.sec5 .item .txt {
  height: 50%;
  background-color: #fff;
  padding: clamp(20px, 40* var(--custom-size), 40px);
}

.sec5 .txt {
  position: relative;
}

.sec5 .txt h1 {
  font-size: clamp(18px, 28 * var(--custom-size), 28px);
  margin-bottom: 20px;
  color: #000;
  font-weight: bold;
}

.sec5 .txt p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--theme-color);
  max-width: 80%;
}

.sec5 .txt .icon {
  width: clamp(50px, 120* var(--custom-size) * 0.8, 120px);
  height: clamp(50px, 120* var(--custom-size) * 0.8, 120px);
  position: absolute;
  bottom: clamp(20px, 40* var(--custom-size) * 0.8, 40px);
  right: clamp(20px, 40* var(--custom-size) * 0.8, 40px);
  border-radius: 50%;
  background-color: var(--theme-color);
  padding: clamp(10px, 20* var(--custom-size) * 0.8, 20px);
}

.sec5 .txt .icon .icon-img {
  width: 100%;
}

.household-sec6-1 {
  height: clamp(200px, 560* var(--custom-size), 560px);
  background-position: right;
  margin-top: 82px;
}

.sec6 .txt {
  color: #fff;
  letter-spacing: 2px;
}

.sec6 .txt h1 {
  font-size: clamp(24px, 48 * var(--custom-size), 48px);
  margin-bottom: 10px;
}

.sec6 .txt p {
  font-size: clamp(16px, 20 * var(--custom-size), 20px);
  max-width: 70%;
}

.household-sec6-2 {
  height: clamp(400px, 800* var(--custom-size), 800px);
}

.household-panel-2 .cont {
  width: 50%;
}

.household-panel-2 .cont .item {
  padding: clamp(10px, 28* var(--custom-size), 28px) clamp(10px, 20* var(--custom-size), 20px);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.household-panel-2 .cont .item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.household-panel-2 .cont .item .pic {
  width: clamp(50px, 100* var(--custom-size), 100px);
  height: clamp(50px, 100* var(--custom-size), 100px);
  border-radius: 50%;
  background-color: #fff;
  padding: clamp(10px, 20* var(--custom-size), 20px);
  margin-right: 20px;
  flex-shrink: 0;
}

.household-panel-2 .cont .item .txt h1 {
  font-size: clamp(18px, 28* var(--custom-size), 28px);
  font-weight: bold;
  margin-bottom: 10px;
}

.household-panel-2 .cont .item .txt p {
  color: var(--theme-color);
}

.household-sec5 .item {
  background-color: #fff;
  padding: clamp(20px, 40* var(--custom-size), 40px);
  flex-direction: column;
}

.household-sec5 .item:nth-child(3n) {
  margin-right: 0;
}

.household-sec5 .item .icon {
  justify-content: flex-end;
  margin: clamp(18px, 28* var(--custom-size), 28px) 0;
}

.household-sec5 .item h1 {
  font-weight: bold;
  font-size: clamp(18px, 28* var(--custom-size), 28px);
  margin-bottom: 10px;
}

.household-sec5 .item p {
  color: var(--theme-color);
}

.household-sec5 .btn-wrap {
  width: 100%;
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
  border: unset;
}

.action--site-full_payment .household-sec5 .item .icon {
  margin-bottom: 0;
}

.sec8 .wrap .pic {
  width: 50%;
  background-color: #FDF0EB;
  padding-right: clamp(0px, 200* var(--custom-size), 200px);
  padding-bottom: clamp(0px, 200* var(--custom-size), 200px);
}

.action--site-household .sec8 .wrap .pic {
  aspect-ratio: 1.5625;
}

.sec8 .wrap .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sec8 .wrap .intro {
  width: 50%;
  flex-direction: column;
  padding-left: clamp(20px, 100* var(--custom-size), 100px);
}

.sec8 .wrap .intro .item {
  position: relative;
  cursor: pointer;
}

.sec8 .wrap .intro .item:nth-child(3n) {
  margin-right: 0;
}

.sec8 .wrap .intro .item .txt {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .3);
  color: #fff;
  font-size: clamp(18px, 28* var(--custom-size), 28px);
}

.sec8 .wrap .intro .item.active .txt {
  background-color: unset;
}

.sec8 .wrap .intro .font h1 {
  font-size: clamp(24px, 38* var(--custom-size), 38px);
  color: var(--theme-color);
  margin-bottom: clamp(18px, 28* var(--custom-size), 28px);
}

.sec8 .wrap .intro .font p {
  line-height: 1.5;
}


.sec9 .txt,
.sec9 .pic {
  width: 50%;
}

.sec9 .item {
  margin-bottom: clamp(20px, 120* var(--custom-size), 120px);
}

.sec9 .item:last-child {
  margin-bottom: 0;
}

.sec9 .item:nth-child(2n + 1) .txt {
  padding-right: clamp(30px, 160* var(--custom-size), 160px);
}

.sec9 .item:nth-child(2n) .txt {
  padding-left: clamp(30px, 160* var(--custom-size), 160px);
}

/* .sec9 .item:nth-child(2n + 1) .btn-gather {
  justify-content: flex-end;
} */

.sec9 .item .btn-gather .btn-wrap:nth-child(2) svg {
  transform: unset;
}

.sec9 .item:nth-child(2n) {
  flex-direction: row-reverse;
}

.sec9 .item .title {
  font-size: clamp(26px, 48* var(--custom-size), 48px);
}

.sec9 .item .title span {
  color: var(--theme-color);
}

.sec9 .btn-wrap:nth-child(1) {
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
  margin-right: 10px;
  border: unset;
}

.sec9 .btn-wrap:nth-child(2) .btn-cont {
  color: var(--theme-color);
}

.sec9 .btn-wrap:nth-child(2) .btn {
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
}

.sec9 .item .intro {
  font-size: clamp(16px, 20* var(--custom-size), 20px);
  margin: 20px 0 30px;
}

.shop-sec1 {
  padding-bottom: clamp(20px, 6.25vw, 6.25vw);
}

.shop-sec1 .qr-wrap {
  margin-top: 50px;
}

.shop-sec1 .qr-wrap .qr {
  max-width: 200px;
  margin-right: 35px;
}

.shop-sec1 .qr-wrap .txt {
  text-align: center;
}

.shop-sec1 .qr-wrap .txt p {
  color: #333;
  margin-top: 5px;
  opacity: .5;
}

.shop-sec1 .cont p {
  margin-bottom: clamp(20px, 40* var(--custom-size), 40px);
}

.shop-sec1 .cardWrap {
  --column: 2;
}

.shop-sec1 .cardWrap .item:nth-child(2n) {
  margin-right: 0;
}

.shop-sec1 .cardWrap .item .pic {
  height: 60%;
}

.shop-sec1 .cardWrap .item .txt {
  height: 40%;
  flex-direction: column;
  padding: clamp(10px, 20* var(--custom-size), 20px);
  border-bottom: 1px solid rgba(0, 0, 0, .2);
}

.shop-sec1 .cardWrap .item .txt h1 {
  font-size: clamp(15px, 20* var(--custom-size), 20px);
}

.shop-sec1 .cardWrap .btn-wrap {
  border: unset;
}

.shop-sec1 .cardWrap .btn-cont {
  color: var(--theme-color);
}

.shop-sec1 .cardWrap .btn-cont span {
  margin-right: 10px;
}

.shop-sec1 .cardWrap .btn {
  background-color: var(--theme-color);
}

.shop-sec1 .btn .icon-img {
  transform: unset
}

.order {
  height: calc(115vh - 80px);
  margin-top: 80px;
}

.order-pic,
.order .form {
  width: 50%;
  flex-direction: column;
  padding-top: 8%;
}

.order .form {
  padding: 5% 7% 0;
}

.order-btn {
  padding: clamp(10px, 20* var(--custom-size), 20px) clamp(20px, 60* var(--custom-size), 60px);
  color: #fff;
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
  font-weight: bold;
  font-size: clamp(20px, 36* var(--custom-size), 36px);
  display: inline-block;
  border-radius: 60px;
}

.order-pic {
  background-position: bottom;
}

.order-pic .title {
  margin-top: 20px;
  font-size: clamp(18px, 28* var(--custom-size), 28px);
}

.order .form .title {
  width: 100%;
  font-size: clamp(20px, 38* var(--custom-size), 38px);
}

.order form {
  width: 100%;
  margin-top: clamp(20px, 50* var(--custom-size), 50px);
}

.order .form .item {
  margin-bottom: 30px;
}

.order .form label {
  font-size: 18px;
}

.order .form label span {
  color: var(--theme-color);
}

.order .form input {
  display: block;
  width: 100%;
  height: clamp(40px, 60* var(--custom-size), 60px);
  border: 1px solid rgb(199, 198, 198);
  border-radius: 9px;
  margin-top: 10px;
  padding-left: 20px;
}

.order .form .submit {
  width: 100%;
  margin-top: 20px;
}

.order .form .btn-wrap {
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
  border: unset;
}

.action--site-join_us .banner .txt p,
.action--site-contact_us .banner .txt p {
  font-size: clamp(20px, 48 * var(--custom-size), 48px);
  margin-top: 10px;
}

.action--site-join_us .sec5 {
  background-color: #F5F5F5;
}

.action--site-join_us .sec5::after {
  content: unset;
}

.action--site-join_us .sec5 .item {
  aspect-ratio: 1.18;
}

.action--site-join_us .sec5 .item .pic {
  height: 70%;
}

.action--site-join_us .sec5 .item .txt {
  height: 30%;
}

.action--site-join_us .sec5 .item .txt h1 {
  margin-bottom: 10px;
}

.action--site-join_us .sec5 .item .txt p {
  color: #000;
}

.action--site-join_us .household-sec5 .item .num {
  width: clamp(30px, 50 * var(--custom-size), 50px);
  height: clamp(30px, 50 * var(--custom-size), 50px);
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
  margin-bottom: 10px;
}

.sec10 .cardWrap {
  --column: 4;
  padding-top: clamp(20px, 50* var(--custom-size), 50px);
}

.sec10 .cardWrap .item {
  aspect-ratio: 10 / 11;
}

.sec10 .cardWrap .item:nth-child(4n) {
  margin-right: 0;
}

.sec10 .cardWrap .txt {
  position: relative;
  background-color: #f5f5f5;
  flex-direction: column;
  text-align: center;
  padding-top: 20%;
}

.sec10 .cardWrap .txt .num {
  width: clamp(50px, 110 * var(--custom-size), 110px);
  height: clamp(50px, 110 * var(--custom-size), 110px);
  border-radius: 50%;
  background-color: var(--theme-color);
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  font-size: clamp(20px, 32 * var(--custom-size), 32px);
  font-weight: bold;
}

.sec10 .cardWrap .txt .num svg {
  width: 50%;
}

.sec10 .cardWrap .txt,
.sec10 .cardWrap .pic {
  height: 50%;
}

.sec10 .cardWrap .txt h1 {
  font-weight: bold;
  font-size: clamp(18px, 28 * var(--custom-size), 28px);
  margin-bottom: 20px;
}

.sec11 {
  padding: clamp(20px, 40 * var(--custom-size), 40px) 0;
  background: linear-gradient(135.00deg, rgb(232, 56, 47) 0%, rgb(235, 97, 51) 57.571%, rgb(246, 172, 25) 100%), rgb(235, 97, 51);
  border: unset;
}

.sec11 .left {
  color: #fff;
  font-size: clamp(22px, 38 * var(--custom-size), 38px);
}

.sec11 .tel {
  margin-left: clamp(30px, 100 * var(--custom-size), 100px);
}

.sec11 .tel .icon {
  width: clamp(30px, 50 * var(--custom-size), 50px);
  height: clamp(30px, 50 * var(--custom-size), 50px);
  border-radius: 6px;
  background-color: #fff;
  margin-right: 20px;
  padding: clamp(3px, 8 * var(--custom-size), 8px);
}

.sec11 .btn-wrap {
  border-color: #fff;
}

.sec11 .btn-cont {
  color: #fff;
}

.sec12 .common-title .hotline {
  font-size: clamp(20px, 24 * var(--custom-size), 24px);
  margin-top: 10px;
}

.sec12 .common-title .hotline span {
  color: var(--theme-color);
}

.sec12 .order {
  height: auto;
  margin-top: clamp(30px, 80 * var(--custom-size), 80px);
}

.sec12 .form {
  width: 100%;
  padding: 0;
}

.sec12 form {
  flex-wrap: wrap;
}

.order .form .item {
  position: relative;
}

.order .form .item .tips {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--theme-color);
}

.sec12 .form .trisection {
  width: 32%;
}

.sec12 .form .halve {
  width: 48%;
}

.sec12 .form select {
  display: block;
  width: 100%;
  height: clamp(40px, 60* var(--custom-size), 60px);
  border: 1px solid rgb(199, 198, 198);
  border-radius: 9px;
  margin-top: 10px;
  padding-left: 14px;
}

.sec12 textarea {
  width: 100%;
  display: block;
  border: 1px solid rgb(199, 198, 198);
  border-radius: 9px;
  margin-top: 10px;
  padding: 20px;
}

.captcha {
  position: relative;
}

.captcha-img {
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateX(calc(100% + 30px));
}

.captcha-img img {
  border-radius: 9px;
  height: clamp(40px, 60* var(--custom-size), 60px);
  display: block;
}

.sec12 .order .form .btn-wrap {
  width: auto;
  background: var(--theme-color);
  border: unset;
}

.sec12 .order .form .btn-cont {
  padding: 6px;
}

.action--site-contact_us .banner {
  background-position: 50% 85%;
  background-size: auto;
}

.action--site-contact_us .banner .btn-wrap {
  border-color: #fff;
  margin-top: 30px;
}

.action--site-contact_us .sec10 {
  background-color: #F5F5F5;
}

.action--site-contact_us .sec10 .cardWrap .item {
  aspect-ratio: unset;
}

.action--site-contact_us .sec10 .cardWrap .item .txt {
  padding-bottom: 30%;
  height: auto;
  background-color: #fff;
}

.sec13 {
  margin-top: 0;
}

.sec13 .txt h1 {
  font-size: clamp(24px, 48* var(--custom-size), 48px);
}

.sec13 h1 span {
  color: var(--theme-color);
}

.sec13 .btn-wrap {
  background-color: var(--theme-color);
  border-color: #fff;
}

.action--site-contact_us .sec9 .txt .intro p {
  line-height: 1.5;
  position: relative;
  padding-left: 15px;
  margin-bottom: 10px;
}

.action--site-contact_us .sec9 .txt .intro p::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--theme-color);
  position: absolute;
  top: 10px;
  left: 0;
}

.sec9 .data-panel .data-num {
  min-width: clamp(70px, 140* var(--custom-size), 140px);
  height: clamp(60px, 120* var(--custom-size), 120px);
  border-radius: 15px;
  margin-right: 20px;
  flex-direction: column;
  padding: 10px;
}

.sec9 .data-panel .data-num:nth-child(2n + 1) {
  border: 1px solid rgb(255, 255, 255);
  background: linear-gradient(90.00deg, rgba(238, 238, 238, 0.1), rgba(235, 97, 51, 0.2) 100%);
}

.sec9 .data-panel .data-num h1 {
  font-size: clamp(22px, 32* var(--custom-size), 32px);
  background: linear-gradient(97.88deg, rgb(232, 56, 47), rgb(235, 97, 51), rgb(246, 172, 25));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
  font-weight: bold;
}

.sec14 .common-title {
  margin-bottom: 0;
}

.sec14 .item {
  width: 48%;
  flex-direction: column;
}

.sec14 .item .title {
  font-size: clamp(24px, 48 * var(--custom-size), 48px);
  margin-top: clamp(24px, 48 * var(--custom-size), 48px);
  margin-bottom: clamp(20px, 40* var(--custom-size), 40px);
}

.sec14 .item .data-panel {
  flex: 1;
}

.sec14 .data-num {
  width: 49%;
  border-radius: 15px;
  background: linear-gradient(180.00deg, rgba(238, 238, 238, 0.3) 3.053%, rgba(255, 246, 243, 0.3) 22.117%, rgba(235, 97, 51, 0.3) 100%);
  padding-bottom: 8%;
}


.sec14 .data-num h1 {
  font-size: clamp(20px, 32 * var(--custom-size), 32px);
  padding: clamp(10px, 30 * var(--custom-size), 30px);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.sec14 .data-num h1 span {
  font-weight: bold;
  color: var(--theme-color);
  margin-left: 5px;
}

.sec14 .data-num .num-cont {
  padding: clamp(10px, 30 * var(--custom-size), 30px);
  font-size: clamp(14px, 20 * var(--custom-size), 20px);
  color: #666;
  counter-reset: num;
}

.sec14 .data-num .num-cont .num {
  margin-bottom: 5px;
  position: relative;
  padding-left: calc(clamp(14px, 20 * var(--custom-size), 20px) + 8px);
  line-height: 1.5;
  counter-increment: num;
}

.sec14 .data-num .num-cont .num::after {
  content: counter(num, decimal);
  position: absolute;
  top: 50%;
  left: 0;
  width: clamp(14px, 20 * var(--custom-size), 20px);
  height: clamp(14px, 20 * var(--custom-size), 20px);
  border-radius: 50%;
  transform: translateY(-50%);
  border: .8px solid #666;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: clamp(10px, 14 * var(--custom-size), 14px);
}

.action--site-full_payment .banner .btn-wrap {
  border-color: #fff;
  margin-top: 20px;
}

.action--site-full_payment .sec10 .cardWrap .item {
  aspect-ratio: unset;
}

.action--site-full_payment .sec10 .cardWrap .item .txt {
  height: auto;
  padding-bottom: 20%;
}

body.wfEditorMode a.wfEditorMode {
  margin-top: 0;
}