@charset "UTF-8";

.l-nidt {
  padding-top: 70px;
  color: #333333;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}

.nidt_news_page.nidt-news_subpage .page_banner,
.nidt_news_content_page .page_banner {
  display: none;
}

.nidt-bg-image {
  background: url(/assets/images/nidt/bg_01.png) no-repeat center top 20px/100%;
  padding-top: 10px;
}

.nidt-bg-image.additional-bg {
  background: url(/assets/images/nidt/bg_01.png) no-repeat center top 20px/100%, url(/assets/images/nidt/bg_02.png) no-repeat center bottom 20px/100%;
}

.breadcrumb-wrapper {
  margin: 24px 0 50px;
}

.nidt-breadcrumb {
  font-size: 14px;
  display: flex;
  padding: 0;
  list-style: none;
}

.nidt-breadcrumb li {
  color: #000;
}

.nidt-breadcrumb li:not(:last-of-type) {
  position: relative;
  padding-right: 40px;
}

.nidt-breadcrumb li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
}

.nidt-breadcrumb li a {
  color: #000;
}

.nidt_news_page.nidt-news_subpage .breadcrumb, 
.nidt_news_content_page .breadcrumb {
  background-color: transparent;
}

/* nidt-news */
.nidt-news__head h2 {
  color: #000;
  font-size: 24px;
  margin: 0;
  margin-bottom: 48px;
}

.nidt-news-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.nidt-news-container a.nidt-news-content {
  display: flex;
  flex-direction: column;
  color: #000;
  background-color: #FFF;
  width: 100%;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 4px #00000029;
}

.nidt-news-container a.nidt-news-content .news-details {
  height: 150px;
}

.nidt-news-container a.nidt-news-content .news-thumbnail {
  width: 100%;
}

.nidt-news-container a.nidt-news-content .news-thumbnail img {
  width: 100%;
}

.nidt-news-container a.nidt-news-content .news-date {
  font-size: 14px;
  margin: 16px 0;
}

.loadmore-wrapper {
  display: flex;
  justify-content: center;
  color: #000;
  font-weight: bold;
  padding: 48px 0 122px;
}

.loadmore-wrapper .loadmore-btn {
  position: relative;
  display: flex;
  cursor: pointer;
  padding-bottom: 25px;
}

.loadmore-wrapper .loadmore-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(/assets/images/nidt/icon_morenews_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
}

@media screen and (min-width: 768px) {
  .l-nidt .container { /* pc */
    max-width: 1204px;
  }

  .breadcrumb-wrapper {
    margin: 24px 0 122px;
  }

  .nidt-breadcrumb {
    font-size: 16px;
  }

  .nidt-breadcrumb li:not(:last-of-type)::after {
    top: calc(50% + 1px);
  }

  .nidt-news-container a.nidt-news-content {
    width: calc(100% / 3 - 16px);
  }
}

@media screen and (max-width: 767px) {
  .l-nidt .container { /* sp */
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* nidt-news-content */
.nidt-news-content {
  color: #000;
}

.nidt-news-content h2 {
  font-size: 24px;
  margin: 24px 0 48px;
}

.nidt-news-content .news-content-body {
  background-color: #FFF;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 0 4px #00000029;
}

.nidt-news-content .news-content-body img {
  width: 100%;
}

.nidt-news-content .news-content-text {
  margin-top: 24px;
}

.bottom-anchor-wrapper {
  padding: 48px 0 96px;
  text-align: center;
}

.bottom-anchor:hover {
  color: #000;
}

.bottom-anchor {
  position: relative;
  display: inline-block;
  color: #000;
  font-size: 14px;
  font-weight: bold;
  padding-right: 30px;
}

.bottom-anchor::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background-image: url(/assets/images/nidt/icon_news_arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px !important;
  height: 20px !important;
}

@media screen and (min-width: 768px) {
  .nidt-news-content h2 {
    margin: 48px 0 40px;
  }

  .nidt-news-content .news-content-body {
    padding: 48px;
  }

  .bottom-anchor {
    font-size: 16px;
  }
}