@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: 600px;
    padding: 1em 20px;
  }
}

.intro_block {
  padding: 88px 0 64px;
  h2 {
    color: var(--main-color);
    font-size: 3.6rem;
    letter-spacing: 1.8px;
  }
  @media screen and (max-width: 767px) {
    padding: 56px 0;
    h2 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
    }
  }
}

.contents_block {
  padding-bottom: 64px;
}
.contents_inner {
  width: 90%;
  max-width: 1136px;
  margin: 0 auto;
  section {
    width: 100%;
    padding: 64px 56px;
    margin-bottom: 40px;
  }
  h2 {
    font-size: 3.6rem;
    letter-spacing: 1.8px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  @media screen and (max-width: 767px) {
    section {
      padding: 48px 5%;
    }
    h2 {
      font-size: 2.4rem;
      letter-spacing: 1.2px;
      margin-bottom: 20px;
      gap: 10px;
      text-align: left;
    }
  }
}

.contents_flex {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 24px 16px;
  &.contents_flex--single {justify-content: center;}
  article {
    position: relative;
    background: #fff;
    border-radius: 3px;
    width: calc(50% - 8px);
    padding: 24px 20px;
  }
  h3 {
    color: #fff;
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    padding: 10px;
    text-align: center;
    border-radius: 3px;
    margin-bottom: 24px;
    & + p {
      width: 90%;
      margin: 0 auto;
      line-break: anywhere;
      letter-spacing: 0.4px;
    }
  }
  @media screen and (max-width: 767px) {
    gap: 10px;
    article {
      width: 100%;
      padding: 20px 5%;
    }
    h3 {
      font-size: 2rem;
      letter-spacing: 1px;
      margin-bottom: 16px;
      text-align: left;
      /* padding-left: calc(10px + 1em);
      text-indent: -1em; */
      & + p {
        width: 100%;
      }
    }
  }
}
.contents_flex--list {
  width: 90%;
  margin: 20px auto 0;
  li:nth-child(2) {
    display: flex;
    gap: 10px 15px;
    flex-wrap: wrap;
  }
  a {
    color: var(--main-color);
    text-decoration: underline;
    &:hover {
      text-decoration: none;
      opacity: 1;
    }
  }
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}


.contents_inner section#sec_01 {
  background: rgba(17, 35, 140, 0.1);
  h2 {
    color: var(--main-color);
  }
  .contents_flex {
    h3 {
      background: var(--main-color);
      & + p {
        min-height: 108px;
      }
    }
  }
  @media screen and (max-width: 767px) {
    .contents_flex {
      & + p {
        min-height: initial;
      }
    }
  }
}
.contents_inner section#sec_02 {
  background: rgba(22, 81, 167, 0.1);
  h2 {
    color: #1651A7;
  }
  .contents_flex {
    h3 {
      background: #1651A7;
    }
  }
}
.contents_inner section#sec_03 {
  background: rgba(28, 135, 199, 0.1);
  h2 {
    color: #1C87C7;
  }
  .contents_flex {
    h3 {
      background: #1C87C7;
    }
  }
}
.contents_inner section#sec_04 {
  background: rgba(34, 188, 230, 0.1);
  h2 {
    color: #22BCE6;
  }
  .contents_flex {
    h3 {
      background: #22BCE6;
    }
  }
}

.contents_inner section#sec_05 {
  background: rgba(73, 73, 73, 0.1);
  margin-bottom: 0;
  h2 {
    color: #494949;
  }
  .contents_flex {
    h3 {
      background: #494949;
    }
  }
}
.contents_inner section#sec_05 .contents_flex--outer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 80px;
  h2 {
    min-height: 72px;
  }
  .contents_flex {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  article {
    width: 100%;
  }
  article:first-of-type {
    margin-bottom: 24px;
  }
  h3 + p {
    min-height: 108px;
  }
  @media screen and (max-width: 767px) {
    margin-top: 56px;
    flex-direction: column;
    gap: 56px;
    h2 {
      min-height: initial;
    }
    h3 + p {
      min-height: initial;
    }
  }
}