@charset "UTF-8";
/* base */
/* ルートフォント設定
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1280 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

@font-face {
  font-family: "shippori";
  src: url("/career/assets/font/ShipporiGothicB2-Bold.woff2") format("woff2"), url("/career/assets/font/ShipporiGothicB2-Bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* スクロール設定
***************************************************************/
html {
  scroll-padding-top: 9rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 5rem;
  }
}

/* base（基本）設定
***************************************************************/
html.is-drawerActive {
  height: 100%;
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body.is-drawerActive {
  height: 100%;
  overflow: hidden;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

main {
  margin-top: 5rem;
}
@media (min-width: 768px) {
  main {
    margin-top: 9rem;
  }
}

/* utility  共通（display 切り替え）
***************************************************************/
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-sp-mb40 {
    margin-bottom: 4rem !important;
  }
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-taC {
  text-align: center;
}

.u-txtLink {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .u-txtLink:hover {
    text-decoration: none;
  }
}

.bg-blue {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(39, 120, 190, 0.1)), to(rgba(39, 120, 190, 0.3)));
  background-image: linear-gradient(to bottom, rgba(39, 120, 190, 0.1), rgba(39, 120, 190, 0.3));
  background-blend-mode: multiply;
  background-repeat: repeat;
}

.contentsBlock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
          box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
  padding: 5rem 2rem;
}
@media (min-width: 768px) {
  .contentsBlock {
    padding: 4rem;
  }
}

