@charset "UTF-8";
.product_list.product_detail_page .cont h3 {
  font-size: min(4.2vw, 16px);
  margin-bottom: 10px;
}
.product_list.product_detail_page .cont ul > * {
  flex: 0 0 calc((100% - (8 - 1) * 16px) / 8);
  max-width: calc((100% - (8 - 1) * 16px) / 8);
}
.product_list.product_detail_page .cont ul li p {
  font-size: 10px;
}
.product_list .cont {
  padding: 30px 0;
  border-bottom: 1px dashed #999;
}
.product_list .cont h3 {
  color: #d60050;
  font-size: min(4.2vw, 22px);
  text-align: center;
  font-weight: 400;
  margin-bottom: 20px;
}
.product_list .cont ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: flex-start;
  box-sizing: border-box;
}
.product_list .cont ul > * {
  flex: 0 0 calc((100% - (5 - 1) * 16px) / 5);
  max-width: calc((100% - (5 - 1) * 16px) / 5);
}
@media (max-width: 1080px) {
  .product_list .cont ul > * {
    flex: 0 0 calc((100% - (4 - 1) * 16px) / 4);
    max-width: calc((100% - (4 - 1) * 16px) / 4);
  }
}
@media (max-width: 780px) {
  .product_list .cont ul > * {
    flex: 0 0 calc((100% - (3 - 1) * 16px) / 3);
    max-width: calc((100% - (3 - 1) * 16px) / 3);
  }
}
.product_list .cont ul > * {
  box-sizing: border-box;
}
.product_list .cont ul li {
  text-align: center;
}
.product_list .cont ul li figure {
  width: 100%;
  margin: 15px auto;
}
.product_list .cont ul li p {
  font-size: min(2.2vw, 13px);
}

.product_detail {
  margin-bottom: 50px;
}
.product_detail .cont {
  display: flex;
  justify-content: space-between;
}
.product_detail .cont .btn a {
  max-width: 280px;
  padding: 8px;
}
.product_detail .cont .img {
  width: 45%;
  text-align: center;
}
.product_detail .cont .img .in_english {
  text-align: center;
  margin-top: 2em;
  text-decoration: underline;
  font-weight: 500;
}
.product_detail .cont .info {
  width: 50%;
}
.product_detail .cont .info a {
  text-decoration: underline;
}
.product_detail .cont .info h3 {
  margin-bottom: 15px;
  font-size: min(3.8vw, 18px);
}
.product_detail .cont .info h4 {
  font-size: min(3.8vw, 15px);
  font-weight: 500;
  margin-bottom: 10px;
  color: #d60050;
}
.product_detail .cont .info p {
  margin-bottom: 1.5em;
}
.product_detail .cont .info dl {
  margin-top: 1em;
  margin-bottom: 1em;
}
.product_detail .cont .info dl dt {
  font-weight: 500;
  display: inline-block;
  background: linear-gradient(#fff 70%, #f1f1f1 70%);
}
.product_detail .cont .info dl dd {
  font-size: 0.9em;
}
.product_detail .cont .info dl dd + dd {
  margin-top: 1em;
}
.product_detail .item_info {
  max-width: 1000px;
  margin: 80px auto 0 auto;
}
.product_detail .item_info .item_lp_img {
  line-height: 1;
}
.product_detail .item_info .video_wrap {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 の比率 */
  height: 0;
  overflow: hidden;
}
.product_detail .item_info .video_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 780px) {
  .product_detail .cont {
    flex-flow: column;
  }
  .product_detail .cont .img {
    width: 100%;
    margin-bottom: 30px;
  }
  .product_detail .cont .info {
    width: 100%;
  }
  .product_detail .cont .info h3 {
    margin-bottom: 10px;
  }
}