@charset "UTF-8";
/* reset
----------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

html {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* clearfix */
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hides from IE-Mac \*/
* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

/************
* 採用ページ共通css
*************/
:root {
  --main-base-color:#E5E7F0;
  --text-black:#353535;
  --main-gray-color:#E5E5E5;
  --primary-color:#004CBD;
  --main-langJa:"Noto Sans JP",sans-serif;
  --main-langEn: "Albert Sans", sans-serif;
  --main-langNum: "Albert Sans", sans-serif;
}

html {
  width: 100%;
  min-height: 100%;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--main-langJa, "Noto Sans JP", sans-serif);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-black, #353535);
  background-color: var(--main-base-color, #E5E7F0);
}
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
:where(:focus-visible) {
  outline: 3px solid Highlight;
  outline-offset: 2px;
}

.l-main {
  position: relative;
  display: block;
  flex-grow: 1;
}
@media (max-width: 960px) {
  .l-main {
    overflow: hidden;
  }
}
.l-main.--top {
  padding-top: 0;
}

.l-container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.l-inner {
  margin: 0 auto;
  width: 92%;
  max-width: 1300px;
}
@media (max-width: 960px) {
  .l-inner {
    width: 87%;
  }
}
.l-inner.--small {
  max-width: 1100px;
}
.l-inner.--medium {
  max-width: 1264px;
}
.l-inner.--large {
  max-width: 1440px;
}
.l-inner.--fluid {
  width: 100%;
  max-width: 100%;
}

.l-flex {
  display: flex;
  flex-wrap: wrap;
}

/******************************
* utility
*******************************/
.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
.u-en {
  font-family: var(--main-langEn, "Hanken Grotesk", sans-serif);
  font-optical-sizing: auto;
  font-style: normal;
}

.u-tal {
  text-align: left;
}

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

.u-tar {
  text-align: right;
}

.u-fwb {
  font-weight: 700;
}

.u-red {
  color: #FF0000;
}

.u-font-color {
  color: var(--text-black);
}

.u-theme-color {
  color: var(--primary-color);
}

.u-small {
  font-size: 75%;
}

.u-large {
  font-size: 125%;
}

.bg-white {
  background-color: #fff;
}

.bg-theme-color {
  background-color: var(--primary-color);
}

.u-tt-uc {
  text-transform: uppercase;
}

