html {
  font-size: 10px;
}

#news-body {
  background: #F6F4F2;
}

#news.--new {
  width: 100%;
}

/* ===== メインタイトル ===== */
#news.--new .main-title {
  background: url("../images/new/main-title_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: 328px;
}
@media (max-width: 768px) {
  #news.--new .main-title {
    height: auto;
    padding-block: 10%;
  }
}

#news.--new .main-title__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#news.--new .main-title .en {
  display: block;
  color: #5C5C5C;
  font-family: Abel;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  #news.--new .main-title .en {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  #news.--new .main-title .en {
    font-size: 2.4rem;
  }
}

#news.--new .main-title .jp {
  color: #8A7B7F;
  font-family: "Noto Sans JP";
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

#news.--new .main-title .jp::before {
  content: "";
  display: block;
  border-radius: 1px;
  background: #E85471;
  width: 4px;
  height: 4px;
}

/* ===== パンくず ===== */
#news.--new #panlistid {
  display: block;
  margin: 0;
  padding: 0;
  padding-bottom: 48px;
}

#news.--new #panlistid ul {
  color: #A19182;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.71;
}

/* ===== 記事エリア ===== */
.news-single {
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .news-single {
    padding-bottom: 12%;
  }
}

/* タイトル */
.news-single__ttl {
  color: #463A3D;
  font-family: "Noto Sans JP";
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  padding-bottom: 16px;
  border-bottom: 1px solid #D3C8BE;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .news-single__ttl {
    font-size: 2rem;
  }
}

/* 日付 */
.news-single__date {
  color: #A19182;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
}

/* アイキャッチ */
.news-single__thumb {
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .news-single__thumb {
    border-radius: 10px;
    margin-bottom: 8%;
  }
}

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

/* 本文 */
#news.--new .wysiwyg img {
  display: block;
  margin-inline: auto;
  max-width: 100%;
}
#news.--new .wysiwyg { font-size: 16px; }
#news.--new .wysiwyg p { font-size: 16px; line-height: 1.8; }
#news.--new .wysiwyg h1 { font-size: 20px; }
#news.--new .wysiwyg h2 { font-size: 20px; }
#news.--new .wysiwyg h3 { font-size: 20px; }
#news.--new .wysiwyg h4,
#news.--new .wysiwyg h5 { font-size: 19px; }
#news.--new .wysiwyg h6 { font-size: 16px; }
#news.--new .wysiwyg ul,
#news.--new .wysiwyg ol { font-size: 14px; }

.news-single__body {
  margin-bottom: 40px;
  color: #463A3D;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.9;
}
@media (max-width: 768px) {
  .news-single__body {
    font-size: 1.4rem;
  }
}

/* 関連資料PDF */
.news-single__pdf a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E85471;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #E85471;
  border-radius: 4px;
  padding: 10px 20px;
  margin-bottom: 40px;
  transition: opacity 0.3s;
}

.news-single__pdf a:hover {
  opacity: 0.7;
}

/* ===== ページャー ===== */
#news.--new .pagen {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-block: 80px 120px;
}
@media (max-width: 767px) {
  #news.--new .pagen { gap: 16px; margin-block: 8% 12%; }
}
@media (max-width: 640px) {
  #news.--new .pagen { gap: 0; justify-content: space-between; }
}

#news.--new .pagen .list { order: 2; float: none !important; }
#news.--new .pagen .page-navi { display: contents; }
#news.--new .pagen .page-navi .fast { order: 1; list-style: none; }
#news.--new .pagen .page-navi .last { order: 3; list-style: none; }

#news.--new .pagen a {
  color: #5C5C5C;
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 400;
  text-decoration: none;
  line-height: 1;
  transition: opacity 0.3s;
}
#news.--new .pagen a:hover { opacity: 0.6; }

#news.--new .pagen .list a {
  border: none !important;
  border-bottom: 1px solid #D3C8BE !important;
  padding: 12px 4px;
  border-radius: 0;
  background: transparent !important;
  color: transparent !important;
  font-size: 0 !important;
}
#news.--new .pagen .list a::before {
  content: "ニュース一覧へ";
  font-size: 1.6rem;
  color: #5C5C5C;
  font-family: "Noto Sans JP";
  font-weight: 400;
}
@media (max-width: 768px) {
  #news.--new .pagen .list a::before { font-size: 1.4rem; }
}

#news.--new .pagen .page-navi .fast::after,
#news.--new .pagen .page-navi .fast::before,
#news.--new .pagen .page-navi .last::after,
#news.--new .pagen .page-navi .last::before {
  content: none !important;
  display: none !important;
}

#news.--new .pagen .page-navi .fast a,
#news.--new .pagen .page-navi .last a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 162px;
  border: none;
  border-bottom: 1px solid #D3C8BE;
  padding: 12px 4px;
  box-sizing: border-box;
  background: transparent !important;
  color: #5C5C5C !important;
}
@media (max-width: 768px) {
  #news.--new .pagen .page-navi .fast a,
  #news.--new .pagen .page-navi .last a { width: auto; min-width: 72px; }
}
@media (max-width: 640px) {
  #news.--new .pagen .page-navi .fast a,
  #news.--new .pagen .page-navi .last a { min-width: 0; padding-left: 0; padding-right: 0; }
}

#news.--new .pagen .page-navi .fast a::before { content: "‹"; }
#news.--new .pagen .page-navi .last a::after { content: "›"; }