/* components */
/* fadeInアニメーション
***************************************************************/
.fadeIn {
  opacity: 0;
  -webkit-transform: translateY(2rem);
          transform: translateY(2rem);
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

.fadeIn.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.c-btn01 {
  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;
  position: relative;
  width: 20rem;
  height: 4rem;
  border: 0.1rem solid transparent;
  border-radius: 0.125rem;
  border-image-source: var(--cl-blue-gradient, linear-gradient(88deg, #2778BE 38.78%, #070707 94.87%));
  border-image-slice: 1;
  -webkit-box-shadow: 0px 0px 15px -5px rgba(39, 120, 190, 0.35);
          box-shadow: 0px 0px 15px -5px rgba(39, 120, 190, 0.35);
  font-family: "Noto Sans JP";
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 100%; /* 1rem */
  background: var(--cl-blue-gradient, linear-gradient(88deg, #2778BE 38.78%, #070707 94.87%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: auto;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.c-btn01 svg {
  position: absolute;
  width: 1rem;
  height: auto;
  margin-left: 2rem;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media (min-width: 768px) {
  .c-btn01:hover {
    opacity: 0.45;
  }
}

.c-btn02 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20rem;
  height: 4rem;
  border-radius: 0.2rem;
  background: var(--cl-blue-gradient, linear-gradient(88deg, #2778BE 38.78%, #070707 94.87%));
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  margin: auto;
  padding: 0 3rem 0 2rem;
}
@media (min-width: 768px) {
  .c-btn02 {
    margin: 0;
  }
}
.c-btn02 svg {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.68rem;
  height: auto;
}
@media (min-width: 768px) {
  .c-btn02 svg {
    height: auto;
  }
}
@media (min-width: 768px) {
  .c-btn02:hover {
    opacity: 0.7;
  }
}

.c-btn03 {
  position: relative;
  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;
  margin: 0 auto 4rem;
  width: 23.8rem;
  height: 4rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.6rem;
  border-radius: 2px;
  border: 1px solid #ff7e5f;
  z-index: 1;
  background: #fff;
}
@media (min-width: 768px) {
  .c-btn03 {
    width: 40rem;
    height: 6.7rem;
    font-size: 2.4rem;
  }
}
.c-btn03 span {
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 2;
}
.c-btn03 svg {
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.6831rem;
  height: auto;
}
@media (min-width: 768px) {
  .c-btn03 svg {
    width: 1.4984rem;
    height: 1.8363rem;
  }
}
@media (min-width: 768px) {
  .c-btn03:hover {
    opacity: 0.7;
  }
}

.c-btn05 {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 20rem;
  height: 4rem;
  border-radius: 0.2rem;
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
  margin: auto;
  padding: 0 3rem 0 2rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .c-btn05 {
    margin: 0;
  }
}
.c-btn05 svg {
  position: absolute;
  top: 50%;
  right: 1.8rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 0.68rem;
  height: auto;
}
@media (min-width: 768px) {
  .c-btn05 svg {
    height: auto;
  }
}
@media (min-width: 768px) {
  .c-btn05:hover {
    opacity: 0.5;
  }
}

.c-btnGrid {
  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;
}
@media (min-width: 768px) {
  .c-btnGrid {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.c-btnGrid a + a {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .c-btnGrid a + a {
    margin-top: 0;
    margin-left: 6rem;
  }
}

.c-btnArea {
  background: url(/career/assets/images/bg-heading01.png) no-repeat left top;
  background-size: 110%;
  padding: 5rem 0 8rem;
}
@media (min-width: 768px) {
  .c-btnArea {
    background: url(/career/assets/images/bg-brush1.png) no-repeat center;
    background-size: 50%;
    padding: 7rem 0 10rem;
  }
}

.swiper-button-prev {
  left: 0;
  top: auto;
  bottom: -1rem;
  width: 8.4rem;
}
@media (min-width: 768px) {
  .swiper-button-prev {
    width: 14.4rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.swiper-button-prev::after {
  display: none;
  background: url(/career/assets/images/top/arrow-slide.svg) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .swiper-button-prev:hover {
    opacity: 0.45;
  }
}

.swiper-button-next {
  right: 0;
  top: auto;
  bottom: -1rem;
  width: 8.4rem;
}
@media (min-width: 768px) {
  .swiper-button-next {
    width: 14.4rem;
    -webkit-transition: 0.2s;
    transition: 0.2s;
  }
}
.swiper-button-next::after {
  display: none;
  background: url(/career/assets/images/top/arrow-slide-next.svg) no-repeat center center/contain;
}
@media (min-width: 768px) {
  .swiper-button-next:hover {
    opacity: 0.45;
  }
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.3;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 2.5rem;
  top: auto;
}

.swiper-pagination-bullet {
  width: 1rem;
  height: 1rem;
}

.swiper-pagination-bullet-active {
  background: #033865;
}

/* ボタンの基本スタイル */
.c-btn04 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  right: -1.8rem;
  width: 32rem;
  height: 7.5rem;
  padding: 1.2rem 3rem;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  border: 1px solid #2778BE;
  -webkit-transform: skewX(-20deg);
          transform: skewX(-20deg);
  -webkit-filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 0.4));
          filter: drop-shadow(4px 4px 1px rgba(0, 0, 0, 0.4));
}
@media (min-width: 768px) {
  .c-btn04 {
    font-size: 2.4rem;
  }
}
.c-btn04 > span {
  display: inline-block;
  -webkit-transform: skewX(20deg);
          transform: skewX(20deg);
}

/* 疑似要素（::before）のスタイル */
.c-btn04::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* ボタンの背後に配置 */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* グラデーション背景 */
  background: linear-gradient(89deg, #2778BE 30.3%, #070707 98.84%);
  /* グラデーションのアニメーション用 */
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: clip-path 0.3s ease;
  transition: clip-path 0.3s ease;
  clip-path: inset(0 0% 0 0%);
}

.c-btn04::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* ボタンの背後に配置 */
  background: #fff;
}

/* ホバー時のスタイル */
@media (min-width: 768px) {
  .c-btn04:hover {
    color: #2778BE; /* ホバー時の文字色 */
    background-color: #fff; /* ホバー時の背景色 */
  }
}

/* ホバー時に疑似要素を変形 */
@media (min-width: 768px) {
  .c-btn04:hover::before {
    clip-path: inset(0 0 0 100%);
  }
}

.c-btn04 svg {
  position: absolute;
  z-index: 1;
  top: 43%;
  right: 3.5rem;
  -webkit-transform: translate(0, -40%);
          transform: translate(0, -40%);
  width: 1rem;
  height: auto;
  -webkit-transform: skewX(20deg);
          transform: skewX(20deg);
  fill: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn04 svg {
    width: 1.4rem;
    top: 40%;
  }
}

@media (min-width: 768px) {
  .c-btn04:hover svg {
    fill: #2778BE;
  }
}

.c-btn06 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 34.4rem;
  height: 8rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-decoration: none;
  color: #fff; /* 文字色 */
  margin: 3rem auto 0;
  /* ホバー時のtransition */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  /* 影 */
  -webkit-filter: drop-shadow(0 0 20px rgba(1, 65, 121, 0.3));
          filter: drop-shadow(0 0 20px rgba(1, 65, 121, 0.3));
}
@media (min-width: 768px) {
  .c-btn06 {
    width: 49rem;
    height: 10rem;
    margin-top: 5rem;
  }
}

/* 疑似要素（::before）のスタイル */
.c-btn06::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.c-btn06::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2; /* ボタンの背後に配置 */
  background: #fff;
}

/* ホバー時のスタイル */
@media (min-width: 768px) {
  .c-btn06:hover {
    color: #E14911; /* ホバー時の文字色 */
    background-color: #fff; /* ホバー時の背景色 */
  }
}

/* ホバー時に疑似要素を変形 */
@media (min-width: 768px) {
  .c-btn06:hover::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0); /* 左から右に幅を0にする */
  }
}

.c-btn06 svg {
  position: relative;
  top: 0.4rem;
  margin-left: 1rem;
  -webkit-transform: translate(0, -40%);
          transform: translate(0, -40%);
  width: 2rem;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media (min-width: 768px) {
  .c-btn06 svg {
    display: none;
  }
}

.c-btn06 span {
  position: relative;
}
@media (min-width: 768px) {
  .c-btn06 span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -4rem;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    background: url(/career/assets/images/ico-blank.svg) no-repeat;
    background-size: contain;
    width: 2.4rem;
    height: 2.4rem;
  }
}

@media (min-width: 768px) {
  .c-btn06:hover span::after {
    background: url(/career/assets/images/ico-blank-orange.svg) no-repeat;
    background-size: contain;
  }
}

.c-childHead {
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  background: url(/career/assets/images/bg-childhead.jpg) no-repeat;
  background-size: cover;
  width: 100%;
  padding: 6.9rem 2rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .c-childHead {
    padding: 10.5rem 2rem 11.1rem;
  }
}
.c-childHead__shape {
  position: absolute;
  top: 0;
  left: -37.6%;
  width: 40%;
  height: 100%;
  background: #2778BE;
  -webkit-transform: skewX(37deg);
          transform: skewX(37deg);
  z-index: 1;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .c-childHead__shape {
    left: -34.3%;
  }
}
.c-childHead__shape.v-right {
  position: absolute;
  right: -31%;
  left: auto;
  width: 70%;
  -webkit-transform: skewX(42deg);
          transform: skewX(42deg);
}
@media (min-width: 768px) {
  .c-childHead__shape.v-right {
    right: -16%;
    -webkit-transform: skewX(38deg);
            transform: skewX(38deg);
  }
}
.c-childHead__txt {
  position: relative;
  background-image: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  -webkit-background-clip: text;
  background-clip: text;
  width: 100%;
  color: transparent;
  font-size: 3.2rem;
  font-weight: 900;
  z-index: 3;
}
@media (min-width: 768px) {
  .c-childHead__txt {
    font-size: 6.4rem;
  }
}
.c-childHead__subTxt {
  position: absolute;
  bottom: 0;
  right: 1rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  font-family: "Work Sans", sans-serif;
  font-size: 6.4rem;
  font-style: normal;
  font-weight: 700;
  font-style: italic;
  z-index: 2;
  line-height: 1;
}
@media (min-width: 768px) {
  .c-childHead__subTxt {
    right: 2rem;
    font-size: 14.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-childHead.v-fzMin .c-childHead__subTxt {
    font-size: 4.8rem;
  }
}

.c-childHeading02 {
  position: relative;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 700;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-childHeading02 {
    font-size: 3.2rem;
    margin-bottom: 4rem;
  }
}
.c-childHeading02::after {
  content: "";
  position: absolute;
  top: -5rem;
  left: 0;
  background: url(/career/assets/images/bg-brush2.png) no-repeat left top;
  background-size: contain;
  width: 35.5rem;
  height: 17.282rem;
}
@media (min-width: 768px) {
  .c-childHeading02::after {
    width: 60.099rem;
    height: 18.496rem;
  }
}
.c-childHeading02 svg {
  position: absolute;
  top: 0.5rem;
  left: 0;
  width: 1.4rem;
  height: auto;
}
.c-childHeading02 span {
  background: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.c-childHeading03 {
  background: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-childHeading03 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
  }
}

.c-txt {
  line-height: 1.7;
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .c-txt {
    margin-bottom: 5rem;
  }
}

.c-descriptionList {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(39, 120, 190, 0.4);
  padding-bottom: 2.4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .c-descriptionList {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
  }
}
.c-descriptionList dt {
  position: relative;
  display: block;
  color: #2778BE;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 2rem;
  padding-left: 3.4rem;
}
@media (min-width: 768px) {
  .c-descriptionList dt {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30rem;
            flex: 0 0 30rem;
  }
}
.c-descriptionList dt::before {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 0;
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  width: 2.4rem;
  height: 0.2rem;
}
.c-descriptionList dd {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-descriptionList__content {
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.c-descriptionList__content.v-more {
  -webkit-mask: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(10%, transparent), color-stop(70%, black));
  -webkit-mask: linear-gradient(0deg, transparent 0%, transparent 10%, black 70%);
  mask: -webkit-gradient(linear, left bottom, left top, from(transparent), color-stop(10%, transparent), color-stop(70%, black));
  mask: linear-gradient(0deg, transparent 0%, transparent 10%, black 70%);
  overflow: hidden;
  height: 26.4rem;
  padding-bottom: 2rem;
}
@media (min-width: 768px) {
  .c-descriptionList__content.v-more {
    height: auto;
    -webkit-mask: none;
            mask: none;
    padding-bottom: 0;
  }
}
.c-descriptionList__content.is-open {
  -webkit-mask: none;
          mask: none;
}
.c-descriptionList__content * + p {
  margin-top: 2rem;
}
.c-descriptionList__content * + ul {
  margin-top: 2rem;
}
.c-descriptionList__content a {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .c-descriptionList__content a:hover {
    text-decoration: none;
  }
}
.c-descriptionList__moreBtn {
  display: block;
  margin: auto;
  position: relative;
  left: 1rem;
  z-index: 2;
  color: #2778BE;
  font-weight: 700;
}
.c-descriptionList__moreBtn::after {
  content: "";
  position: relative;
  display: inline-block;
  background: url(/career/assets/images/ico-arrow01.svg) no-repeat;
  background-size: contain;
  width: 1.4rem;
  height: 0.8rem;
}
@media (min-width: 768px) {
  .c-descriptionList__moreBtn {
    display: none;
  }
}
.c-descriptionList__moreBtn.is-open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  top: -0.2rem;
}
.c-descriptionList + .c-descriptionList {
  margin-top: 3rem;
}
.c-descriptionList:last-child {
  border-bottom: none;
}

.c-note li {
  text-indent: -1em;
  padding-left: 1em;
}

.c-list01 li {
  text-indent: -1em;
  padding-left: 1em;
}

.libHdc-acc {
  position: relative;
}
.libHdc-acc__trig {
  position: relative;
  cursor: pointer;
  font-weight: 700;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .libHdc-acc__trig {
    font-size: 2rem;
  }
}
.libHdc-acc__trig > div {
  position: relative;
  padding: 1.6rem 4.6rem 1.6rem 5.2rem;
}
@media (min-width: 768px) {
  .libHdc-acc__trig > div {
    padding: 3.2rem 8.6rem 3.2rem 11.5rem;
  }
}
.libHdc-acc__trig > div::before {
  content: "Q";
  position: absolute;
  top: 0.7rem;
  left: 1.6rem;
  z-index: 1;
  color: #2778BE;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .libHdc-acc__trig > div::before {
    font-size: 3.2rem;
    left: 4.8rem;
    top: 2rem;
  }
}
.libHdc-acc__trig::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.6rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  width: 1.7rem;
  height: 0.2rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .libHdc-acc__trig::before {
    right: 4.8rem;
    width: 1.8rem;
  }
}
.libHdc-acc__trig::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  width: 0.2rem;
  height: 1.7rem;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (min-width: 768px) {
  .libHdc-acc__trig::after {
    height: 1.8rem;
    right: 5.6rem;
  }
}
.libHdc-acc__trig.is-active::before {
  opacity: 0;
}
.libHdc-acc__trig.is-active::after {
  -webkit-transform: translate(0, -50%) rotate(90deg);
          transform: translate(0, -50%) rotate(90deg);
}
.libHdc-acc__opened {
  position: relative;
  display: none;
  border-top: 0.1rem solid #E4E4E4;
  line-height: 1.6;
  margin: 0 1.6rem;
  padding: 1.6rem 1rem 1.6rem 3.2rem;
}
@media (min-width: 768px) {
  .libHdc-acc__opened {
    padding: 3.2rem 15rem 3.2rem 10.2rem;
  }
}
.libHdc-acc__opened::before {
  content: "A";
  position: absolute;
  top: 0.7rem;
  left: 0;
  z-index: 1;
  color: #2778BE;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .libHdc-acc__opened::before {
    font-size: 3.2rem;
    left: 4.8rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  .libHdc-acc__opened::before {
    top: 2.6rem;
    left: 3.6rem;
  }
}

.c-faqBlock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
          box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
}
.c-faqBlock + .c-faqBlock {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .c-faqBlock + .c-faqBlock {
    margin-top: 3rem;
  }
}

.c-childNav {
  margin-bottom: 6rem;
}
@media (min-width: 768px) {
  .c-childNav.is-fixed {
    position: fixed;
    top: 12rem;
    z-index: 1;
  }
}
.c-childNav a {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .c-childNav a {
    font-size: 2.4rem;
  }
}
.c-childNav a span {
  background: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.c-childNav a svg {
  position: relative;
  width: 1.6rem;
  height: auto;
  top: -0.3rem;
  margin-right: 0.8rem;
}
@media (min-width: 768px) {
  .c-childNav a svg {
    width: 2rem;
    top: -0.5rem;
    margin-right: 1rem;
  }
}
.c-childNav a + a {
  display: block;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .c-childNav a:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .c-childNav.v-fzMin a {
    font-size: 1.6rem;
    padding-left: 3rem;
  }
}
@media (min-width: 768px) {
  .c-childNav.v-fzMin a svg {
    position: absolute;
    top: 0.5rem;
    left: 0;
  }
}

.c-imgGrid01 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .c-imgGrid01 {
    grid-template-columns: 1fr 1fr;
  }
}
.c-imgGrid01 img {
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
          box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
}
.c-imgGrid01.v-zigzag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (min-width: 768px) {
  .c-imgGrid01.v-zigzag figure {
    width: 47%;
  }
  .c-imgGrid01.v-zigzag figure:nth-child(2) {
    margin-top: 15%;
  }
  .c-imgGrid01.v-zigzag figure:nth-child(3) {
    margin-top: -15%;
  }
}

/* ヘッダー
***************************************************************/
.header {
  width: 100%;
  position: fixed; /*header固定*/
  top: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}
.header.is-hidden {
  -webkit-transform: translateY(-9rem);
          transform: translateY(-9rem);
}

.header__inner {
  display: grid;
  height: 9rem;
  grid-template-columns: 21.9rem 1fr;
  gap: 8.7rem;
  padding-inline: 7rem 2.3rem;
  padding-block: 2rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 128rem;
  margin-inline: auto;
  position: relative;
}

@media screen and (max-width: 767px) {
  .header__inner {
    grid-template-columns: 11.5rem 1fr;
    height: 5rem;
    gap: 0;
    padding: 1rem;
  }
}
.headerLogo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5rem;
}

