/* ==========================================================================
   Index
   ========================================================================== */
.detail-section {
  position: relative;
  min-height: 200px;
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 40px;
}
.detail-section::before {
  content: '';
  position: absolute;
  top: 86px;
  left: 0;
  right: 0;
  display: block;
  width: 27px;
  height: 27px;
  margin: auto;
  background: url(/common/img/loading_img01.gif) no-repeat center center / 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  pointer-events: none;
}
.detail-section.is-initialized::before {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
@media screen and (max-width: 1024px) {
  .detail-section {
    padding: 0 20px;
  }
}
.detail-section_image {
  text-align: center;
}
.detail-section_image > img {
  max-width: 100%;
}
.detail-section_title {
  margin-top: 39px;
  font-size: 2.4rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .detail-section_title {
    margin-top: 20px;
    font-size: 1.8rem;
  }
}
.detail-section_text {
  margin-top: 13px;
  line-height: 1.8125;
}
.detail-section_date {
  margin-top: 32px;
  font-size: 1.4rem;
  text-align: right;
}
