@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 166px;
  }
}

/* news__nav */
/* ============================================ */
.news__nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 60px auto 80px;
}

.news__nav li {
  position: relative;
  width: 220px;
  height: 60px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin: 0 13px 26px;
}

.news__nav li::before,
.news__nav li::after {
  content: "";
  width: 95%;
  height: 100%;
  position: absolute;
}

.news__nav li::before {
  left: 0;
  top: 0;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
}

.news__nav li::after {
  right: 0;
  bottom: 0;
  border-bottom: 1px solid #000;
  border-right: 1px solid #000;
}

.news__nav a {
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 10;
}

.news__nav a::before {
  content: "";
  width: 0%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(80, 203, 230, 1) 12%,
    rgba(28, 152, 229, 1) 100%
  );
  transition: width 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.news__nav li.is-active a::before{
  width: 100%;
}

.news__nav li.is-active a span {
    color: #fff;
  }

@media (hover: hover) and (pointer: fine) {
  .news__nav a:hover::before {
    width: 100%;
    right: auto;
    left: 0;
  }
}

.news__nav a span {
  position: relative;
  z-index: 11;
}

@media (hover: hover) and (pointer: fine) {
  .news__nav a:hover span {
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .news__nav {
    margin: 52px 20px 57px;
    justify-content: space-between;
  }

  .news__nav li {
    position: relative;
    width: 48%;
    height: 60px;
    font-size: 16px;
    margin: 0;
    margin-bottom: 4%;
  }

  .p-newslist a:last-child dl {
    border-bottom: 1px solid #10013f;
  }

  .p-newslist a:first-child dl {
    border-top: 1px solid #10013f;
  }
}

/* temp__second__h2 */
/* ============================================ */