.headerLogo__img {
  width: 10rem;
  height: auto;
  aspect-ratio: 10/5;
}

@media screen and (max-width: 767px) {
  .headerLogo__img {
    width: 5.4rem;
    height: auto;
  }
}
.headerLogo__img__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8125;
  letter-spacing: 0em;
  color: #033865;
}
@media screen and (max-width: 767px) {
  .headerLogo__img__text {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .headerLogo__img__text {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
.headerNav {
  position: relative;
}

@media screen and (max-width: 767px) {
  .headerNav {
    display: none;
  }
}
.headerNav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
.headerNav__list > li {
  position: relative;
}
.headerNav__list > li > a {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .headerNav__list > li > a {
    font-size: 1.6rem;
  }
}
.headerNav__list > li > a::after {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #2778BE;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.headerNav__list > li > a svg {
  width: 1rem;
  height: auto;
  position: relative;
  top: -0.3rem;
  margin-left: 0.8rem;
}
.headerNav__list > li > a:hover {
  color: #2778BE;
}
.headerNav__list > li > a:hover svg {
  fill: #2778BE;
}
.headerNav__list > li > a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.headerNav__list > li > a.is-current {
  color: #2778BE;
}
.headerNav__list > li > a.is-current::before {
  content: "";
  position: absolute;
  bottom: -0.7rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #2778BE;
}
.headerNav__list > li > a.is-current svg {
  fill: #2778BE;
}

.headerNav__list--subList {
  padding-top: 1.9rem;
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
}

.headerNav__list--subList--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem;
  background: #FFFFFF;
  padding: 2rem 2.5rem;
  border-radius: 0.2rem;
  -webkit-box-shadow: 0px 0px 1rem rgba(39, 120, 190, 0.2);
          box-shadow: 0px 0px 1rem rgba(39, 120, 190, 0.2);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  white-space: nowrap;
}
.headerNav__list--subList--menu > li > a {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.2142857143;
  letter-spacing: 0em;
  position: relative;
  padding-left: 1.8rem;
}
@media screen and (max-width: 767px) {
  .headerNav__list--subList--menu > li > a {
    font-size: 1.4rem;
  }
}
.headerNav__list--subList--menu > li > a::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 0.6rem;
  height: 0.1rem;
  background: #2778BE;
}
.headerNav__list--subList--menu > li > a::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background: #2778BE;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.headerNav__list--subList--menu > li > a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.headerEntry {
  position: absolute;
  border-radius: 2rem;
  right: 0;
  top: -1.2rem;
  text-align: center;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .headerEntry {
    position: inherit;
  }
  .headerEntry .c-btn05 {
    width: 90%;
    height: 5rem;
    margin-bottom: 3rem;
  }
}

