@charset "UTF-8";
body {
  visibility: hidden;
}

/* ヘッダー,文字色 */
@font-face {
  font-family: "DINPro";
  src: url("../fonts/DINPro.otf") format("opentype");
}
@font-face {
  font-family: "DINPro bold";
  src: url("../fonts/DINPro-Bold.otf") format("opentype");
}
.c-btn-basic {
  display: inline-block;
  max-width: 20rem;
  width: 100%;
  font-size: 0.875rem;
  font-weight: bold;
  color: #3a54a4;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1.125rem 0.9375rem;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 255, 255)), to(rgb(240, 235, 76)));
  background: linear-gradient(90deg, rgb(0, 255, 255) 0%, rgb(240, 235, 76) 100%);
}

.c-btn-basic::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(240, 235, 76)), to(rgb(0, 255, 255)));
  background: linear-gradient(90deg, rgb(240, 235, 76) 0%, rgb(0, 255, 255) 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: -1;
}

.c-btn-basic:hover::before {
  color: #3a54a4;
  opacity: 0;
}

.c-btn {
  display: inline-block;
  font-size: 0.875rem;
  color: #3a54a4;
  line-height: 2.1428571429;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  padding: 0.625rem 1.25rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, #ffff46, #46ffff);
  text-align: center;
  position: relative;
}

.c-btn::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid #3a54a4;
  border-bottom: 1px solid #3a54a4;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 1.25rem;
}

.c-btn--white {
  line-height: 1.3076923077;
  padding: 0.3125rem 1.25rem;
  background: #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-btn--white {
    font-size: 0.75rem;
  }
}

.c-btn--white span {
  display: inline-block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-btn--white span {
    display: block;
  }
}

.c-division__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.4;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  color: #3a54a4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-division__title {
    font-size: 1.125rem;
  }
}

.c-division__title span {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 0.75rem;
}

.c-division__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .c-division__items {
    width: 80rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.c-division__item {
  aspect-ratio: 256/410;
  max-height: 25.625rem;
  display: block;
  width: 20%;
  position: relative;
  overflow: hidden;
}

.c-division__item:not(:first-child) {
  border-left: 1px solid #fff;
}

.c-division__item::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 15.3125rem;
  height: 10.625rem;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-division__item--num1::before {
  background-image: url(../images/top/number1.png);
}

.c-division__item--num2::before {
  background-image: url(../images/top/number2.png);
}

.c-division__item--num3::before {
  background-image: url(../images/top/number3.png);
}

.c-division__item--num4::before {
  background-image: url(../images/top/number4.png);
}

.c-division__item--num5::before {
  background-image: url(../images/top/number5.png);
}

.c-division__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.c-division__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}

.c-division__copy-wrap {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .c-division__copy-wrap {
    padding-top: 3.25rem;
  }
}

.c-division__copy {
  font-size: 1.625rem;
  letter-spacing: 0.06em;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 767px) {
  .c-division__copy {
    font-size: 1.5rem;
  }
}

.c-division__copy-en {
  font-size: 0.75rem;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin-top: auto;
  padding-bottom: 1.25rem;
}

.c-division__body {
  margin-top: 1.0625rem;
}

.c-division__sub-title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 2.8235294118;
  letter-spacing: 0.06em;
  color: #3a54a4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-division__sub-title {
    font-size: 1.125rem;
  }
}

.c-division__sub-title span {
  display: block;
  font-family: "Lato", sans-serif;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 0.75rem;
}

.c-division__wrap {
  overflow: auto;
  margin-top: 2.25rem;
}
@media screen and (max-width: 767px) {
  .c-division__wrap {
    margin-top: 1.25rem;
  }
}

.c-division__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.0625rem;
}
@media screen and (max-width: 767px) {
  .c-division__cards {
    width: 64rem;
  }
}

.c-division__card {
  position: relative;
  overflow: hidden;
}

.c-division__card:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.c-division__card img {
  aspect-ratio: 320/300;
  width: 25vw;
  height: 18.75rem;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
@media screen and (max-width: 767px) {
  .c-division__card img {
    width: 15.9375rem;
    height: 15.125rem;
  }
}

.c-division__copy-wrap02 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 2.75rem;
}

.c-division__copy02 {
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 767px) {
  .c-division__copy02 {
    font-size: 1.25rem;
  }
}

.c-division__copy-en02 {
  font-size: 0.75rem;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin-top: auto;
  padding-bottom: 1.25rem;
}

.c-education-copy {
  font-size: 1.5rem;
  font-weight: bold;
  color: #3a54a4;
  letter-spacing: 0.06em;
  line-height: 1;
  padding-left: 1.25rem;
  border-left: 4px solid #3a54a4;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-education-copy span {
  font-size: 1.125rem;
}

@media screen and (max-width: 767px) {
  .c-education-copy--lh {
    line-height: 1.3333333333;
  }
}

.c-environment__title {
  font-size: 1.25rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 2.4;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-environment__title {
    font-size: 1rem;
  }
}

.c-environment__title::before {
  content: "";
  width: 1px;
  height: 3.125rem;
  background-color: #3a54a4;
  position: absolute;
  top: -100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .c-environment__title::before {
    height: 2.5rem;
  }
}

.c-environment__cardBox {
  width: 100%;
  max-width: 64.375rem;
  margin-inline: auto;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .c-environment__cardBox {
    margin-top: 1.75rem;
  }
}

.c-environment__cardList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .c-environment__cardList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.3125rem;
  }
}

.c-environment__cardItem {
  position: relative;
  width: 100%;
  max-width: calc(25% - 1.5rem);
}
@media screen and (max-width: 767px) {
  .c-environment__cardItem {
    max-width: calc(50% - 0.15625rem);
  }
}

