h2 {
  padding: 24px;
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  text-align: center;
  letter-spacing: 5%;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 32px;
  }
}

section#hero {
  position: relative;
}

section#hero h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 50px;
  line-height: 170%;
  text-align: center;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  section#hero h1 {
    font-size: 25px;
    font-weight: 500;
    line-height: 130%;
  }
}

section#hero img {
  width: 100%;
  aspect-ratio: 1440/286;
}

@media screen and (max-width: 768px) {
  section#hero img {
    aspect-ratio: 402/150;
  }
}

section#intro {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  section#intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#intro .decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(30%, -100%) rotate(90deg);
          transform: translate(30%, -100%) rotate(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  background: -webkit-gradient(linear, right top, left top, color-stop(-30.75%, #FFFFFF), color-stop(-3.72%, #E3E9EF), to(#AEC0D1));
  background: linear-gradient(270deg, #FFFFFF -30.75%, #E3E9EF -3.72%, #AEC0D1 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-size: 26px;
  line-height: 1.7;
  font-family: 'roboto';
  font-weight: 900;
}

@media screen and (max-width: 768px) {
  section#intro .decoration {
    bottom: unset;
    top: 40%;
    font-size: 16px;
    -webkit-transform: translate(10%, -100%) rotate(90deg);
            transform: translate(10%, -100%) rotate(90deg);
  }
}

section#intro .container {
  padding: 60px 20px;
  width: 100%;
  max-width: 1200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  section#intro .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#intro .container img,
section#intro .container > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

section#intro .container > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 30px;
}

@media screen and (max-width: 768px) {
  section#intro .container > div {
    width: 80%;
  }
}

section#intro .container > div img {
  max-width: 208px;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  section#intro .container > div img {
    max-width: 170px;
  }
}

section#intro .container > div p {
  font-size: 18px;
  line-height: 2;
  color: black;
}

@media screen and (max-width: 768px) {
  section#intro .container > div p {
    text-align: justify;
    font-size: 15px;
  }
}

section#intro .container > div p .pc {
  display: inline-block;
}

@media screen and (max-width: 768px) {
  section#intro .container > div p .pc {
    display: none;
  }
}

section#intro .container > img {
  width: 50%;
  height: auto;
  border-radius: 24px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media screen and (max-width: 768px) {
  section#intro .container > img {
    width: 100%;
    aspect-ratio: 390 / 220;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section#products {
  background-image: url("/images/products/ski_intro/snow-flake.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 60px 20px;
}

@media screen and (max-width: 768px) {
  section#products {
    background-image: none;
  }
}

section#products .products {
  max-width: 948px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media screen and (max-width: 768px) {
  section#products .products {
    width: 100%;
  }
}

section#products .products .product {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 24px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: black;
}

@media screen and (max-width: 768px) {
  section#products .products .product {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#products .products .product:hover {
  text-decoration: none;
}

section#products .products .product img {
  width: 66%;
  aspect-ratio: 620/260;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  section#products .products .product img {
    width: 100%;
    aspect-ratio: 338/164;
  }
}

section#products .products .product > div {
  width: 100%;
  padding: 12px 12px 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  section#products .products .product > div {
    padding: 24px 12px 12px 12px;
    gap: 16px;
  }
}

section#products .products .product > div .name {
  font-weight: 700;
  font-size: 20px;
  line-height: 120%;
}

section#products .products .product > div ul {
  padding-left: 1.5em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 150%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

section#products .products .product > div .price {
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

section#products .products .product > div .button {
  padding: 8px 16px;
  font-size: 20px;
  border-radius: 52px;
  border: 1px solid #bdbdbd;
  -ms-flex-item-align: end;
      align-self: flex-end;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

section#products .products .product > div .button:hover {
  color: white;
  background-color: #f03a82;
}

@media screen and (max-width: 768px) {
  section#products .products .product > div .button {
    font-size: 16px;
    line-height: 1.7;
    width: 100%;
    text-align: center;
  }
}

section#products .products .customize-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
  }
}

section#products .products .customize-item .customize-swiper {
  width: 100%;
  border-radius: 24px 0 0 24px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .customize-swiper {
    border-radius: 24px 24px 0 0;
  }
}

section#products .products .customize-item .customize-swiper .swiper-slide img {
  height: 100%;
}

section#products .products .customize-item .customize-swiper .swiper-slide img.pc {
  width: 100%;
}

section#products .products .customize-item .customize-swiper .swiper-slide img.mobile {
  display: none;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .customize-swiper .swiper-slide img.pc {
    display: none;
  }

  section#products .products .customize-item .customize-swiper .swiper-slide img.mobile {
    display: block;
    width: 100%;
  }
}

section#products .products .customize-item .content {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  background: #B1A171;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .content {
    position: relative;
    width: 100%;
    gap: 24px;
    padding: 24px;
  }
}

section#products .products .customize-item .content span {
  font-size: 15px;
  font-weight: 400;
  line-height: 160%;
  letter-spacing: 13%;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .content span {
    display: none;
  }
}

