.product {
  width: 100%;
  box-sizing: border-box;
  min-height: unset;
}
.product * {
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  .product {
    width: 100%;
  }
}
.product img {
  aspect-ratio: 1500/1800;
  -o-object-fit: cover;
     object-fit: cover;
}
.product__wrapper {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  background: #eeeeee;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  .product__wrapper {
    width: 100%;
  }
}
.product__main {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  .product__main {
    flex-direction: column;
  }
}
.product__thumbnail {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .product__thumbnail {
    width: 100%;
    margin-bottom: 25px;
  }
}
.product__content {
  width: 48%;
}
@media screen and (max-width: 1024px) {
  .product__content {
    width: 100%;
  }
}
.product__content h1.product__content-ttl {
  width: 100%;
  font-size: 20px;
  line-height: 1.5;
  font-weight: bold;
  border-bottom: 2px solid #000000;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
.product__content-info {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 50px;
}
.product__content-lead {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 25px;
}
.product__content-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
}
.product__content-list {
  width: calc(33.3333333333% - 10px);
}
@media screen and (max-width: 1024px) {
  .product__content-list {
    width: calc(50% - 7.5px);
  }
}
.product__content-button {
  width: 100%;
}
.product__content-button-list {
  width: 100%;
}
.product__content-button-list a {
  background: #B87C4C;
  position: relative;
}
.product__content-button-list a::before, .product__content-button-list a::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 8px;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ffffff;
  transform-origin: calc(100% - 1px) 50%;
}
.product__content-button-list a::before {
  transform: rotate(45deg);
}
.product__content-button-list a::after {
  transform: rotate(-45deg);
}
.product__content-button-link {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 14px;
  color: #ffffff;
  padding: 15px 0;
  background: #4A0D0D;
}
.product__others-lead {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 25px;
}
.product__others-group {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.product__others-group-list {
  width: calc(25% - 18.75px);
}
@media screen and (max-width: 1024px) {
  .product__others-group-list {
    width: calc(50% - 12.5px);
    margin-bottom: 25px;
  }
}
.product__others-group-link {
  width: 100%;
  height: 100%;
  display: block;
}
.product__others-group-image {
  margin-bottom: 10px;
}
.product__others-group-ttl {
  font-size: 14px;
  text-align: center;
}

.bg-musk {
  width: 100%;
}/*# sourceMappingURL=product.css.map */