.free-inner {
  margin-top: 1.5em;
}
.free-img img {
  width: 100%;
  height: auto;
}
.free-inner .scroll-right {
  display: none;
}
@media screen and (max-width: 460px) {
  .free-img {
    overflow-x: scroll;
  }
  .free-img img {
    width: auto;
  }
  .free-inner .scroll-right {
    display: block;
    margin-bottom: 0.5em;
  }
  .ec-productRole .free-img img {
    max-width: initial;
  }
}
.hidden {
	overflow: hidden;
}
.ec-productRole .ec-productRole__price {
    color: #000;
}
.detail {
  max-width: 800px;
  margin: 0 auto 100px;
}
.detail h2 {
	text-align: center;
}
.detail > * {
  margin-top: 60px;
}
.detail-vdo {
  max-width: 300px;
  margin: 0 auto;
}
.detail-vdo video {
  width: 100%;
}
/* swiper */
.swiper {
  width: 400px;
  height: 500px;
  padding: 50px;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.swiper-button-next, .swiper-button-prev {
  color: #707070;
  width: 2.2rem;
  height: 2.2rem;
  background: #fff;
  border: 1px solid #707070;
}
.swiper-button-prev::after, .swiper-button-next::after {
  width: 1.2rem;
  height: 1.2rem;
  content: "";
  border: solid #707070;
  border-width: 3px 3px 0 0;
}
.swiper-button-prev::after {
  margin-left: 0.4rem;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.swiper-button-next::after {
  margin-right: 0.4rem;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media screen and (max-width: 736px) {
  .swiper {
    width: 100%;
    height: auto;
  }
}
.detail-box {
  width: 100%;
  border: 1px solid #787878;
}
.detail-box__tit {
  background: #787878;
  padding: 10px;
  text-align: center;
}
.detail-box__tit h3 {
  color: #fff;
  margin-bottom: 0;
}
.detail-box__txt {
  padding: 40px;
}
.detail-box__txt p {
  margin-bottom: 0;
}
.detail-point {
  border-color: #C45391;
}
.detail-point .detail-box__tit {
  background: #C45391;
}
@media screen and (max-width: 736px) {
  .detail-box__txt {
    padding: 10px;
  }
  .swiper {
    height: 300px;
    padding: 0;
  }
  .swiper-slide img {
    width: 100%;
    height: 100%;
  }
  .swiper-button-next, .swiper-button-prev {
    width: 1.6rem;
    height: 1.6rem;
  }
  .swiper-button-prev::after, .swiper-button-next::after {
    width: 0.75rem;
    height: 0.75rem;
  }
}
@media screen and (max-width: 460px) {
    .swiper-slide img {
  display: block;
  width: auto;
  height: 100%;
  object-fit: scale-down;
  margin: 0 auto;
}
}

.point1 {

  padding: 10px 10px 10px 45px;
  line-height: 1.3;
  background: url(/html/user_data/assets/img/point1.svg) no-repeat;
  background-size: 35px;
  background-position: left center; /* 左寄せで上下センターに配置 */
  
  }
  
  .point2 {
  
  padding: 10px 10px 10px 45px;
  line-height: 1.3;
  background: url(/html/user_data/assets/img/point2.svg) no-repeat;
  background-size: 35px;
  background-position: left center; /* 左寄せで上下センターに配置 */
  }
  
  .point3 {
  
  padding: 10px 10px 10px 45px;
  line-height: 1.3;
  background: url(/html/user_data/assets/img/point3.svg) no-repeat;
  background-size: 35px;
  background-position: left center; /* 左寄せで上下センターに配置 */
  }
  
  .detail-vdo {
    max-width: 300px;
    margin: 0 auto;
    aspect-ratio: 9 / 16;
  }
  .detail-vdo iframe {
    width: 100%;
    height: 100%;
    
  }
  .detail em {
    font-style:normal;
    font-weight: bold;
  }
  /* 波状の線 */
.wavy-border {
    position: relative;
    color: red;
}

.wavy-border::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px; /* 線の太さ */
    background: repeating-linear-gradient(
        90deg,
        red,
        red 2px,
        transparent 2px,
        transparent 4px
    );
    transform: translateY(3px); /* テキストと波線の間隔 */
}