.c-environment__copy {
  font-size: 1.25rem;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-environment__copy {
    font-size: 0.875rem;
  }
}

.c-environment__copy::after {
  content: "";
  width: 0.3125rem;
  height: 0.3125rem;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0.75rem;
}

.c-logo-lg {
  width: 21.25rem;
  height: 21.25rem;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 2.1875rem;
  padding-bottom: 2.5rem;
  text-align: center;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  .c-logo-lg {
    width: 15rem;
    height: 15rem;
  }
}

.c-logo-lg__catch {
  font-size: 2.375rem;
  font-weight: 500;
  line-height: 1.6578947368;
  letter-spacing: 0.06em;
  color: #3a54a4;
  padding-top: 3.4375rem;
  padding-bottom: 4rem;
  background-color: #fff;
  text-align: center;
  margin-top: -0.0625rem;
  text-indent: 0.5em;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-logo-lg__catch {
    font-size: 1.6875rem;
    line-height: 1.5925925926;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.c-logo-lg__catch span {
  text-indent: -0.05em;
  display: inline-block;
}

.c-lower-fv {
  position: relative;
  overflow: hidden;
}

.c-lower-fv::before {
  content: "";
  width: 100%;
  height: 12.625rem;
  background: linear-gradient(135deg, #ffff46, #46ffff);
  opacity: 0.5;
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  -webkit-transform: translateX(-24.75rem);
          transform: translateX(-24.75rem);
}
@media screen and (max-width: 767px) {
  .c-lower-fv::before {
    height: 2.875rem;
    -webkit-transform: translateX(-5.8125rem);
            transform: translateX(-5.8125rem);
  }
}

@media screen and (max-width: 767px) {
  .c-lower-fv__wrap {
    width: 100%;
  }
}

.c-lower-fv__title {
  font-size: 4rem;
  font-family: "Lato", sans-serif;
  color: #3a54a4;
  text-transform: capitalize;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-lower-fv__title {
    font-size: 1.875rem;
  }
}

.c-lower-fv__block {
  padding-top: 2.3125rem;
  padding-bottom: 3.5625rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-lower-fv__block {
    margin-top: 0.375rem;
    padding-top: 1.625rem;
    padding-bottom: 2.25rem;
  }
}

.c-lower-fv__block::before {
  content: "";
  width: 200%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #3a54a4;
  opacity: 0.9;
  -webkit-transform: translateX(-77.5%);
          transform: translateX(-77.5%);
}
@media screen and (max-width: 767px) {
  .c-lower-fv__block::before {
    -webkit-transform: translateX(-60%);
            transform: translateX(-60%);
  }
}
@media screen and (max-width: 500px) {
  .c-lower-fv__block::before {
    -webkit-transform: translateX(-53%);
            transform: translateX(-53%);
  }
}

.c-lower-fv__sub-title {
  font-size: 1.875rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .c-lower-fv__sub-title {
    font-size: 1.375rem;
  }
}

.c-lower-fv__text {
  font-size: 0.875rem;
  color: #fff;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 2.125rem;
}
@media screen and (max-width: 767px) {
  .c-lower-fv__text {
    font-size: 0.875rem;
    margin-top: 1.1875rem;
    line-height: 1.7142857143;
  }
}

.c-lower-fv__img {
  margin-top: -3.25rem;
  padding: 0rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .c-lower-fv__img {
    aspect-ratio: 336/160;
    margin-top: -2.75rem;
    margin-right: calc(50% - 50vw);
    margin-left: 1.5rem;
    padding: 0;
    padding: initial;
  }
}

.c-lower-fv__img img {
  aspect-ratio: 1120/520;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 800;
}
@media screen and (max-width: 767px) {
  .c-page-top {
    right: 0.625rem;
    bottom: 4.375rem;
  }
}

.c-page-top a {
  display: inline-block;
  width: 3.75rem;
  height: 3.75rem;
  background-color: #3a54a4;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .c-page-top a {
    width: 2.8125rem;
    height: 2.8125rem;
  }
}

.c-page-top a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  -webkit-transform: translate(-50%, -20%) rotate(-45deg);
          transform: translate(-50%, -20%) rotate(-45deg);
  border-top: 0.125rem solid #fff;
  border-right: 0.125rem solid #fff;
  width: 0.75rem;
  height: 0.75rem;
}

.c-sec-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 2.4;
  text-align: 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: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle {
    font-size: 1rem;
  }
}

.c-sec-subtitle::before {
  content: "";
  width: 1px;
  height: 3.125rem;
  background-color: #3a54a4;
  display: inline-block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-sec-subtitle::before {
    height: 2.5rem;
  }
}

.c-sec-title-lower {
  font-size: 2rem;
  font-weight: 900;
  color: #3a54a4;
  line-height: 1.25;
  letter-spacing: normal;
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  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 (max-width: 767px) {
  .c-sec-title-lower {
    font-size: 1.25rem;
  }
}

.c-sec-title-lower::before {
  content: attr(data-en);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Lato", sans-serif;
  color: #aabede;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .c-sec-title-lower::before {
    font-size: 0.9375rem;
  }
}

.c-section-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.4375rem;
  background-color: #ecf1f8;
}
@media screen and (max-width: 767px) {
  .c-section-block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0rem;
  }
}

.c-section-block__mission {
  counter-increment: mission;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  color: #3a54a4;
  text-transform: capitalize;
  position: relative;
  top: -2.1875rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .c-section-block__mission {
    font-size: 1.25rem;
    top: -2rem;
  }
}

