@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;
}

@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;
    }
  }
}