@charset "utf-8";
.page_title {
  background: url(../img/page_title.png) no-repeat center;
  background-size: cover;
  span.indent {
    display: block;
  }
  @media screen and (max-width: 767px) {
    span.indent {
      text-align: left;
      margin-top: 5px;
    }
  }
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    width: 440px;
    padding: 1em 20px;
  }
}

.intro_block {
  padding-bottom: 56px;
  h2 {
    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;
    }
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 40px;
    h2 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      line-height: 1.5;
      span {
        font-size: 4rem;
        letter-spacing: 2px;
      }
    }
  }
}
.intro_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  article {
    width: calc(50% - 14px);
    border-radius: 3px;
    background: rgba(185, 241, 255, 0.5);
    padding: 24px 32px;
  }
  h3 {
    background: var(--main-color);
    color: #fff;
    border-radius: 3px;
    width: 100%;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    text-align: center;
    padding: 20px 10px;
    line-height: 1.7;
  }
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 20px;
    article {
      width: 100%;
      padding: 24px 5%;
    }
    h3 {
      font-size: 2rem;
      letter-spacing: 1px;
      line-height: 1.5;
    }
  }
}
.intro_note {
  margin-top: 30px;
  a {
    color: var(--main-color);
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      opacity: 1;
    }
  }
}


.merit_block {
  background: linear-gradient(133deg, #DCF8FF 7.5%, #D5FFFA 51.68%, #84C3FF 95.87%);
  padding: 56px 0;
  h2 {
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    color: var(--main-color);
    margin-bottom: 24px;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    h2 {
      font-size: 2.8rem;
      letter-spacing: 1.4px;
    }
  }
}
.merit_art {
  background: #fff;
  padding: 32px;
  padding-right: 64px;
  margin-bottom: 20px;
  &:last-of-type {
    margin-bottom: 64px;
  }
  hgroup {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  hgroup p {
    text-transform: lowercase;
    background: var(--orange);
    color: #fff;
    width: 76px;
    min-width: 76px;
    height: 76px;
    border-radius: 50%;
    font-family: var(--font-en);
    font-size: 2rem;
    letter-spacing: 1px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 8px;
    span {
      display: block;
      font-size: 3.2rem;
      letter-spacing: 1.6px;
      margin-top: -20px;
    }
  }
  hgroup ~ p {
    margin-left: 108px;
  }
  h3 {
    color: var(--main-color);
    line-height: 1.7;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
  }
  @media screen and (max-width: 767px) {
    padding: 32px 5%;
    &:last-of-type {
      margin-bottom: 48px;
    }
    hgroup {
      gap: 10px;
      margin-bottom: 24px;
    }
    hgroup ~ p {
      margin-left: 0;
    }
    h3 {
      line-height: 1.5;
    }
  }
}
.merit_outline {
  background: #fff;
  padding: 80px;
  padding-bottom: 56px;
  @media screen and (max-width: 767px) {
    padding: 56px 5%;
  }
}



.price_block {
  padding: 56px 0 80px;
  .container {
    border-radius: 3px;
    background: rgba(185, 241, 255, 0.5);
    padding: 40px 56px 32px;
  }
  @media screen and (max-width: 767px) {
    padding: 48px 0 64px;
    .container {
      padding: 32px 5%;
    }
  }
}
.price_table {
  overflow: auto;
  table {
    width: 100%;
  }
  caption {
    text-align: left;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    font-weight: bold;
    color: #11238C;
    margin-bottom: 30px;
  }
  thead th {
    background: #1651A7;
    color: #fff;
    font-size: 1.8rem;
    font-weight: normal;
    padding: 20px 16px;
  }
  tbody tr {
    border-bottom: 1px solid #11238C;
    &:last-child {border-bottom: 0;}
  }
  tbody td {
    background: #fff;
    padding: 20px 16px;
    width: 180px;
    text-align: center;
  }
  tbody td:last-child {
    width: calc(100% - 540px);
    text-align: left;
  }
  @media screen and (max-width: 767px) {
    table {
      width: 912px;
    }
  }
}