.c-section-block__mission::before {
  content: "";
  width: 1000%;
  height: 6.25rem;
  background-color: #fff;
  border-radius: 1.25rem 1.25rem 1.25rem 1.25rem;
  display: block;
  position: absolute;
  top: -0.625rem;
  right: -2.5rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .c-section-block__mission::before {
    height: 5rem;
    right: 50%;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.c-section-block__mission::after {
  content: counter(mission, decimal-leading-zero);
  font-size: 5rem;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  color: #3a54a4;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-section-block__mission::after {
    font-size: 4rem;
  }
}

.c-section-block__item {
  padding-top: 2.3125rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .c-section-block__item {
    padding-top: 0.875rem;
    padding-bottom: 2rem;
  }
}

.c-section-block__title {
  font-size: 1.5rem;
  color: #3a54a4;
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-section-block__title {
    font-size: 1.125rem;
  }
}

.c-section-block__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 2;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
  margin-top: 1.125rem;
  padding-left: 0.4375rem;
  padding-right: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .c-section-block__text {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.c-section-card__block {
  padding: 0.9375rem 1.25rem 0rem 1.25rem;
  position: relative;
}

.c-section-card__block::before {
  content: "";
  background-color: #3a54a4;
  width: 3px;
  height: 5.625rem;
  position: absolute;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-section-card__block::before {
    height: 100%;
  }
}

.c-section-card__img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(198,211,228,0.8)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 5px rgba(198, 211, 228, .8));
          filter: drop-shadow(0 0 5px rgba(198, 211, 228, .8));
}

.c-section-card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.c-section-card__title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #3a54a4;
  letter-spacing: 0.04em;
  line-height: 1.8;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .c-section-card__title {
    font-size: 1rem;
  }
}

.c-section-card__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  margin-top: 0.625rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
@media screen and (max-width: 767px) {
  .c-section-card__text {
    margin-top: 0.1875rem;
  }
}

.c-section-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 2.1875rem;
     -moz-column-gap: 2.1875rem;
          column-gap: 2.1875rem;
  row-gap: 4.375rem;
}
@media screen and (max-width: 767px) {
  .c-section-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
  }
}

.c-section-label {
  border: 1px solid #3a54a4;
  padding: 1.5625rem 1.875rem 1rem;
  position: relative;
}

.c-section-label::before {
  content: "";
  width: 100%;
  height: 3.625rem;
  background-color: #ecf1f8;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.c-section-label__title {
  font-size: 1rem;
  font-weight: bold;
  color: #3a54a4;
  letter-spacing: 0.06em;
}

.c-section-label__items {
  margin-top: 1.125rem;
}

.c-section-label__item {
  font-size: 0.875rem;
  color: #3a54a4;
  line-height: 1.7857142857;
  letter-spacing: 0.06em;
  text-indent: -1.35em;
  padding-left: 1em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.c-section-label__item::before {
  content: "■";
}

.c-section-title {
  font-size: 1.625rem;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
  color: #3a54a4;
  font-weight: 900;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    font-size: 1.75rem;
    line-height: 1.0357142857;
  }
}

.c-section-title::before {
  content: attr(data-en);
  font-size: 0.875rem;
  line-height: 2.0714285714;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .c-section-title::before {
    font-size: 0.875rem;
    padding-top: 0.3125rem;
    line-height: 2.8571428571;
  }
}

.c-tag {
  font-size: 0.875rem;
  color: #1e1e1e;
  font-weight: bold;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
  background-color: #e8e8e8;
  display: inline-block;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  text-align: center;
  text-transform: uppercase;
  display: grid;
  place-items: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .c-tag {
    display: inline-block;
  }
}
.c-tag:hover {
  color: #fff;
  background-color: #3a54a4;
}

.c-top-link {
  max-width: 27.9375rem;
  width: 100%;
  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;
}

.c-top-link:first-child .c-top-link__title,
.c-top-link:nth-child(2) .c-top-link__title {
  border-bottom: 1px dashed #3a54a4;
}

.c-top-link__title {
  font-size: 1rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 3.4375;
  letter-spacing: 0.06em;
  white-space: nowrap;
  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;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-top-link__title {
    font-size: 1rem;
    line-height: 1.25;
    padding: 0.75rem 0.625rem 0.5625rem 0rem;
    min-height: 4.1875rem;
  }
}

.c-top-link__title .u-mobile {
  display: none;
}
@media screen and (max-width: 500px) {
  .c-top-link__title .u-mobile {
    display: block;
  }
}

.c-top-link__title span {
  display: inline-block;
}

.c-top-link__title::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid #3a54a4;
  border-bottom: 2px solid #3a54a4;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-left: auto;
}
.p-footer {
  border-top: 1px solid #3a54a4;
}

