:root {
  --nav-height: 70px;
  --outer: 1440px;
}

@media only screen and (max-width: 1440px) {
  :root {
    --nav-height: 50px;
    --outer: 1024px;
  }
}
@media only screen and (max-width: 1024px) {
  :root {
    --nav-height: 50px;
    --outer: 90%;
  }
}
@media only screen and (max-width: 640px) {
  :root {
    --nav-height: 40px;
  }
}
.news-wrap {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: calc(100% - var(--nav-height));
  top: var(--nav-height);
  left: 0;
  background: linear-gradient(to bottom, #f0f4f7, #FFF);
}
.news-wrap .news-content-wrap {
  width: 100%;
  max-height: 100%;
}
.news-wrap .news-content-wrap .news-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: var(--outer);
  margin: 3rem auto;
}
.news-wrap .news-content-wrap .news-flex:last-child {
  padding-bottom: 8rem;
}
.news-wrap .news-content-wrap .news-flex > div {
  width: 30%;
  padding-top: 20.1%;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}
.news-wrap .news-content-wrap .news-flex article {
  width: 65%;
  text-align: justify;
  line-height: 150%;
}
.news-wrap .news-content-wrap .news-flex article h2 {
  font-size: 1.5rem;
  color: #000;
  letter-spacing: 0.25rem;
  font-weight: normal;
  margin: 0.5rem 0 1.5rem 0;
}
@media only screen and (max-width: 480px) {
  .news-wrap .news-content-wrap .news-flex article h2 {
    font-size: 5.5vw;
  }
}
.news-wrap .news-content-wrap .news-flex article > div {
  position: relative;
}
.news-wrap .news-content-wrap .news-flex article > div h3 {
  font-size: 1rem;
  letter-spacing: 0.1rem;
  padding-right: 15rem;
}
@media only screen and (max-width: 480px) {
  .news-wrap .news-content-wrap .news-flex article > div h3 {
    font-size: 3.5vw;
  }
}
.news-wrap .news-content-wrap .news-flex article > div a {
  position: absolute;
  display: block;
  background: #a9aaaa;
  color: #FFF;
  padding: 0.25rem 1.5rem;
  font-size: 1.25rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  transition: filter 0.5s;
}
@media only screen and (max-width: 480px) {
  .news-wrap .news-content-wrap .news-flex article > div a {
    font-size: 4.5vw;
  }
}

.news-detail-wrap {
  position: relative;
  padding-top: var(--nav-height);
  padding-bottom: 5rem;
}
.news-detail-wrap::before {
  z-index: -1;
  position: fixed;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, #f0f4f7, #FFF);
}
.news-detail-wrap .news-detail-block {
  padding: 3rem 0;
  width: calc(var(--outer) * 0.75);
  margin: auto;
  text-align: center;
}
.news-detail-wrap .news-detail-block .news-detail-title {
  display: inline-block;
}
.news-detail-wrap .news-detail-block .news-detail-title > div {
  text-align: left;
}
.news-detail-wrap .news-detail-block .news-detail-title h1 {
  font-size: 2rem;
  font-weight: normal;
  line-height: 150%;
  margin: 0.5rem 0 1.5rem 0;
  color: #272b33;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .news-detail-wrap .news-detail-block .news-detail-title h1 {
    font-size: 6.75vw;
  }
}
.news-detail-wrap article {
  padding-bottom: 5rem;
}
.news-detail-wrap .new-detail-back {
  color: #a9aaaa;
}

@media only screen and (min-width: 1025px) {
  .news-content-wrap a:hover {
    filter: brightness(0.8) contrast(1.5);
  }
}
@media only screen and (max-width: 1024px) {
  .news-wrap {
    position: static;
  }
  .news-wrap .news-content-wrap {
    position: static;
    padding-top: var(--nav-height);
  }
  .news-wrap .news-content-wrap .news-flex {
    display: block;
    margin: 3rem auto;
  }
  .news-wrap .news-content-wrap .news-flex:last-child {
    padding-bottom: 20%;
  }
  .news-wrap .news-content-wrap .news-flex > div {
    width: 100%;
    padding-top: 67%;
    margin: 5% 0;
  }
  .news-wrap .news-content-wrap .news-flex article {
    width: 100%;
    line-height: 200%;
  }
  .news-wrap .news-content-wrap .news-flex article h2 {
    letter-spacing: inherit;
    margin: 0;
  }
  .news-wrap .news-content-wrap .news-flex article > div h3 {
    letter-spacing: inherit;
    padding-right: 0;
    margin: 3% 0 5% 0;
    line-height: 175%;
  }
  .news-wrap .news-content-wrap .news-flex article > div a {
    position: static;
    padding: 1.5% 0;
    text-align: center;
    transform: none;
  }
  .news-detail-wrap .news-detail-block {
    padding: 8% 0;
    width: 100%;
    max-width: 640px;
  }
  .news-detail-wrap .news-detail-block .news-detail-title {
    padding: 0 5%;
  }
  .news-detail-wrap .news-detail-block .news-detail-title h1 {
    margin: 1% 0 3% 0;
  }
  .news-detail-wrap article {
    padding-bottom: 10%;
  }
}/*# sourceMappingURL=news.css.map */