/* -----------------------------
   お知らせ上部
------------------------------ */
.information-detail_header {
  display: flex;
  gap: 60px;
  margin: 0 auto;
  line-height: 1.8;

  .information-detail_header-left {
    width: 34%;
    display: flex;
    flex-direction: column;
    gap: 7px;

    .information-detail_header-date {
      font-size: 1.1rem;
    }
    .information-detail_header-title {
      font-size: 3rem;
    }
    .information-detail_header-category {
      display: block;
      margin-top: 5px;
      padding: 0 10px;
      background: #fff;
      font-size: 1.2rem;
      width: max-content;
	p{
	line-height: 200%;
	margin: 0px;
	}
    }
  }

  .information-detail_header-right {
    width: 60%;

    /* 画像 */
    .information-detail_figure {
      max-width: 580px;
      aspect-ratio: 1 / 1;
      margin: 0;

      img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      figcaption {
        margin-top: 20px;
        line-height: 2;
        font-size: 1.2rem;
      }
    }

    /* 本文 */
    .information-detail_body {
      padding: 80px 0;

      .lead {
        margin-bottom: 25px;
        font-size: 2rem;
        font-family: "Noto Sans JP", "Hiragino Sans", "Helvetica Neue", Arial,
          sans-serif;
        font-weight: 400;
      }

      .spec {
        font-size: 1.4rem;
        font-family: var(--font-Work-Sans);
        display: flex;
        flex-direction: column;
        gap: 28px;

        p {
          margin: 0;
          line-height: 2;

          span {
            display: block;
            padding-left: 5px;
          }
        }
      }
    }

    /* ボタン */
    .information-detail__action {
      text-align: center;
    }
  }
}

@media screen and (max-width: 768px) {
  .information-detail_header {
    flex-direction: column;
    gap: 40px;

    .information-detail_header-left {
	width: 100%;
	font-size: 3.5vw;
      .information-detail_header-date {
        font-size: 1rem;
      }
      .information-detail_header-title {
        font-size: 2.3rem;
      }
      .information-detail_header-category {
        font-size: 1rem;
      }
    }

    .information-detail_header-right {
	width: 100%;
	font-size: 3.5vw;
      /* 本文 */
      .information-detail_body {
        padding: 30px 0;

        .lead {
          font-size: 1.8rem;
        }
      }

      /* ボタン */
      .information-detail__action {
        padding-top: 50px;
      }
    }
  }
}

/* -----------------------------
   お知らせ下部
------------------------------ */
.information-detail_bottom {
  display: flex;
  gap: 60px;
  margin: 120px auto 0;
  line-height: 1.8;

  .information-detail_bottom-left {
    width: 21%;

    /* ボタン */
    .information-detail__action {
      margin-top: 30px;
    }
  }

  .information-detail_bottom-right {
    width: 75%;

    .information-list {
      margin-top: 0;
    }
  }
}

@media screen and (max-width: 768px) {
  .information-detail_bottom {
    flex-direction: column;
    gap: 30px;

    .information-detail_bottom-left {
      width: 100%;
    }

    .information-detail_bottom-right {
      width: 100%;

      .information-detail__action {
        padding-top: 40px;
      }
    }
  }
}
