@charset "UTF-8";
.breadlist {
  max-width: 40%;
  margin-right: 0;
}
.breadlist a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  flex-shrink: 0;
}
.breadlist span {
  overflow: hidden; /* 溢れた部分を隠す */
  text-overflow: ellipsis; /* 溢れた部分を「...」にする */
  white-space: nowrap;
}

.contentWrap {
  max-width: 800px;
  width: 100%;
}

#pageNewsDetail .detailArea {
  width: 100%;
}
#pageNewsDetail .detailArea .postDate {
  font-size: clamp(30px, 2.67vw, 32px);
  color: #101d49;
  font-family: "Spectral", sans-serif;
  letter-spacing: 0;
  font-weight: 600;
  line-height: 1.2em;
}
#pageNewsDetail .detailArea .postDate .year {
  font-size: 16px;
  font-weight: 600;
}
#pageNewsDetail .detailArea .postCategories {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
#pageNewsDetail .detailArea .postCategories .catLink {
  font-size: 13px;
}
#pageNewsDetail .detailArea .postTitle {
  padding: 40px 0 60px;
  font-size: clamp(22px, 2vw, 24px);
  letter-spacing: 0.05em;
  line-height: 1.5em;
  font-weight: 700;
}
#pageNewsDetail .detailArea .postThumbnail {
  width: 100%;
  margin-bottom: 60px;
}
#pageNewsDetail .detailArea .postThumbnail img {
  width: 100%;
  height: auto;
}
#pageNewsDetail .buttonBackArea {
  padding: 80px 0 150px;
  margin: 0px auto;
  border-bottom: 1px solid #101d49;
}
#pageNewsDetail .buttonBackArea .buttonBack {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  font-family: "Spectral", sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: auto;
}

.newsListWrap {
  width: 100%;
  padding-top: 100px;
}
.newsListWrap .otherNewsTitle {
  padding-bottom: 40px;
  font-size: 20px;
  font-weight: 600;
}

.newsListArea {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.newsListArea .newsList {
  top: 0;
  display: grid;
  grid-template-columns: 114px 1fr;
  align-items: center;
  gap: 24px;
}
.newsListArea .newsList .newsListImg {
  width: 100%;
}
.newsListArea .newsList .newsListImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.newsListArea .newsList .newsListTxt .newsListTxtHead {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 24px;
}
.newsListArea .newsList .newsListTxt .newsListTxtHead .newsDate {
  font-size: 13px;
}
.newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.newsListArea .newsList .newsListTxt .newsListTxtHead .newsCategories .catName {
  font-size: 13px;
  color: #747474;
}
.newsListArea .newsList .newsListTxt .newsTitle {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  line-height: 1.6em;
  font-size: 16px;
  margin: 10px 0;
}
.newsListArea .newsList .newsListTxt .more {
  display: block;
  font-family: "Spectral", sans-serif;
  font-size: 15px;
  font-weight: 600;
}

@media only screen and (max-width: 767px) {
  .newsListArea .newsList .newsListTxt .more {
    display: none;
  }
  .newsTitle {
    -webkit-line-clamp: 3;
  }
}/*# sourceMappingURL=style.css.map */