.index-wrap h2.wrap-title {
  color: #AA1E2D;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: 0.03em;
  margin: 0;
}
.index-wrap h2.wrap-title.loaded:after {
  width: 100px;
}
.index-wrap h2.wrap-title:after {
  content: " ";
  display: block;
  width: 0;
  height: 4px;
  background-color: #AA1E2D;
  margin-top: 36px;
  transition: 0.5s;
}
.index-wrap .read-more a {
  display: block;
  width: 160px;
  line-height: 36px;
  padding-left: 20px;
  font-size: 14px;
  color: white;
  background-color: #AA1E2D;
  background-image: url("../images/index/icon_read_more.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
}
.index-wrap .banner-wrap .banner {
  width: 100vw;
  height: 780px;
  background-position: center;
  background-size: cover;
}
.index-wrap .banner-wrap .banner .content-wrap {
  position: relative;
}
.index-wrap .banner-wrap .banner .content-wrap .text {
  position: absolute;
  top: 194px;
  left: 0;
  color: white;
}
.index-wrap .banner-wrap .banner .content-wrap .text p:nth-child(1) {
  letter-spacing: 0.02em;
  line-height: 1.3;
  font-size: 26px;
}
.index-wrap .banner-wrap .banner .content-wrap .text p:nth-child(2) {
  font-size: 20px;
  margin-top: 35px;
  font-weight: 300;
  line-height: 1.6;
}
.index-wrap .banner-wrap .banner .content-wrap .read-more {
  position: absolute;
  top: 433px;
}
.index-wrap .intro-wrap {
  padding-top: 81px;
  padding-bottom: 67px;
  background-color: #F0F0F0;
}
.index-wrap .intro-wrap .content-wrap {
  display: flex;
  gap: 107px;
}
.index-wrap .intro-wrap .content-wrap .logo img {
  max-width: 313px;
}
.index-wrap .intro-wrap .content-wrap .text {
  flex: 1;
  font-size: 20px;
}
.index-wrap .intro-wrap .content-wrap .text p {
  line-height: 1.9;
  font-weight: 300;
}
.index-wrap .intro-wrap .content-wrap .text p:before {
  content: " ";
  display: block;
  margin-top: -0.3em;
}
.index-wrap .intro-wrap .content-wrap .text p:nth-child(2) {
  margin-top: 44px;
}
.index-wrap .product-wrap {
  background-color: #ffffff;
  padding-top: 76px;
  padding-bottom: 81px;
}
.index-wrap .product-wrap .products {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}
.index-wrap .product-wrap .products .product {
  width: 330px;
  aspect-ratio: 1/1;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-position: center;
  background-size: cover;
  cursor: pointer;
}
.index-wrap .product-wrap .products .product:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #AA1E2D;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.index-wrap .product-wrap .products .product:hover:after {
  opacity: 0.5;
}
.index-wrap .product-wrap .products .product .desc {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 2;
}
.index-wrap .product-wrap .products .product .desc .name {
  margin: 0;
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  white-space: pre;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.03em;
}
.index-wrap .contact-wrap {
  background-image: url("../images/index/img_contact.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 76px;
  padding-bottom: 88px;
}
.index-wrap .contact-wrap .contact .text {
  margin-top: 31px;
  font-size: 20px;
  line-height: 1.9;
}
.index-wrap .contact-wrap .contact .read-more {
  margin-top: 50px;
}
.index-wrap .owl-carousel .owl-dots {
  max-width: 1400px;
  margin: 0 auto;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}
.index-wrap .owl-carousel .owl-dots button.owl-dot {
  width: 15px;
  height: 15px;
  border: 2px solid #AA1E2D;
}
.index-wrap .owl-carousel .owl-dots button.owl-dot:nth-child(n+2) {
  margin-left: 15px;
}
.index-wrap .owl-carousel .owl-dots button.owl-dot.active {
  background-color: #AA1E2D;
}

@media (max-width: 1500px) {
  .index-wrap .banner-wrap .banner {
    height: 500px;
  }
  .index-wrap .banner-wrap .banner .content-wrap {
    height: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    gap: 70px;
    align-items: flex-start;
    flex-direction: column;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text {
    position: static;
  }
  .index-wrap .banner-wrap .banner .content-wrap .read-more {
    position: static;
  }
  .index-wrap .product-wrap .products .product {
    width: auto;
    flex: 1;
  }
  .index-wrap .product-wrap .products .product .desc {
    padding-bottom: 0;
  }
  .index-wrap .owl-carousel .owl-dots {
    left: 40px;
    bottom: 40px;
  }
}
@media (max-width: 1200px) {
  .index-wrap .intro-wrap .content-wrap {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .index-wrap .intro-wrap .content-wrap .text br {
    display: none;
  }
  .index-wrap .intro-wrap .content-wrap .text p:nth-child(2) {
    margin-top: 20px;
  }
  .index-wrap .product-wrap .products .product .desc .name {
    font-size: 24px;
  }
  .index-wrap .contact-wrap .contact .text {
    white-space: normal;
  }
  .index-wrap .contact-wrap .contact .text br {
    display: none;
  }
  .index-wrap .contact-wrap .contact .read-more {
    margin-top: 40px;
  }
}
@media (max-width: 800px) {
  .index-wrap .read-more a {
    width: auto;
    padding-right: 35px;
    background-position: right 15px center;
  }
  .index-wrap .banner-wrap .banner {
    height: 70vw;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text {
    font-size: 18px;
    margin-top: 0;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p {
    line-height: 2;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p:before {
    content: " ";
    display: block;
    margin-top: -0.1em;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p:nth-child(n+2) {
    margin-top: 0;
  }
  .index-wrap .product-wrap .products {
    flex-direction: column;
  }
  .index-wrap .product-wrap .products .product {
    aspect-ratio: 1/0.5;
  }
  .index-wrap .contact-wrap .contact .read-more a {
    display: inline-block;
  }
  .index-wrap .owl-carousel .owl-dots {
    left: 40px;
    bottom: 40px;
  }
}
@media (max-width: 600px) {
  .index-wrap h2.wrap-title {
    font-size: 32px;
  }
  .index-wrap h2.wrap-title:after {
    margin-top: 20px;
  }
  .index-wrap .intro-wrap,
.index-wrap .product-wrap,
.index-wrap .contact-wrap {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .index-wrap .banner-wrap .banner .content-wrap {
    gap: 5vw;
    padding-bottom: 60px;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p {
    line-height: 1.7;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p br {
    display: none;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p:before {
    margin-top: -0.35em;
  }
  .index-wrap .intro-wrap .content-wrap {
    gap: 20px;
  }
  .index-wrap .intro-wrap .content-wrap .logo {
    text-align: center;
  }
  .index-wrap .intro-wrap .content-wrap .logo img {
    width: 300px;
    max-width: 90%;
  }
  .index-wrap .intro-wrap .content-wrap .text {
    font-size: 18px;
  }
  .index-wrap .intro-wrap .content-wrap .text p {
    line-height: 1.5;
  }
  .index-wrap .contact-wrap .contact .text {
    font-size: 18px;
    margin-top: 45px;
    line-height: 1.7;
  }
  .index-wrap .contact-wrap .contact .text:before {
    content: "";
    display: block;
    margin-top: -0.35em;
  }
}
@media (max-width: 500px) {
  .index-wrap .banner-wrap .banner .content-wrap {
    position: relative;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p:nth-child(1) {
    line-height: 1.3;
    font-size: 5vw;
  }
  .index-wrap .banner-wrap .banner .content-wrap .text p:nth-child(2) {
    margin-top: 2vw;
    line-height: 1.3;
    font-size: 4vw;
  }
  .index-wrap .banner-wrap .banner .content-wrap .read-more {
    position: absolute;
    top: auto;
    right: 10px;
    bottom: 40px;
  }
}

/*# sourceMappingURL=index.css.map */
