@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;
}
.pro_list_table th:last-child {
  width: 100px;
}
.cont_link{
  padding-left: 4.5rem;
  font-size: 2rem;
  font-weight: bold;
}
.point_outer{
  align-items: center;
}

@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;
    }
  }
  .point_outer{
    align-items: flex-start;
  }
  .cont_link{
    padding-left: 3rem;
  }
}