.ctn-content-article h4 strong {
  color: #e27500;
}
.ctn-content-article ul,
.ctn-content-article p {
  margin-bottom: 1em;
}
.ctn-content-article .indent {
  padding-left: 1.5em;
}
.ctn-content-article .indent > li[data-marker] {
  position: relative;
}
.ctn-content-article .indent > li[data-marker]::before {
  content: attr(data-marker);
  box-sizing: border-box;
  min-width: 1.5em;
  padding-right: 0.25em;
  white-space: nowrap;
  position: absolute;
  right: 100%;
}

.ctn-content-article figure {
  max-width: 560px;
  margin: 0 auto 1.5em;
}
.ctn-content-article figure img {
  max-width: 100%;
}
.ctn-content-article figure.visual-main {
  max-width: 100%;
}
.ctn-content-article figure.visual-main svg,
.ctn-content-article figure.visual-main img {
  display: block;
  width: 100%;
}
.ctn-content-article figure.figure-wide {
  max-width: 720px;
}

.ctn-content-article .about {
  display: grid;
  grid-template-columns: minmax(25%, 310px) minmax(50%, 1fr);
  gap: 1.5em;
  margin: 2em 0 1em;
}
.ctn-content-article .about:first-child {
  margin-top: 0;
}
.ctn-content-article .about figure {
  aspect-ratio: 31 / 18;
  margin: 0;
  position: relative;
}
.ctn-content-article .about figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
}
.ctn-content-article .about figure figcaption {
  background: #0004;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-align: center;
  font-weight: 500;
  font-size: 1.4375em;
  line-height: 1.13;
  color: white;
  position: relative;
}
@media screen and (max-width: 767px) {
  .ctn-content-article .about {
    grid-template-columns: 1fr;
  }
}

.ctn-content-article .links {
  margin: 1em 0;
}
.ctn-content-article .links ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, calc((100% - 3em) / 3)));
  gap: 0.5em 1.5em;
}

.recommend-trainings {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5em;
  align-items: center;
  margin-bottom: 1em;
  padding-bottom: 1em;
  border-bottom: 2px solid #e27500;
}
.recommend-trainings small {
  font-size: 0.75em;
}
.recommend-trainings .hdg-lv02-01 {
  grid-column: span 2;
}
.recommend-trainings a {
  background: #e27500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: white;
}
.recommend-trainings--border {
  padding: 1em 2em;
  border: 2px solid #e27500;
}
@media screen and (max-width: 767px) {
  .recommend-trainings {
    grid-template-columns: 1fr;
  }
  .recommend-trainings .hdg-lv02-01 {
    grid-column: 1;
  }
}