@charset "UTF-8";

@font-face {
  font-family: 'Neura Display';
  src: url('../fonts//NeuraDisplayVariable[wght].ttf') format('truetype');
  font-weight: 400 700;
  font-display: swap;
}
:root {
   --color-black: #2D2D2D;
   --color-white: #FFFFFF;
   --color-gray: #807E7B;
   --color-navy: #1D4984;
   --color-pink: #DBB7C3;
   --color-gold: #BD9E85;
}

/*============================
全体
============================*/
html {
  font-size: 10px;
}
body {
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-black);
  letter-spacing: 0;
  width: 100%;
}
main {
  overflow-x: hidden;
}
a {
  color: var(--color-black);
  text-decoration: none;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style: none;
}
.neura-display {
  font-family: 'Neura Display', sans-serif;
}
.serif {
  font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  /* コンテンツ幅 */
  .wrapper {
    width: 100%;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .sp_only {
    display: none;
  }
}

/*============================
お知らせ詳細
============================*/
.news-bg {
  background: linear-gradient(
  0deg,
  rgba(217, 241, 244, 1) 13%,
  rgba(217, 241, 244, 0.3) 77%,
  rgba(217, 241, 244, 0) 99%
  );
  padding: 0 4rem 16rem;
}
#news-detail {
  width: 100%;
  max-width: 102.4rem;
  background-color: #FFFCF6;
  margin: 14rem auto 9.6rem;
  padding: 0 4rem;
}
.news-detail__inner {
  max-width: 60.4rem;
  margin: 0 auto;
  padding: 6.4rem 0;
}
.news-detail__title {
  position: relative;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  padding: 0 0 1.6rem;
  margin: 0 0 4rem;
}
/* グレーの線 */
.news-detail__title::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: calc(515 / 604 * 100%);
  height: 8px;
  transform: translateX(-50%);
  background: #ececec;
}
/* ゴールドの線 */
.news-detail__title::after {
  content: "";
  position: absolute;
  left: calc((100% - (515 / 604 * 100%)) / 2);
  bottom: 0;
  width: calc(150 / 515 * 100%);
  height: 8px;
  background: #c9a227;
}
.news-detail__date {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: .8rem;
}
.news-detail__eyecatch {
  margin-bottom: 4rem;
  height: 40rem;
}
.news-detail__eyecatch img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news-detail__body {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 4rem;
}
.news-detail__pager {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
}
.news-detail__pager-link {
  color: inherit;
  text-decoration: none;
}
.news-detail__pager-link--next {
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 1200px) {
  .news-bg {
    padding: 0 4rem 8rem;
  }
}
@media screen and (max-width: 767px) {
  .news-bg {
    padding: 0 2rem 4rem;
  }
  #news-detail {
    max-width: none;
	margin: 8rem auto 4rem;
    padding: 0 1.6rem;
  }
  .news-detail__inner {
    max-width: none;
    padding: 2.4rem 0;
  }
  .news-detail__title {
    font-size: 2.2rem;
    padding-bottom: 0.8rem;
    margin-bottom: 1.6rem;
  }
  .news-detail__title::before {
    width: 100%;
    height: 0.4rem;
  }
  .news-detail__title::after {
    left: 0;
    width: 30%;
    height: 0.4rem;
  }
  .news-detail__date {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
  }
  .news-detail__eyecatch {
    margin-bottom: 2.4rem;
  }
  .news-detail__body {
    font-size: 1.4rem;
    margin-bottom: 2.4rem;
  }
  .news-detail__pager {
    gap: 1.6rem;
    font-size: 1.2rem;
  }
  .news-detail__pager-link {
    max-width: 48%;
  }
  .news-detail__pager-link--next {
    margin-left: auto;
  }
}

/*============================
お知らせ一覧
============================*/
.news-list-bg {
  background: linear-gradient(
  0deg,
  rgba(217, 241, 244, 1) 13%,
  rgba(217, 241, 244, 0.3) 77%,
  rgba(217, 241, 244, 0) 99%
  );
  padding-bottom: 16rem;
}
.news-list-hero {
  background-color: var(--color-navy);
  width: 100%;
  margin-top: 18rem;
  padding: 6.8rem 0 7.6rem;
  text-align: center;
}
.news-list-hero__title {
  color: var(--color-white);
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
}
#news-list {
  margin: 4.8rem auto 9.6rem;
  padding: 0 4rem;
}
.news-list__cont {
  background-color: #FFFCF6;
  width: 100%;
  max-width: 102.4rem;
  margin: 0 auto 9.6rem;
  padding: 0 4rem;
}
.news-list__inner {
  max-width: 86rem;
  margin: 0 auto;
  padding: 6.4rem 0;
}
.news-list__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4.8rem;
  row-gap: 6.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.news-list__item{
}
.news-card {
  display: grid;
  grid-template-columns: 14.4rem 1fr;
  gap: 1.2rem;
  color: inherit;
  text-decoration: none;
  transition: .3s;
}
.news-card__image img{
  display: block;
  width: 100%;
  aspect-ratio: 150 / 196;
  object-fit: cover;
}
.news-card__body {
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  gap: 4.4rem;
  margin-top: 1.6rem;
}
.news-card__title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
}
.news-card__date {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
}
.news-card__more {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1.5;
}
.news-card__arrow {
  width: 2.3rem;
  height: auto;
  transition: transform .3s ease;
}
.news-list__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
  margin-top: 5.6rem;
}
.page-numbers {
  color: inherit;
  font-size: 1.4rem;
  line-height: 1.5;
  text-decoration: none;
}
.page-numbers.current {
  font-weight: bold;
}
.page-numbers.next {
  color: var(--color-navy);
}
@media screen and (max-width: 767px) {
  .news-list-bg {
    padding-bottom: 4rem;
  }
  .news-list-hero {
	margin-top: 8rem;
    padding: 3.2rem  0 4rem;
  }
  .news-list-hero__title {
    font-size: 2.8rem;
  }
  #news-list {
    margin: 2.4rem auto 0;
    padding: 0 2rem;
  }
  .news-list__cont {
    margin: 0 auto 4rem;
    padding: 0 1.6rem;
  }
  .news-list__inner {
    padding: 2.4rem 0;
  }
  .news-list__items {
    grid-template-columns: 1fr;
    row-gap: 1.6rem;
  }
  .news-card {
    grid-template-columns: 12rem 1fr;
    gap: 1.6rem;
  }
  .news-card__body {
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 1.6rem;
  }
  .news-card__title {
    font-size: 1.4rem;
  }
  .news-card__date {
    font-size: 1.2rem;
  }
  .news-list__pagination {
    margin-top: 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  .news-card:hover {
    opacity: .7;
  }
  /* カード全体にhoverしたら矢印を動かす */
  .news-card:hover .news-card__arrow {
    transform: translateX(.6rem);
  }
}
