.p-concept-list > div {
  display: contents;
}

[data-element-id] .p-concept-list > div {
  display: block;
}

.up-d-history {
  padding: 10px 0;
  background: #fff;
}

.up-d-history-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

/* ===== テキスト ===== */

.up-d-history-text {
  width: 500px;
  display: flex;
  justify-content: center;
}

.up-d-history-text-inner {
  width: 270px;
}

.up-d-history-title {
  font-size: 18px;
  font-weight: bold;
  color: #444;
  line-height: 1.4;
  margin-bottom: 15px;
}

.up-d-history-body {
  font-size: 15px;
  color: #909090;
  line-height: 1.4;
  letter-spacing: 0.01rem;
}

.up-d-history-body a {
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
  color: #1F64E4;
}

.up-d-history-body a:hover {
  opacity: 0.6;
}

/* ===== 画像 ===== */

.up-d-history-image {
  width: 500px;
}

.up-d-history-image img {
  width: 100%;
  height: auto;
  display: block;
  box-shadow: 0 15px 25px -15px rgba(0, 0, 0, 0.25);
}

/* ===== SP ===== */

@media (max-width: 768px) {

  .up-d-history {
    padding: 45px 0;
  }

  .up-d-history-inner {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .up-d-history-image {
    order: -1;
    width: 100%;
    margin-bottom: 25px;
  }

  .up-d-history-text {
    width: 90%;
    margin: 0 auto;
    justify-content: flex-start;
  }

  .up-d-history-text-inner {
    width: 312px;
  }

  .up-d-history-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .up-d-history-body {
    font-size: 15px;
    line-height: 1.5;
  }

}

/* ===== アニメーション ===== */

.up-d-scroll_fadein {
  opacity: 0;
  transform: translateY(50px);
}

.up-d-fadein_animation_start {
  animation: up-d-fadein_animation 1s cubic-bezier(0.07, 0.92, 0.46, 0.95) both;
}

.up-d-history-image.up-d-fadein_animation_start {
  animation-delay: 0.2s;
}

.up-d-history-text.up-d-fadein_animation_start {
  animation-delay: 0.5s;
}

@keyframes up-d-fadein_animation {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
