@charset "UTF-8";
@layer component {

  img {
    width: 100%;
    height: 100%;
  }

  .mv {
    max-width: 1200px;
    margin: 0 auto;
  }
  @media screen and (max-width: 1260px) {
    .mv {
      max-width: 100%;
      padding: 0 30px;
    }
  }
  @media screen and (max-width: 767px) {
    .mv {
      padding: 0 calc(1.8 * var(--base-unit));
    }
  }

  .mv-title {
    font-family: "Roboto", sans-serif;
    color: #1C2655;
    font-size: 3.5rem;
    font-weight: 900;
    margin-top: 40px;
  }
  @media screen and (max-width: 767px) {
    .mv-title {
      font-size: calc(3.6 * var(--base-unit));
      margin-top: calc(2 * var(--base-unit));
    }
  }

  .mv-inner {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
  }
  @media screen and (max-width: 767px) {
    .mv-inner {
      margin-top: calc(2 * var(--base-unit));
      flex-direction: column;
      row-gap: calc(2 * var(--base-unit));
      margin-bottom: calc(3 * var(--base-unit));
    }
  }

  .mv-text {
    max-width: 600px;
    color: #111;
    font-size: 1.625rem;
    line-height: 1.31;
    font-weight: 400;
  }
  @media screen and (max-width: 1160px) {
    .mv-text {
      width: 50%;
    }
  }
  @media screen and (max-width: 767px) {
    .mv-text {
      font-size: calc(1.8 * var(--base-unit));
      width: 100%;
    }
  }

  .mv-image {
    max-width: 480px;
  }
  @media screen and (max-width: 1160px) {
    .mv-image {
      width: 50%;
    }
  }  
  @media screen and (max-width: 767px) {
    .mv-image {
      width: 100%;
    }
  }
  
  .article-body {
    background-color: #F5F5F5;
  }

  .article-block {
    max-width: 900px;
    margin-inline: auto;
	  padding: 80px 30px 100px;
  }
  @media screen and (max-width: 767px) {
    .article-block {
      padding: calc(4 * var(--base-unit)) calc(1.8 * var(--base-unit)) calc(8 * var(--base-unit));
    }
  }

  .article-sec {
    margin-bottom: 60px;
  }
  @media screen and (max-width: 767px) {
    .article-sec {
      margin-bottom: calc(3 * var(--base-unit));
    }
  }
  .article__title__wrap {
    margin-top: 60px;
  }
  @media screen and (max-width: 767px) {
    .article__title__wrap {
      margin-top: calc(3 * var(--base-unit));
    }
  }
  .article-sec--01 .article__title-icon {
    width: 257px;
  }
  .article-sec--02 .article__title-icon {
    width: 135px;
    margin-inline: auto 0;
  }
  .article-sec--03 .article__title-icon {
    width: 165px;
  }
  .article-sec--04 .article__title-icon {
    width: 214px;
  }
  @media screen and (max-width: 767px) {    
    .article-sec--01 .article__title-icon {
      width: calc(10.5 * var(--base-unit));
    }
    .article-sec--02 .article__title-icon {
      width: calc(8 * var(--base-unit));
    }
    .article-sec--03 .article__title-icon {
      width: calc(9.6 * var(--base-unit));
    }
    .article-sec--04 .article__title-icon {
      width: calc(12.4 * var(--base-unit));
    }
  }

  .article__title-text {
    font-size: 2.625rem;
    color: #1C2655;
    font-weight: 900;
    margin-top: 18px;
    margin-bottom: 40px;
  }
  @media screen and (max-width: 767px) {
    .article__title-text {
      font-size: calc(2.6 * var(--base-unit));
      margin-top: calc(1 * var(--base-unit));
      margin-bottom: calc(2 * var(--base-unit));
    }
    
  }

  .article__txt {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
  }
  @media screen and (max-width: 767px) {
    .article__txt {
      font-size: calc(1.5 * var(--base-unit));
    }
  }
  .article__txt + .article__txt  {
    margin-top: 1rem;
  }

  .article__img {
    margin-block: 40px;
  }
  @media screen and (max-width: 767px) {
    .article__img {
      margin-block: calc(3 * var(--base-unit));
    }
  }
  .article__img-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
  }
  @media screen and (max-width: 767px) {
    .article__img-title {
      font-size: calc(1.8 * var(--base-unit));
    }
  }
  .article__img figcaption {
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 300;
  }
  @media screen and (max-width: 767px) {
    .article__img figcaption {
      font-size: calc(1.3 * var(--base-unit));
    }
  }
  .article__img--small img {
    width: calc(100% - 224px);
    padding-inline: 112px;
  }
  @media screen and (max-width: 767px) {
    .article__img--small img {
      width: 100%;
      padding-inline: unset;
    }
  }

  .article-sec--officer {
    display: flex;
    background-color: #fff;
    align-items: center;
  }
  @media screen and (max-width: 767px) {
    .article-sec--officer {
      width: 100%;
      flex-direction: column;
      row-gap: 50px;
    }
  }
  .officer-image {
    max-width: 400px;
    padding-top: 50px;
  }
  @media screen and (max-width: 767px) {
    .officer-image {
      width: 100%;
      padding-top: calc(1.5 * var(--base-unit));
    }
  }
  .officer-text {
    flex: 1;
  }
  @media screen and (max-width: 767px) {
    .officer-text {
      padding-inline: calc(1.5 * var(--base-unit));
    }
  }
  .officer-text_main {
    width: 380px;
    font-size: 1.625rem;
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    display: block;
    margin: 40px auto 0;
    text-align: center;
  }
  @media screen and (max-width: 767px) {
    .officer-text_main {
      width: 100%;
      font-size: calc(2 * var(--base-unit));
      margin-top: calc(2 * var(--base-unit));
    }
  }
  .q-mark {
    position: absolute;
    color: #F71F1F;
    font-size: 5rem;
    line-height: 0;
  }
  .q-mark--s {
    left: 0;
    top: -20px;
  }
  .q-mark--e {
    right: 0;
    bottom: -50px;
  }
  .officer-text_name {
    width: fit-content;
    display: block;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 94px auto 0;
  }
  @media screen and (max-width: 767px) {
    .officer-text_name {
      font-size: calc(1.6 * var(--base-unit));
      padding-bottom: calc(3 * var(--base-unit));
      line-height: 1.25;
      margin-top: calc(5 * var(--base-unit));
    }
  }

  .font-italic {
    font-style: italic;
  }

  .article__copy {
    font-size: 1rem;
    text-align: center;
    font-weight: 400;
    color: #333;
  }
  @media screen and (max-width: 767px) {
    .article__copy {
      font-size: calc(1.4 * var(--base-unit));
    }
  }

  .article__note {
    margin-top: 80px;
  }
  .article__note h3 {
    font-size: 1rem;
    font-weight: 500;
  }
  
  @media screen and (max-width: 767px) {
    .article__note h3 {
      font-size: calc(1.5 * var(--base-unit));
    }
  }

  .article__note .p-notes01__list a {
    word-break: break-all;
  }
  @media screen and (max-width: 767px) {
    .article__note .p-notes01 {
      font-size: calc(1.4 * var(--base-unit));
    }
  }


  /* スクロールアニメーション */
  .article-sec {
    opacity: 0;
    transform: translateY(30px);
    transition:
      opacity 0.8s ease-out,
      transform 0.8s ease-out;
  }
  .article-sec.article-sec--show {
    opacity: 1;
    transform: translateY(0);
  }

  .article__title-icon {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    transition: opacity 0.6s ease-out;
  }
  .article__title-icon.article__title-icon--show {
    animation: bounceIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    opacity: 1;
  }

  @keyframes bounceIn {
    0% {
      transform: translateY(30px) scale(0.9);
    }
    60% {
      transform: translateY(-5px) scale(1.02);
    }
    80% {
      transform: translateY(5px) scale(0.98);
    }
    100% {
      transform: translateY(0) scale(1);
    }
  }


}