@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.section__news {
  padding: 120rem 0 100rem;
}
@media (max-width: 768px) {
  .section__news {
    padding: 90rem 0;
  }
}
@media (max-width: 768px) {
  .section__news .heading2 .en {
    font-size: 24rem;
    font-weight: 600;
  }
}
@media (max-width: 768px) {
  .section__news .heading2 .ja {
    font-size: 36rem;
    line-height: 133%;
  }
}

.news-categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12rem;
  margin: 30rem auto 0;
  max-width: 1088rem;
}
@media (max-width: 768px) {
  .news-categories {
    gap: 8rem;
    width: 88%;
  }
}
.news-categories .category {
  display: inline-block;
  padding: 8rem 20rem;
  color: #FF9000;
  font-size: 14rem;
  font-weight: 500;
  border: 1px solid #FF9000;
  border-radius: 100px;
  transition: 0.3s ease;
  text-decoration: none;
}
@media (max-width: 768px) {
  .news-categories .category {
    padding: 6rem 16rem;
    font-size: 13rem;
  }
}
.news-categories .category:hover, .news-categories .category.is-active {
  background: #FF9000;
  color: #fff;
}