.child-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.child-posts-grid__item {
  display: block;
  color: inherit;
  text-decoration: none;
}

.child-posts-grid__thumbnail {
  margin: 0 0 12px;
  overflow: hidden;
}

.child-posts-grid__thumbnail img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.child-posts-grid__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.child-posts-grid__item:hover .child-posts-grid__thumbnail img {
  transform: scale(1.04);
}

@media screen and (max-width: 767px) {
  .child-posts-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 767px)
{
  .tablescroll.sp-vertical
  {
    overflow-x: visible;
  }

  .tablescroll.sp-vertical table,
  .tablescroll.sp-vertical tbody,
  .tablescroll.sp-vertical tr,
  .tablescroll.sp-vertical th,
  .tablescroll.sp-vertical td
  {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .tablescroll.sp-vertical tr:first-child
  {
    display: none;
  }

  .tablescroll.sp-vertical tr
  {
    border-bottom: none;
    margin-bottom: 2em;
    border-left: 2px solid #0a2878;
  }
  /*
  .tablescroll.sp-vertical tbody tr:last-child {
    border-bottom: 1px solid #ddd;
  }
  */
  
  .tablescroll.sp-vertical th,
  .tablescroll.sp-vertical td
  {
    text-align: center;
  }
  .tablescroll.sp-vertical table td
  {
    border: none;
    padding: 0;
  }
  .tablescroll.sp-vertical table td span {
    display: block;
    padding-left: 1em;
  }
  .tablescroll.sp-vertical table td + td {
    margin-top: 1em;
  }

  .tablescroll.sp-vertical td::before
  {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    margin-bottom: 0.4em;
    background: #f1f1f1;
    padding-left: 1em;
    line-height: 2.4;
  }
  .tablescroll.sp-vertical table td br {
    display: none;
  }
}

.movie {
  width:100%;
}

.movie__embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.movie__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}