:root {
  --color-white: #FFFFFF;
  --color-main: #87b828;
  --color-main-dark: #229C2A;
  --color-accent: #222e0a;
  --color-text: #505050;
  --color-red: #C62F2B;
  --font-main: "neue-haas-grotesk-text", "ryo-gothic-plusn", sans-serif;
}

/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.newsSection {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .newsSection {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 5rem 2.5vw 0;
  }
}
@media screen and (min-width: 1025px) {
  .newsSection {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 10rem 10vw 0;
  }
}

.newsNav {
  position: sticky;
  top: 16rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 320px) {
  .newsNav {
    max-width: unset;
    width: 100%;
    border-radius: 2rem;
    padding: 3rem 2rem;
    margin-top: 8rem;
  }
}
@media screen and (min-width: 1025px) {
  .newsNav {
    max-width: 28%;
    width: auto;
    border-radius: 3rem;
    padding: 5rem 4rem 5rem 6rem;
    margin-top: 0;
  }
}

.newsNavTitle {
  color: #87b828;
  font-family: var(--font-main);
}
@media screen and (min-width: 320px) {
  .newsNavTitle {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .newsNavTitle {
    font-size: 2rem;
  }
}

.newsNavList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 320px) {
  .newsNavList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    font-size: 1.4rem;
    gap: 1rem 1rem;
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  .newsNavList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 1.8rem;
    gap: 1rem 0;
    margin-top: 3rem;
  }
}

.newsNavItem {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 4rem;
}
@media screen and (min-width: 320px) {
  .newsNavItem {
    font-size: 1.4rem;
    padding: 0.8rem 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .newsNavItem {
    font-size: 1.8rem;
    padding: 1rem 2.5rem;
  }
}
.newsNavItem.isActive {
  color: #FFFFFF;
  background: #87b828;
}

.articleArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .articleArea {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .articleArea {
    width: 70%;
  }
}

.articleList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 320px) {
  .articleList {
    gap: 2rem 0;
  }
}
@media screen and (min-width: 1025px) {
  .articleList {
    gap: 3rem 0;
  }
}

.articleitem {
  position: relative;
  display: block;
  background-color: #FFFFFF;
  -webkit-box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 5px 30px -10px rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 320px) {
  .articleitem {
    border-radius: 2rem;
    padding: 2rem 6rem 3rem 3rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleitem {
    border-radius: 3rem;
    padding: 5rem 10rem 6rem 6rem;
  }
}
.articleitem:hover {
  background: #87b828;
}
.articleitem:hover .articleInfo, .articleitem:hover .title {
  color: #FFFFFF;
}
.articleitem:hover .icon {
  background: #FFFFFF;
}
.articleitem:hover .iconSvg {
  stroke: #87b828;
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
}
.articleitem .title {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 320px) {
  .articleitem .title {
    font-size: 1.6rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleitem .title {
    font-size: 2rem;
    margin-top: 2rem;
  }
}
.articleitem .icon {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #87b828;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 320px) {
  .articleitem .icon {
    bottom: 1rem;
    right: 1rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleitem .icon {
    bottom: 2rem;
    right: 2rem;
    width: 5rem;
    height: 5rem;
  }
}
.articleitem .iconSvg {
  stroke: #FFFFFF;
  -webkit-transition: stroke 0.3s ease, -webkit-transform 0.3s ease;
  transition: stroke 0.3s ease, -webkit-transform 0.3s ease;
  transition: stroke 0.3s ease, transform 0.3s ease;
  transition: stroke 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
@media screen and (min-width: 320px) {
  .articleitem .iconSvg {
    width: 1.5rem;
  }
}
@media screen and (min-width: 1025px) {
  .articleitem .iconSvg {
    width: 2.5rem;
  }
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 320px) {
  .pagination {
    font-size: 1.6rem;
    margin-top: 4rem;
    gap: 0 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .pagination {
    font-size: 2rem;
    margin-top: 7rem;
    gap: 0 2rem;
  }
}
.pagination .current {
  color: #87b828;
}
@media screen and (min-width: 320px) {
  .pagination .next {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .pagination .next {
    margin-left: 1rem;
  }
}
@media screen and (min-width: 320px) {
  .pagination .prev {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1025px) {
  .pagination .prev {
    margin-right: 1rem;
  }
}/*# sourceMappingURL=news.css.map */