.underlayer_mv {
  height: 280px;
}
@media print, screen and (min-width: 768px) {
  .underlayer_mv {
    height: 500px;
  }
}
@media print, screen and (min-width: 920px) {
  .underlayer_mv {
    height: 600px;
  }
}
.underlayer_mv img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.underlayer__content {
  position: relative;
  background-color: #f5f6f7;
}

.bg {
  background-color: #f5f6f7;
}

.underlayer_white_box {
  background-color: #fff;
  padding: 5px 20px 30px 20px;
}
@media print, screen and (min-width: 768px) {
  .underlayer_white_box {
    padding: 5px 40px 30px 40px;
  }
}
@media print, screen and (min-width: 920px) {
  .underlayer_white_box {
    padding: 50px 80px;
    margin-bottom: 80px;
  }
}
.underlayer_white_box.topic {
  padding: 20px;
}
@media print, screen and (min-width: 768px) {
  .underlayer_white_box.topic {
    padding: 30px 40px 30px 40px;
  }
}
@media print, screen and (min-width: 920px) {
  .underlayer_white_box.topic {
    padding: 60px 80px;
    margin-bottom: 80px;
  }
}

.underlayer__head__title {
  color: #1D1D1D;
  padding: 90px 0 80px;
  text-align: center;
}
@media print, screen and (min-width: 1180px) {
  .underlayer__head__title {
    padding: 100px 0 60px;
  }
}
.underlayer__head__title div:nth-child(1) {
  font-size: clamp(3.2rem, 3.2rem + 0.5vw, 4rem);
  font-weight: bold;
  line-height: 1.2;
}
.underlayer__head__title div:nth-child(2) {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding-left: 1em;
  line-height: 1.4;
  position: relative;
  margin-top: 5px;
}
@media print, screen and (min-width: 768px) {
  .underlayer__head__title div:nth-child(2) {
    font-size: 2rem;
    margin-top: 15px;
  }
}
.underlayer__head__title.alt {
  padding: 120px 0 60px;
}
@media print, screen and (min-width: 920px) {
  .underlayer__head__title.alt {
    padding: 150px 0 60px;
  }
}
@media print, screen and (min-width: 1180px) {
  .underlayer__head__title.alt {
    padding: 190px 0 40px;
  }
}
.underlayer__head__title.alt div:nth-child(1) {
  font-size: 3.6rem;
  font-weight: bold;
  font-family: "Noto Sans JP";
  line-height: 1.2;
  color: #3e4c59;
}
@media print, screen and (min-width: 768px) {
  .underlayer__head__title.alt div:nth-child(1) {
    font-size: 4.5rem;
  }
}

.single_topics .underlayer__head {
  padding-block: 90px 50px;
}
@media print, screen and (min-width: 768px) {
  .single_topics .underlayer__head {
    padding-block: 100px 60px;
  }
}
.single_topics .info {
  font-size: 1.4rem;
  display: flex;
  align-items: baseline;
  gap: 20px;
}
.single_topics .title_wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.single_topics .date {
  color: #383838;
}
.single_topics .category {
  background: #1d1d1d;
  border-radius: 2rem;
  color: white;
  padding: 0.15rem 1.25rem 0.25rem 1.25rem;
}
.single_topics .category.report {
  background-color: #FDA516;
}
.single_topics .category.event {
  background-color: #8BB708;
}
.single_topics .category.topic {
  background-color: #3DBEE3;
}
.single_topics .entry_title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.single_topics .btn_top_only_sp {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .single_topics .btn_top_only_sp {
    display: none;
  }
}
.single_topics .btn_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
  padding-bottom: 60px;
}
@media print, screen and (min-width: 920px) {
  .single_topics .btn_wrap {
    margin-top: 90px;
    padding-bottom: 90px;
  }
}
.single_topics .page_btn.sp {
  display: flex;
}
@media print, screen and (min-width: 768px) {
  .single_topics .page_btn.sp {
    display: none;
  }
}
.single_topics .page_btn.de {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .single_topics .page_btn.de {
    display: flex;
  }
}
.single_topics .normal_btn {
  font-weight: bold;
  display: grid;
  gap: 10px;
  align-items: center;
}
.single_topics .normal_btn.prev {
  grid-template-columns: 1rem 1fr;
}
.single_topics .normal_btn.next {
  grid-template-columns: 1fr 1rem;
}
.single_topics .normal_btn:hover {
  opacity: 0.5;
}
.single_topics .normal_btn.disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination {
  margin-top: 70px;
}

ul.page-numbers {
  display: flex;
  justify-content: center;
  gap: 10px;
  padding-bottom: 120px;
}
ul.page-numbers .prev,
ul.page-numbers .next {
  display: none;
}
ul.page-numbers a,
ul.page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #fff;
}
ul.page-numbers .current {
  background-color: #1D1D1D;
  color: #fff;
}
ul.page-numbers a:hover {
  opacity: 0.5;
}
@media print, screen and (min-width: 920px) {
  ul.page-numbers li:has(a.prev) {
    margin-right: 30px;
  }
}
@media print, screen and (min-width: 920px) {
  ul.page-numbers li:has(a.next) {
    margin-left: 30px;
  }
}

/*# sourceMappingURL=underlayer.css.map */
