@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 680px;
    padding: 1em 20px;
  }
}

.intro_block {
  background: rgba(231, 231, 231, 0.70);
  padding: 56px 0;
  p.bold_txt {
    color: var(--main-color);
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    padding: 48px 0;
    p.bold_txt {
      color: var(--main-color);
      font-size: 2rem;
      letter-spacing: 1px;
    }
  }
}

.contents_block {
  padding-top: 72px;
  h2 {
    margin-top: 56px;
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    color: var(--main-color);
    margin-bottom: 32px;
    text-align: center;
    span {
      font-size: 6.4rem;
      letter-spacing: 3.2px;
    }
  }
  .contents_ttl {
    color: var(--main-color);
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    font-weight: bold;
  }
  @media screen and (max-width: 767px) {
    padding-top: 56px;
    h2 {
      margin-top: 40px;
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      line-height: 1.5;
      span {
        font-size: 4rem;
        letter-spacing: 2px;
      }
    }
    .contents_ttl {
      font-size: 1.8rem;
      letter-spacing: 0.9px;
    }
  }
}
.contents_list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  li {
    position: relative;
    width: calc(33.3% - 13.3px);
    min-height: 360px;
    background: rgba(185, 241, 255, 0.50);
    border-radius: 3px;
    padding: 20px;
    p:first-child {
      background: var(--main-color);
      border-radius: 3px;
      color: #fff;
      font-weight: bold;
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      text-align: center;
      padding: 16px;
      margin-bottom: 24px;

      min-height: 114px;
      display: flex;
      justify-content: center;
      align-items: center;
    }
  }
  figure {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -7em;
    display: flex;
    justify-content: center;
    img {
      width: auto;
      height: auto;
    }
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 64px;
    li {
      width: 100%;
      min-height: initial;
      padding: 20px;
      padding-bottom: 128px;
      p:first-child {
        font-size: 1.8rem;
        letter-spacing: 0.9px;
        padding: 8px;

        min-height: initial;
      }
    }
    figure {
      bottom: -3em;
    }
  }
}

.table_block {
  padding: 200px 0 80px;
  @media screen and (max-width: 767px) {
    padding: 128px 0 64px;
  }
}
.table_block .container {
  border-radius: 3px;
  background: rgba(185, 241, 255, 0.50);
  padding: 32px 64px;
  @media screen and (max-width: 767px) {
    padding: 32px 5%;
  }
}
.table_block--outer {
  overflow: auto;
  table {
    width: 100%;
    border-top: 1px solid var(--main-color);
    border-bottom: 1px solid var(--main-color);
  }
  caption, p.table_ttl {
    color: var(--main-color);
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: left;
  }
  p.table_ttl + div {
    background: #fff;
    padding: 56px 5%;
    .more_btn {
      max-width: 360px;
      margin: 40px auto 0;
    }
  }
  th, td {text-align: center;}
  th {
    color: #fff;
    font-size: 2rem;
    letter-spacing: 1px;
    font-weight: 400;
    background: #1651A7;
    padding: 10px;
  }

  tbody tr {
    background: #fff;
    border-bottom: 1px solid var(--main-color);
  }
  tbody tr:last-child {
    border-bottom: 0;
  }
  td {
    padding: 20px 10px;
  }
  @media screen and (max-width: 767px) {
    table {
      width: 880px;
    }
    p.table_ttl + div {
      padding: 48px 5%;
      .more_btn {
        padding: 8px;
        padding-right: 24px;
      }
    }
  }
}

.table_note {
  margin-bottom: 30px;
  div {
    display: flex;
    align-items: flex-start;
  }
  @media screen and (max-width: 767px) {
    /* flex-wrap: wrap; */
    span:nth-child(1) {
      min-width: 34px;
    }
    span:nth-child(2) {
      min-width: 51px;
    }
    /* p {
      width: calc(100% - 86px);
    } */
  }
}


.last_link--list {
  width: 90%;
  max-width: 1024px;
  margin: 40px auto 0;
  li {
    text-indent: -1em;
    padding-left: 1em;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      opacity: 1;
    }
  }
  @media screen and (max-width: 767px) {
    margin-top: 32px;
  }
}