.p-footer__inner {
  height: inherit;
  max-width: 66.375rem;
  width: 100%;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.p-footer__block1 {
  height: inherit;
}
@media screen and (max-width: 767px) {
  .p-footer__block1 {
    margin-top: 3.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-footer__block2 {
  background-color: #fff;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-footer__block2 {
    margin-left: auto;
    margin-right: auto;
  }
}

.p-footer__logo {
  aspect-ratio: 210/65;
  max-width: 13.125rem;
  width: 100%;
}

.p-footer__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__meta {
  max-width: 20rem;
  width: 100%;
  font-size: 1rem;
  color: #000;
}

.p-footer__depart {
  letter-spacing: 0.06em;
  margin-top: 3.5rem;
}

.p-footer__address {
  margin-top: 0.375rem;
  font-style: normal;
  letter-spacing: 0.06em;
}

.p-footer__tel {
  margin-top: 1.6875rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-footer__tel {
    pointer-events: auto;
  }
}

.p-footer__tel a,
.p-footer__mail a {
  text-decoration: underline;
}

.p-footer__tel::before {
  content: "";
  background-image: url(../images/common/tel_icon-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.25rem;
  margin-top: 0.3125rem;
  margin-right: 0.3125rem;
}

.p-footer__mail {
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__mail::before {
  content: "";
  background-image: url(../images/common/mail_icon-blue.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1.5rem;
  height: 1.25rem;
  margin-top: 0.3125rem;
  margin-right: 0.3125rem;
}

.p-footer__block2 {
  height: inherit;
  position: relative;
}

.p-footer__block2::before {
  content: "";
  width: 1px;
  height: calc(100% + 9.25rem);
  background-color: #3a54a4;
  display: block;
  position: absolute;
  top: -4.625rem;
  left: 50%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-footer__block2::before {
    height: 130%;
    top: -2.625rem;
  }
}

.p-footer__catch {
  font-size: 0.875rem;
  font-weight: 500;
  color: #3a54a4;
  line-height: 2.8571428571;
  letter-spacing: 0.06em;
  text-align: center;
  background-color: #fff;
}

.p-footer__links {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__links {
    margin-top: 0.875rem;
  }
}

.p-footer__btn-wrap:nth-child(n+2) {
  margin-top: 0.5rem;
}

.p-footer__btn {
  display: inline-block;
  width: 20rem;
  font-size: 0.875rem;
  font-weight: bold;
  color: #3a54a4;
  letter-spacing: 0.06em;
  text-align: center;
  padding: 1.125rem 0.9375rem;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 255, 255)), to(rgb(240, 235, 76)));
  background: linear-gradient(90deg, rgb(0, 255, 255) 0%, rgb(240, 235, 76) 100%);
}

.p-footer__btn:hover {
  opacity: 1;
}

.p-footer__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right top, from(rgb(240, 235, 76)), to(rgb(0, 255, 255)));
  background: linear-gradient(90deg, rgb(240, 235, 76) 0%, rgb(0, 255, 255) 100%);
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  z-index: -1;
}

.p-footer__btn:hover::before {
  color: #3a54a4;
  opacity: 0;
}

.p-footer__btn::after {
  content: "";
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: 1px solid #3a54a4;
  border-right: 1px solid #3a54a4;
  -webkit-transform: rotate(-45deg) translateY(-50%);
          transform: rotate(-45deg) translateY(-50%);
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 1.5625rem;
}

.p-footer__copy-right {
  font-size: 0.75rem;
  font-weight: bold;
  font-family: "Lato", sans-serif;
  line-height: 1.6666666667;
  letter-spacing: 0.06em;
  color: #fff;
  display: block;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  text-align: center;
  background-color: #3a54a4;
  margin-top: 4.125rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copy-right {
    margin-top: 2.125rem;
  }
}

.p-header {
  width: 100%;
  height: 6.25rem;
  background-color: #3a54a4;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 5rem;
    z-index: 920;
  }
}

.p-header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.p-header__logo-block {
  margin-top: 0.4375rem;
}

.p-header__logo {
  aspect-ratio: 332/84;
  width: 20.75rem;
  height: 5.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 14.5625rem;
    height: 4.25rem;
    position: relative;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
}

.p-header__link {
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.logoMove {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-header__block-top::before {
  content: "";
  width: 1px;
  height: 1.875rem;
  background-color: #3a54a4;
  position: absolute;
  top: 0;
  left: 50%;
}

.p-header__catch {
  font-size: 2.375rem;
  line-height: 1.6578947368;
  letter-spacing: 0.06em;
  color: #3a54a4;
  padding-top: 2.0625rem;
}

.p-header__body {
  height: inherit;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-header__block {
  width: 10.1875rem;
  height: inherit;
  border-left: 1px solid #fff;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-header__block {
    display: none;
  }
}

.p-header__block-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  height: 47%;
}

.p-header__entry,
.p-header__my-page {
  max-width: 5rem;
  width: 100%;
  font-size: 0.8125rem;
  text-transform: uppercase;
  display: grid;
  place-items: center;
}

.p-header__year {
  font-size: 0.8125rem;
  text-align: center;
  border-bottom: 1px solid #fff;
  padding-top: 1.25rem;
  padding-bottom: 0.875rem;
  margin-left: 0.625rem;
  margin-right: 0.625rem;
}

.p-header__block::before {
  content: "";
  width: 1px;
  height: 46%;
  background-color: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
}
@media screen and (max-width: 1024px) {
  .p-header__block::before {
    height: 44%;
  }
}
@media screen and (max-width: 840px) {
  .p-header__block::before {
    height: 40%;
  }
}

.p-header__intern,
.p-header__career {
  height: inherit;
  font-size: 0.8125rem;
  border-left: 1px solid #fff;
  max-width: 6.375rem;
  width: 100%;
  padding: 0.6875rem 1.375rem;
  text-transform: uppercase;
  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;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-header__intern,
  .p-header__career {
    display: none;
  }
}

.p-header__career {
  margin-right: 5.6875rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
}

.p-header__intern-text::before,
.p-header__career-text::before {
  content: attr(data-ja);
  font-size: 0.8125rem;
  color: #fff;
  display: block;
  text-align: center;
}

.p-header__hamburger {
  width: 5.25rem;
  height: 5.25rem;
  background-color: #fff;
  position: relative;
  z-index: 990;
  cursor: pointer;
  margin-left: 0.3125rem;
  position: fixed;
  top: 0.4375rem;
  right: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-header__hamburger {
    width: 4.25rem;
    height: 4.25rem;
  }
}

.p-header__hamburger span {
  width: 1.625rem;
  height: 2px;
  background-color: #3a54a4;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.p-header__hamburger span:first-child {
  top: 40%;
}

.p-header__hamburger span:nth-child(2) {
  top: 50%;
}

.p-header__hamburger span:nth-child(3) {
  top: 59%;
}

/* ナビ開いてる時のバツボタン */
.js-hamburger.active span:first-child {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.js-hamburger.active span:nth-child(2) {
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.js-hamburger.active span:nth-child(3) {
  visibility: hidden;
  opacity: 0;
}

.p-nav-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-nav-sp {
    display: block;
  }
}

.p-nav-sp__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, .5);
}

