@charset "UTF-8";

.main_block {
  border-bottom: 1px solid #000;
  padding-bottom: 60px;
  &:last-of-type {
    border-bottom: none;
  }
}
.table_flex {
  display: flex;
  gap: 80px;
}
.video {
  display: block;
  margin: 30px auto 0;
}
.img_flex {
  display: flex;
  justify-content: center;
}
.img_flex02 {
  display: flex;
  justify-content: center;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .main_block {
    padding-bottom: 30px;
  }
  .table_flex  {
    flex-direction: column;
    gap: 20px;
  }
  .youtube_box {
    iframe {
      width: 100%;
      height: auto;
    }
  }
  .video {
    width: 100%;
    height: 200px;
  }
}