.history_paragraph {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}
.history_paragraph + .history_paragraph {
  margin-top: 10px;
  padding-top: 0;
  border-top: 0;
}

.history_poster {
  margin: 0 auto;
}
.history_poster a {
  display: block;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .history_poster a:hover img {
    transform: scale(1.06);
  }
}
.history_poster img {
  transition: 0.4s ease;
  width: 100%;
}

.history_toggle {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
}
.history_toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.3s ease;
}
.history_toggle:before, .history_toggle:after {
  display: block;
  content: "";
  position: absolute;
  width: 14px;
  height: 3px;
  background-color: #fff;
  bottom: 15px;
  left: 50%;
  opacity: 1;
  transition: 0.3s ease;
  z-index: 1;
}
.history_toggle:before {
  border-radius: 10px 0 0 10px;
  transform: translateX(-50%) rotate(45deg);
  margin-left: -8px;
}
.history_toggle:after {
  border-radius: 0 10px 10px 0;
  transform: translateX(-50%) rotate(-45deg);
  margin-right: -8px;
}
.history_toggle.active:before, .history_toggle.active:after {
  opacity: 0;
}
@media print, screen and (min-width: 920px) {
  .history_toggle:hover img {
    transform: scale(1.06);
  }
}

.history_toggle_back {
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.history_toggle_back span {
  position: relative;
  display: block;
  width: 26px;
  height: 26px;
}
.history_toggle_back span:before, .history_toggle_back span:after {
  content: "";
  position: absolute;
  display: block;
  height: 3px;
  border-radius: 10px;
  width: 100%;
  left: 0;
  background: #fff;
}
.history_toggle_back span:before {
  transform: rotate(45deg);
  top: 50%;
  margin-top: -2px;
}
.history_toggle_back span:after {
  width: 100%;
  transform: rotate(-45deg);
  bottom: 50%;
  margin-bottom: -1px;
}

.history_column {
  display: none;
  color: #fff;
  padding: 1px 20px 20px;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
}

.history_column_text .history_logo {
  display: none;
}
@media print, screen and (min-width: 920px) {
  .history_column_text .history_logo img {
    max-height: 85px;
  }
  .history_column_text .history_logo.large img {
    max-height: 115px;
  }
}
.history_column_text .history_text {
  margin-top: 30px;
}

.history_data_list {
  margin-top: 30px;
}
.history_data_list dl {
  margin-top: 30px;
}
.history_data_list dt {
  font-size: clamp(1.3rem, 3.25vw, 1.5rem);
  font-weight: bold;
}
.history_data_list dd {
  margin-top: 3px;
}
.history_data_list dd span {
  display: inline-block;
}

.history_column_img {
  margin-top: 40px;
  display: flex;
  gap: 10px;
}
.history_column_img .history_logo {
  max-width: 260px;
  margin-left: auto;
  margin-right: auto;
}
.history_column_img .history_poster {
  width: 50%;
}
.history_column_img .history_img_ph {
  width: 50%;
}
.history_column_img .history_img_ph a + img,
.history_column_img .history_img_ph img + img,
.history_column_img .history_img_ph img + a,
.history_column_img .history_img_ph a + a {
  display: block;
  margin-top: 10px;
}
.history_column_img .history_img_ph a {
  display: block;
  overflow: hidden;
}
@media print, screen and (min-width: 768px) {
  .history_column_img .history_img_ph a:hover img {
    transform: scale(1.06);
  }
}
.history_column_img .history_img_ph img {
  transition: 0.4s ease;
  width: 100%;
}