@charset "UTF-8";
/* news index --------------------------------*/
.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 576px) {
  .news-list {
    display: block;
  }
}

.news-list__item {
  max-width: calc((100% - (40px * 2)) / 3);
  -ms-flex-preferred-size: calc((100% - (40px * 2)) / 3);
      flex-basis: calc((100% - (40px * 2)) / 3);
  margin-top: 60px;
  margin-right: 40px;
  position: relative;
}

.news-list__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 1200px) {
  .news-list__item {
    max-width: calc((100% - 45px) / 2);
    -ms-flex-preferred-size: calc((100% - 45px) / 2);
        flex-basis: calc((100% - 45px) / 2);
  }
  .news-list__item:nth-child(3n) {
    margin-right: 40px;
  }
  .news-list__item:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 576px) {
  .news-list__item {
    max-width: none;
    margin-right: 0 !important;
    margin-top: 40px;
  }
}

.news-list__item a {
  text-decoration: none;
}

.news-list__image {
  margin-bottom: 5px;
  overflow: hidden;
  border-radius: 8px;
  position: relative;
  aspect-ratio: 3 / 2;
}

.news-list__image img {
  z-index: 0;
  -webkit-transition: opacity 250ms ease;
  transition: opacity 250ms ease;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

a:hover .news-list__image img {
  opacity: 0.7;
}

.news-list__image figcaption {
  font-size: 1.2rem;
  line-height: 2;
  height: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  background-color: white;
  border-radius: 4px;
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .news-list__image figcaption {
    font-size: 1.1rem;
  }
}

.news-list__title {
  font-size: 1.6rem;
  line-height: 1.8;
}

.news-list__date {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.3rem;
  line-height: 1.6;
  letter-spacing: normal;
  opacity: 0.7;
}

/* news detail -------------------------------*/
.breadcrumb {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-bottom: 40px;
    display: none;
  }
}

.news-article__thumb {
  margin-bottom: 60px;
}

@media screen and (max-width: 768px) {
  .news-article__thumb {
    margin-bottom: 40px;
  }
}

.news-article__thumb img {
  border-radius: 8px;
}

.news-article-meta {
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  line-height: 1.8;
  letter-spacing: normal;
}

@media screen and (max-width: 768px) {
  .news-article-meta {
    font-size: 1.2rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.news-article-meta dt {
  margin-left: 30px;
  color: rgba(17, 57, 97, 0.7);
}

@media screen and (max-width: 768px) {
  .news-article-meta dt {
    margin-left: 0;
  }
}

.news-article-meta dt:first-child {
  margin-left: 0;
}

.news-article-meta dt:after {
  content: "：";
  margin: 0 2px;
}

.news-article-meta dd {
  margin-right: 1em;
}

.news-article-meta dd a {
  text-decoration: underline;
}

.news-article-meta dd a:hover {
  text-decoration: none;
}

.news-article__title {
  color: #113961;
  font-size: 3rem;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .news-article__title {
    font-size: 2.2rem;
  }
}

.news-article__title:after {
  content: "";
  width: 100%;
  height: 1px;
  margin-top: 30px;
  display: block;
  background-color: #113961;
}

@media screen and (max-width: 768px) {
  .news-article__title:after {
    margin-top: 20px;
  }
}

.news-article-main {
  margin-top: 3em;
}

.news-article-main p {
  font-size: 1.6rem;
  line-height: 2;
  margin: 1.5em 0;
}

@media screen and (max-width: 768px) {
  .news-article-main p {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.news-article-main img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

.archives__title {
  font-size: 1.4em;
  color: #113961;
}

/* new -------------------------------*/
.new {
  width: 40px;
  height: 40px;
  background-color: #113961;
  text-align: center;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-transform: uppercase;
  font-size: 1rem;
  border: 3px solid #fff;
  border-radius: 100px;
  position: absolute;
  z-index: 1;
  top: -10px;
  right: -10px;
  left: auto;
}

/* archive -------------------------------*/
@media screen and (max-width: 768px) {
  .archive .list-head,
  .single .list-head {
    display: none;
  }
}

.archive .list-bottom,
.single .list-bottom {
  display: none;
}

@media screen and (max-width: 768px) {
  .archive .list-bottom,
  .single .list-bottom {
    display: block;
  }
}

.contents-column-nav {
  display: block;
}

.contents-column-select {
  display: block;
}
