@media screen and (max-width: 600px) {
  .hidden-sm {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .hidden-md {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  .hidden-lg {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .hidden-xl {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 1.25rem;
  line-height: 1.6;
  background-color: #eeeeee;
  font-family: "Noto Sans JP", sans-serif;
  color: #232323;
  line-height: 1.7;
  overflow-x: hidden;
}

span {
  display: block;
}

.section__fv {
  background-image: url(../img/section-fv-news.jpg);
  background-size: cover;
  position: relative;
}

.news-items__inner {
  padding-inline: 310px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 26px;
  padding-top: 70px;
  padding-bottom: 100px;
}

.news-itemText__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  gap: 60px;
  padding-block: 40px;
  padding-inline: 24px;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  max-width: 890px;
  margin: 0 auto;
  padding-right: 100px;
}

.news-itemText__wrap::after {
  content: "";
  position: absolute;
  bottom: -42px;
  right: 50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 14px;
  height: 9px;
  background-image: url(../img/news-arrowIcon.svg);
  background-size: cover;
  background-repeat: no-repeat;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.news-itemText__wrap:hover::after {
  -webkit-transform: translateY(-50%) translateX(6px);
  transform: translateY(-50%) translateX(6px);
}

.news-item__date {
  color: #828282;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  width: 110px;
}

.news-item__title {
  color: #232323;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.recruit {
  margin-top: 60px;
}

.recruit::before {
  display: none;
}

.recruit__contents--common {
  padding-top: 60px;
  padding-bottom: 60px;
}

.wp-pagenavi {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding-bottom: 150px;
}

.wp-pagenavi a,
.wp-pagenavi span {
  display: inline-block;
}