@charset "utf-8";
/* Page MV
----------------------------------------------------------------------------------------------------*/
.mv-page {
  padding-top: 10rem;
}
.mv-page__image {
  position: relative;
}
.mv-page__item {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(-5%, -50%);
  height: min(80%, 29.5rem);
  width: min(55%, 73.5rem);
  margin: 0 auto;
}
/* 枠 */
.mv-page__item::before, .mv-page__item::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 10rem;
  height: 10rem;
}
.mv-page__item::before {
  top: 0;
  left: 0;
  border-left: solid 3rem #ff6d00;
  border-top: solid 3rem #ff6d00;
}
.mv-page__item::after {
  bottom: 0;
  right: 0;
  border-right: solid 3rem #ff6d00;
  border-bottom: solid 3rem #ff6d00;
}
/* TITLE */
.mv-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: min(100%, 29.5rem);
}
.mv-title h2 {
  color: #fff;
  font-size: clamp(3.2rem, 3vw, 5rem);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
}
.mv-title h2 span {
  margin: 0 0 3rem 2.5rem;
  padding-left: 2.5rem;
  border-left: 1px solid #fff;
  color: #4dcee5;
  font-family: "Lexend", sans-serif;
  font-size: clamp(4rem, 3vw, 6.2rem);
  font-weight: 600;
  text-align: left;
  white-space: nowrap;
}
/* TABLET */
@media screen and (max-width: 1023px) {
  .mv-page__item {
    height: min(50%, 29.5rem);
    width: min(65%, 73.5rem);
    /* ニュース追記 */
  }
  .mv-page__item::before, .mv-page__item::after {
    width: 5rem;
    height: 5rem;
  }
  .mv-page__item::before {
    border-left-width: 1.5rem;
    border-top-width: 1.5rem;
  }
  .mv-page__item::after {
    border-right-width: 1.5rem;
    border-bottom-width: 1.5rem;
  }
  .mv-title {
    width: 90%;
    margin: 0 auto;
    padding: 3.5rem 0;
  }
}
/* MOBILE */
@media screen and (max-width: 767px) {
  .mv-page__item {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -10%);
    height: min(80%, 20.5rem);
    width: max(33rem, 75%);
  }
  .mv-title {
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 5rem 0;
  }
  .mv-title h2 {
    font-size: 3.2rem;
    text-align: center;
  }
  .mv-title h2 span {
    display: block;
    margin: 1.5rem 0 3rem;
    padding: 1rem 0 0;
    border-left: none;
    border-top: 1px solid #fff;
    font-size: 4rem;
    text-align: center;
  }
}
/* Page Title
----------------------------------------------------------------------------------------------------*/
.page-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10rem;
  background: linear-gradient(-90deg, rgba(0, 9, 23, 1) 0%, rgba(22, 65, 134, 1) 100%);
}
.page-title h3 {
  color: #FFF;
  font-size: clamp(2.8rem, 3vw, 4.2rem);
  font-weight: 700;
}
/* Page Container
----------------------------------------------------------------------------------------------------*/
.container {
  width: 100%;
}
.contents {
  width: min(90%, 151rem);
  margin: 0 auto;
  text-align: left;
  font-feature-settings: "palt"1;
  -webkit-text-size-adjust: 100%;
}
/* news
----------------------------------------------------------------------------------------------------*/
.p-news .contents {
  max-width: 151rem;
  padding: 19.3rem 0 14rem;
}
.p-news__item {
  margin-bottom: 4rem;
  line-height: 1.5;
}
.p-news__header {
  display: flex;
  gap: 8rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid #164186;
  border-bottom: 1px solid #164186;
}
.p-news__header-post {
  display: flex;
  gap: 8rem;
  align-items: center;
  margin-bottom: 3rem;
  padding: 2.5rem 0;
  border-top: 1px solid #164186;
  border-bottom: 1px solid #aac8c8;
}
.p-news__date {
  flex-shrink: 0;
  width: 7.5rem;
  font-weight: 700;
  font-size: 2.4rem;
}
/* タイトル名部分 */
.p-news__title {
  font-size: 2.8rem;
  text-align: left;
}
.p-news__body {
  display: flex;
  justify-content: space-between;
  padding-left: 15.5rem;
}
/* 本文のみ/画像あり共通 */
.p-news__text {
  font-size: 2.0rem;
  /*line-height: 1.8;*/
  text-align: justify;
  width: 100%;
}
/* 画像がある場合の横並び設定 */
.p-news__body:has(.p-news__image) .p-news__text {
  width: calc(735 / 1355 * 100%);
}
.p-news__image {
  width: calc(580 / 1355 * 100%);
}
/* --- レスポンシブ --- */
/* MOBILE */
@media screen and (max-width: 767px) {
  .p-news .contents {
    padding: 8.8rem 0 14rem;
  }
  .p-news__header, .p-news__header-post {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }
  .p-news__date, .p-news__title, .p-news__body {
    width: 100%;
    padding-left: 0;
    margin-left: 0;
  }
  .p-news__date {
    font-size: 1.4rem;
  }
  .p-news__title {
    font-size: 1.8rem;
  }
  .p-news__body {
    flex-direction: column;
    gap: 2.8rem;
  }
  .p-news__text {
    font-size: 1.8rem;
  }
  .p-news__body:has(.p-news__image) .p-news__text, .p-news__image {
    width: 100%;
  }
}