.u-link {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
.u-link:hover, .u-link:active {
  opacity: 0.8;
}

/******************************
* header
*******************************/
.l-header {
  position: fixed;
  top: 0%;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  padding: 0px;
  -webkit-backface-visibility: hidden;
  background: linear-gradient(180deg, #2c2c2c 0%, rgba(124, 129, 138, 0) 70%);
  background-blend-mode: multiply;
}
@media (max-width: 1200px) {
  .l-header {
    height: 56px;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  max-width: 1600px;
  width: 91%;
  padding-right: 150px;
}
@media (max-width: 1200px) {
  .l-header .l-inner {
    width: 92%;
  }
}

.p-header__title {
  position: relative;
  margin-right: 30px;
  margin-bottom: 10px;
  flex-shrink: 0;
  max-width: 323px;
  width: 26%;
  aspect-ratio: 150/11;
}
@media (max-width: 1200px) {
  .p-header__title {
    width: 176px;
  }
}
.p-header__title a {
  position: relative;
  display: block;
  height: 100%;
}

.p-header__nav.-pc {
  height: inherit;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
}
@media (max-width: 1200px) {
  .p-header__nav.-pc {
    display: none;
  }
}
.p-header__nav.-pc .p-gnav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: inherit;
}
.p-header__nav.-pc .p-gnav__item {
  position: relative;
}
.p-header__nav.-pc .p-gnav__link {
  position: relative;
  display: inline-block;
  padding: 0 1.45em;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 150%;
}
.p-header__nav.-pc .p-gnav__link:hover, .p-header__nav.-pc .p-gnav__link:focus {
  color: var(--primary-color);
}
.p-header__nav.-pc .p-header-contact {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 189px;
  height: 120px;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.2em;
  overflow: hidden;
  transition: background 0.5s;
  color: #000;
  background: linear-gradient(135deg, #D9300B 0%, #FFF966 7%, #FFFFFF 19.5%, #FFFFFF 33.5%, #00FF94 50%, #00F0FF 75.5%, #0B5DD9 100%);
  background-size: 200% auto;
  background-position: right center;
}
.p-header__nav.-pc .p-header-contact:hover, .p-header__nav.-pc .p-header-contact:focus {
  background-position: left center;
}
.p-header__nav.-pc .p-header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) {
  .p-header__nav.-pc {
    display: none;
  }
}
/* ドロワーメニュー */
.p-header__nav.-sp {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 100px;
}
.p-header__nav.-sp .p-nav-logo {
  position: fixed;
  top: 16px;
  left: 4%;
  width: 176px;
}
.p-header__nav.-sp .p-gnav {
  margin-top: 74px;
  display: block;
  width: 100%;
  padding: 0 2em;
}
.p-header__nav.-sp .p-gnav__item {
  width: 100%;
}
.p-header__nav.-sp .p-gnav__item:not(.-contact) {
  border-bottom: 1px solid #BFBFBF;
}
.p-header__nav.-sp .p-gnav__link {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  padding: 25px 0;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}
.p-header__nav.-sp .p-gnav__link:hover, .p-header__nav.-sp .p-gnav__link:focus, .p-header__nav.-sp .p-gnav__link:active {
  opacity: 0.6;
}
.p-header__nav.-sp .p-gnav__link.-contact {
  margin: 40px auto 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 48px;
  background: var(--primary-color);
  background-size: 200% auto;
  transition: 0.3s background ease-in-out;
}
.p-header__nav.-sp .p-gnav__link:hover.-contact {
  opacity: 1;
  background-position: right center;
}
.p-header__nav.-sp a.p-gnav__link:hover, .p-header__nav.-sp a.p-gnav__link:focus, .p-header__nav.-sp a.p-gnav__link:active {
  opacity: 0.6;
}
.p-header__nav.-sp .p-header-contact {
  margin: 40px auto;
  padding: 1em 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  text-transform: uppercase;
  font-style: italic;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.2em;
  overflow: hidden;
  transition: background 0.5s;
  color: #000;
  background: linear-gradient(135deg, #D9300B 0%, #FFF966 7%, #FFFFFF 19.5%, #FFFFFF 33.5%, #00FF94 50%, #00F0FF 75.5%, #0B5DD9 100%);
  background-size: 200% auto;
  background-position: right center;
}
.p-header__nav.-sp .p-header-contact:hover, .p-header__nav.-sp .p-header-contact:focus {
  background-position: left center;
}
.p-header__nav.-sp .p-header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

/* メニュー表示設定*/
.p-header__nav.-sp {
  position: fixed;
  top: 0;
  right: 0;
  color: #fff;
  background-color: var(--primary-color);
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  transition: 0.3s ease-out 0s;
  transition-property: opacity, visibility;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 768px) {
  .p-header__nav.-sp {
    max-width: 100%;
  }
}

.is-drawerActive .p-header__nav.-sp {
  opacity: 1;
  visibility: visible;
}

.p-hamburger {
  display: none;
}

.header-entry-sp {
  display: none;
}

@media (max-width: 1200px) {
  .p-hamburger {
    position: fixed;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
    outline: 0;
    border: 0;
    background-color: #353535;
    width: 56px;
    height: 56px;
    border-radius: 0;
    transition: background-color 0.3s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .p-hamburger .icon {
    position: relative;
    margin-left: 2px;
    display: block;
    width: 16px;
    height: 19px;
  }
  .p-hamburger .text {
    margin-left: 10px;
    margin-right: 10px;
    display: block;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    transition: opacity 0.3s ease-in-out;
    transition-property: opacity, width, margin;
  }
  .p-hamburger__line {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: background 0.2s cubic-bezier(0.23, 1, 0.58, 1);
    margin: auto;
    border-radius: 0.25em;
    background-color: #fff;
    width: 18px;
    height: 1px;
  }
  .p-hamburger__line:after,
.p-hamburger__line:before {
    display: block;
    position: absolute;
    content: "";
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1), top 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s;
    border-radius: inherit;
    background-color: inherit;
    width: 100%;
    height: 100%;
  }
  .p-hamburger__line:before {
    top: -3px;
  }
  .p-hamburger__line:after {
    top: 3px;
  }
  .is-drawerActive .p-hamburger::after {
    color: #fff;
  }
  .is-drawerActive .p-hamburger__line {
    background-color: transparent;
  }
  .is-drawerActive .p-hamburger__line:after,
.is-drawerActive .p-hamburger__line:before {
    top: 0;
    background-color: #fff;
    transition: transform 0.2s cubic-bezier(0.23, 1, 0.58, 1) 0.2s, top 0.2s cubic-bezier(0.23, 1, 0.58, 1);
  }
  .is-drawerActive .p-hamburger__line:before {
    transform: rotate(-45deg);
  }
  .is-drawerActive .p-hamburger__line:after {
    transform: rotate(45deg);
  }
  .is-drawerActive .p-hamburger .text {
    margin: 0;
    width: 0;
    opacity: 0;
  }
  .header-entry-sp {
    position: fixed;
    right: 56px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 56px;
    text-transform: uppercase;
    font-style: italic;
    font-family: "Albert Sans", sans-serif;
    font-weight: 700;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: 0.35em;
    overflow: hidden;
    transition: background 0.5s;
    color: #000;
    background: linear-gradient(135deg, #D9300B 0%, #FFF966 7%, #FFFFFF 19.5%, #FFFFFF 33.5%, #00FF94 50%, #00F0FF 75.5%, #0B5DD9 100%);
    background-size: 200% auto;
    background-position: right center;
    z-index: 101;
  }
  .header-entry-sp:active, .header-entry-sp:focus {
    background-position: left center;
  }
  .header-entry-sp a {
    display: block;
  }
}
/*******************************
* common
******************************/
.c-sec-contents {
  margin-top: 56px;
}
@media (max-width: 960px) {
  .c-sec-contents {
    margin-top: 46px;
  }
}

.c-title01 {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column-reverse;
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
  letter-spacing: 0.083em;
  color: var(--text-black, #353535);
}
@media (max-width: 960px) {
  .c-title01 {
    font-size: 30px;
  }
}
.c-title01.--small {
  font-size: 40px;
}
@media (max-width: 960px) {
  .c-title01.--small {
    font-size: 30px;
  }
}
.c-title01::after {
  content: attr(data-title);
  margin-bottom: 1.5em;
  text-transform: capitalize;
  color: #00C0CC;
  font-family: "Albert Sans", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  font-feature-settings: "liga" off;
  letter-spacing: normal;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.5;
}
@media (max-width: 960px) {
  .c-title01::after {
    margin-top: 0.5em;
    font-size: 15px;
  }
}
.c-title01.--white {
  color: #fff;
}
.c-title01.--center {
  align-items: center;
}
@media (max-width: 960px) {
  .c-title01.--sp-center {
    margin: 0 auto;
    align-items: center;
  }
}
.c-title01.--left {
  align-items: flex-start;
}
.c-title01.--right {
  align-items: flex-end;
}

.c-title02 {
  position: relative;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 960px) {
  .c-title02 {
    font-size: 28px;
    line-height: 130%;
  }
}
.c-title02.--large {
  font-size: 48px;
}
@media (max-width: 960px) {
  .c-title02.--large {
    font-size: 28px;
    line-height: 130%;
  }
}
.c-title02.--center {
  text-align: center;
}
.c-title02.--left {
  text-align: center;
}
.c-title02.--right {
  text-align: center;
}

.c-subttl01 {
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
  padding-bottom: 1.5em;
  border-bottom: 1px solid #D4D4D4;
}
@media (max-width: 960px) {
  .c-subttl01 {
    font-size: 18px;
  }
}
.c-subttl01::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  top: inherit;
  z-index: 2;
  content: "";
  width: 5em;
  height: 1px;
  background-color: var(--primary-color);
}

.c-subttl02 {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.66;
}
@media (max-width: 768px) {
  .c-subttl02 {
    font-size: 18px;
  }
}

.c-button01 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 0px;
  width: 228px;
  min-width: 136px;
  height: 56px;
  min-height: 56px;
  border: 1px solid #353535;
  border-radius: 28px;
}
.c-button01.--blue {
  color: #fff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.c-button02 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em 1em;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #004CBD;
  min-height: 56px;
  background: #E5E7F0;
  box-shadow: 0px 0px 4px rgba(255, 255, 255, 0.2), -9px -7px 13px #FFFFFF, 5px 5px 9px rgba(147, 171, 255, 0.3);
  border-radius: 43.5px;
}
@media (max-width: 960px) {
  .c-button02 {
    font-size: 14px;
  }
}
.c-button02 span {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
}
.c-button02 span::after {
  margin-left: 0.5em;
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/recruit_common/arrow_down.svg) no-repeat center/contain;
}

.c-button03 {
  position: relative;
  display: inline-block;
  padding: 24px 32px 24px 48px;
  width: 273px;
  color: #353535;
  border: 2px solid #353535;
  border-radius: 40px;
  font-family: "Albert Sans";
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 125%;
  letter-spacing: 0.04em;
  text-align: left;
}
@media (max-width: 768px) {
  .c-button03 {
    width: 254px;
    font-size: 14px;
  }
}
.c-button03.--white {
  color: #fff;
  border: 2px solid #fff;
}
.c-button03::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../img/recruit_common/arrow_left.svg) no-repeat center/contain;
  transition: right 0.3s ease-in-out;
}
@media (max-width: 768px) {
  .c-button03::after {
    right: 1.5em;
    width: 1.5em;
    height: 1.5em;
  }
}
.c-button03:hover::after, .c-button03:focus::after {
  right: 0.5em;
}

