@charset "utf-8";
/* CSS Document */
.news {
  background-color: #faf7f0;
  overflow: hidden;
}

.news .billboard {
  background-image: url(../img/knowledge/knowledge_billboard.png);
}

.news .news_section {
  max-width: var(--pc-contents-width);
  margin: 50px auto 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  background-color: white;
  z-index: 2;
  position: relative;
  box-shadow: 1px 1px 2px #00000030;
}

.news section.news_wrap {
  max-width: var(--pc-contents-width);
  margin: 0px auto auto auto;
  padding: 30px;
  z-index: 2;
  position: relative;
}

.news section.news_wrap li {
  border-top: 2px dotted #e2e2e2;
  padding: 20px 0px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.news section.news_wrap li:last-child {
  border-bottom: 2px dotted #e2e2e2;
}

.news .news_detail_section p:not(.entryMeta),
.news .news_detail_section p a,
.news section.news_wrap li a {
  font-family: var(--gothic);
}

.news section.news_wrap li a time {
  display: block;
}




/* 詳細 2021-09-09 ADD */
.news .news_detail_section {
  max-width: var(--pc-contents-width);
  margin: 50px auto 100px;
  padding: 30px;
  background-color: white;
  z-index: 2;
  position: relative;
  box-shadow: 1px 1px 2px #00000030;
}

@media screen and (max-width: 767px) {
  .news .news_detail_section {
    padding: 5vw;
  }
}

.news .news_primary_text {
  font-size: 28px;
  z-index: 2;
  position: relative;
}
.news .news_item,
.news .news_item > * {
  font-family: var(--gothic);
}
@media screen and (max-width: 1300px) {
  .news .news_primary_text {
    font-size: 28px;
  }
}

@media screen and (max-width: 1000px) {
  .news .news_primary_text {
    font-size: 24px;
  }
}

@media screen and (max-width: 767px) {
  .news .news_primary_text {
    font-size: 5vw;
  }
  .news section.news_wrap {
    padding-right: 0;
    padding-left: 0;
  }
  .news .news_section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .news .news_detail_section p:not(.entryMeta) {
    font-size: min(3.5vw, 16px);
    line-height: 1.4;
  }
}

@media screen and (max-width: 500px) {
  .news .news_primary_text {
    font-size: 4vw;
  }
}

.news .news_detail_section a {
  color: var(--attention-color);
  text-decoration: underline;
}

.news .news_detail_section i {
  margin-left: 10px;
  margin-right: 5px;
}

.news .news_detail_section img {
  max-width: 100%;
  height: auto;
}


