@charset "utf-8";

/* page-title
------------------------------------------------ */
.page-title {
  background: url(../img/news-kv.jpg) no-repeat center;
  background-size: cover;
}

/* tab
------------------------------------------------ */
.page-news .section-list .tab,
.page-know-how .section-list .tab {
  display: flex;
}
.page-news .section-list .tab li,
.page-know-how .section-list .tab li {
  width: 50%;
}
.page-news .section-list .tab li a,
.page-know-how .section-list .tab li a {
  color: var(--text-color);
  font-weight: bold;
  background-color: #fff;
}
.page-news .section-list .tab li:nth-of-type(1) a,
.page-know-how .section-list .tab li:nth-of-type(2) a {
  color: #fff;
  font-weight: normal;
  background-color: var(--main-color);
}
@media screen and (max-width:768px) {
  .page-news .section-list .tab > li:first-of-type,
  .page-know-how .section-list .tab > li:first-of-type {
    border-radius: 10px 0 0 10px;
  }
  .page-news .section-list .tab > li:last-of-type,
  .page-know-how .section-list .tab > li:last-of-type {
    border-radius: 0 10px 10px 0;
  }
}


/* list
------------------------------------------------ */
.section-list .entries {
  border-top: 1px solid var(--line-color);
  margin-top: 30px;
}
.section-list .entries__item {
  border-bottom: 1px solid var(--line-color);
}
.section-list .entries__item a {
  display: flex;
  gap: 0 30px;
  width: 100%;
  padding: 30px 0;
}
.section-list .entries__item a:hover {
  opacity: 1;
  color: var(--main-color);
  background-color: #fafafa;
}
.section-list .entries__item .image {
  width: 15%;
}
.section-list .entries__item .image img {
  max-width: 100%;
  height: auto;
}
.section-list .entries__item .text {
  flex: 1;
}
.section-list .entries__item .text .entries__item--date {
  opacity: 0.3;
  font-size: 1.8rem;
  font-family: 'Anton', sans-serif;
}
.section-list .entries__item .text h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

/* news
------------------------------------------------ */
.section-news h2 {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.section-news h3 {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.section-news h4 {
  font-size: 2.0rem;
  font-weight: bold;
  margin-bottom: 1em;
}
.section-news a {
  color: var(--main-color);
}