.p-nav-sp__block-left {
  width: 24%;
  border-right: 1px solid rgba(255, 255, 255, .5);
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
  display: grid;
  place-items: center;
}

.p-nav-sp__year {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1em;
}

.p-nav-sp__block-right {
  width: 76%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-nav-sp__entry,
.p-nav-sp__my-page {
  font-size: 1rem;
  color: #fff;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
  font-family: "DINPro", sans-serif;
}

.p-nav-sp__my-page {
  border-top: 1px solid rgba(255, 255, 255, .5);
}

.p-nav-sp__intern {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

.p-nav-sp__career {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, .5);
}

.p-nav-sp__intern-text,
.p-nav-sp__career-text {
  font-size: 1rem;
  color: #fff;
  font-family: "DINPro", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  padding: 1rem 1.25rem;
}

.p-nav-sp__intern-text::before,
.p-nav-sp__career-text::before {
  content: attr(data-ja);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.p-nav {
  position: fixed;
  top: 0;
  left: 0;
  background-color: #3a54a4;
  width: 100%;
  height: 100%;
  padding: 5rem 3.625rem 5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  overflow: auto;
  z-index: 910;
}
@media screen and (max-width: 767px) {
  .p-nav {
    padding: 2.875rem 1.25rem 1.875rem;
  }
}

.p-nav.active {
  opacity: 1;
  visibility: visible;
}

.p-nav__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-nav__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: initial;
  }
}

.p-nav__meta {
  max-width: 15rem;
  width: 100%;
  font-size: 12px;
  color: #fff;
  margin-top: 19.1875rem;
}
@media screen and (max-width: 767px) {
  .p-nav__meta {
    margin-top: 2.375rem;
  }
}

