@charset "UTF-8";
/**
* @file news.scss
**/
/**
* @file _config.scss
**/
/**
* @file _reset.scss
**/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 0;
  vertical-align: bottom;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
}

/**
* @file _media.scss
**/
/**
* @file _header.scss
**/
header {
  background: #FFF;
  padding: 2rem 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 0.1rem solid #DEDEDE;
  position: fixed;
  width: 100%;
  z-index: 100;
}
header img {
  height: 3.2rem;
}
@media screen and (min-width: 1025px) {
  header {
    background: transparent;
    padding: 4rem 2rem 4rem 8rem;
    border: none;
  }
  header img {
    height: 4rem;
  }
}

.header__side-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  background: #F9F9F9;
  border-left: 0.1rem solid #DEDEDE;
  width: 8rem;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media screen and (min-width: 1025px) {
  .header__side-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header__side-button-contact {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  height: 8rem;
  color: #FFF;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  text-decoration: none;
}
.header__side-button-contact::before {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #2E63B4;
  width: 100%;
  height: 100%;
}
.header__side-button-contact::after {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(105.47deg, #2E63B4 0%, #1B365F 100%);
  width: 0;
  height: 100%;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
}
.header__side-button-contact:hover::after {
  width: 100%;
}
.header__side-button-contact img {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  z-index: 10;
}
.header__side-button-contact span {
  z-index: 10;
}
.header__side-button-request {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 8rem;
  color: #FFF;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
  position: relative;
  text-decoration: none;
}
.header__side-button-request::before {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: #1B365F;
  width: 100%;
  height: 100%;
}
.header__side-button-request::after {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(105.47deg, #2E63B4 0%, #1B365F 100%);
  width: 0;
  height: 100%;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
}
.header__side-button-request:hover::after {
  width: 100%;
}
.header__side-button-request img {
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.8rem;
  z-index: 10;
}
.header__side-button-request span {
  z-index: 10;
}
.header-hamburger__button {
  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;
  cursor: pointer;
}
.header-hamburger__button .hamburger {
  position: relative;
  width: 4rem;
  height: 4rem;
}
.header-hamburger__button .hamburger span {
  display: block;
  width: 3.2rem;
  height: 0.099rem;
  background-color: #1B365F;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 1.2rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header-hamburger__button .hamburger span:nth-of-type(2) {
  top: 50%;
}
.header-hamburger__button .hamburger span:nth-of-type(3) {
  top: auto;
  bottom: 1.2rem;
}
.header-hamburger__button .hamburger.active span {
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
.header-hamburger__button .hamburger.active span:nth-of-type(1) {
  -webkit-transform: translateY(0.75rem) rotate(45deg);
  transform: translateY(0.75rem) rotate(45deg);
}
.header-hamburger__button .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
.header-hamburger__button .hamburger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-0.75rem) rotate(-45deg);
  transform: translateY(-0.75rem) rotate(-45deg);
}
.header-hamburger__button .text {
  color: #000000;
  font-size: 1rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 0px) {
  .header-hamburger__button .text {
    margin-top: 0;
    margin-left: 0.5rem;
  }
}
.header-menu__image {
  display: none;
  position: relative;
  background: linear-gradient(105.47deg, rgba(46, 99, 180, 0.9019607843) 0%, rgba(27, 54, 95, 0.9019607843) 100%), url(../images/common/header-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 50%;
}
.header-menu__image::after {
  content: "";
  background: url(../images/common/Logo-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  width: 26.261rem;
  height: 4rem;
  bottom: 8rem;
  left: 8rem;
}
@media screen and (min-width: 1025px) {
  .header-menu__image {
    display: block;
  }
}
.header-menu__wrapper {
  width: 100%;
  height: calc(100% - 8rem);
  position: fixed;
  top: 8.1rem;
  z-index: 1000;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  background: #F9F9F9;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
  overflow-y: auto;
  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: 1025px) {
  .header-menu__wrapper {
    width: calc(100% - 8rem);
    height: 100vh;
    top: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 0;
  }
}
.header-menu__wrapper.open {
  opacity: 1;
  visibility: visible;
}
.header-menu__nav {
  padding: 4rem 2.4rem 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.header-menu__nav a {
  text-decoration: none;
}
@media screen and (min-width: 1025px) {
  .header-menu__nav {
    width: 50%;
    padding: 0 10rem;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media screen and (min-width: 1366px) {
  .header-menu__nav {
    padding: 0 12rem;
  }
}
.header-menu__link {
  position: relative;
  width: 100%;
}
.header-menu__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0.1rem;
  left: 0;
  bottom: 1.6rem;
  background-color: #1B365F;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
}
@media screen and (min-width: 1025px) {
  .header-menu__link:hover::after {
    width: 100%;
  }
}
.header-menu__eng {
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 1.6rem;
  color: #1B365F;
  text-transform: uppercase;
}
.header-menu__sub {
  color: #51646A;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 3.2rem;
}
.header-menu__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  color: #565656;
  font-size: 1.2rem;
  line-height: 1;
  width: 100%;
}
.header-menu__privacy a {
  text-decoration: none;
  color: #565656;
}
.header__button-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-top: 4rem;
}
@media screen and (min-width: 1025px) {
  .header__button-section {
    display: none;
  }
}
.header__button-contact {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 7.4rem;
  background-color: #2E63B4;
  color: #FFF;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
  text-decoration: none;
}
.header__button-contact img {
  margin-bottom: 0.4rem;
}
.header__button-request {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 7.4rem;
  background-color: #1B365F;
  color: #FFF;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 1;
  padding-top: 0.8rem;
  padding-bottom: 1.6rem;
  text-decoration: none;
}
.header__button-request img {
  margin-bottom: 0.4rem;
}

.hidden {
  display: none;
}

/**
* @file _corporate-footer.scss
**/
@media screen and (min-width: 1025px) {
  .corporate-footer {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.corporate-footer__eng {
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1;
}
.corporate-footer__subtitle {
  margin-top: 1.6rem;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 700;
}
.corporate-footer__banner {
  background: linear-gradient(103.41deg, #2E63B4 9.85%, #2E63B4 9.86%, #1B365F 100%);
  width: 100%;
  padding: 2.4rem;
  text-align: center;
  color: #FFF;
}
@media screen and (min-width: 1025px) {
  .corporate-footer__banner {
    padding: 4rem;
  }
}
.corporate-footer__banner h3 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 3rem;
}
@media screen and (min-width: 1025px) {
  .corporate-footer__banner h3 {
    font-size: 2.4rem;
    line-height: 1;
  }
}
.corporate-footer__banner p {
  margin-block: 0;
  margin-top: 1.6rem;
  font-weight: 400;
  line-height: 1;
  font-size: 1.4rem;
}
@media screen and (min-width: 1025px) {
  .corporate-footer__banner p {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) {
  .corporate-footer__banner br {
    display: none;
  }
}
.corporate-footer__request-btn, .corporate-footer__contact-btn {
  width: 100%;
  height: 11rem;
  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-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #FFF;
  padding: 2.4rem;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .corporate-footer__request-btn, .corporate-footer__contact-btn {
    width: 50%;
  }
}
.corporate-footer__request-btn .arrow, .corporate-footer__contact-btn .arrow {
  width: 2.4rem;
  position: absolute;
  right: 2.4rem;
  bottom: 3.7rem;
}
.corporate-footer__request-btn .arrow::before, .corporate-footer__contact-btn .arrow::before {
  content: "";
  display: block;
  position: absolute;
  height: 0.1rem;
  background: #FFF;
  width: 100%;
}
.corporate-footer__request-btn .arrow::after, .corporate-footer__contact-btn .arrow::after {
  content: "";
  display: block;
  position: absolute;
  height: 0.7rem;
  right: 0.15rem;
  bottom: -0.15rem;
  background: #FFF;
  width: 0.1rem;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.corporate-footer__request-btn::before, .corporate-footer__contact-btn::before {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.corporate-footer__request-btn::after, .corporate-footer__contact-btn::after {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(105.47deg, #2E63B4 0%, #1B365F 100%);
  width: 0;
  height: 100%;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  z-index: -1;
}
.corporate-footer__request-btn:hover::after, .corporate-footer__contact-btn:hover::after {
  width: 100%;
}
.corporate-footer__request-btn::before {
  background: #1B365F;
}
.corporate-footer__contact-btn::before {
  background: #2E63B4;
}

/**
* @file _recruit-footer.scss
**/
.recruit__join-banner {
  background: #2E63B4;
  width: 100%;
  height: 19rem;
  color: #FFF;
  text-decoration: none;
  position: relative;
  display: block;
  text-align: center;
  padding-bottom: 4rem;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 1025px) {
  .recruit__join-banner {
    height: 25.4rem;
    padding-bottom: 8rem;
  }
}
.recruit__join-banner::after {
  content: "";
  position: absolute;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(105.47deg, #2E63B4 0%, #1B365F 100%);
  width: 0;
  height: 100%;
  -webkit-transition: 200ms ease-out;
  transition: 200ms ease-out;
  z-index: -1;
}
.recruit__join-banner:hover::after {
  width: 100%;
}
.recruit__join-banner span {
  -webkit-transform: matrix(1, 0, -0.26, 0.97, 0, 0);
  transform: matrix(1, 0, -0.26, 0.97, 0, 0);
  display: block;
  opacity: 0.05;
  color: #FFF;
  font-size: 6rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "Oswald", sans-serif;
  margin-top: -0.8rem;
}
@media screen and (min-width: 1025px) {
  .recruit__join-banner span {
    font-size: 9rem;
    margin-top: -1.6rem;
  }
}
.recruit__join-banner p {
  margin-top: -0.8rem;
  font-size: 1.6rem;
  line-height: 2.4rem;
}
@media screen and (min-width: 1025px) {
  .recruit__join-banner p {
    margin-top: -1.6rem;
  }
}
.recruit__join-banner h4 {
  margin-top: 2.4rem;
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .recruit__join-banner h4 {
    margin-top: 3.2rem;
  }
}

/**
* @file _footer.scss
**/
footer {
  background: #F9F9F9;
  padding: 4rem 2.4rem;
}
@media screen and (min-width: 1025px) {
  footer {
    width: 100%;
    padding: 7.2rem;
  }
}
footer img {
  height: 3.2rem;
  margin-bottom: 2.4rem;
}
@media screen and (min-width: 1025px) {
  footer img {
    height: 4rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1025px) {
  footer .footer__first-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 5.7rem;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media screen and (min-width: 1025px) {
  footer .footer__links-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 4rem;
  }
}
footer .footer__link {
  text-decoration: none;
  padding: 2.4rem 0;
  color: #333;
  font-size: 1.4rem;
  line-height: 1;
  display: block;
}
footer .footer__privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 4rem;
}
footer .footer__privacy a {
  text-decoration: none;
  color: #565656;
}
@media screen and (min-width: 1025px) {
  footer .footer__privacy {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    gap: 2.4rem;
  }
}

/**
* @file _l-common.scss
**/
html {
  font-size: 2.5445292621vw;
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.6666666667vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.9756097561vw;
  }
}
@media screen and (min-width: 1366px) {
  html {
    font-size: 0.7320644217vw;
  }
}

body {
  font-size: 62.5%;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.menu-open {
  overflow: hidden;
  height: calc(100vh - 8rem);
}

.page {
  padding-top: 8rem;
  width: 100%;
}
@media screen and (min-width: 1025px) {
  .page {
    width: calc(100% - 8rem);
  }
}

/**
* @file _l-index.scss
**/
@-webkit-keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX100 {
  from {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes slideTextX-100 {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%); /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0); /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@-webkit-keyframes bottomSlideUp {
  0% {
    margin-top: 4rem;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@keyframes bottomSlideUp {
  0% {
    margin-top: 4rem;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
@-webkit-keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.overlay {
  position: fixed;
  display: none;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7019607843);
  z-index: 100;
}
.overlay.active {
  display: block;
}

@media screen and (min-width: 1025px) {
  .footer-container {
    margin-right: 8rem;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 1025px) {
  .pc {
    display: inherit;
  }
}

@media screen and (min-width: 1025px) {
  .sp {
    display: none;
  }
}

.news {
  background-color: #F9F9F9;
  padding: 8rem 0 0;
  color: #333;
  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: 1025px) {
  .news {
    padding: 0;
    margin-right: 8rem;
  }
}
.news__header {
  margin: auto;
}
@media screen and (min-width: 1025px) {
  .news__header {
    padding-top: 20rem;
  }
}
.news__header h1 {
  font-weight: 500;
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: #1B365F;
  text-transform: uppercase;
  padding-top: 8rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .news__header h1 {
    font-size: 4rem;
    padding-top: 0;
  }
}
.news__sub {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #51646A;
  margin-top: 0.8rem;
  margin-bottom: 8rem;
  text-align: center;
}
@media screen and (min-width: 1025px) {
  .news__sub {
    font-size: 2.4rem;
    margin-bottom: 12rem;
  }
}
.news #news__header {
  opacity: 0;
  overflow: hidden;
  display: inline-block;
  -webkit-animation-name: slideTextX100;
  animation-name: slideTextX100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.news #news__header #news__header--inner {
  display: inline-block;
  -webkit-animation-name: slideTextX-100;
  animation-name: slideTextX-100;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}
.news__background {
  background: #F2F2F2;
  margin-top: 4rem;
  padding: 0 2.4rem 8rem;
}
@media screen and (min-width: 1025px) {
  .news__background {
    margin-top: 8rem;
    padding: 0 8rem 12rem 8rem;
  }
}
.news__list {
  margin: -4rem auto 0;
  background: #FFF;
  padding-bottom: 4rem;
}
@media screen and (min-width: 1025px) {
  .news__list {
    margin: -12rem auto 0;
  }
}
.news__list__tabs-container {
  height: 6.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 0.1rem solid #C9D2DF;
}
@media screen and (min-width: 1025px) {
  .news__list__tabs-container {
    height: 8rem;
  }
}
.news__list__tabs-container a {
  padding: 2.4rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 300;
  color: #1B365F;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  text-transform: capitalize;
}
@media screen and (min-width: 1025px) {
  .news__list__tabs-container a {
    padding: 3rem 8rem;
    font-size: 2rem;
  }
}
.news__list__tabs-container a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #1B365F;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.news__list__tabs-container a.active, .news__list__tabs-container a:hover {
  font-weight: 500;
}
.news__list__tabs-container a.active::after, .news__list__tabs-container a:hover::after {
  height: 0.2rem;
  width: 100%;
}
.news__list__tabs-container a.active {
  pointer-events: none;
}
.news__list__container {
  padding: 1.6rem 2.4rem 4rem;
  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: 1025px) {
  .news__list__container {
    padding: 4.8rem 8rem 6rem;
  }
}
.news__list__item {
  padding: 2.4rem 0;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid #C9D2DF;
  width: 100%;
  text-decoration: none;
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 1025px) {
  .news__list__item {
    padding: 3.2rem;
  }
}
.news__list__item:first-child {
  margin-top: 0;
}
.news__list__item.visible {
  -webkit-animation-name: bottomSlideUp;
  animation-name: bottomSlideUp;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  margin-top: 100%;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
.news__list__item .date {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 2.4rem;
  color: #8A8A8A;
  margin-right: 1.6rem;
}
@media screen and (min-width: 1025px) {
  .news__list__item .date {
    font-size: 1.6rem;
  }
}
.news__list__item .tag {
  height: 2.4rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #FFF;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.6rem;
  width: 8rem;
  text-transform: capitalize;
}
.news__list__item .tag.type-news {
  background: #1B365F;
}
.news__list__item .tag.type-recruit {
  background: #2E63B4;
}
@media screen and (min-width: 1025px) {
  .news__list__item .tag {
    font-size: 1.6rem;
  }
}
.news__list__item .body {
  margin-top: 0.8rem;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2.1rem;
  color: #333;
}
@media screen and (min-width: 1025px) {
  .news__list__item .body {
    font-size: 1.6rem;
  }
}
.news .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8rem;
  margin: 0 3.3rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 1025px) {
  .news .wp-pagenavi {
    margin: 0 auto;
  }
}
.news .wp-pagenavi > span, .news .wp-pagenavi > a {
  width: 4.8rem;
  height: 4.8rem;
  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;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  color: #1B365F;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  position: relative;
  padding-top: 0;
  text-decoration: none;
  cursor: pointer;
  background: #F9F9F9;
}
.news .wp-pagenavi > span::after, .news .wp-pagenavi > a::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  background: #1B365F;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.news .wp-pagenavi > span.current, .news .wp-pagenavi > span:hover, .news .wp-pagenavi > a.current, .news .wp-pagenavi > a:hover {
  font-weight: 700;
}
.news .wp-pagenavi > span.current::after, .news .wp-pagenavi > span:hover::after, .news .wp-pagenavi > a.current::after, .news .wp-pagenavi > a:hover::after {
  height: 0.1rem;
  width: 100%;
}
.news .wp-pagenavi .previouspostslink span,
.news .wp-pagenavi .nextpostslink span {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/common/chevron.svg), #F9F9F9;
  background-repeat: no-repeat;
  background-position: center;
}
.news .wp-pagenavi .previouspostslink span {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}