@charset "UTF-8";
/**
 * ViewPort Mixin and setting rem to pixel.
 */
/** ここでデザインファイルのサイズを入力 */
/**
 * mixin
 */
/**
 * pxをvwで返す関数
 */
/** デスクトップ上でpxをvwを返す */
/** モバイル上でpxをvwを返す */
/** largeDisplay（1536px以上）でウィンドウサイズサイズに追従するための関数 */
/**
 * Colors
 */
.news {
  padding: 72rem 0;
  background: #FF9000;
  transition-delay: 0s !important;
}
@media (max-width: 768px) {
  .news {
    padding: 48rem 24rem;
  }
}
.news .news-inner {
  display: flex;
  gap: 72rem;
  margin: 0 auto;
  padding: 60rem 60rem 48rem;
  background: #fff;
  border-radius: 24rem;
  max-width: 1080rem;
}
@media (max-width: 768px) {
  .news .news-inner {
    flex-direction: column;
    gap: 24rem;
    padding: 45rem 24rem;
  }
}
.news .inner-title {
  display: flex;
  flex-direction: column;
  align-items: space-between;
  justify-content: space-between;
  width: 150rem;
}
@media (max-width: 768px) {
  .news .inner-title {
    width: 100%;
  }
}
.news .inner-title .heading2-en {
  display: block;
  color: #FF9000;
  font-size: 48rem;
  font-weight: 500;
  text-align: left;
}
.news .inner-title .heading2-ja {
  display: block;
  margin-top: 15rem;
  font-size: 15rem;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 768px) {
  .news .inner-title .heading2-ja {
    margin: 0;
    transform: translateY(26rem);
  }
}
@media (max-width: 768px) {
  .news .inner-title .heading2 {
    display: flex;
    justify-content: space-between;
  }
}
.news .inner-content {
  flex: 1;
}
.news .news-item {
  display: flex;
  font-size: 15rem;
  text-align: left;
}
@media (max-width: 768px) {
  .news .news-item {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15rem 0;
    padding: 20rem 0;
    font-size: 18rem;
    border-bottom: 1px solid #d7d7d7;
  }
}
.news .news-item .date {
  font-family: "Avenir Next", "Avenir Next", "ryo-gothic-plusn", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", meiryo, sans-serif;
  font-weight: 500;
}
.news .news-item .category {
  width: 158rem;
  color: #FF9000;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 768px) {
  .news .news-item .category {
    width: unset;
  }
}
.news .news-item .title {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  font-weight: 400;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .news .news-item .title {
    flex: unset;
    min-width: unset;
    overflow: visible;
    white-space: normal;
    line-height: 178%;
  }
}
.news .news-item + .news-item {
  margin-top: 36rem;
}
@media (max-width: 768px) {
  .news .news-item:nth-child(n+4) {
    display: none;
  }
}
.news .btn-more {
  display: flex;
  align-items: center;
  gap: 12rem;
  color: #FF9000;
  font-size: 13rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .news .btn-more {
    display: none;
  }
}
.news .btn-more .arrow {
  display: flex;
  width: 18rem;
}