section#products .products .customize-item .content h4 {
  font-weight: 400;
  font-size: 23px;
  line-height: 170%;
  text-align: center;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .content h4 {
    font-size: 18px;
  }
}

section#products .products .customize-item .content a {
  -ms-flex-item-align: center;
      align-self: center;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 36px;
  background: white;
  color: #B1A171;
  border: none;
  -webkit-box-shadow: 0px 1px 18px 0px rgba(68, 78, 120, 0.15);
          box-shadow: 0px 1px 18px 0px rgba(68, 78, 120, 0.15);
  font-size: 24px;
  line-height: 170%;
  font-weight: 500;
  min-width: 208px;
  text-align: center;
}

section#products .products .customize-item .content a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  section#products .products .customize-item .content a {
    font-size: 20px;
  }
}

section#features {
  padding: 60px 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 100dvw;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  section#features {
    gap: 24px;
  }
}

section#features > img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section#features > img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920/839;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section#features .features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  section#features .features {
    gap: 12px;
  }
}

section#features .features .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 48px;
  letter-spacing: 5%;
  text-align: center;
  padding: 15px;
}

@media screen and (max-width: 768px) {
  section#features .features .feature {
    padding: 8px;
    font-size: 14px;
  }

  section#features .features .feature img {
    width: 70px;
  }
}

section#features .quality {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  max-width: 736px;
  margin: 0 auto;
  padding: 24px 20px;
}

section#features .quality .intro {
  padding: 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

@media screen and (max-width: 768px) {
  section#features .quality .intro {
    padding: 24px 20px;
  }
}

section#features .quality .intro h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: 5%;
  text-align: center;
}

section#features .quality .intro p {
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 10%;
}

section#features .quality .card {
  position: relative;
  padding: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  border-radius: 20px;
  background: linear-gradient(125.87deg, rgba(255, 255, 255, 0.8) 39.92%, rgba(255, 255, 255, 0.4) 77.47%);
}

@media screen and (max-width: 768px) {
  section#features .quality .card {
    padding: 24px 40px;
  }
}

section#features .quality .card .label {
  position: absolute;
  top: 0;
  left: 40px;
}

section#features .quality .card .label.small {
  display: none;
}

@media screen and (max-width: 768px) {
  section#features .quality .card .label {
    display: none;
  }

  section#features .quality .card .label.small {
    display: block;
    left: 20px;
  }
}

section#features .quality .card .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

section#features .quality .card .top img {
  width: 96px;
}

@media screen and (max-width: 768px) {
  section#features .quality .card .top img {
    width: 56px;
  }
}

section#features .quality .card .top .title {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  section#features .quality .card .top .title {
    font-size: 16px;
  }
}

section#features .quality .card .context {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

section#features .quality .card .context hr {
  width: 100%;
}

section#features .quality .card .context p {
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: 10%;
}

@media screen and (max-width: 768px) {
  section#features .quality .card .context p {
    font-size: 13px;
  }
}

section#features .quality .card .button {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}

section#features .quality .card .button span {
  color: #82828f;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

section#features .quality .card .button span.collapse {
  display: none;
}

section#features .quality .card .button img {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

section#features .quality .card.expand .button span.collapse {
  display: inline;
}

section#features .quality .card.expand .button span.expand {
  display: none;
}

section#features .quality .card.expand .button img {
  -webkit-transform: rotate(0);
          transform: rotate(0);
}

section#features > * {
  position: relative;
}

section#fields {
  background-image: url("/images/products/ski_intro/snow-flake2.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  section#fields {
    background-size: auto 100%;
  }
}

section#fields .intro {
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

section#fields .intro > p {
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
}

section#fields .fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px;
  gap: 28px;
}

@media screen and (max-width: 768px) {
  section#fields .fields {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

section#fields .fields .card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 340px;
  gap: 16px;
  border-radius: 12px;
  border: none;
  overflow: hidden;
  padding-bottom: 24px;
}

@media screen and (max-width: 768px) {
  section#fields .fields .card {
    width: 100%;
  }
}

section#fields .fields .card > img {
  width: 100%;
  height: 112px;
  -o-object-fit: cover;
     object-fit: cover;
}

section#fields .fields .card .top {
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section#fields .fields .card .top .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section#fields .fields .card .top .name .main {
  font-weight: 700;
  font-size: 34px;
  line-height: 42px;
  letter-spacing: 5%;
}

section#fields .fields .card .top .name .sub {
  font-size: 24px;
  line-height: 34px;
  color: rgba(0, 0, 0, 0.3);
}

section#fields .fields .card .top .area img {
  width: 16px;
}

section#fields .fields .card .top .area span {
  font-size: 12px;
  line-height: 24px;
}

section#fields .fields .card .stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 24px 12px;
}

section#fields .fields .card .stats .item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 22px;
}

section#fields .fields .card .stats .item img {
  width: 24px;
  height: 24px;
}