.p-nav__depart {
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.p-nav__address {
  margin-top: 0.625rem;
  font-style: normal;
  letter-spacing: 0.06em;
}

.p-nav__address span:nth-child(2) {
  display: inline-block;
}

.p-nav__tel {
  padding-top: 2.25rem;
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-nav__tel a {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-nav__tel a {
    pointer-events: auto;
  }
}

.p-nav__tel a,
.p-nav__mail a {
  text-decoration: underline;
}

.p-nav__tel::before {
  content: "";
  background-image: url(../images/common/tel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 12px;
  height: 15px;
  margin-top: 0.3125rem;
  margin-right: 0.3125rem;
}

.p-nav__mail {
  line-height: 2.3333333333;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-nav__mail::before {
  content: "";
  background-image: url(../images/common/mail_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  min-width: 12px;
  height: 15px;
  margin-top: 0.3125rem;
  margin-right: 0.3125rem;
}

.p-nav__block {
  margin-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-nav__block {
    margin-left: 0;
    margin-left: initial;
    border-bottom: 1px solid #9ca9d1;
    position: relative;
  }
}

.p-nav__block:nth-child(n+2) {
  padding-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-nav__block:nth-child(n+2) {
    padding-top: 0;
    padding-top: initial;
  }
}

.p-nav__title {
  font-size: 26px;
  color: #fff;
  line-height: 1.5384615385;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .p-nav__title {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 22px;
    cursor: pointer;
    position: relative;
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
  }
}

.p-nav__title::after {
  content: attr(data-en);
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-left: 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-nav__title::after {
    margin-left: 0;
    margin-left: initial;
    /* プラスの縦線 */
    content: "";
    position: absolute;
    top: 50%;
    right: 1.625rem;
    width: 2px;
    height: 1.625rem;
    background: #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .p-nav__title::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0.9375rem;
    width: 1.625rem;
    height: 2px;
    background: #fff;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: block;
  }
}

/* ③オープン時にopenクラスを付与（縦線を回転させて非表示に） */
.p-nav__title.open::after {
  top: 30%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.p-nav__items {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-nav__items {
    margin-top: 0;
    margin-top: initial;
    padding-bottom: 1.25rem;
    display: none;
  }
}

.p-nav__item {
  font-size: 13px;
  color: #fff;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .p-nav__item {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.p-nav__item::before {
  content: "";
  background-image: url(../images/common/arrow_icon.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 15px;
  margin-top: 0.5rem;
  margin-right: 0.3125rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-nav__item a {
  padding: 4px 0;
}

.p-nav .c-logo-lg {
  padding-bottom: 0;
}

.p-nav .c-logo-lg__catch {
  padding-top: 1.25rem;
  padding-bottom: 0;
}

.js-text-effect {
  position: relative;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  --translateX: 0px;
}

.js-text-effect02 {
  position: relative;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
}

.js-text-effect03 {
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background: #fff;
  text-align: center;
  color: #3a54a4;
}

#loading__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#loading__logo img {
  aspect-ratio: 208/54;
  width: 31.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  #loading__logo img {
    width: 18.75rem;
  }
}

#loading__bar {
  margin-top: 1.25rem;
  width: 100%;
}

#loading__bar svg {
  border-radius: 0.3125rem;
}

#loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.u-br500 {
  display: none;
}
@media screen and (max-width: 500px) {
  .u-br500 {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-fixed {
  height: 100vh;
  overflow-y: hidden;
}

.u-inline-block {
  display: inline-block;
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

.l-top-about {
  margin-top: 1.875rem;
}
.l-top-fv {
  margin-top: 7.5rem;
}
@media screen and (max-width: 767px) {
  .l-top-fv {
    margin-top: 5.8125rem;
  }
}

.l-top-info {
  padding-top: 1rem;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-top-info {
    padding-bottom: 2rem;
  }
}

.l-top-recruit {
  margin-top: 2.5rem;
  padding-bottom: 1.6875rem;
}
@media screen and (max-width: 767px) {
  .l-top-recruit {
    padding-bottom: 2.6875rem;
  }
}

.p-top-about {
  border-top: 1px solid #3a54a4;
  border-bottom: 1px solid #3a54a4;
}

.p-top-about__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, auto);
    margin-left: auto;
    margin-right: auto;
    max-width: 31.25rem;
  }
}

.p-top-about__inner {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-top-about__inner {
    display: block;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
  }
}

.p-top-about__block {
  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: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 100%;
  padding: 2.25rem 2rem 2.25rem 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__block {
    padding: 2.25rem 0rem 1.875rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__block:not(:last-child) {
    border-bottom: 1px solid #3a54a4;
  }
}

.p-top-about__block:nth-child(n+2) {
  border-left: 1px solid #3a54a4;
}
@media screen and (max-width: 767px) {
  .p-top-about__block:nth-child(n+2) {
    border-left: 0;
    border-left: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__title {
    text-align: left;
    max-width: 31.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-about__catch {
  font-size: 0.875rem;
  margin-top: 1rem;
  padding-bottom: 1.25rem;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .p-top-about__catch {
    font-size: 1rem;
    max-width: 31.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0.5rem;
  }
}

.p-top-about__copy {
  font-size: 1rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 2;
  text-align: center;
  padding: 0.3125rem 0;
  border-bottom: 1px dashed #3a54a4;
}
.p-top-about__swiper {
  width: min(358px, 100%);
  min-height: 16.875rem;
  max-height: 18.75rem;
  position: relative;
  margin-top: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-top-about__swiper {
    margin-left: auto;
    margin-right: auto;
  }
}

.swiper2,
.swiper3,
.swiper4 {
  max-width: 21.5625rem;
  width: 100%;
}

.p-top-about .swiper-wrapper {
  width: 100%;
}

.p-top-about .swiper-slide {
  width: 10.3125rem;
}
@media screen and (max-width: 767px) {
  .p-top-about .swiper-slide {
    max-width: 10.3125rem;
    width: 100%;
  }
}

.p-top-about .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 165/160;
}

.p-top-about .swiper-pagination {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.p-top-about .swiper-button-prev,
.p-top-about .swiper-button-next {
  top: 93%;
  width: 2.5rem;
  height: 2.5rem;
  background-repeat: no-repeat;
  background-size: contain;
}

.p-top-about .swiper-button-prev {
  left: 20%;
  background-image: url(../images/common/prev-blue.png);
}

.p-top-about .swiper-button-next {
  right: 20%;
  background-image: url(../images/common/next-blue.png);
}

.p-top-about .swiper-pagination-bullet {
  width: 0.3125rem;
  height: 0.3125rem;
}

.swiper-button-prev::after,
.swiper-rtl .swiper-button-next::after {
  display: none;
}

.swiper-button-next::after,
.swiper-rtl .swiper-button-prev::after {
  display: none;
}

.p-top-business {
  position: relative;
  overflow: hidden;
}

.p-top-business__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: calc(50% - 50vw);
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
    gap: 1.6875rem;
  }
}

.p-top-business__body2 {
  width: 100%;
}

.p-top-business__title {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__title {
    margin-top: 1.5625rem;
  }
}

.p-top-business__catch {
  font-size: 0.875rem;
  line-height: 1.5714285714;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__catch {
    font-size: 1rem;
    margin-top: 0.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .p-top-business__box.u-desktop {
    display: none;
  }
}

.p-top-business__box {
  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;
  width: 12.5rem;
  height: 12.5rem;
  background: linear-gradient(135deg, rgba(240, 235, 76, .7), rgba(0, 255, 255, .7));
  margin-top: 3rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-business__box {
    width: auto;
    width: initial;
    height: auto;
    height: initial;
    margin-top: 0;
    margin-top: initial;
  }
}

.p-top-business__box::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: block;
  border-right: 2px solid #3a54a4;
  border-bottom: 2px solid #3a54a4;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  bottom: 1.5rem;
  right: 1.25rem;
}

@media screen and (max-width: 767px) {
  .p-top-business__item.p-top-business__box::before {
    width: 0.5rem;
    height: 0.5rem;
    display: block;
    border-right: 2px solid #3a54a4;
    border-bottom: 2px solid #3a54a4;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    position: absolute;
    bottom: 1.5rem;
    left: auto;
  }
}

.p-top-business__basic {
  font-size: 1rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 3.4375;
  letter-spacing: 0.06em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  text-align: center;
}
.p-top-business__basic::before {
  content: attr(data-en);
  font-size: 0.625rem;
  font-family: "Lato", sans-serif;
  line-height: 2;
  text-transform: uppercase;
}

.p-top-business__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-top-business__items {
    max-width: 31.25rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) and (max-width: 500px) {
  .p-top-business__items {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

.p-top-business__item {
  aspect-ratio: 200/320;
  max-height: 20rem;
  display: block;
  width: 20%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-top-business__item {
    aspect-ratio: 188/276;
    max-height: none;
    max-height: initial;
    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;
    border-bottom: 1px solid #fff;
  }
}

.p-top-business__item:not(:first-child) {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 767px) {
  .p-top-business__item:not(:first-child) {
    border-left: 0;
    border-left: initial;
  }
}

@media screen and (max-width: 767px) {
  .p-top-business__item:nth-child(even) {
    border-left: 1px solid #fff;
  }
}

.p-top-business__item.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-top-business__item.u-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.p-top-business__item::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  width: 11.875rem;
  height: 8.125rem;
  position: absolute;
  bottom: 0rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-business__item::before {
    width: 10.5rem;
    height: 7.375rem;
  }
}

.p-top-business__item--num1::before {
  background-image: url(../images/top/number1.png);
  width: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__item--num1::before {
    width: 9.5rem;
    height: 7.8125rem;
  }
}

.p-top-business__item--num2::before {
  background-image: url(../images/top/number2.png);
}

.p-top-business__item--num3::before {
  background-image: url(../images/top/number3.png);
}

.p-top-business__item--num4::before {
  background-image: url(../images/top/number4.png);
}

.p-top-business__item--num5::before {
  background-image: url(../images/top/number5.png);
}

.p-top-business__item:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-top-business__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}

.p-top-business__copy-wrap {
  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;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 2.75rem;
}

.p-top-business__copy {
  font-size: 1.25rem;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}

.p-top-business__copy-en {
  font-size: 0.75rem;
  color: #fff;
  font-family: "Lato", sans-serif;
  margin-top: auto;
  padding-bottom: 1.25rem;
}

.p-top-business__links {
  max-width: 57.6875rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-business__links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    margin-top: 1rem;
  }
}

.p-top-business__link-block {
  max-width: 27.9375rem;
  width: 100%;
}

.p-top-business__link:first-of-type {
  border-bottom: 1px dashed #3a54a4;
}

.p-top-filter-box__selected {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #3a54a4;
  border-bottom: 1px solid #3a54a4;
  padding: 1.875rem 0 1.875rem 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__selected {
    padding: 1.25rem 0 1.25rem 1.25rem;
  }
}

.p-top-filter-box__title {
  font-size: 1.25rem;
  color: #3a54a4;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__title {
    font-size: 1rem;
  }
}

.p-top-filter-box__tags {
  margin-left: 1.4375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
}

.p-top-filter-box__tag .c-tag {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #3a54a4;
  color: #fff;
  border: 1px solid #3a54a4;
}

.p-top-filter-box__tag-remove .c-tag {
  background-color: #fff;
  color: #3a54a4;
  border: 1px solid #3a54a4;
}

.p-top-filter-box__tag-remove input {
  display: none;
}

.p-top-filter-box {
  display: none;
  padding-top: 2.5rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box {
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.filterIn {
  -webkit-animation-name: filterInAnime;
          animation-name: filterInAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes filterInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes filterInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-top-filter-box__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
  margin-top: 3.125rem;
  padding-left: 1.875rem;
  padding-right: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    padding-left: 0;
    padding-left: initial;
    padding-right: 0;
    padding-right: initial;
  }
}

.p-top-filter-box__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-top-filter-box__item a:hover {
  opacity: 0.9;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="15" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(40,50,250,0.4)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0 15px rgba(40, 50, 250, .4));
          filter: drop-shadow(0 0 15px rgba(40, 50, 250, .4));
}

.p-top-filter-box__img {
  width: 100%;
}

.p-top-filter-box__img img {
  aspect-ratio: 340/170;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  width: 100%;
}

.p-top-filter-box__block {
  background-color: #6176b6;
  color: #fff;
  padding-top: 2.5rem;
  padding-bottom: 3.125rem;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 10.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__block {
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
    max-height: 9.375rem;
    height: 100%;
  }
}

.p-top-filter-box__block::after {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  display: inline-block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
}

.p-top-filter-box__card-tag {
  font-size: 0.875rem;
  line-height: 2.3571428571;
  letter-spacing: 0.06em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__card-tag {
    font-size: 0.75rem;
  }
}

.p-top-filter-box__text {
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.06em;
  font-weight: bold;
  margin-bottom: auto;
}
@media screen and (max-width: 767px) {
  .p-top-filter-box__text {
    font-size: 0.875rem;
    font-size: clamp(12px, 3.4666666667vw, 14px);
  }
}

.p-top-filter li {
  list-style-type: none;
  cursor: pointer;
}

.p-top-filter li:last-child {
  margin: 0;
}

.p-top-filter__check {
  display: none;
}

@media screen and (max-width: 767px) {
  .p-top-fv__wrap {
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.p-top-fv .swiper-slide {
  aspect-ratio: 781/500;
}
@media screen and (max-width: 767px) {
  .p-top-fv .swiper-slide {
    aspect-ratio: 355/560;
  }
}

.p-top-fv .swiper-slide img {
  aspect-ratio: 781/500;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-top-fv .swiper-slide img {
    aspect-ratio: 355/560;
  }
}

.p-top-fv .swiper-button-next,
.p-top-fv .swiper-button-prev {
  top: auto;
  bottom: 5%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 5.375rem;
  height: 5.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv .swiper-button-next,
  .p-top-fv .swiper-button-prev {
    width: 3.125rem;
    height: 3.125rem;
    bottom: 2%;
  }
}

.p-top-fv .swiper-button-prev {
  background-image: url(../images/top/swiper-btn-prev.svg);
  left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv .swiper-button-prev {
    left: 0.625rem;
  }
}

.p-top-fv .swiper-button-next {
  background-image: url(../images/top/swiper-btn-next.svg);
  right: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv .swiper-button-next {
    right: 0.625rem;
  }
}

.p-top-info {
  border-bottom: 1px solid #3a54a4;
  overflow-x: clip;
  position: relative;
}

.p-top-info__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__wrap {
    padding: 0;
    padding: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.p-top-info__search-box,
.p-top-info__news-box {
  position: relative;
  width: min(6.5625rem, 100%);
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top-info__search-box,
  .p-top-info__news-box {
    background-color: transparent;
    background-color: initial;
    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;
  }
}

.p-top-info__search-box.current .p-top-info__search,
.p-top-info__news-box.current .p-top-info__news {
  color: #fff;
  background-color: #3a54a4;
}

.p-top-info__search-box.current .p-top-info__search::before {
  background-image: url(../images/top/search_icon-white.png);
}

.p-top-info__news-box.current .p-top-info__news::before {
  background-image: url(../images/top/news_icon-white.png);
}

.p-top-info__search-box {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (max-width: 767px) {
  .p-top-info__search-box {
    width: 50%;
    margin-left: 0;
    margin-left: initial;
  }
}

.p-top-info__news-box {
  margin-left: 1.25rem;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-box {
    width: 50%;
    margin-left: 0;
    margin-left: initial;
  }
}

/* 三角形 */
.p-top-info__search::after,
.p-top-info__news::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.3125rem 0 0.3125rem 0.3125rem;
  border-color: transparent transparent transparent #3a54a4;
  position: absolute;
  top: 50%;
  right: -0.3125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-info__search::after,
  .p-top-info__news::after {
    display: none;
  }
}

.p-top-info__search,
.p-top-info__news {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 2.2857142857;
  letter-spacing: 0.06em;
  color: #3a54a4;
  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;
  position: relative;
  border-left: 1px solid #3a54a4;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-info__search,
  .p-top-info__news {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border: none;
    max-width: 10.5rem;
    width: 100%;
    padding: 0.3125rem 1rem;
  }
}
.p-top-info__search:hover,
.p-top-info__news:hover {
  opacity: 0.7;
}

.p-top-info__search::before,
.p-top-info__news::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-top-info__search::before,
  .p-top-info__news::before {
    margin-right: 0.625rem;
  }
}

.p-top-info__search::before {
  background-image: url(../images/top/search_icon.png);
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__search::before {
    width: 1.625rem;
    height: 1.625rem;
  }
}

.p-top-info__news::before {
  content: "";
  background-image: url(../images/top/news_icon.png);
  width: 1.875rem;
  height: 1.875rem;
}

.p-top-info__tags {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: min(57.25rem, 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  margin-left: 1.875rem;
  padding-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__tags {
    margin-left: 0;
    margin-left: initial;
    padding-top: 0;
    padding-top: initial;
    padding-bottom: 1.875rem;
  }
}

.p-top-info__news-content {
  width: 83cqw;
  padding-bottom: 0.9375rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-content {
    width: auto;
  }
}

.p-top-info__news-list {
  max-width: 72.5rem;
  width: 100%;
  position: absolute;
  top: 0.9375rem;
  left: 50%;
  background-color: #fff;
  padding-bottom: 0.625rem;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
  -webkit-transform: translateX(120%);
          transform: translateX(120%);
  -webkit-transition: all 1s;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-list {
    position: static;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
    padding-bottom: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-top-info__news-list .p-top-info__news-box {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.p-top-info__news-list.u-desktop {
  border-left: 1px solid #3a54a4;
  border-bottom: 1px solid #3a54a4;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-list.u-desktop {
    display: none;
  }
}

.p-top-info__news-list.u-desktop .p-top-info__news {
  border-left: none;
}

.p-top-info__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 1.25rem;
  padding-bottom: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.p-top-info__block p {
  text-decoration: none;
}

.p-top-info__news-list.u-desktop.open {
  -webkit-transform: translateX(-41%);
          transform: translateX(-41%);
  opacity: 1;
  container-type: inline-size;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-list.u-desktop.open {
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-top-info__date {
  font-size: 0.9375rem;
  color: #3a54a4;
  font-family: "Lato", sans-serif;
  line-height: 1.3333333333;
  letter-spacing: 0.06em;
  font-weight: bold;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-top-info__date {
    margin-left: 0;
    margin-left: initial;
  }
}

.p-top-info__news-title {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-left: 1.875rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-top-info__news-title {
    margin-left: 0;
    margin-left: initial;
  }
}

.p-top-info__more {
  font-size: 0.875rem;
  font-weight: bold;
  color: #3a54a4;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
  font-family: "Lato", sans-serif;
  text-transform: uppercase;
  margin-left: 8.25rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  display: inline-block;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .p-top-info__more {
    margin-left: auto;
    margin-top: 2cqw;
    text-underline-offset: 0.3125rem;
  }
}

.p-top-info__news-box.news-box {
  background-color: transparent;
  background-color: initial;
}

.p-top-info__tab {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-top-info__tab {
    max-width: 31.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-info__tab-list {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-top-info__tab-list {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 767px) {
  .p-top-info__tab-list::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #3a54a4;
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
  }
}

.p-top-info__tab-list.disappear::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: transparent;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
}

.p-top-info__tab-group {
  display: contents;
}
.p-top-info__tab-box {
  display: contents;
}
@media screen and (max-width: 767px) {
  .p-top-info__tab-box {
    display: none;
  }
}

.p-top-recruit__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__wrap {
    max-width: 31.25rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-top-recruit__catch {
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__catch {
    font-size: 1rem;
  }
}

.p-top-recruit__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 0rem;
  -webkit-column-gap: 1.875rem;
     -moz-column-gap: 1.875rem;
          column-gap: 1.875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 47.5rem;
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-recruit__links {
    margin-top: 1.5625rem;
  }
}
/*# sourceMappingURL=top.css.map */