.headerEntry__triggerButton {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
  color: #FFFFFF;
  text-transform: uppercase;
  background: none;
  border: none;
  padding: 1.1rem 2rem;
  width: 17rem;
  border-radius: 100vmax;
  cursor: pointer;
  z-index: 20;
  position: relative;
}
@media screen and (max-width: 767px) {
  .headerEntry__triggerButton {
    font-size: 1.8rem;
  }
}
.headerEntry__triggerButton::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/newgraduate/assets/images/icon-entry-arrow.svg) no-repeat center center/contain;
  width: 0.4rem;
  height: 0.8rem;
  z-index: 21;
}

.headerEntry__buttonWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
}
.headerEntry:hover .headerEntry__buttonWrap {
  opacity: 1;
  pointer-events: auto;
}

/* ヘッダー・ドロワー(sp用)
***************************************************************/
.drawerIcon,
.drawer {
  display: none;
}

@media screen and (max-width: 767px) {
  .drawerIcon {
    position: fixed;
    top: 1.5rem;
    right: 1rem;
    width: 2.4rem;
    height: 1.8rem;
    z-index: 200;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.6rem;
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
  }
  .drawerIcon.is-hidden {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%); /* 画面外に隠す */
  }
  .drawerIcon.is-checked .drawerIcon__bar:nth-of-type(1) {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    translate: 0 0.8rem;
  }
  .drawerIcon.is-checked .drawerIcon__bar:nth-of-type(2) {
    display: none;
  }
  .drawerIcon.is-checked .drawerIcon__bar:nth-of-type(3) {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    translate: 0 0;
  }
  .drawerIcon__bar {
    width: 100%;
    height: 0.2rem;
    background: #2778BE;
    border-radius: 100vmax;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .drawer {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    overflow-y: scroll;
    background: #FFFFFF;
    z-index: 150;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.2s ease;
    transition: -webkit-transform 0.2s ease;
    transition: transform 0.2s ease;
    transition: transform 0.2s ease, -webkit-transform 0.2s ease;
    padding: 7rem 2rem 8rem 2rem;
  }
  .drawer.is-checked {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .drawer__body {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .drawer__body .c-btn04 {
    width: 28.5rem;
  }
  .drawer__body--cta {
    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;
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .drawerList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem;
    width: 29.5rem;
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  .drawerList > li {
    padding-bottom: 2.3rem;
    border-bottom: 0.1rem solid #E4E4E4;
  }
  .drawerList > li:last-child {
    border-bottom: none;
    padding-bottom: 2rem;
  }
  .drawerList > li > a {
    color: #2778BE;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.1875;
    letter-spacing: 0em;
    display: block;
    position: relative;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    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) and (max-width: 767px) {
  .drawerList > li > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .drawerList > li > a svg {
    width: 1rem;
    height: auto;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  .drawerList > li > a.is-open svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .drawerList > li:has(.drawerList--subList) > a::after {
    content: "";
    position: absolute;
    background: url(/newgraduate/assets/images/icon-drawer-menu-arrow.svg) no-repeat center center/contain;
    width: 0.9rem;
    height: 0.8rem;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .drawerList > li:has(.drawerList--subList) > a.is-open::after {
    -webkit-transform: translateY(-50%) rotate(0deg);
            transform: translateY(-50%) rotate(0deg);
  }
  .drawerList--subList {
    padding-top: 2.4rem;
    display: none;
  }
  .drawerList--subList--menu {
    padding-inline: 1.6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
  .drawerList--subList--menu a {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.2142857143;
    letter-spacing: 0em;
    display: block;
    position: relative;
    padding-left: 1.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .drawerList--subList--menu a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .drawerList--subList--menu a::before {
    content: "";
    position: absolute;
    background: url(/newgraduate/assets/images/icon-drawer-menu-arrow.svg) no-repeat center center/contain;
    width: 0.9rem;
    height: 0.8rem;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(90deg);
            transform: translateY(-50%) rotate(90deg);
  }
  .drawerSns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
    padding-block: 2rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .drawerSns__link img {
    width: 3.1rem;
    height: 3.1rem;
    aspect-ratio: 1/1;
  }
  .drawerSns__link.v-instagram img {
    width: 3.2rem;
    height: 3.2rem;
  }
}
/* フッター
***************************************************************/
.l-footer {
  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;
}

.l-footer__marks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .l-footer__marks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    width: 100%;
    padding-inline: 0.625rem;
    margin-top: 0.25rem;
    margin-bottom: 1.5rem;
  }
}

.l-footer__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -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;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-top: 2rem;
  border-left: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .l-footer__mark {
    gap: 0.5rem;
    border-left: unset;
    border-top: 1px solid #DDDDDD;
    padding: unset;
    padding-top: 1rem;
  }
}
.l-footer__mark:first-child {
  padding-left: unset;
  border-left: unset;
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__mark:first-child {
    width: 21rem;
  }
}
.l-footer__mark:first-child img {
  width: 6rem;
}
@media screen and (max-width: 767px) {
  .l-footer__mark:first-child {
    border-top: unset;
  }
}
.l-footer__mark:nth-child(2) {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__mark:nth-child(2) {
    width: 21rem;
  }
}
.l-footer__mark:nth-child(2) img {
  width: 7.3rem;
}
.l-footer__mark:nth-child(3) {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__mark:nth-child(3) {
    width: 20rem;
  }
}
.l-footer__mark:nth-child(3) img {
  width: 13.3rem;
}
.l-footer__mark:nth-child(4) {
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__mark:nth-child(4) {
    width: 12.5rem;
  }
}
.l-footer__mark:nth-child(4) img {
  width: 7rem;
}

.l-footer__markImg {
  height: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__markText {
  font-size: 1.4rem;
  line-height: 1.14;
  text-align: center;
}

.l-footer__brand {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.625rem;
  -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;
  padding-left: clamp(0.5rem, 3vw, 2.5rem);
  padding-top: 2.625rem;
  border-left: 1px solid #DDDDDD;
  width: 100%;
}
@media (min-width: 768px) {
  .l-footer__brand {
    width: 28rem;
  }
}
@media screen and (max-width: 767px) {
  .l-footer__brand {
    gap: 0.5rem;
    border-left: unset;
    border-top: 1px solid #DDDDDD;
    padding-left: unset;
    padding-top: 1.25rem;
  }
}

.l-footer__button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .l-footer__button:hover {
    opacity: 0.7;
  }
}

.l-footer__buttonLink {
  position: relative;
  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;
  font-size: 1.6rem;
  line-height: 1.14;
  color: #fff;
  background-color: #2778BE;
  padding: 1.5rem 3rem;
  text-align: center;
  width: 24rem;
}
.l-footer__buttonLink::before {
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
  content: "";
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  background: #fff;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.l-footer__brandLogo img {
  width: 14rem;
}

.l-footer__sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.9375rem;
}

.l-footer__snsItem {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin: 0 0.2rem 0.2rem;
}
.l-footer__snsItem img {
  width: 2.2rem;
}
@media (min-width: 768px) {
  .l-footer__snsItem:hover {
    opacity: 0.7;
  }
}
.l-footer__snsItem:nth-child(2) img {
  width: 2.4rem;
}

.l-footer__bottom {
  width: 100%;
  background-color: #2778BE;
  color: #fff;
  padding-top: 1.5rem;
  padding-bottom: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .l-footer__bottom {
    padding-block: 0.75rem;
    gap: 0.375rem;
  }
}

.l-footer__linkList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}
@media (max-width: 767px) {
  .l-footer__linkList {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0.375rem 1.25rem;
    max-width: 29rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.l-footer__linkItem {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .l-footer__linkItem {
    margin-right: 1rem;
  }
  .l-footer__linkItem:hover {
    opacity: 0.7;
  }
}

.l-footer__linkItem a {
  position: relative;
  display: block;
  font-size: 1.4rem;
  padding-right: 1.25rem;
}
@media (max-width: 767px) {
  .l-footer__linkItem a {
    font-size: 1.2rem;
    padding-right: 1.125rem;
  }
}
.l-footer__linkItem a::before {
  position: absolute;
  top: 0;
  right: -0.7rem;
  content: "";
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  background: url(/common/assets/images/footer-link.svg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .l-footer__linkItem a::before {
    width: 1.4rem;
    height: 1.4rem;
  }
}

.l-footer__copyright {
  font-size: 1.2rem;
}

/* layout */
/* 共通（レイアウト）
***************************************************************/
main.v-topMain {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  main {
    margin-top: 5rem;
  }
}
/* 共通（inner レイアウト）
***************************************************************/
.inner {
  max-width: 122rem;
  margin-inline: auto;
  padding-inline: 4rem;
}
.inner.v-narrow {
  max-width: 109rem;
}

@media screen and (max-width: 767px) {
  .inner {
    padding-inline: 1rem;
  }
  .inner.v-narrow {
    padding-inline: 1rem;
  }
}
.l-section {
  padding-top: 5rem;
  padding-bottom: 8rem;
}
@media screen and (min-width: 768px) {
  .l-section {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}
.l-section + .l-section {
  padding-top: 0;
}

.l-block {
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .l-block {
    padding-bottom: 8rem;
  }
}

.l-childWrap {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .l-childWrap {
    padding-top: 10rem;
    padding-bottom: 14.6rem;
  }
}

.l-2column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 5rem;
}
@media (min-width: 768px) {
  .l-2column {
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    padding-top: 10rem;
  }
}
@media (min-width: 768px) {
  .l-2column__menu {
    width: 25.4rem;
  }
  .l-2column__menu.is-fixed {
    top: 0;
  }
}
@media (min-width: 768px) {
  .l-2column__content {
    width: calc(100% - 25.4rem);
  }
}

/* pages */
/* TOP FV
***************************************************************/
.fv7 {
  position: fixed;
  top: 5rem;
  overflow: hidden;
  height: calc(100svh - 5rem);
  background: #2778BE;
  z-index: -1;
  width: 100vw;
}
@media (min-width: 768px) {
  .fv7 {
    width: 100%;
    height: calc(100svh - 9rem);
    top: 9rem;
  }
}
.fv7__decoration {
  width: 40%;
  height: 100%;
  position: absolute;
  clip-path: polygon(0 0, 40% 0%, 100% 100%, 0% 100%);
  background-color: #2778BE;
  mix-blend-mode: multiply;
  z-index: 12;
}
@media screen and (max-width: 767px) {
  .fv7__decoration {
    height: auto;
    clip-path: none;
    background-color: transparent;
    bottom: 0;
    width: min(27.2rem, 322.53px);
    height: min(37.5rem, 444.67px);
  }
}
.fv7 .fv7__decoration.v-right {
  position: absolute;
  z-index: 10;
  right: 0;
}
@media (min-width: 768px) {
  .fv7 .fv7__decoration.v-right {
    clip-path: polygon(0 0, 60% 100%, 100% 100%, 100% 0%);
  }
}
@media screen and (max-width: 767px) {
  .fv7 .fv7__decoration.v-right {
    top: 0;
    bottom: auto;
    width: min(19.7rem, 260px);
    height: min(25.6rem, 338px);
  }
}
.fv7__ph {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 9;
  height: 100svh;
  width: 100vw;
}
.fv7__ph img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.fv7__ph.v-ph2 img {
  -o-object-position: 60% center;
     object-position: 60% center;
}
.fv7__ph.v-ph3 img {
  -o-object-position: 60% center;
     object-position: 60% center;
}
.fv7__ph.v-ph4 img {
  -o-object-position: 70% center;
     object-position: 70% center;
}
.fv7__ph.v-ph5 img {
  -o-object-position: 70% center;
     object-position: 70% center;
}
.fv7__phFront {
  opacity: 0;
  position: absolute;
  top: 0;
  z-index: 15;
  height: 100svh;
  width: 100vw;
}
.fv7__phFront img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.fv7__phFront.v-ph2 img {
  -o-object-position: 60% center;
     object-position: 60% center;
}
.fv7__phFront.v-ph3 img {
  -o-object-position: 60% center;
     object-position: 60% center;
}
.fv7__phFront.v-ph4 img {
  -o-object-position: 70% center;
     object-position: 70% center;
}
.fv7__phFront.v-ph5 img {
  -o-object-position: 70% center;
     object-position: 70% center;
}
.fv7__txt {
  position: absolute;
  bottom: 11vw;
  left: 2vw;
  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: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-family: "shippori";
  font-weight: bold;
  font-style: italic;
  color: #fff;
  z-index: 5;
  line-height: 1;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.2vw;
  z-index: 11;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .fv7__txt {
    top: auto;
    bottom: clamp(1rem, 8rem, 100px);
    left: 2vw;
  }
}
.fv7__txt--reveralLine {
  position: relative;
  opacity: 0;
  padding: 0 3rem 0 0;
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine {
    padding: 0rem 3rem 0rem 0;
  }
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:first-child {
    width: clamp(18.5vw, 66.5vw, 420px);
  }
}
.fv7__txt--reveralLine:first-child svg {
  width: max(28.5vw, 350px);
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:first-child svg {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:nth-child(2) {
    width: clamp(18.5vw, 66.5vw, 420px);
  }
}
@media (min-width: 768px) {
  .fv7__txt--reveralLine:nth-child(2) {
    margin-top: 0.5rem;
  }
}
.fv7__txt--reveralLine:nth-child(2) svg {
  width: max(28.5vw, 350px);
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:nth-child(2) svg {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:last-child {
    width: clamp(18.5vw, 92vw, 600px);
  }
}
@media (min-width: 768px) {
  .fv7__txt--reveralLine:last-child {
    padding-top: 0;
    margin-top: -0.2rem;
  }
}
.fv7__txt--reveralLine:last-child svg {
  width: max(41vw, 535px);
}
@media screen and (max-width: 767px) {
  .fv7__txt--reveralLine:last-child svg {
    width: 100%;
  }
}
.fv7__companyName {
  opacity: 1;
  position: absolute;
  bottom: 0;
  z-index: 13;
  width: 100%;
  margin: auto;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  .fv7__companyName {
    z-index: 20;
  }
}
.fv7__companyName.v-slide1 {
  opacity: 0;
}

.mvSlide {
  width: 100%;
  height: 100%;
}
.mvSlide .swiper-slide {
  width: 100%;
  position: relative;
  will-change: opacity, transform;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.top-concept {
  position: relative;
  background-size: cover;
  color: #033865;
  margin-top: 100vh;
  padding: 20rem 0;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.1rem;
}
.top-concept__topTxt {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  max-width: 95rem;
  margin: auto;
  font-size: 2.4rem;
  font-family: "shippori";
  font-weight: bold;
  font-style: italic;
  line-height: 1.6;
  padding: 5rem 0rem 4rem;
  z-index: 1;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .top-concept__topTxt {
    font-size: 4.4rem;
  }
}
.top-concept__topTxt span {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .top-concept__topTxt span {
    font-size: 5.2rem;
  }
}
.top-concept__topTxt--txt2 {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.top-concept__bottomTxt {
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 2.2;
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-concept__bottomTxt {
    font-size: 2.4rem;
  }
}
.top-concept__logo {
  position: relative;
  z-index: 1;
  text-align: center;
}
.top-concept__logo img {
  width: 6.3rem;
}
@media (min-width: 768px) {
  .top-concept__logo img {
    width: 11.1rem;
    height: auto;
  }
}
.top-concept__companyName {
  position: absolute;
  top: 31rem;
  width: 100%;
}
@media (min-width: 768px) {
  .top-concept__companyName {
    top: 18rem;
  }
}
.top-concept__companyName svg {
  width: 100%;
}
.top-concept__companyName.v-second {
  width: 100%;
  position: absolute;
  top: 48rem;
}
@media (min-width: 768px) {
  .top-concept__companyName.v-second {
    top: 68rem;
  }
}

.topHeading {
  position: relative;
  margin-bottom: 3rem;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .topHeading {
    margin-bottom: 4rem;
  }
}
.topHeading__txt {
  position: relative;
  font-size: 3.8rem;
  font-weight: 900;
  padding-top: 0.3rem;
  padding-left: 2.5rem;
  background: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .topHeading__txt {
    font-size: 6.4rem;
    padding-left: 2rem;
  }
}
.topHeading__txt::before {
  content: "";
  position: absolute;
  left: -1rem;
  top: 0.4rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.4rem solid transparent;
  border-left: 1.4rem solid transparent;
  border-bottom: 1.4rem solid #2778BE;
  border-top: 0;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  z-index: -1;
}
.topHeading__txt::after {
  content: "";
  position: absolute;
  top: -14.5rem;
  left: -19rem;
  background: url(/career/assets/images/top/bg-brush.webp) no-repeat;
  background-size: contain;
  width: 37rem;
  height: 23rem;
}
@media (min-width: 768px) {
  .topHeading__txt::after {
    width: 71.6rem;
    height: 44.8rem;
    top: -24rem;
    left: -48rem;
  }
}
.topHeading__deco {
  position: absolute;
  top: -1.5rem;
  left: 11rem;
  color: rgba(223, 235, 246, 0.4);
  font-family: "Work Sans", sans-serif;
  font-size: 4.4rem;
  font-weight: 700;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .topHeading__deco {
    left: 22rem;
    font-size: 6.4rem;
  }
}
@media (min-width: 768px) {
  .topHeading.v-bgRight .topHeading__txt::after {
    -webkit-transform: scaleX(-1) scale(1.2);
            transform: scaleX(-1) scale(1.2);
    top: -4rem;
    left: auto;
    right: -29rem;
  }
}
.topHeading.v-environment .topHeading__deco {
  left: 4rem;
}
@media (min-width: 768px) {
  .topHeading.v-environment .topHeading__deco {
    left: 12.5rem;
  }
}
.topHeading.v-careerpath .topHeading__deco {
  left: 3.9rem;
}
@media (min-width: 768px) {
  .topHeading.v-careerpath .topHeading__deco {
    left: -11rem;
  }
}
.topHeading.v-aboutUs .topHeading__deco {
  left: 12.9rem;
}
@media (min-width: 768px) {
  .topHeading.v-aboutUs .topHeading__deco {
    left: 25.5rem;
  }
}

.bg-blue .topHeading__deco {
  color: rgba(255, 255, 255, 0.4);
}

.top-interview {
  overflow: hidden;
  padding-top: 24rem;
  position: relative;
  z-index: 1;
  margin-top: -20rem;
}
@media (min-width: 768px) {
  .top-interview {
    margin-top: -10rem;
  }
}

/* Swiperコンテナの基本設定 */
.top-interviewSlide {
  width: 100%;
  height: 40rem;
  padding-bottom: 5rem;
  margin-bottom: 2rem;
  /* 各スライドの設定 */
}
@media screen and (min-width: 768px) {
  .top-interviewSlide {
    height: 51.6rem;
  }
}
.top-interviewSlide__slideItem {
  text-align: center;
  font-size: 18px;
  background: #eee;
  -webkit-box-shadow: 0px 0px 19px -8px #777777;
          box-shadow: 0px 0px 19px -8px #777777;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-interviewSlide__slideItem img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .top-interviewSlide__slideItem:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.top-interviewSlide__slideItem--content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.top-interviewSlide__slideItem--content img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.top-interviewSlide__slideItem--content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), to(transparent));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 2;
  pointer-events: none;
}

.slideTxtBlock {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  color: #fff;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.slideTxtBlock__txt1, .slideTxtBlock__txt2, .slideTxtBlock__txt3 {
  margin: 0;
  padding: 5px 0;
  width: 100%;
  line-height: 1.4;
}
.slideTxtBlock__txt1 {
  font-size: 1.5em;
  font-weight: bold;
}
.slideTxtBlock__txt2 {
  font-size: 1.1em;
}
.slideTxtBlock__txt3 {
  font-size: 0.9em;
  opacity: 0.8;
}

.top-imgBtnGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .top-imgBtnGrid {
    padding-top: 8rem;
    margin-bottom: 0;
  }
}
.top-imgBtnGrid__item {
  display: block;
  text-decoration: none;
  position: relative;
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(3, 56, 101, 0.25));
          filter: drop-shadow(0 0 0.5rem rgba(3, 56, 101, 0.25));
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item {
    width: 33.1rem;
    height: 25rem;
  }
}
.top-imgBtnGrid__item--img {
  display: block;
  border-radius: 0.4rem;
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item--img {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
}
.top-imgBtnGrid__item--img img {
  width: 17rem;
  height: 19rem;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top-imgBtnGrid__item--img img {
    -o-object-position: center center;
       object-position: center center;
  }
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item--img img {
    width: 33.1rem;
    height: 25rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  .top-imgBtnGrid__item--img.v-office img {
    -o-object-position: left center;
       object-position: left center;
  }
}
.top-imgBtnGrid__item--txt {
  display: inline;
  position: absolute;
  bottom: -1.5rem;
  right: -0.4rem;
  z-index: 2;
  font-size: 2rem;
  font-weight: bold;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item--txt {
    right: auto;
    left: 1rem;
    font-size: 2.4rem;
  }
}
.top-imgBtnGrid__item--txt span {
  background: #FFF;
  padding: 0 3.4rem 0.3rem 1rem;
  line-height: 1.3;
  position: relative;
}
.top-imgBtnGrid__item--txt--sub {
  padding: 0.2rem 1.2rem 0 1.2rem !important;
  font-size: 1rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item--txt--sub {
    font-size: 1.4rem;
  }
}
.top-imgBtnGrid__item--txt svg {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 1.4rem;
  height: auto;
}
.top-imgBtnGrid__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 0.4rem;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0));
}
@media (min-width: 768px) {
  .top-imgBtnGrid__item:hover .top-imgBtnGrid__item--img img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top-gridBox {
  display: block;
}
@media (min-width: 768px) {
  .top-gridBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
  }
}
@media (min-width: 768px) {
  .top-gridBox__txt {
    grid-column: 1;
    grid-row: 1;
  }
}
.top-gridBox__img {
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .top-gridBox__img {
    grid-column: 2;
    grid-row: 1/span 2;
  }
}
.top-gridBox__btn {
  text-align: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-gridBox__btn {
    grid-column: 1;
    grid-row: 2;
    text-align: left;
    margin-top: -5rem;
  }
}
@media (min-width: 768px) {
  .top-gridBox.v-reverse {
    grid-template-columns: repeat(2, 1fr);
  }
  .top-gridBox.v-reverse .top-gridBox__txt {
    grid-column: 2;
    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: end;
        -ms-flex-align: end;
            align-items: end;
  }
  .top-gridBox.v-reverse .top-gridBox__img {
    grid-column: 1;
  }
  .top-gridBox.v-reverse .top-gridBox__btn {
    grid-column: 2;
    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: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.top-gridBox + .top-gridBox {
  margin-top: 7rem;
}

.top-careerpathImg {
  margin-bottom: 3rem;
  -webkit-filter: drop-shadow(0 0 0.5rem rgba(3, 56, 101, 0.25));
          filter: drop-shadow(0 0 0.5rem rgba(3, 56, 101, 0.25));
}
@media (min-width: 768px) {
  .top-careerpathImg {
    margin-top: 8rem;
  }
}
.top-careerpathImg img {
  border-radius: 0.4rem;
}
@media (min-width: 768px) {
  .top-careerpathImg img {
    display: block;
    width: 67.7rem;
    height: 32rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
  }
}

.top-environment {
  padding-top: 5rem;
  padding-bottom: 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-environment {
    padding-top: 10rem;
  }
}

.top-careerpath {
  padding-top: 13rem;
  margin-top: -7rem;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-careerpath {
    padding-top: 10rem;
    margin-top: -5rem;
    padding-bottom: 7rem;
  }
}

.top-recruit {
  overflow: hidden;
}

.top-tabsContainer {
  background: #fff;
}

/* タブコンテナ */
.top-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  overflow-x: auto;
  padding-top: 1rem;
  padding-left: 0.6rem;
  position: relative;
  margin-left: -0.6rem;
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .top-tabs {
    height: 6.5rem;
  }
}
.top-tabs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 8.4rem;
  min-height: 3.4rem;
  padding: 1rem 0.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  background: #EDEDED;
  color: rgba(39, 120, 190, 0.5);
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 768px) {
  .top-tabs__item {
    min-width: 12rem;
    height: 5rem;
  }
}
.top-tabs__item.is-active {
  background: #fff;
  color: #2778BE;
  -webkit-box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .top-tabs__item:hover {
    height: 6rem;
  }
}

/* タブの中身 */
.top-tabContent {
  display: none;
  padding-top: 3rem;
}

.top-tabContent.is-active {
  display: block;
}

/* グリッドコンテナ */
.top-recrruitGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

@media (min-width: 768px) {
  .top-recrruitGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* パネル */
.top-recrruitGrid__item {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0 0 10px 0 rgba(39, 120, 190, 0.2);
          box-shadow: 0 0 10px 0 rgba(39, 120, 190, 0.2);
}
.top-recrruitGrid__item .top-recrruitGrid__item--img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (min-width: 768px) {
  .top-recrruitGrid__item:hover .top-recrruitGrid__item--img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.top-recrruitGrid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-recruitGrid__item--cont {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(78deg, rgba(97, 169, 231, 0.7) 57.51%, rgba(244, 186, 60, 0.7) 103.09%);
  padding: 2rem 0.7rem 2rem 1rem;
  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;
}
.top-recruitGrid__item--cont ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.top-recruitGrid__item--cont ul li {
  color: #FFF;
  font-size: 1.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.6rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  border-radius: 0.4rem;
  border: 1px solid #FFF;
}
.top-recruitGrid__item--cont--ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 2rem;
}
.top-recruitGrid__item--cont--txt {
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1.4rem;
}
.top-recruitGrid__item--cont--arrow {
  text-align: center;
  display: block;
}
.top-recruitGrid__item--cont--arrow img {
  width: 14.7rem;
  height: auto;
  position: relative;
  z-index: 1;
  display: block;
  margin: auto;
}

.top-panelContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  max-width: 85rem;
  margin: 0 auto 4rem;
}
@media (min-width: 768px) {
  .top-panelContainer {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.top-panelContainer__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 2rem 3rem;
  gap: 1.9rem;
  border-radius: 1rem;
  border: 1px solid #2778BE;
  background: #FFF;
  -webkit-box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
          box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
  height: 13.5rem;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media (min-width: 768px) {
  .top-panelContainer__item {
    -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;
    height: 22rem;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    top: 0;
  }
}
.top-panelContainer__item--img {
  width: 7.8rem;
  height: 4.9rem;
  aspect-ratio: 58/49;
  border-right: 1px dashed #2778BE;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .top-panelContainer__item--img {
    border-right: none;
    width: 9.1rem;
    height: 7.8rem;
    padding-right: 0;
  }
}
.top-panelContainer__item--content {
  padding: 1rem;
}
@media (min-width: 768px) {
  .top-panelContainer__item--content {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .top-panelContainer__item--content--line {
    width: 9.5rem;
    height: 1px;
    margin: 0 auto 1.9rem;
    border-bottom: 1px dashed #2778BE;
  }
}
.top-panelContainer__item--content--txt {
  color: #2778BE;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 900;
}
@media (min-width: 768px) {
  .top-panelContainer__item--content--txt {
    font-size: 3.2rem;
  }
}
.top-panelContainer__item--arrow {
  position: absolute;
  top: 50%;
  right: 3rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: center;
}
@media (min-width: 768px) {
  .top-panelContainer__item--arrow {
    top: 2rem;
    right: 3rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}
.top-panelContainer__item--arrow svg {
  width: 20px;
  height: 20px;
  color: #000;
}
@media (min-width: 768px) {
  .top-panelContainer__item:hover {
    top: -0.5rem;
  }
  .top-panelContainer__item:hover .top-panelContainer__item--arrow {
    top: 1.5rem;
    right: 2rem;
  }
}

.top-aboutUs {
  padding-top: 5rem;
  padding-bottom: 8rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .top-aboutUs {
    padding-top: 10rem;
    padding-bottom: 12rem;
  }
}

/**************************************************************
下層 制度・環境ページ
***************************************************************/
.environmentBlock {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.4rem;
  -webkit-box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
          box-shadow: 0 0 1rem 0 rgba(3, 56, 101, 0.25);
  padding: 3rem 2rem;
}
@media (min-width: 768px) {
  .environmentBlock {
    padding: 3rem;
  }
}
.environmentBlock__item + .environmentBlock__item {
  border-top: 1px solid rgba(39, 120, 190, 0.4);
  margin-top: 2rem;
  padding-top: 2rem;
}
.environmentBlock__item--img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .environmentBlock__item--img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.environmentBlock__item--img img {
  border-radius: 0.4rem;
}
.environmentBlock dl {
  display: block;
}
@media (min-width: 768px) {
  .environmentBlock dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.environmentBlock dl dt {
  position: relative;
  color: #2778BE;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-left: 3.4rem;
  line-height: 1.7;
  width: 100%;
}
@media (min-width: 768px) {
  .environmentBlock dl dt {
    width: calc(100% - 48rem);
  }
}
.environmentBlock dl dt::before {
  content: "";
  position: absolute;
  top: 1.6rem;
  left: 0;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 2.4rem;
  height: 0.2rem;
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
}
.environmentBlock dl dd {
  width: 100%;
  line-height: 1.7;
  padding-right: 0.2rem;
}
@media (min-width: 768px) {
  .environmentBlock dl dd {
    width: 48rem;
  }
}

@media (min-width: 768px) {
  .officeWrap {
    scroll-margin-top: -7rem;
  }
}

@media (min-width: 768px) {
  .officeArea {
    padding-left: 25.4rem;
  }
}

@media (min-width: 768px) {
  .benefitsArea {
    scroll-margin-top: 50rem;
  }
}

/**************************************************************
下層 キャリアパスページ
***************************************************************/
.careerpathContent {
  padding-bottom: 80px;
}
@media (min-width: 768px) {
  .careerpathContent {
    padding-bottom: 120px;
  }
}

.careerpathImg {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .careerpathImg {
    margin-bottom: 8rem;
  }
}

.gradTxt {
  position: relative;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .gradTxt {
    font-size: 2.4rem;
    text-align: left;
    margin-bottom: 3rem;
  }
}
.gradTxt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  width: 31.5rem;
  height: 15.8rem;
  background: url(/career/assets/images/bg-brush3.png) no-repeat;
  background-size: contain;
}
@media (min-width: 768px) {
  .gradTxt::after {
    display: none;
  }
}
.gradTxt span {
  background-image: linear-gradient(181deg, #2778BE 30.3%, #070707 98.84%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.careerpathSlide {
  overflow: hidden;
  position: relative;
  padding-bottom: 5rem;
}
@media (min-width: 768px) {
  .careerpathSlide {
    background: #fff;
    border-radius: 0.4rem;
    padding-bottom: 0;
  }
}
.careerpathSlide .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.careerpathSlide__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: auto;
  padding: 3rem 2rem;
  -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;
  gap: 0;
  border-radius: 0 0.4rem 0.4rem 0.4rem;
  background: #FFF;
  min-height: 54rem;
  line-height: 1.7;
  padding-top: 3rem;
}
@media (min-width: 768px) {
  .careerpathSlide__item {
    padding: 3rem;
    min-height: auto;
  }
}
.careerpathSlide__item--ttl {
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(89deg, #E14911 0.01%, #F4C53C 117.69%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .careerpathSlide__item--ttl {
    font-size: 2.4rem;
  }
}
.careerpathSlide__item--txt1 {
  font-weight: 700;
  margin-bottom: 2rem;
}
.careerpathSlide__item figure {
  margin: 0 auto 1rem;
  width: 80%;
}
@media (min-width: 768px) {
  .careerpathSlide__item figure {
    width: 30.6rem;
    height: auto;
  }
}
.careerpathSlide__item:first-child {
  position: relative;
}
@media (min-width: 768px) {
  .careerpathSlide__item:first-child::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 93%;
    height: 1px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: rgba(39, 120, 190, 0.4);
  }
}
@media (min-width: 768px) {
  .careerpathSlide .swiper-wrapper {
    display: block;
  }
}
.careerpathSlide .swiper-pagination-bullet {
  background: #fff;
  opacity: 1;
}
.careerpathSlide .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #033865;
}
@media (min-width: 768px) {
  .careerpathSlide .swiper-button-prev, .careerpathSlide .swiper-button-next {
    display: none;
  }
}

.careerpathSlideButtons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.careerpathSlideButtons__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 14.8rem;
  min-height: 3.4rem;
  padding: 1rem 1rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
  border-radius: 1rem 1rem 0 0;
  -webkit-box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 0.6rem 0 rgba(0, 0, 0, 0.25);
  font-weight: 700;
  background: #EDEDED;
  color: rgba(39, 120, 190, 0.5);
  line-height: 1.4;
  text-align: center;
}
.careerpathSlideButtons__btn.is-disabled {
  background: #FFF;
  color: #2778BE;
}
@media (min-width: 768px) {
  .careerpathSlideButtons {
    display: none;
  }
}

.careerpathSec {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .careerpathSec {
    margin-bottom: 100px;
  }
}/*# sourceMappingURL=style.css.map */