section#fields .fields .card .stats .item .number {
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
}

section#testimonials {
  position: relative;
  padding: 60px 0px;
}

section#testimonials > img {
  margin-top: 20%;
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  section#testimonials > img {
    margin-top: 0;
    height: 100dvh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section#testimonials .testimonial-container {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}

section#testimonials .testimonial-container .swiper-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 100%;
}

section#testimonials .testimonial-container .swiper-container .testimonials {
  max-width: 1100px;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  section#testimonials .testimonial-container .swiper-container .testimonials {
    padding: 0 20px;
  }
}

section#testimonials .testimonial-container .swiper-container .testimonials .card {
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #f2f2f2;
  border-radius: 12px;
  border: none;
}

section#testimonials .testimonial-container .swiper-container .testimonials .card .top .user {
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
}

section#testimonials .testimonial-container .swiper-container .testimonials .card p {
  font-size: 16px;
  line-height: 25px;
  max-height: 200px;
  overflow-x: auto;
}

section#testimonials .testimonial-container .swiper-pagination {
  bottom: -30px;
}

section#testimonials .testimonial-container .swiper-pagination .swiper-pagination-bullet-active {
  background: black;
}

section#testimonials .testimonial-container .swiper-button-prev,
section#testimonials .testimonial-container .swiper-button-next {
  top: unset;
  left: unset;
  right: unset;
  position: relative;
  color: black;
}

@media screen and (max-width: 768px) {
  section#testimonials .testimonial-container .swiper-button-prev,
  section#testimonials .testimonial-container .swiper-button-next {
    display: none;
  }
}

section#discount {
  padding: 0 0 60px 0;
}

@media screen and (max-width: 768px) {
  section#discount {
    padding: 0 20px;
  }
}

section#discount .card {
  padding: 24px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
  margin: -104px auto auto auto;
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.1);
  border: none;
}

@media screen and (max-width: 768px) {
  section#discount .card {
    padding: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto auto auto;
  }
}

section#discount .card .left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  section#discount .card .left {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
  }
}

section#discount .card .left img {
  width: 98px;
}

section#discount .card .left h3 {
  margin: 0;
  padding: 24px 0;
  font-weight: 400;
  font-size: 50px;
  line-height: 120%;
  letter-spacing: 5%;
}

@media screen and (max-width: 768px) {
  section#discount .card .left h3 {
    font-size: 36px;
  }
}

section#discount .card .left span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 10%;
}

section#discount .card .right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 768px) {
  section#discount .card .right {
    max-width: 100%;
  }
}

section#discount .card .right .tabs {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 8px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .tabs {
    gap: 4px;
    max-width: 100%;
    overflow-x: auto;
  }
}

section#discount .card .right .tabs .tab {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 12px 24px;
  border-radius: 30px;
  border: 1px solid #bdbdbd;
  color: #4f4f4f;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 10%;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .tabs .tab {
    padding: 6px 12px;
    font-size: 16px;
    line-height: 22px;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
  }
}

section#discount .card .right .tabs .tab:hover {
  text-decoration: none;
  background: #fc87b5;
  color: white;
  border: 1px solid #fc87b5;
}

section#discount .card .right .tabs .tab.active {
  background: #fc87b5;
  color: white;
  border: 1px solid #fc87b5;
}

section#discount .card .right .contents {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 12px 24px;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .contents {
    padding: 12px 0px;
  }
}

section#discount .card .right .contents .content {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

section#discount .card .right .contents .content.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section#discount .card .right .contents .content h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
  gap: 8px;
  margin: 0;
  font-weight: 600;
  font-size: 20px;
  line-height: 140%;
}

section#discount .card .right .contents .content .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  color: black;
  cursor: pointer;
}

section#discount .card .right .contents .content .item:hover {
  text-decoration: none;
}

section#discount .card .right .contents .content .item > img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 125px;
  height: 89px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .contents .content .item > img {
    widnt: 92px;
    height: 58px;
  }
}

section#discount .card .right .contents .content .item > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  line-height: 140%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .contents .content .item > div {
    padding: 0px 8px;
  }
}

section#discount .card .right .contents .content .item > div .name {
  font-size: 25px;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .contents .content .item > div .name {
    font-size: 18px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

section#discount .card .right .contents .content .item > div .desc {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  section#discount .card .right .contents .content .item > div .desc {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}

section#faq {
  padding: 60px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section#faq .faq-container {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  section#faq .faq-container {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

section#faq .faq-container > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 40px;
}

section#faq .faq-container > div .item {
  padding: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

section#faq .faq-container > div .item .name {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 41px;
  letter-spacing: 10%;
}

section#faq .faq-container > div .item .desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: 5%;
}

section#faq .faq-container > img {
  width: 559px;
  height: 278px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

@media screen and (max-width: 768px) {
  section#faq .faq-container > img {
    width: 100%;
    height: auto;
    aspect-ratio: 559/278;
  }
}