.c-text01 {
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.05em;
}

.c-text02 {
  font-size: 14px;
  line-height: 180%;
}

.c-text-lead {
  margin: 40px auto 0;
}
@media (max-width: 960px) {
  .c-text-lead {
    margin: 20px auto 0;
  }
}

.c-sec01 {
  padding-top: 80px;
  padding-bottom: 164px;
}
@media (max-width: 960px) {
  .c-sec01 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.c-list01 li {
  position: relative;
  padding-left: 1.5em;
}
.c-list01 li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.c-table01 th {
  padding: 1.5em 0;
  font-size: 16px;
  line-height: 190%;
  color: var(--primary-color);
  border-bottom: 1px solid var(--primary-color);
}
@media (max-width: 960px) {
  .c-table01 th {
    font-size: 14px;
  }
}
.c-table01 td {
  padding: 1.5em 0;
  font-size: 16px;
  border-bottom: 1px solid #D4D4D4;
}
@media (max-width: 960px) {
  .c-table01 td {
    font-size: 14px;
  }
}

.c-box01 {
  background: #E5E7F0;
  box-shadow: inset 0px 0px 4px rgba(255, 255, 255, 0.2), inset -9px -7px 13px #FFFFFF, inset 5px 5px 9px rgba(147, 171, 255, 0.3);
  border-radius: 40px;
}
@media (max-width: 960px) {
  .c-box01 {
    border-radius: 20px;
  }
}

.c-grid-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 40px;
}
@media (max-width: 960px) {
  .c-grid-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.c-grid-item.one-third {
  grid-column: span 4; /* 1/3 */
}
.c-grid-item.two-thirds {
  grid-column: span 8; /* 2/3*/
}
.c-grid-item.one-fourth {
  grid-column: span 3; /* 1/4 */
}
.c-grid-item.half {
  grid-column: span 6; /* 1/2 */
}
.c-grid-item.full {
  grid-column: span 12; /* 1 */
}
@media (max-width: 960px) {
  .c-grid-item.one-third, .c-grid-item.two-thirds, .c-grid-item.one-fourth, .c-grid-item.half, .c-grid-item.full {
    grid-column: span 1; /* 1 */
  }
}

.c-category-list {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}
@media (max-width: 960px) {
  .c-category-list {
    margin-top: 20px;
  }
}

.c-category-list-item {
  margin-right: 1em;
  margin-bottom: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.25em 20px;
  color: #2A73BA;
  border: 1px solid var(--primary-color, #2A73BA);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .c-category-list-item {
    font-size: 14px;
  }
}

.c-map-link {
  position: relative;
  padding-left: 1.5em;
  display: inline-block;
  color: #ABC39C;
}
.c-map-link::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: #ABC39C;
  -webkit-mask-image: url(../img/common/icon_map.svg);
  -webkit-mask-size: cover;
  mask-image: url(../img/common/icon_map.svg);
  mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  transition: background ease-in-out 0.3s;
}
.c-map-link.--blue {
  color: var(--primary-color, #2A73BA);
}
.c-map-link.--blue::before {
  background-color: var(--primary-color, #2A73BA);
}

/***********************
* header-crumb
************************/
.header-crumb {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 225px;
  background: url(../img/recruit_interview/header-crumb01.webp) no-repeat top center/cover;
}
@media (max-width: 960px) {
  .header-crumb {
    height: 115px;
  }
}
.header-crumb[data-title] {
  height: 289px;
}
@media (max-width: 960px) {
  .header-crumb[data-title] {
    height: 115px;
  }
}
.header-crumb::after {
  content: attr(data-title);
  position: absolute;
  right: 0;
  bottom: -0.75em;
  font-family: "Albert Sans";
  font-weight: 700;
  font-size: 176px;
  font-size: clamp(48px,11vw,176px);
  line-height: 125%;
  font-feature-settings: "liga" off;
  color: #F8F8F8;
  opacity: 0.6;
  z-index: 1;
}
.header-crumb .breadcrumb {
  position: relative;
  z-index: 2;
}

.no-hero-crumb {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 194px;
}
@media (max-width: 768px) {
  .no-hero-crumb {
    height: 70px;
  }
}
.no-hero-crumb .breadcrumb-wrap {
  margin-top: auto;
}
.no-hero-crumb .breadcrumb a {
  color: #C7D6ED;
}
.no-hero-crumb .breadcrumb li:first-child a::before {
  background-color: #fff;
}
.no-hero-crumb .breadcrumb li:not(:first-child)::before {
  background-color: #fff;
}
.no-hero-crumb .breadcrumb li:last-child {
  color: #fff;
}

.number-crumb .breadcrumb a {
  color: #C7D6ED;
}
.number-crumb .breadcrumb li:first-child a::before {
  background-color: #fff;
}
.number-crumb .breadcrumb li:not(:first-child)::before {
  background-color: #fff;
}
.number-crumb .breadcrumb li:last-child {
  color: #fff;
}

/***********************
* breadcrumb list
************************/
.breadcrumb {
  padding: 1.5em 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.41;
  letter-spacing: 0.05em;
}
@media (max-width: 960px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb li {
  display: flex;
  margin-right: 0;
}
.breadcrumb li a {
  position: relative;
  display: block;
  color: #6C6C6C;
}
.breadcrumb li a:hover, .breadcrumb li a:focus {
  text-decoration: underline;
}
.breadcrumb li:first-child a {
  width: 15px;
}
.breadcrumb li:first-child a::before {
  content: "";
  color: transparent;
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #6C6C6C;
  -webkit-mask-image: url(../img/recruit_common/icon_home.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/recruit_common/icon_home.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.breadcrumb li:not(:first-child)::before {
  content: "";
  margin-top: 0.25em;
  margin-left: 0.75em;
  display: inline-block;
  width: 10px;
  height: 10px;
  background-color: #6C6C6C;
  -webkit-mask-image: url(../img/recruit_common/bread_arrow.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/recruit_common/bread_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}
.breadcrumb li:last-child {
  color: #6C6C6C;
}

/*************************
* 数字(common)
**************************/
.top-data-grid-wrap .c-grid-item,
.data-grid-wrap .c-grid-item {
  padding: 55px 40px;
}
@media (max-width: 960px) {
  .top-data-grid-wrap .c-grid-item,
.data-grid-wrap .c-grid-item {
    padding: 45px 40px;
  }
}

.data-grid-wrap {
  margin-top: 72px;
}
@media (max-width: 960px) {
  .data-grid-wrap {
    margin-top: 36px;
  }
}

.data-thema {
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #353535;
}
@media (max-width: 960px) {
  .data-thema {
    font-size: 24px;
  }
}

.data-counter {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media (max-width: 960px) {
  .data-counter {
    margin-top: 30px;
  }
}
.data-counter.-column {
  flex-direction: column;
  align-items: center;
}
.data-counter .num {
  font-family: "Albert Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 140px;
  font-size: min(8.75vw,140px);
  line-height: 0.75;
  text-align: center;
  color: #004CBD;
}
@media (max-width: 960px) {
  .data-counter .num {
    font-size: 140px;
    font-size: min(37.33vw,140px);
  }
}
.data-counter .unit {
  font-weight: 700;
  font-size: 32px;
  font-size: min(2vw,32px);
  line-height: 1;
  text-align: center;
  color: #353535;
}
@media (max-width: 960px) {
  .data-counter .unit {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter .unit02 {
  font-weight: 700;
  font-size: 32px;
  font-size: min(2vw,32px);
  line-height: 1;
  text-align: center;
  color: #353535;
}
@media (max-width: 960px) {
  .data-counter .unit02 {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter .unit03 {
  font-weight: 700;
  font-size: 70px;
  font-size: min(4.37vw,70px);
  line-height: 1;
  text-align: center;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .data-counter .unit03 {
    font-size: 90px;
    font-size: min(24vw,90px);
  }
}
.data-counter.-small .num {
  font-size: 100px;
  font-size: min(6.25vw,100px);
}
@media (max-width: 960px) {
  .data-counter.-small .num {
    font-size: 100px;
    font-size: min(26.66vw,100px);
  }
}
.data-counter.-small .unit {
  font-size: 32px;
  font-size: min(2vw,32px);
}
@media (max-width: 960px) {
  .data-counter.-small .unit {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter.-small02 .num {
  font-size: 90px;
  font-size: min(5.62vw,90px);
}
@media (max-width: 960px) {
  .data-counter.-small02 .num {
    font-size: 90px;
    font-size: min(24vw,90px);
  }
}
.data-counter.-small02 .unit {
  font-size: 32px;
  font-size: min(2vw,32px);
}
@media (max-width: 960px) {
  .data-counter.-small02 .unit {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter + p {
  margin-top: 1em;
}

/*************************
* pagination
**************************/
.joblist-wrap + .c-pagination {
  margin-top: 80px;
}
@media (max-width: 768px) {
  .joblist-wrap + .c-pagination {
    margin-top: 50px;
  }
}

.c-pagination .navigation.pagination .screen-reader-text {
  display: none;
}
.c-pagination .navigation.pagination .nav-links {
  text-align: center;
}
.c-pagination .navigation.pagination .nav-links .page-numbers {
  display: inline-block;
  margin: 0 3px;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  color: var(--text-black);
  background-color: rgba(var(--text-black), 0);
  border: none;
  transition: background-color 0.3s ease-in-out;
  transition-property: background-color, color, border;
  text-align: center;
  font-weight: 400;
}
.c-pagination .navigation.pagination .nav-links .page-numbers:focus, .c-pagination .navigation.pagination .nav-links .page-numbers:active, .c-pagination .navigation.pagination .nav-links .page-numbers:hover {
  color: #fff;
  background-color: var(--primary-color);
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current {
  color: #fff;
  background-color: var(--text-black);
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.current:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.current:active, .c-pagination .navigation.pagination .nav-links .page-numbers.current:hover {
  background-color: var(--primary-color);
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev {
  padding: 0.65em 0em;
  padding: 0;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border: none;
}
.c-pagination .navigation.pagination .nav-links .page-numbers.next:focus, .c-pagination .navigation.pagination .nav-links .page-numbers.next:active, .c-pagination .navigation.pagination .nav-links .page-numbers.next:hover,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:focus,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:active,
.c-pagination .navigation.pagination .nav-links .page-numbers.prev:hover {
  background-color: transparent;
  color: var(--primary-color);
}

@media (max-width: 768px) {
  .c-pagination .navigation.pagination .nav-links .page-numbers {
    display: inline-block;
    margin: 0 2px;
  }
}