@charset "utf-8";
/* CSS Document */
.under_mv{
  background: url(../../img/mv.png) no-repeat center;
  background-size: cover;
}
.purchase {
  padding: 60px 0;
}
.intro_text {
  line-height: 2;
}
.article{
  margin-top: 80px;
}
.art_border {
  font-size: var(--fs-20);
  font-weight: bold;
  margin-top: 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}
.art_choke * {
  line-height: 2;
}
.art_block {
  margin-top: 40px;
}
.art_h4name{
  font-weight: bold;
  &::before{
    content: '■ ';
    color: var(--red);
  }
}
.cont_caution {
  max-width: 670px;
  width: 100%;
  margin: 40px auto 0;
  background: var(--caution-color);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: var(--space-30);
}
.cont_table{
  &.type01{ /* 2カラム */
    width: 100%;
    border-top: 1px solid #000;
    text-align: left;
    th{
      padding: 15px;
      background: #eee;
      border-bottom: 1px solid #000;
      min-width: 150px;
    }
    td{
      padding: 15px;
      border-bottom: 1px solid #000;
    }
  }
  &.type02{ /* 3カラム以上 */
    width: 100%;
    border-top: 1px solid #000;
    text-align: center;
    th{
      padding: 15px;
      background: #eee;
      border-bottom: 1px solid #000;
      min-width: 150px;
    }
    td{
      padding: 15px;
      border-bottom: 1px solid #000;
    }
    tr > :not(:last-child) {
      border-right: 1px solid #ccc;
    }
  }
  .gray {/* 背景色 */
    background: #eee;
  }
}


@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {
  .under_mv{
    .page_head {
      font-size: min(5rem, 10vw);
    }
  }
  .purchase {
    padding: 20px 0;
  }
  .article {
    margin-top: 40px;
  }
  .art_block {
    margin-top: 20px;
  }
  .cont_caution {
    margin: 20px auto 0;
    flex-direction: column;
  }
  .cont_table{
    &.type01{
      display: block;
      width: 100%;
      tbody{
        display: block;
        width: 100%;
      }
      tr{
        display: block;
        width: 100%;
      }
      th{
        display: block;
        width: 100%;
        padding: 10px;
      }
      td{
        display: block;
        width: 100%;
        padding: 10px;
      }
    }
    &.type02{
      width: 500px;
    }
  }
  div:has(.type02) {
    overflow-x: scroll;
  }
}
