.detail__section {
  padding: 80px 0 160px;
  overflow: hidden;
  background: url(/images/section__pattern.png) repeat;
}
.detail__h1-content {
  margin-bottom: 60px;
}
.detail__h1-ttl {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 60px;
  text-align: center;
}
.detail__h1-body {
  color: #3B4043;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  max-width: 900px;
  margin: 0 auto;
}
.detail__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
.detail__info-categories {
  display: flex;
  gap: 16px;
}
.detail__info-category, .detail__info-time {
  color: #707070;
  font-size: 12px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  height: 21px;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 2px;
}
.detail__slider {
  max-width: 900px;
  margin: 0 auto 60px;
  position: relative;
}
.detail__slider #js__main-list {
  position: relative;
}
.detail__slider .slick-arrow {
  text-indent: -9999px;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}
.detail__slider .slick-prev {
  background: url(/images/icn__slider-arrow--left.png) no-repeat center/auto;
  right: 100%;
  transform: translateX(clamp(-52px, -13.735vw + 135.625px, 30px));
}
.detail__slider .slick-next {
  background: url(/images/icn__slider-arrow--right.png) no-repeat center/auto;
  left: 100%;
  transform: translateX(clamp(-30px, 13.735vw - 135.625px, 52px));
}
.detail__slider .slick-track {
  display: flex;
  justify-content: center;
}
.detail__slider .slick-list {
  overflow: hidden;
}
.detail__slider .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail__slider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.detail__slider .slick-dots li {
  text-indent: -9990px;
  background: #CECECE;
  width: 100%;
  max-width: 72px;
  height: 4px;
}
.detail__slider .slick-dots li.slick-active {
  background: #C6006F;
}
.detail__slider-el {
  width: 100%;
  max-width: 900px;
}
.detail__h2-content {
  margin-bottom: 60px;
}
.detail__h2-ttl {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  width: 100%;
  max-width: 960px;
  margin: 0 auto 60px;
  padding: 10px 20px;
  background: #C6006F;
  position: relative;
}
.detail__h2-ttl::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/images/icn__detail-triangle.png) no-repeat center/auto;
  position: absolute;
  top: 100%;
  left: 0;
}
.detail__h2-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  max-width: 936px;
  margin: 0 auto 40px;
}
.detail__h2-images {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.detail__h2-images picture {
  max-width: 456px;
}
.detail__h3-content {
  margin-bottom: 54px;
}
.detail__h3-ttl {
  max-width: 940px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: minmax(51px, auto) 1fr;
  border: 1px solid #E6217D;
  border-radius: 4px 0 0 4px;
}
.detail__h3-icn {
  display: grid;
  place-items: center;
  place-content: center;
  width: 51px;
  background: #C6006F;
}
.detail__h3-icn picture {
  width: 16px;
}
.detail__h3-lead {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px;
}
.detail__h3-body {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  max-width: 936px;
  margin: 0 auto;
}
.detail__sns {
  display: grid;
  grid-template-columns: minmax(auto, 97px) minmax(auto, 70px) minmax(auto, 96px);
  gap: 20px;
  max-width: 936px;
  margin: 0 auto 60px;
}
.detail__pager {
  max-width: 936px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  display: none;
}
.detail__pager-prev, .detail__pager-next {
  color: #707070;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 40px;
  padding: 0 16px 0 11px;
  border: 1px solid #707070;
  border-radius: 2px;
  background: #fff;
}
.detail__pager-prev::before {
  content: "";
  width: 6px;
  height: 12px;
  background: url(/images/detail__pager.png) no-repeat center/contain;
}
.detail__pager-next::after {
  content: "";
  width: 6px;
  height: 12px;
  rotate: 180deg;
  background: url(/images/detail__pager.png) no-repeat center/contain;
}

@media (max-width: 768px) {
  .detail__section {
    padding: 80px 0;
  }
  .detail__h1-content {
    margin-bottom: 80px;
  }
  .detail__h1-ttl {
    font-size: clamp(1.5rem, 1.261rem + 1.02vw, 1.75rem);
    line-height: 1.35;
    margin-bottom: 30px;
  }
  .detail__info {
    flex-wrap: wrap;
    gap: 10px;
  }
  .detail__info-categories {
    gap: 10px;
  }
  .detail__slider {
    margin: 0 auto 30px;
  }
  .detail__slider .slick-arrow {
    width: 30px;
    height: 30px;
  }
  .detail__slider .slick-prev {
    right: unset;
    left: 0;
    transform: unset;
    translate: -13px -18px;
  }
  .detail__slider .slick-next {
    left: unset;
    right: 0;
    transform: unset;
    translate: 13px -18px;
  }
  .detail__slider .slick-dots li {
    max-width: clamp(2.25rem, 0.103rem + 9.16vw, 4.5rem);
  }
  .detail__h2-ttl {
    margin: 0 auto 50px;
  }
  .detail__h2-body {
    color: #3B4043;
    font-size: 16px;
    margin: 0 auto 30px;
  }
  .detail__h2-images {
    flex-direction: column;
    gap: 20px;
  }
  .detail__h2-images picture {
    max-width: unset;
  }
  .detail__h3-content {
    margin-bottom: 30px;
  }
  .detail__h3-ttl {
    margin: 0 auto 30px;
  }
  .detail__sns {
    margin: 0 auto 30px;
  }
}/*# sourceMappingURL=style.css.map */