@charset "UTF-8";
.p-news {
  margin: 11.5rem 0 15rem;
}

/* .p-title-leftline */
.p-title-leftline {
  display: flex;
  align-items: center;
  gap: 0.4em;
  font-size: 3.2rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-family: var(--font-mincho);
  font-weight: 700;
}

/* tab */
.news-tab__list {
  width: 100%;
  flex: 1;
  text-align: center;
  padding: 2.5em 0 1.5em;
  cursor: pointer;
  background-color: #edf6ff;
  color: #000;
  border-top-left-radius: 3rem;
  position: relative;
}
.news-tab__list::before {
  content: "";
  display: block;
  width: 4rem;
  height: 4rem;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #BBB;
  clip-path: polygon(0 0, 100% 100%, 100% 0);
}
.news-tab__list.is-active {
  background-color: #0d63b2;
  color: #FFF;
}
.news-tab__list.is-active::before {
  background-color: #d6e7f7;
}
.p-tab__content {
  padding: 8rem 7rem 9rem;
  border: 1px solid #0d63b2;
}
.news-tab__item {
  display: flex;
  align-items: center;
  padding: 15px 0 15px 10px;
}
.news-tab__item::before {
  border-top: 1px solid;
  content: "";
  width: 1.3em;
  margin-right: 0.8em;
}
.news-tab__panel {
  display: none;
  width: 100%;
}
.news-tab__panel.is-active {
  display: block;
}
/* ニュース一覧 */
.p-news__item {
  display: flex;
  padding: 1.6em 0;
  gap: 1em;
  border-bottom: 1px solid #e1e1e1;
}
.p-news__date {
  width: 7.2em;
  flex-shrink: 0;
  font-size: 1.6rem;
  line-height: 1.71;
}
.p-news__text {
  flex-grow: 1;
  --line-color: #000;
}
.p-news__more {
  margin-top: 4.6rem;
  text-align: center;
}
.p-news__more .c-btn-more {
  font-family: var(--font-gothic);
  font-size: 1.4rem;
  font-weight: 400;
  padding: 0.4em 2em;
  gap: 0.5em;
}
.p-news__more .c-btn-more__arrow {
  width: 2rem;
}
@media (min-width: 1100px) {
  .p-news__list {
    width: 790px;
  }
}
@media (min-width: 769px){
  .new_content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: 1em;
    padding-right: 15px;
  }
  .news-tab__list {
    max-width: 330px;
  }
  .news-tab__item {
    background: url(/news/img/ico_next_blue.svg) no-repeat right 20px center;
    background-size: 30px auto;
  }
  .news-tab__item:hover, .news-tab__item.is-active {
    background-color: #c0d9f0;
  }
}
@media (max-width: 768px){
  .p-news {
    margin: 5rem 0 7rem;
  }
  .news-tab__list {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5em 0 1em;
  }
  .news-tab__item {
    height: auto;
    width: 50%;
    padding: 15px 0 15px 35px;
  }
}
