@charset "UTF-8";
/* aタグ設定
------------------------------------- */
@media (any-hover: hover) {
  a:hover, button:hover {
    filter: brightness(0.9);
  }
}

a, button {
  transition-property: all;
  transition-duration: 0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  text-decoration: none;
  color: currentColor;
}

/* 基本設定
------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  font-family: "Murecho", sans-serif;
  color: #222;
  background-color: #0093E7;
  line-height: 1.5;
}
body.on {
  overflow: hidden;
}

.font-en {
  font-family: "Alexandria", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* デフォルトの三角形アイコンを非表示にする */
summary {
  display: block;
  list-style: none;
}

summary::-webkit-details-marker,
summary::marker {
  display: none;
}

/* レスポンシブ設定
------------------------------------- */
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.indention {
  display: inline-block;
}

.header {
  position: relative;
  z-index: 101;
}
.header__logo {
  width: 545px;
  position: absolute;
  top: 23px;
  left: 46px;
  display: block;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 214px;
    max-width: 100%;
    top: 10px;
    left: 20px;
  }
}
.header__right {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  z-index: 10;
}
.header__entry {
  width: 160px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  padding: 5px;
  color: #0093E7;
}
.header__entry.--green {
  background-color: #C1EA4E;
}
.header__entry.--yellow {
  background-color: #FED117;
}
.header__btn-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 82px;
  height: 80px;
  padding: 5px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .header__btn-menu {
    width: 56px;
    height: 57px;
  }
}
.header__btn-menu.open .--line::before {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(15deg);
}
.header__btn-menu.open .--line::after {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
}
.header__btn-menu .--line {
  width: 40px;
  height: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header__btn-menu .--line {
    width: 30px;
    height: 13px;
  }
}
.header__btn-menu .--line::before {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #0093E7;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .header__btn-menu .--line::before {
    width: 30px;
  }
}
.header__btn-menu .--line::after {
  content: "";
  width: 40px;
  height: 2px;
  background-color: #0093E7;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .header__btn-menu .--line::after {
    width: 30px;
  }
}
.header__btn-menu .--text {
  display: block;
  margin-top: 5px;
  color: #0093E7;
  font-weight: bold;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .header__btn-menu .--text {
    font-size: 1.2rem;
  }
}
.header__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 402px;
  background-color: #0093E7;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  display: none;
}
@media screen and (max-width: 768px) {
  .header__menu {
    width: 100%;
    box-shadow: none;
  }
}
.header__menu-inner {
  height: 100vh;
  height: 100dvh;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .header__menu-inner {
    padding: 0;
  }
}
.header__menu-inner > div {
  overflow: auto;
  padding: 40px 15px 40px;
  height: 100%;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 768px) {
  .header__menu-inner > div {
    padding: 60px 15px 60px;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .header__menu-logo {
    display: block;
    max-width: 214px;
    position: absolute;
    top: 10px;
    left: 20px;
  }
}
.header__menu-list {
  width: 100%;
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  .header__menu-list {
    margin-top: 70px;
  }
}
.header__menu-list li:not(:first-of-type) {
  margin-top: 22px;
}
.header__menu-list li a {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
}
.header__menu-list li a span {
  display: block;
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.header__menu-btn {
  display: flex;
  align-items: center;
  align-items: center;
  text-align: left;
  width: 100%;
  margin-top: 15px;
  padding: 18px 70px 18px 32px;
  background-color: #fff;
  border-radius: 60px;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
@media (any-hover: hover) {
  .header__menu-btn:hover {
    filter: none;
  }
  .header__menu-btn:hover::after {
    transform: translateY(-50%) scale(1.2);
  }
}
.header__menu-btn::after {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("/recruit/assets/images/icon-arrow-toright.png");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.header__menu-btn:first-of-type {
  margin-top: 49px;
}

@media screen and (max-width: 768px) {
  .fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bottom > div {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bottom__entry {
    width: 50%;
    min-height: 54px;
    font-size: 1.6rem;
    color: #0093E7;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bottom__entry.--green {
    background-color: #C1EA4E;
  }
}
@media screen and (max-width: 768px) {
  .fixed-bottom__entry.--yellow {
    background-color: #FED117;
  }
}

@media (any-hover: hover) {
  .text-link:hover .text-link__text::before {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.text-link__text {
  position: relative;
}
.text-link__text::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.3s;
}

@media screen and (max-width: 768px) {
  .footer {
    padding-bottom: 54px;
    background-color: #fff;
  }
}
.footer__top {
  padding: 34px 31px;
  background-color: #F9F8F7;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer__logo {
  display: block;
  max-width: min(41.4vw, 414px);
}
.footer__nav {
  display: flex;
  align-items: center;
}
.footer__list {
  display: flex;
  align-items: center;
  gap: 27px;
}
.footer__list a {
  font-weight: 600;
  padding: 10px 0;
  font-size: min(1.6vw, 1.6rem);
}
.footer__btn {
  padding: 2px min(4vw, 45px) 2px min(1vw, 15px);
  display: flex;
  align-items: center;
  width: min(18.8vw, 188px);
  min-height: 32px;
  background-color: #fff;
  border: 1px solid #0093E7;
  border-radius: 50px;
  position: relative;
  font-size: min(1.4vw, 1.4rem);
  font-weight: bold;
  margin-left: 12px;
}
.footer__btn:first-of-type {
  margin-left: 55px;
}
.footer__btn::after {
  content: "";
  width: min(2vw, 20px);
  height: min(2.2vw, 22px);
  background-image: url("/recruit/assets/images/icon-arrow-toright.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: min(1.5vw, 15px);
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.footer__copyright {
  padding: 10px;
  background-color: #0B191F;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .footer__copyright {
    padding: 0;
    background-color: transparent;
  }
}
.footer__copyright-text {
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 1000px) {
  .footer__copyright-text {
    padding: 10px;
    background-color: #0B191F;
  }
}
.footer__btn-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: bold;
  padding-left: 30px;
  width: 180px;
  min-height: 100%;
  background-color: #F5F5F5;
  color: #0B191F;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  clip-path: polygon(36px 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 1000px) {
  .footer__btn-top {
    position: static;
    margin-left: auto;
    gap: 0;
    padding: 8px 5px 8px 25px;
    width: 180px;
    min-height: 29px;
  }
}
.footer__btn-top img {
  width: 24px;
}

.btn {
  display: flex;
  align-items: center;
  width: 337px;
  min-height: 64px;
  border-radius: 50px;
  padding: 10px 68px 10px 30px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: 600;
  background-color: #fff;
  border: 2px solid #0093E7;
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
@media (any-hover: hover) {
  .btn:hover {
    filter: none;
  }
  .btn:hover::after {
    transform: translateY(-50%) scale(1.3);
  }
}
.btn::after {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url("/recruit/assets/images/icon-arrow-toright.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.2s ease-out;
}

.section-title {
  width: -moz-fit-content;
  width: fit-content;
  color: #0093E7;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.section-title.--white {
  color: #fff;
}
.section-title.--cols {
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .section-title.--cols {
    display: block;
  }
}
.section-title span {
  display: block;
  font-size: 9rem;
  line-height: 1;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-title span {
    font-size: 5rem;
    margin-bottom: 10px;
  }
}

.entry {
  padding: 120px 0 70px;
  background-image: linear-gradient(to bottom, transparent 0, transparent 387px, #fff 387px, #fff 100%);
}
@media screen and (max-width: 768px) {
  .entry {
    margin-top: 80px;
    padding: 0;
    background-color: #fff;
  }
}
.entry__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .entry__inner {
    max-width: 100%;
    padding: 0;
  }
}
.entry__top {
  background-color: #EDF7FC;
  box-shadow: 0 0 64px rgba(26, 2, 2, 0.1);
  padding: 60px 20px;
}
@media screen and (max-width: 768px) {
  .entry__top {
    padding: 50px 20px;
    box-shadow: none;
  }
}
.entry__top > div {
  max-width: 957px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 79px;
}
@media screen and (max-width: 1000px) {
  .entry__top > div {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .entry__top > div {
    max-width: 100%;
    display: block;
  }
}
.entry__title {
  flex: 0 0 auto;
}
@media screen and (max-width: 1000px) {
  .entry__title {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .entry__title {
    text-align: left;
  }
}
.entry__top-body {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .entry__top-body {
    margin-top: 30px;
  }
}
.entry__btn {
  display: block;
  padding: 34px 86px 34px 30px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  background-color: #fff;
  border: 1px solid #0093E7;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .entry__btn {
    padding: 25px 75px 25px 30px;
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .entry__btn:hover {
    filter: none;
  }
  .entry__btn:hover img {
    transform: translateY(-50%) scale(1.2);
  }
}
.entry__btn:not(:first-of-type) {
  margin-top: 18px;
}
.entry__btn img {
  width: 47px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (max-width: 768px) {
  .entry__btn img {
    width: 35px;
  }
}
.entry__bottom {
  margin: 70px auto 0;
  max-width: 1025px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .entry__bottom {
    padding: 40px 20px 50px;
    margin: 0;
    max-width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}
.entry__bottom-btn {
  width: 501px;
}
@media screen and (max-width: 768px) {
  .entry__bottom-btn {
    width: 280px;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}
.modal__inner {
  width: 100%;
  height: 100vh;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
}
.modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: -1;
}
.modal__body {
  width: 100%;
  max-width: 1000px;
  max-height: calc(100vh - 120px);
  max-height: calc(100dvh - 120px);
  position: relative;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .modal__body {
    max-width: 100%;
  }
}
.modal__body video, .modal__body iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.modal__close {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 5px;
  width: 50px;
  margin-left: auto;
}

.page-top {
  overflow: hidden;
}
.page-top .mv {
  position: relative;
  padding-top: 90px;
}
@media screen and (max-width: 768px) {
  .page-top .mv {
    padding-top: 15.1595744681vw;
  }
}
.page-top .mv.on .mv__copy {
  opacity: 1;
  transform: inherit;
}
.page-top .mv.on .mv__pict > div {
  transform: inherit;
}
.page-top .mv.on .mv__pict > div img {
  transform: inherit;
}
.page-top .mv__pict {
  width: 100%;
  height: 46.1805555556vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict {
    height: 138.2978723404vw;
  }
}
.page-top .mv__pict > div {
  position: absolute;
  top: 0;
  left: -32px;
  display: flex;
  align-items: flex-start;
  gap: 1.3888888889vw;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div {
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
}
.page-top .mv__pict > div img {
  width: 25.1388888889vw;
  will-change: transform;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div img {
    position: absolute;
    width: 39.3617021277vw;
  }
}
.page-top .mv__pict > div img:first-of-type {
  transform: translate(-120vw, 40%);
  margin-top: 0;
  transition: transform 0.6s 0.8s;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div img:first-of-type {
    transform: translate(-100vw, 40%);
    top: 9.2485549133%;
    transition: transform 0.5s 0.75s;
    left: 5.3191489362%;
  }
}
.page-top .mv__pict > div img:nth-of-type(2) {
  transform: translate(-120vw, 40%);
  margin-top: 2.0833333333vw;
  transition: transform 0.65s 0.85s;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div img:nth-of-type(2) {
    transform: translate(-100vw, 40%);
    margin-top: 0;
    top: 0;
    left: 44.1489361702%;
    transition: transform 0.5s 0.8s;
  }
}
.page-top .mv__pict > div img:nth-of-type(3) {
  transform: translate(-120vw, 40%);
  margin-top: 4.1666666667vw;
  transition: transform 0.7s 0.9s;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div img:nth-of-type(3) {
    transform: translate(-100vw, 40%);
    margin-top: 0;
    top: 43.9306358382%;
    left: 17.5531914894%;
    transition: transform 0.5s 0.85s;
  }
}
.page-top .mv__pict > div img:nth-of-type(4) {
  transform: translate(-120vw, 40%);
  margin-top: 6.25vw;
  transition: transform 0.75s 0.95s;
}
@media screen and (max-width: 768px) {
  .page-top .mv__pict > div img:nth-of-type(4) {
    transform: translate(-100vw, 40%);
    margin-top: 0;
    top: 35.0674373796%;
    left: 56.3829787234%;
    transition: transform 0.5s 0.9s;
  }
}
.page-top .mv__copy {
  width: 54.5833333333vw;
  position: absolute;
  bottom: 3.75vw;
  left: 8.3333333333vw;
  transition: opacity 0.75s, transform 0.75s;
  transform: translateX(-50%);
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .page-top .mv__copy {
    transition: opacity 0.7s, transform 0.7s;
    transform: translateX(-30%);
    width: 89.3617021277vw;
    bottom: 0;
    left: 5.3191489362%;
  }
}
.page-top .about {
  padding: 93px 0 126px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .about {
    padding: 160px 0 70px;
  }
}
.page-top .about__bg {
  max-width: 100%;
  width: 674px;
  position: absolute;
  right: 0;
  top: 61px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-top .about__bg {
    width: 337px;
    top: 94px;
  }
}
.page-top .about__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-top .about__inner {
    max-width: 100%;
    padding: 0 17px;
  }
}
.page-top .about__top {
  padding-left: min(5.5555555556vw, 80px);
  font-size: min(5.5555555556vw, 8.5rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  letter-spacing: 6px;
}
@media screen and (max-width: 1000px) {
  .page-top .about__top {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .page-top .about__top {
    font-size: min(8vw, 3.2rem);
    padding-left: 0;
    letter-spacing: 3px;
  }
}
.page-top .about__top > span {
  display: block;
}
.page-top .about__top > span:nth-of-type(2) {
  padding-left: min(7.6388888889vw, 110px);
  margin-top: 21px;
}
@media screen and (max-width: 768px) {
  .page-top .about__top > span:nth-of-type(2) {
    padding-left: 0;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .page-top .about__top > span > span {
    display: block;
    margin-top: 16px;
  }
}
.page-top .about__body {
  max-width: 805px;
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  .page-top .about__body {
    max-width: 100%;
    margin-top: 40px;
  }
}
.page-top .about__desc {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-top .about__desc {
    font-size: 1.6rem;
    line-height: 1.75;
  }
}
.page-top .about__btn {
  margin-top: 47px;
}
@media screen and (max-width: 768px) {
  .page-top .about__btn {
    margin-top: 40px;
  }
}
.page-top .bg-area {
  width: 100%;
}
.page-top .company {
  padding: 96px 0 260px;
  background-image: url("/recruit/assets/images/top/bg-company.webp");
  background-size: 82px 82px;
  background-repeat: repeat;
  background-position: center -35px;
}
@media screen and (max-width: 768px) {
  .page-top .company {
    padding: 70px 0 126px;
  }
}
.page-top .company__inner {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-top .company__inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
.page-top .company__top {
  margin-top: 61px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .page-top .company__top {
    margin-top: 40px;
    margin-bottom: 108px;
    display: block;
  }
}
.page-top .company__top-img {
  width: 553px;
  flex: 0 1 auto;
}
@media screen and (max-width: 768px) {
  .page-top .company__top-img {
    width: 100%;
  }
}
.page-top .company__top-body {
  width: 598px;
  flex: 0 1 auto;
}
@media screen and (max-width: 768px) {
  .page-top .company__top-body {
    width: 100%;
    margin-top: 30px;
  }
}
.page-top .company__top-body p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-top .company__top-body p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.page-top .company__top-btn {
  margin-top: 30px;
}
.page-top .company__item {
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .page-top .company__item {
    margin-top: 30px;
  }
}
.page-top .company__item > a {
  display: block;
  padding: 50px 40px;
  background-color: #EDF7FC;
  border-radius: 12px;
  display: flex;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .page-top .company__item > a {
    padding: 30px 20px;
    display: block;
  }
}
.page-top .company__item-img {
  width: 334px;
}
@media screen and (max-width: 768px) {
  .page-top .company__item-img {
    width: 100%;
    margin-bottom: 30px;
  }
}
.page-top .company__item-title {
  font-size: 3.2rem;
  color: #0093E7;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 38px;
  line-height: 1.3;
  letter-spacing: 3px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .company__item-title {
    font-size: 2.2rem;
  }
}
.page-top .company__item-title::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("/recruit/assets/images/icon-arrow.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.page-top .company__item-title .--small {
  font-size: 2.1rem;
}
@media screen and (max-width: 768px) {
  .page-top .company__item-title .--small {
    font-size: 1.6rem;
  }
}
.page-top .company__item-desc {
  margin-top: 16px;
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-top .company__item-desc {
    font-size: 1.6rem;
  }
}
.page-top .message {
  padding-top: 116px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .message {
    padding-top: 70px;
  }
}
.page-top .message::after {
  content: "";
  width: 105vw;
  height: 160px;
  background-color: #0093E7;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 768px) {
  .page-top .message::after {
    height: 56px;
  }
}
.page-top .message__inner {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-top .message__inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
.page-top .message__top {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .page-top .message__top {
    display: block;
  }
}
.page-top .message__top-body {
  width: 504px;
}
@media screen and (max-width: 768px) {
  .page-top .message__top-body {
    width: 100%;
  }
}
.page-top .message__top-desc {
  margin: 30px 0;
  font-size: 2rem;
  line-height: 2;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-top .message__top-desc {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.page-top .message__top-img {
  width: 616px;
}
@media screen and (max-width: 768px) {
  .page-top .message__top-img {
    width: 100%;
    margin-top: 40px;
  }
}
.page-top .message__movie {
  margin-top: 53px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .page-top .message__movie {
    margin-top: 69px;
    flex-direction: column;
    gap: 36px;
  }
}
.page-top .message__movie-item {
  display: block;
  width: 373px;
  aspect-ratio: 373/226;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .message__movie-item {
    width: 100%;
    aspect-ratio: 336/203;
  }
}
.page-top .message__movie-item .--thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-top .message__movie-item .--icon {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-top .job {
  padding: 153px 0 216px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .job {
    padding: 69px 0 70px;
  }
}
.page-top .job::after {
  content: "";
  width: 105vw;
  height: 160px;
  background-color: #0093E7;
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(0 0, 0 100%, 100% 0);
}
@media screen and (max-width: 768px) {
  .page-top .job::after {
    height: 56px;
  }
}
.page-top .job__inner {
  max-width: 1242px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-top .job__inner {
    max-width: 100%;
    padding: 0 16px;
  }
}
.page-top .job__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page-top .job__top {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .page-top .job__top-btn {
    margin-top: 72px;
  }
}
.page-top .job__list {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .page-top .job__list {
    gap: 16px;
    margin-top: 47px;
    padding: 0 5px;
  }
}
.page-top .job__list.--rev {
  margin-top: 160px;
  justify-content: flex-end;
  padding-right: 0;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  .page-top .job__list.--rev {
    margin-top: 48px;
    padding-left: 0;
  }
}
.page-top .job__list.--rev::before {
  bottom: -97px;
  right: auto;
  left: 0;
}
@media screen and (max-width: 768px) {
  .page-top .job__list.--rev::before {
    bottom: -18px;
    left: 50%;
  }
}
.page-top .job__list::before {
  content: "";
  width: 105vw;
  height: 310px;
  background-color: #EDF7FC;
  position: absolute;
  bottom: -60px;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .page-top .job__list::before {
    height: 163px;
    bottom: -18px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.page-top .job__link {
  display: block;
  max-width: 480px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .page-top .job__link {
    max-width: calc(50% - 8px);
    border-radius: 3px;
  }
}
@media (any-hover: hover) {
  .page-top .job__link:hover {
    filter: none;
  }
  .page-top .job__link:hover .job__link-body::after {
    transform: translateY(-50%) scale(1.3);
  }
}
.page-top .job__link-body {
  padding: 30px 60px 30px 30px;
  background-color: #fff;
  font-size: 3.2rem;
  color: #0093E7;
  line-height: 1.3;
  letter-spacing: 3px;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .job__link-body {
    padding: 10px 40px 10px 10px;
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
}
.page-top .job__link-body::after {
  content: "";
  width: 22px;
  height: 22px;
  background-image: url("/recruit/assets/images/icon-arrow.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: transform 0.2s;
}
@media screen and (max-width: 768px) {
  .page-top .job__link-body::after {
    width: 14px;
    height: 15px;
    right: 10px;
  }
}
.page-top .info {
  background-color: #F6F6F6;
  padding: 212px 0 167px;
}
@media screen and (max-width: 768px) {
  .page-top .info {
    padding: 119px 0 125px;
  }
}
.page-top .info__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-top .info__inner {
    max-width: 100%;
  }
}
.page-top .info__title {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-top .info__title {
    margin: 0;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .page-top .info__title span {
    font-size: min(14.2857142857vw, 5rem);
  }
}
.page-top .info__desc {
  margin-top: 43px;
  font-size: 2rem;
  font-weight: 600;
  color: #0093E7;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .page-top .info__desc {
    text-align: left;
    font-size: 1.6rem;
  }
}
.page-top .info__list {
  margin-top: 43px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .page-top .info__list {
    margin-top: 50px;
    gap: 20px;
  }
}
.page-top .info__list li {
  width: calc(33.3333333333% - 16px);
  border-radius: 8px;
  border: 1px solid #F6F6F6;
  background-color: #fff;
  padding: 35px 10px;
}
@media screen and (max-width: 768px) {
  .page-top .info__list li {
    width: 100%;
    padding: 16px 22px;
  }
}
.page-top .info__list li h3 {
  font-size: 2.8rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 1000px) {
  .page-top .info__list li h3 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .page-top .info__list li h3 {
    font-size: 2.4rem;
  }
}
.page-top .info__list li img {
  display: block;
  max-width: 335px;
  margin: 28px auto 0;
}
@media screen and (max-width: 768px) {
  .page-top .info__list li img {
    max-width: 100%;
    margin-top: 0;
  }
}
.page-top .faq {
  padding: 117px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-top .faq {
    padding: 70px 0 0;
  }
}
.page-top .faq::after {
  content: "";
  width: 105vw;
  height: 160px;
  background-color: #0093E7;
  position: absolute;
  bottom: calc(100% - 1px);
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
@media screen and (max-width: 768px) {
  .page-top .faq::after {
    height: 56px;
  }
}
.page-top .faq__inner {
  max-width: 1178px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 46px;
}
@media screen and (max-width: 768px) {
  .page-top .faq__inner {
    max-width: 100%;
    display: block;
  }
}
.page-top .faq__title {
  flex: 0 0 auto;
}
.page-top .faq__body {
  width: 100%;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .page-top .faq__body {
    margin-top: 50px;
  }
}
.page-top .faq__q {
  display: block;
  width: 100%;
  text-align: left;
  padding: 23px 56px 23px 62px;
  position: relative;
  border-top: 1px solid #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .page-top .faq__q {
    padding: 15px 50px 15px 56px;
  }
}
.page-top .faq__q:last-of-type {
  border-bottom: 1px solid #fff;
}
.page-top .faq__q.open .--icon {
  transform: translateY(-50%) rotate(90deg);
}
.page-top .faq__q.open .--icon::before {
  opacity: 0;
}
.page-top .faq__q::after {
  content: "Q.";
  position: absolute;
  top: 2rem;
  left: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-top .faq__q::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
.page-top .faq__q .--icon {
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.page-top .faq__q .--icon::before, .page-top .faq__q .--icon::after {
  content: "";
  background-color: #006FBC;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s, opacity 0.3s;
}
.page-top .faq__q .--icon::before {
  width: 10px;
  height: 2px;
}
.page-top .faq__q .--icon::after {
  width: 2px;
  height: 10px;
}
.page-top .faq__a {
  padding: 20px 20px 20px 62px;
  border-top: 1px solid #fff;
  background-color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
  line-height: 1.6;
  position: relative;
  display: none;
}
@media screen and (max-width: 768px) {
  .page-top .faq__a {
    padding: 14px 20px 14px 56px;
  }
}
.page-top .faq__a:last-of-type {
  border-top: none;
}
.page-top .faq__a::after {
  content: "A.";
  position: absolute;
  top: 1.625rem;
  left: 20px;
  font-size: 2.2rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-top .faq__a::after {
    top: 0.875rem;
  }
}

.page-low .page-low-body {
  padding: 234px 0 0;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body {
    padding-top: 100px;
  }
}
.page-low .page-low-body__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__inner {
    max-width: 100%;
  }
}
.page-low .page-low-body__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 67px;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__top {
    display: block;
  }
}
.page-low .page-low-body__title {
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4333333333;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__title {
    font-size: 1.8rem;
  }
}
.page-low .page-low-body__title span {
  display: block;
  margin-bottom: 10px;
  font-size: 9rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__title span {
    font-size: 4rem;
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__breadcrumbs {
    margin-top: 67px;
  }
}
.page-low .page-low-body__contents {
  margin-top: 76px;
  padding: 120px 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .page-low .page-low-body__contents {
    margin-top: 16px;
    padding: 50px 15px;
  }
}
.page-low .page-low-body__contents > div {
  max-width: 1024px;
  margin: 0 auto;
}
.page-low .breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 0;
}
.page-low .breadcrumbs__item:not(:first-of-type) {
  font-size: 1.6rem;
  padding-left: 2em;
  position: relative;
}
.page-low .breadcrumbs__item:not(:first-of-type)::after {
  content: " ＞ ";
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  position: absolute;
  top: 0;
  left: 0.5em;
}
@media screen and (max-width: 768px) {
  .page-low .breadcrumbs__item:not(:first-of-type)::after {
    font-weight: 500;
  }
}
.page-low .breadcrumbs__text {
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page-low .breadcrumbs__text {
    font-weight: 500;
  }
}
.page-low .top-nav__list {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-low .top-nav__list {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.page-low .top-nav__list.--col03 li {
  width: calc(33.3333333333% - 13.3333333333px);
}
@media screen and (max-width: 768px) {
  .page-low .top-nav__list.--col03 li {
    width: 100%;
  }
}
.page-low .top-nav__list.--col04 li {
  width: calc(25% - 13.3333333333px);
}
@media screen and (max-width: 768px) {
  .page-low .top-nav__list.--col04 li {
    width: 100%;
  }
}
.page-low .top-nav__list li a {
  display: block;
  background-color: #EDF7FC;
  border-radius: 6px;
  padding: 14px 12px 42px 12px;
  font-size: min(1.8vw, 1.8rem);
  font-weight: bold;
  text-align: center;
  color: #0093E7;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-low .top-nav__list li a {
    padding: 12px 44px 13px 12px;
    font-size: min(5vw, 1.8rem);
  }
}
.page-low .top-nav__list li a::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("/recruit/assets/images/icon-arrow.png");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
}
@media screen and (max-width: 768px) {
  .page-low .top-nav__list li a::after {
    right: 14px;
    left: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
  }
}
.page-low .low-title02 {
  padding-left: 61px;
  font-size: 4rem;
  font-weight: 600;
  position: relative;
  margin: 80px 0 60px;
}
@media screen and (max-width: 768px) {
  .page-low .low-title02 {
    font-size: 2.4rem;
    margin: 100px 0 40px;
    padding-left: 41px;
  }
}
.page-low .low-title02:first-of-type {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .page-low .low-title02:first-of-type {
    margin-top: 60px;
  }
}
.page-low .low-title02::after {
  content: "";
  width: 50px;
  height: 50px;
  background-image: url("/recruit/assets/images/deco-title.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .page-low .low-title02::after {
    width: 30px;
    height: 30px;
  }
}
.page-low .low-title02.mt0 {
  margin-top: 0;
}
.page-low .low-title02 + .low-title03 {
  margin-top: 40px;
}
.page-low .low-title03 {
  padding-top: 17px;
  font-size: 2.4rem;
  font-weight: 600;
  position: relative;
  margin: 60px 0 24px;
}
@media screen and (max-width: 768px) {
  .page-low .low-title03 {
    margin: 80px 0 20px;
    font-size: 1.8rem;
  }
}
.page-low .low-title03::after {
  content: "";
  width: 75px;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(to right, #006FBC 0 50%, #FFF100 50% 100%);
}
.page-low p {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}

.page-company .about-prof {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .page-company .about-prof {
    display: block;
  }
}
.page-company .about-prof > div:first-of-type {
  max-width: 705px;
}
@media screen and (max-width: 768px) {
  .page-company .about-prof > div:first-of-type {
    max-width: 100%;
  }
}
.page-company .about-prof > div:first-of-type p {
  line-height: 2;
  font-weight: 500;
}
.page-company .about-prof > div:nth-of-type(2) {
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .page-company .about-prof > div:nth-of-type(2) {
    margin-top: 38px;
  }
}
.page-company .about-prof__img {
  width: 281px;
}
@media screen and (max-width: 768px) {
  .page-company .about-prof__img {
    width: 224px;
    margin: 0 auto;
  }
}
.page-company .about-prof__name {
  margin-top: 10px;
  display: block;
  line-height: 1.5;
  font-size: 2.6rem;
  font-weight: 500;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .page-company .about-prof__name {
    text-align: center;
  }
}
.page-company .about-prof__name .--small {
  font-size: 2rem;
}
.page-company .low-video {
  margin-top: 50px;
  max-width: 636px;
  aspect-ratio: 636/373;
  position: relative;
}
@media screen and (max-width: 768px) {
  .page-company .low-video {
    margin-top: 40px;
    aspect-ratio: 306/179;
    max-width: 100%;
  }
}
.page-company .low-video .--thumbnail {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-company .low-video .--icon {
  width: 10%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.page-company .company-area01 {
  background-color: #EDF7FC;
  padding: 40px;
  margin-top: 56px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 {
    padding: 40px 20px;
    margin-top: 36px;
  }
}
.page-company .company-area01 h3 {
  padding: 6px;
  font-size: 2.4rem;
  background-color: #007EC5;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 h3 {
    font-size: 2rem;
  }
}
.page-company .company-area01 h3 + p {
  margin-top: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 h3 + p {
    font-size: 1.8rem;
  }
}
.page-company .company-area01 ul {
  margin-top: 30px;
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 ul {
    flex-wrap: wrap;
    gap: 12px;
  }
}
.page-company .company-area01 ul.--col04 li {
  width: calc(205% - 17.25px);
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 ul.--col04 li {
    width: 100%;
  }
}
.page-company .company-area01 ul li {
  width: calc(20% - 18.4px);
  padding: 14px 10px;
  background-color: #fff;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 ul li {
    width: 100%;
    padding: 16px 10px;
  }
}
.page-company .company-area01 ul li img {
  display: block;
  max-width: 101px;
  margin: 0 auto 13px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area01 ul li img {
    margin-bottom: 4px;
  }
}
.page-company .company-area01 ul li .--small {
  display: block;
  font-size: 1.1rem;
}
.page-company .company-area02 {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area02 {
    margin-top: 40px;
    flex-direction: column;
  }
}
.page-company .company-area02 > img {
  width: 334px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area02 > img {
    width: 100%;
  }
}
.page-company .company-area02 > div {
  width: 650px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area02 > div {
    width: 100%;
  }
}
.page-company .company-area02 > div p:first-of-type {
  font-size: 1.9rem;
  margin-bottom: 14px;
  font-weight: 600;
}
.page-company .company-area03 {
  padding: 50px 50px;
  background-color: #EDF7FC;
}
@media screen and (max-width: 768px) {
  .page-company .company-area03 {
    padding: 40px 16px;
  }
}
.page-company .company-area03 p {
  font-weight: 600;
  font-size: 3rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-company .company-area03 p {
    font-size: 1.8rem;
  }
}
.page-company .company-area03 p .--blue {
  color: #006FBC;
}
.page-company .company-area03 p:not(:first-of-type) {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area03 p:not(:first-of-type) {
    margin-top: 24px;
  }
}
.page-company .company-area04 {
  margin-top: 40px;
}
.page-company .company-area04 dt {
  font-size: 2.4rem;
  font-weight: 600;
  color: #006FBC;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-company .company-area04 dt {
    font-size: 2.2rem;
  }
}
.page-company .company-area04 dt:not(:first-of-type) {
  margin-top: 40px;
}
.page-company .company-area04 dd {
  margin-top: 16px;
}
.page-company .company-area05 {
  padding: 30px;
  background-color: #EDF7FC;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-company .company-area05 {
    padding: 30px 10px;
  }
}
.page-company .company-area05 p {
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-company .company-area05 p {
    font-size: 1.8rem;
  }
}
.page-company .company-area05 p .--large {
  font-size: 4.6rem;
  color: #006FBC;
}
@media screen and (max-width: 768px) {
  .page-company .company-area05 p .--large {
    font-size: 1.8rem;
  }
}
.page-company .company-area06 {
  margin-top: 40px;
}
.page-company .company-area06 dt {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 165px;
  background-color: #006FBC;
  color: #fff;
  font-size: 2.8rem;
  padding-bottom: 1px;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-company .company-area06 dt {
    font-size: 2rem;
  }
}
.page-company .company-area06 dt:not(:first-of-type) {
  margin-top: 40px;
}
.page-company .company-area06 dd {
  margin-top: 10px;
}
.page-company .company-area06 dd p:first-of-type {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 600;
  color: #006FBC;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area06 dd p:first-of-type {
    font-size: 2rem;
  }
}
.page-company .company-area07 {
  background-color: #EDF7FC;
  padding: 30px;
}
.page-company .company-area07 dt {
  font-size: 1.8rem;
  font-weight: 600;
  padding-left: 18px;
  line-height: 1.3;
  position: relative;
}
.page-company .company-area07 dt:not(:first-of-type) {
  margin-top: 18px;
}
.page-company .company-area07 dt::after {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 2px;
  background-color: #0058A2;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-company .company-area07 dd {
  margin-top: 12px;
}
.page-company .about-list {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .page-company .about-list {
    margin-top: 20px;
    display: block;
  }
}
.page-company .about-list > li {
  width: calc(50% - 20px);
  padding: 24px 12px;
  border-bottom: 1px solid #D9D9D9;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .page-company .about-list > li {
    width: 100%;
    padding: 16px 0;
    gap: 16px;
  }
}
.page-company .about-list > li:first-of-type {
  border-top: 1px solid #D9D9D9;
}
.page-company .about-list > li:nth-of-type(2) {
  border-top: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .page-company .about-list > li:nth-of-type(2) {
    border-top: none;
  }
}
.page-company .about-list__img {
  width: 123px;
  flex: 0 0 auto;
}
@media screen and (max-width: 768px) {
  .page-company .about-list__img {
    width: 69px;
  }
}
.page-company .about-list__body h3 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .page-company .about-list__body h3 {
    font-size: 1.2rem;
  }
}
.page-company .about-list__body p {
  margin-top: 10px;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .page-company .about-list__body p {
    margin-top: 4px;
    font-size: 1.2rem;
  }
}
.page-company .company-area08 {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area08 {
    margin-top: 0;
  }
}
.page-company .company-area08 > div {
  display: flex;
  align-items: center;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area08 > div {
    flex-direction: column;
    gap: 30px;
  }
}
.page-company .company-area08 > div:not(:first-of-type) {
  margin-top: 42px;
}
.page-company .company-area08 > div > img {
  width: 346px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area08 > div > img {
    width: 100%;
  }
}
.page-company .company-area08 > div > div {
  width: 651px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area08 > div > div {
    width: 100%;
  }
}
.page-company .company-area08 > div > div h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.3;
  font-weight: 600;
  padding-left: 12px;
  position: relative;
}
.page-company .company-area08 > div > div h3::after {
  content: "";
  width: 6px;
  height: 22px;
  background-image: url("/recruit/assets/images/company/deco-title.svg");
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.page-company .company-area09 {
  margin-top: 56px;
  display: flex;
  align-items: flex-start;
  gap: 23px;
}
@media screen and (max-width: 768px) {
  .page-company .company-area09 {
    flex-wrap: wrap;
  }
}
.page-company .company-area09 > div {
  width: calc(50% - 11.5px);
  border: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .page-company .company-area09 > div {
    width: 100%;
  }
}
.page-company .company-area09 dt {
  font-weight: bold;
  padding: 12px 6px;
  background-color: #EDF7FC;
  color: #0093E7;
  text-align: center;
}
.page-company .company-area09 dd p {
  padding: 7px 30px;
  border-top: 1px solid #E5E5E5;
  font-weight: normal;
  line-height: 1.3;
  min-height: 35px;
}

.page-job .low-title02 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .page-job .low-title02 {
    margin-top: 80px;
  }
}
.page-job .job-area__top {
  display: flex;
  align-items: flex-start;
  flex-direction: row-reverse;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-job .job-area__top {
    flex-direction: column;
    gap: 30px;
  }
}
.page-job .job-area__img {
  width: 444px;
}
@media screen and (max-width: 768px) {
  .page-job .job-area__img {
    width: 100%;
  }
}
.page-job .job-area__body {
  width: 540px;
}
@media screen and (max-width: 768px) {
  .page-job .job-area__body {
    width: 100%;
  }
}
.page-job .job-area__body p {
  line-height: 1.8;
}
.page-job .job-area__btn {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .page-job .job-area__btn {
    margin-top: 30px;
  }
}
.page-job .job-area__bottom {
  margin-top: 40px;
  padding: 20px;
  background-color: #EDF7FC;
}
@media screen and (max-width: 768px) {
  .page-job .job-area__bottom {
    margin-top: 20px;
  }
}
.page-job .job-area__bottom dt {
  font-size: 2rem;
  color: #0093E7;
  font-weight: bold;
}
.page-job .job-area__bottom dd {
  font-weight: 500;
  line-height: 1.8;
}

.page-message .message-area:not(:first-of-type) {
  margin-top: 140px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area:not(:first-of-type) {
    margin-top: 100px;
  }
}
.page-message .message-area__top {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__top {
    display: block;
  }
}
.page-message .message-area__img {
  width: 532px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__img {
    width: 100%;
    margin-top: 30px;
  }
}
.page-message .message-area__body {
  width: 432px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__body {
    width: 100%;
  }
}
.page-message .message-area h2 {
  font-size: 3.4rem;
  color: #0093E7;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-message .message-area h2 {
    font-size: 2.8rem;
  }
}
.page-message .message-area__info {
  margin-top: 40px;
  border: 3px solid #0093E7;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__info {
    margin-top: 30px;
  }
}
.page-message .message-area__info > p {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.45;
}
.page-message .message-area__info dl {
  margin-top: 10px;
}
.page-message .message-area__info dl > div {
  display: flex;
  align-items: center;
  gap: 17px;
}
.page-message .message-area__info dl > div:not(:first-of-type) {
  margin-top: 6px;
}
.page-message .message-area__info dl dt {
  min-width: 88px;
  background-color: #0093E7;
  border-radius: 50px;
  padding: 1px 4px 3px 4px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
  text-align: center;
}
.page-message .message-area__info dl dd {
  line-height: 1.3;
  font-weight: 500;
}
.page-message .message-area__bottom {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__bottom {
    margin-top: 60px;
  }
}
.page-message .message-area__bottom dt {
  padding: 10px 20px;
  background-color: #F5F5F5;
  color: #0093E7;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__bottom dt {
    font-size: 1.8rem;
  }
}
.page-message .message-area__bottom dt:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .page-message .message-area__bottom dt:not(:first-of-type) {
    margin-top: 40px;
  }
}
.page-message .message-area__bottom dd {
  margin-top: 24px;
  font-weight: 500;
}

.page-job-description .job-description-area01 {
  padding: 40px;
  background-color: #F5F5F5;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area01 {
    padding: 20px;
  }
}
.page-job-description .job-description-area01__img01 {
  max-width: 716px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area01__img01 {
    max-width: 264px;
    margin-bottom: 20px;
  }
}
.page-job-description .job-description-area01__img02 {
  max-width: 464px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area01__img02 {
    max-width: 170px;
    margin-bottom: 20px;
  }
}
.page-job-description .job-description-area01__img03 {
  max-width: 464px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area01__img03 {
    max-width: 170px;
    margin-bottom: 20px;
  }
}
.page-job-description .job-description-area01 p {
  font-weight: normal;
}
.page-job-description .job-description-area01 p a {
  text-decoration: underline;
}
.page-job-description .job-description-nav {
  display: flex;
  gap: 17px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-nav {
    gap: 10px;
  }
}
.page-job-description .job-description-nav li {
  width: calc(25% - 12.75px);
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-nav li {
    width: calc(25% - 7.5px);
  }
}
.page-job-description .job-description-nav__btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px;
  text-align: center;
  font-size: 2rem;
  line-height: 1.6;
  font-weight: bold;
  color: #0093E7;
  background-color: #EDF7FC;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-nav__btn {
    padding: 13px 5px;
    font-size: 1.4rem;
    line-height: 1;
  }
}
@media (any-hover: hover) {
  .page-job-description .job-description-nav__btn:hover {
    filter: none;
    color: #fff;
    background-color: #0093E7;
  }
}
.page-job-description .job-description-nav__btn.--current {
  color: #fff;
  background-color: #0093E7;
  pointer-events: none;
}
.page-job-description .job-description-area02 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area02 {
    margin-top: 31px;
  }
}
.page-job-description .job-description-area02__item {
  display: none;
}
.page-job-description .job-description-area02__item.--current {
  display: block;
}
.page-job-description .job-description-area02__item dl {
  border: 1px solid #E5E5E5;
}
.page-job-description .job-description-area02__item dl > div {
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area02__item dl > div {
    display: block;
  }
}
.page-job-description .job-description-area02__item dl > div:not(:first-of-type) {
  border-top: 1px solid #E5E5E5;
}
.page-job-description .job-description-area02__item dl dt {
  min-width: 250px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 12px 20px;
  font-weight: bold;
  color: #0093E7;
  background-color: #EDF7FC;
  border-right: 1px solid #E5E5E5;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area02__item dl dt {
    display: block;
    min-width: auto;
    padding: 6px 14px;
    border-right: none;
    border-bottom: 1px solid #E5E5E5;
  }
}
.page-job-description .job-description-area02__item dl dd {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .page-job-description .job-description-area02__item dl dd {
    display: block;
    padding: 12px 14px;
  }
}
.page-job-description .job-description-area02__item dl dd .--list li {
  text-indent: -1em;
  padding-left: 1em;
}

.fadeUp {
  transform: translateY(15px);
  opacity: 0;
  transition: opacity 0.4s, transform 0.4s;
}
.fadeUp.on {
  transform: inherit;
  opacity: 1;
}/*# sourceMappingURL=base.css.map */