@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;
}
.flex_box {
  display: flex;
  justify-content: flex-start;
  gap: 20px 50px;
}
.left_box {
  max-width: 100%;
  width: 100%;
}
.right_flex {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}

@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;
    }
  }
  .flex_box {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}