@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:#D7092D;
  --text-black:#000;
  --main-gray-color:#D8CDCF;
  --primary-color:#D7092D;
  --main-fontJa:"Noto Sans JP",sans-serif;
  --main-fontEn: "Protest Strike", sans-serif;
  --main-fontNum: "Stick No Bills", sans-serif;
}

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

body {
  width: 100%;
  min-height: 100%;
  height: 100%;
  font-family: var(--main-fontJa, "Noto Sans JP", sans-serif);
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--text-black, #000);
  background-color: var(--main-base-color);
}
@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 {
    padding-top: 62px;
    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: 1056px;
}
@media (max-width: 960px) {
  .l-inner {
    width: 92%;
  }
}
.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-fontEn);
  font-optical-sizing: auto;
  font-style: normal;
}

.u-num {
  font-family: var(--main-fontNum);
  font-optical-sizing: auto;
}

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

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

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

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

.u-white {
  color: #fff;
}

.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);
}

.bg-half-color {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--primary-color) 50%, #000 50%, #000 100%);
}

.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: 80px;
  z-index: 100;
  transition: 0.75s height ease-in-out;
  transition-property: opacity, height, background-color;
  padding: 0px;
  background-color: var(--primary-color);
  -webkit-backface-visibility: hidden;
}
@media (max-width: 960px) {
  .l-header {
    height: 56px;
  }
}
.l-header .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-left: 4%;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
@media (max-width: 960px) {
  .l-header .l-inner {
    padding-left: 0;
    width: 92%;
  }
}

body.is-header-bg-none .l-header {
  background: transparent;
}

.p-header__title {
  position: relative;
  flex-shrink: 0;
}

.p-header__title .p-logo {
  position: relative;
  display: block;
  width: 249px;
}
@media (max-width: 960px) {
  .p-header__title .p-logo {
    width: 170px;
  }
}

.p-header__cop a {
  display: block;
  padding: 0.5em 1em;
  font-size: 11px;
  color: #fff;
  text-align: center;
  width: 154px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.p-header__cop a span {
  position: relative;
  padding-right: 1.5em;
  line-height: 1;
}
.p-header__cop a span::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 13px;
  height: 13px;
  background: url(../img/recruit_common/icon_blank.svg) no-repeat center;
  background-size: contain;
}
.p-header__cop.pc-only {
  margin-left: 40px;
}
@media (max-width: 960px) {
  .p-header__cop.pc-only {
    display: none !important;
  }
}
.p-header__cop.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .p-header__cop.sp-only {
    display: block !important;
  }
  .p-header__cop.sp-only a {
    margin: 0 auto;
  }
}

.p-header__nav.--pc {
  margin-left: 4%;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  height: inherit;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease-in-out;
  transition-property: opacity, visibility;
}
@media (max-width: 960px) {
  .p-header__nav.--pc {
    display: none;
  }
}
.p-header__nav.--pc .p-gnav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  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 {
  opacity: 0.6;
}
.p-header__nav.--pc .p-header-contact {
  margin-left: 4%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 204px;
  height: 80px;
  text-transform: uppercase;
  font-family: var(--main-fontEn);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.2em;
  overflow: hidden;
  transition: background 0.5s, color 0.5s;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.p-header__nav.--pc .p-header-contact:hover, .p-header__nav.--pc .p-header-contact:focus {
  color: #000;
  background: #fff;
}
.p-header__nav.--pc .p-header-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

@media (max-width: 960px) {
  .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: 18px;
  left: 4%;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.p-header__nav.--sp .p-nav-logo .sub {
  font-family: var(--main-fontEn);
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
}
.p-header__nav.--sp .p-logo {
  width: 170px;
}
.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__link {
  position: relative;
  display: block;
  color: #fff;
  text-align: center;
  padding: 1em 0;
  text-align: center;
  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;
  max-width: 360px;
  width: 84%;
  text-transform: uppercase;
  font-family: var(--main-fontEn);
  font-weight: 400;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.1em;
  overflow: hidden;
  transition: background 0.5s, color 0.5s;
  color: #fff;
  background: #000;
}
.p-header__nav.--sp .p-header-contact:hover, .p-header__nav.--sp .p-header-contact:focus {
  color: #000;
  background: #fff;
}
.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: #b30f26;
  text-align: center;
  width: 100%;
  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: 960px) {
  .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: transparent;
    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: 30px;
    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: 30px;
    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: -8px;
  }
  .p-hamburger__line:after {
    top: 8px;
  }
  .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: 0;
    bottom: 0;
    display: none;
    width: 100%;
    height: 96px;
    text-transform: uppercase;
    font-family: var(--main-fontEn);
    font-weight: 700;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.1em;
    overflow: hidden;
    transition: background 0.5s, color 0.5s;
    color: #fff;
    background: #000;
    border-top: 1px solid #fff;
    z-index: 99;
  }
  .header-entry-sp:active, .header-entry-sp:focus {
    color: #000;
    background: #fff;
  }
  .header-entry-sp a {
    display: block;
  }
  .header-entry-sp.is-show {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
/*******************************
* footer
******************************/
.l-footer {
  padding: 50px 0;
  color: #fff;
  background-color: #000;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 45px 0 120px;
  }
}
.l-footer .l-inner {
  max-width: 1286px;
}

.footer-grid {
  display: grid;
  grid-auto-columns: 1fr;
  grid-template-columns: 259px auto 1fr;
  grid-template-rows: auto auto;
  gap: 0px 0px;
  grid-template-areas: "footer-logo footer-cop footer-nav" "c-copy c-copy c-copy";
}
.footer-grid .c-copy {
  grid-area: c-copy;
}
.footer-grid .footer-logo {
  grid-area: footer-logo;
}
.footer-grid .footer-cop {
  grid-area: footer-cop;
}
.footer-grid .footer-nav {
  grid-area: footer-nav;
}
@media (max-width: 960px) {
  .footer-grid {
    display: grid;
    grid-auto-columns: 1fr;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 0px;
    grid-template-areas: "footer-logo" "footer-cop" "footer-nav" "c-copy";
  }
}

.footer-nav {
  display: flex;
  justify-content: end;
  gap: 10px;
}
@media (max-width: 960px) {
  .footer-nav {
    margin-top: 25px;
    flex-direction: column;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
}
@media (max-width: 960px) {
  .footer-logo {
    flex-direction: column;
  }
}
.footer-logo .sub {
  margin-left: 8px;
  font-family: var(--main-fontEn);
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .footer-logo .sub {
    margin-top: 0.5em;
    margin-left: 0;
  }
}
.footer-logo .img {
  display: block;
}

.footer-cop {
  margin-left: 40px;
  align-content: center;
}
@media (max-width: 960px) {
  .footer-cop {
    margin: 25px auto 0;
  }
}
.footer-cop a {
  display: block;
  padding: 0.5em 1em;
  font-size: 11px;
  color: #fff;
  text-align: center;
  width: 154px;
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.footer-cop a span {
  position: relative;
  padding-right: 1.5em;
  display: inline-block;
  line-height: 1;
}
.footer-cop a span::after {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background: url(../img/recruit_common/icon_blank.svg) no-repeat center;
  background-size: contain;
}

.footer-gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  font-size: 15px;
  font-weight: 700;
}
@media (max-width: 960px) {
  .footer-gnav {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    line-height: 2;
  }
}

.footer-gnav__link {
  display: block;
  padding: 0;
}

.c-copy {
  margin-top: 40px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}
@media (max-width: 960px) {
  .c-copy {
    margin-top: 60px;
  }
}

/*******************************
* common
******************************/
.c-sec-contents {
  margin-top: 56px;
}
@media (max-width: 960px) {
  .c-sec-contents {
    margin-top: 46px;
  }
}

.page-title01 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  height: 468px;
}
@media (max-width: 768px) {
  .page-title01 {
    height: 210px;
  }
}
.page-title01.--interview-list {
  height: 400px;
}
@media (max-width: 768px) {
  .page-title01.--interview-list {
    height: 210px;
  }
}
.page-title01.--white {
  color: #fff;
}
.page-title01.--primary {
  color: var(--primary-color);
}
.page-title01.--center {
  align-items: center;
}

.page-title01-ja {
  font-size: 18px;
  font-weight: 900;
}

.page-title01-en {
  font-size: 72px;
  font-weight: 400;
  font-family: var(--main-fontEn);
}
@media (max-width: 768px) {
  .page-title01-en.--small {
    font-size: 42px;
  }
}

.c-title01 {
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
}
.c-title01.--white {
  color: #fff;
}
.c-title01.--primary {
  color: var(--primary-color);
}
.c-title01.--center {
  align-items: center;
}
.c-title01.--left {
  align-items: flex-start;
}
.c-title01.--right {
  align-items: flex-end;
}

.c-title01-ja {
  margin-top: 0.75em;
  font-size: 18px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .c-title01-ja {
    margin-top: 0;
  }
}

.c-title01-en {
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  font-family: var(--main-fontEn);
}
@media (max-width: 768px) {
  .c-title01-en {
    font-size: 72px;
  }
}
.c-title01-en.--sp-small {
  font-size: 54px;
}

.c-title02 {
  position: relative;
  color: var(--primary-color);
  font-size: 32px;
  font-weight: 700;
  line-height: 150%;
}
@media (max-width: 768px) {
  .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: 768px) {
  .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;
  color: #fff;
  border: 1px solid var(--text-black);
  background-color: var(--text-black);
  border-radius: 28px;
  cursor: pointer;
}
.c-button01.--primary {
  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 2em 1em;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
  color: #fff;
  min-height: 56px;
  background: var(--primary-color);
  border-radius: 43.5px;
  cursor: pointer;
}
@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 {
  content: "";
  display: block;
  position: absolute;
  bottom: -1.5em;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: 1em;
  background: url(../img/recruit_common/arrow_down.svg) no-repeat center/contain;
}

.c-button03 {
  position: relative;
  display: inline-block;
  padding: 20px 32px 20px 28px;
  width: 273px;
  color: #fff;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 40px;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  text-align: left;
  cursor: pointer;
}
@media (max-width: 768px) {
  .c-button03 {
    width: 254px;
    font-size: 14px;
  }
}
.c-button03::after {
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background-color: #fff;
  -webkit-mask-image: url(../img/recruit_common/arrow_right.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/recruit_common/arrow_right.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: right 0.3s ease-in-out;
}
.c-button03:hover::after, .c-button03:focus::after {
  right: 0.5em;
}

.c-text01 {
  font-size: 16px;
  line-height: 180%;
  font-weight: 500;
}

.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-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: #fff;
  border: 1px solid #000;
  border-radius: 8px;
}

.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: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 16px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 960px) {
  .c-category-list-item {
    font-size: 14px;
  }
}

/**********************
* form parts
***********************/
:root {
  --required-color:#D7092D;
  --optional-color:#000;
  --input-bg-color: #F5F5F5;
  --input-border-color: #F5F5F5;
}

.is-required {
  color: var(--required-color);
  border: 1px solid var(--required-color);
  display: inline-block;
  line-height: 1.5;
  font-size: 13px;
  padding: 2px 0.25em;
  letter-spacing: 0.15em;
}

.is-optional {
  color: #fff;
  background-color: var(--optional-color);
  display: inline-block;
  line-height: 1.5;
  font-size: 13px;
  padding: 2px 12px;
  letter-spacing: 0.15em;
}

input, textarea, select {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

.c-form-text {
  height: 3.4em;
  width: 100%;
  padding: 0 16px;
  background-color: var(--input-bg-color);
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.c-form-text:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #335c99 inset;
}

.c-form-text.--half {
  max-width: 200px;
}

.c-form-text.--w400 {
  max-width: 400px;
}

.c-form-text.--w500 {
  max-width: 500px;
}

.c-form-textarea {
  width: 100%;
  padding: 8px 16px;
  background-color: var(--input-bg-color);
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.c-form-textarea:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #335c99 inset;
}

.c-form-checkbox input[type=checkbox],
.c-form-radio input[type=radio] {
  position: relative;
  cursor: pointer;
  margin: 0;
  margin-right: 0.5em;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  text-align: center;
  border: none;
}

.c-form-checkbox input[type=checkbox]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  border-radius: 2px;
}

.c-form-checkbox input[type=checkbox]::after {
  display: block;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: solid var(--primary-color);
  border-width: 0 2px 2px 0;
  left: 0.5em;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0.4em;
  height: 0.65em;
  transform: translateY(-1px) rotate(45deg);
  opacity: 0;
}

.c-form-radio input[type=radio]::before {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  border-radius: 100%;
}

.c-form-radio input[type=radio]::after {
  display: block;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100%;
  width: 0.5em;
  height: 0.5em;
  background-color: var(--primary-color);
  opacity: 0;
}

.c-form-checkbox-text, .c-form-radiobox-text {
  margin-left: 0.5em;
}

.c-form-checkbox input[type=checkbox]:checked::before {
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  border-radius: 2px;
}

.c-form-radio input[type=radio]:checked::before {
  background-color: var(--input-bg-color);
  border: 1px solid var(--input-border-color);
  border-radius: 100%;
}

.c-form-checkbox input[type=checkbox]:checked::after,
.c-form-radio input[type=radio]:checked::after {
  opacity: 1;
}

.c-form-checkbox input:focus,
.c-form-checkbox input:focus-visible {
  border: 1px solid var(--input-border-color);
  border-radius: 2px;
}

.c-form-radio input:focus,
.c-form-radio input:focus-visible {
  border: 1px solid var(--input-border-color);
  border-radius: 100%;
}

.c-form-select {
  position: relative;
  width: 100%;
}
.c-form-select.--w327 {
  max-width: 327px;
}

.c-form-select:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 12px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #1A1A1A;
  border-right: 2px solid #1A1A1A;
  transform: rotate(135deg);
  pointer-events: none;
  z-index: 2;
}

.c-form-select select {
  height: 3.5em;
  width: 100%;
  padding: 0 8px;
  background-color: var(--input-bg-color);
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color: #262626;
}

.c-form-select select::-ms-expand {
  display: none;
}

.c-form-select select select:focus {
  outline: 0;
  box-shadow: 0 0 0 2px #303D4D inset;
}

.c-form-submit-button {
  position: relative;
  display: block;
  padding: 2em 1.5em 2em 1em;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 62px;
  width: 100%;
  max-width: 385px;
  text-align: center;
  transition: color ease-in-out 0.3s;
  transition-property: color, background-position;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media (max-width: 767px) {
  .c-form-submit-button {
    padding: 1.25em 2em;
    font-size: 16px;
  }
}
.c-form-submit-button:disabled {
  border: 1px solid rgba(161, 161, 161, 0);
  color: #fff;
  background: #BFBFBF;
}

@media (hover: hover) {
  .c-form-submit-button:hover {
    background-position: top 50% right 10px;
  }
  .c-form-submit-button:disabled:hover {
    border: 1px solid rgba(161, 161, 161, 0);
    color: #fff;
    background: #BFBFBF;
  }
}
@media (hover: none) {
  .c-form-submit-button:active {
    background-position: top 50% right 10px;
  }
  .c-form-submit-button:disabled:active {
    border: 1px solid rgba(161, 161, 161, 0);
    color: #fff;
    background: #a1a1a1;
  }
}
/***********************
* 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: 40px 4%;
}
@media (max-width: 960px) {
  .top-data-grid-wrap .c-grid-item,
.data-grid-wrap .c-grid-item {
    padding: 40px 4%;
  }
}

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

.data-thema {
  margin-left: 1em;
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-decoration-thickness: 1px;
}
@media (max-width: 960px) {
  .data-thema {
    font-size: 24px;
  }
}

* + .data-thema {
  margin-top: 1em;
}

.data-text {
  font-size: 15px;
  text-align: center;
}

.data-detail.--column {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.data-detail.counter-area {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.data-detail.num0102 {
  justify-content: flex-end;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.data-detail.num0108 {
  display: flex;
  gap: 20px;
}
@media (max-width: 960px) {
  .data-detail.num0108 {
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (max-width: 960px) {
  .data-detail.num0108 .num {
    font-size: 100px;
    font-size: min(26.66vw,100px);
  }
}
@media (max-width: 960px) {
  .data-detail.num0108 .unit {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}

.chart0208 {
  margin: 0 auto;
  width: 60%;
  max-width: 336px;
}
@media (max-width: 960px) {
  .chart0208 {
    margin-top: 50px;
    width: 90%;
  }
}

.data-list01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 40px auto 0;
  font-weight: 700;
  font-size: 32px;
  font-size: min(1.42vw,20px);
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .data-list01 {
    font-size: min(5.33vw,20px);
  }
}

.data-counter {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .data-counter {
    margin-top: 30px;
  }
}
.data-counter.--column {
  flex-direction: column;
  align-items: center;
}
.data-counter .num {
  font-family: var(--main-fontNum);
  font-optical-sizing: auto;
  font-weight: 700;
  font-size: 120px;
  font-size: min(8.57vw,120px);
  line-height: 0.75;
  text-align: center;
}
@media (max-width: 960px) {
  .data-counter .num {
    font-size: 140px;
    font-size: min(37.33vw,140px);
  }
}
.data-counter .unit {
  font-weight: 700;
  font-size: 42px;
  font-size: min(3vw,42px);
  line-height: 1;
  text-align: center;
}
@media (max-width: 960px) {
  .data-counter .unit {
    font-size: 42px;
    font-size: min(11.2vw,42px);
  }
}
.data-counter .unit02 {
  font-weight: 700;
  font-size: 32px;
  font-size: min(2.28vw,32px);
  line-height: 1;
  text-align: center;
}
@media (max-width: 960px) {
  .data-counter .unit02 {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter.--medium .num {
  font-size: 88px;
  font-size: min(6.28vw,88px);
}
@media (max-width: 960px) {
  .data-counter.--medium .num {
    font-size: 100px;
    font-size: min(26.66vw,100px);
  }
}
.data-counter.--small .num {
  font-size: 72px;
}
@media (max-width: 960px) {
  .data-counter.--small .num {
    font-size: 100px;
    font-size: min(26.66vw,100px);
  }
}
.data-counter.--small .unit {
  font-size: 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(6.42vw,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(2.28vw,32px);
}
@media (max-width: 960px) {
  .data-counter.-small02 .unit {
    font-size: 32px;
    font-size: min(8.53vw,32px);
  }
}
.data-counter + p {
  margin-top: 1em;
}
.data-counter + .data-counter {
  margin-top: 10px;
}
@media (max-width: 960px) {
  .data-counter + .data-counter {
    margin-top: 10px;
  }
}

.c-contents-box01 {
  padding: 112px 0 112px;
  color: var(--text-black);
  background-color: #fff;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .c-contents-box01 {
    padding: 65px 0 65px;
    border-radius: 40px;
  }
}

.c-contents-box02 {
  padding: 112px 0 112px;
  color: var(--text-black);
  background: url(../img/common/bg_data.png) repeat-y top center/100%;
  border-radius: 120px;
}
@media (max-width: 768px) {
  .c-contents-box02 {
    padding: 65px 0 65px;
    border-radius: 40px;
  }
}

/*************************
* 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;
  }
}
/***********
* インタビュー 一覧
**************/
.interview-list {
  padding-bottom: calc(150 / 1400 * 100%);
}
@media (max-width: 960px) {
  .interview-list {
    padding-bottom: 50px;
  }
}

.interview-item__wrap {
  position: relative;
  margin: 0 auto;
  max-width: 1032px;
}

.interview-item__thumb {
  position: relative;
  width: calc(832 / 1032 * 100%);
  aspect-ratio: 832/597;
  overflow: hidden;
}
@media (max-width: 960px) {
  .interview-item__thumb {
    width: 100%;
    aspect-ratio: 401/551;
  }
}

.interview-item:nth-child(odd) .interview-item__body {
  right: 0;
}
.interview-item:nth-child(odd) .interview-item__thumb {
  margin-right: auto;
}
.interview-item:nth-child(even) .interview-item__body {
  left: 0;
}
.interview-item:nth-child(even) .interview-item__thumb {
  margin-left: auto;
}
.interview-item__body {
  position: absolute;
  display: block;
  bottom: 0;
  border: 2px solid #000;
  background-color: #fff;
  width: calc(419 / 1032 * 100%);
  padding: 25px calc(20 / 419 * 100%);
}
@media (max-width: 960px) {
  .interview-item__body {
    right: 0;
    bottom: 0;
    top: auto;
    position: relative;
    margin: -20% auto 0;
    width: 92%;
  }
}

.interview-item__message {
  font-size: 18px;
  font-size: min(1.28vw,18px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-item__message {
    font-size: 4.8vw;
  }
}

.interview-item__sub {
  margin-top: 1em;
  color: #7E8F9A;
  font-size: 12px;
  font-size: min(0.85vw,12px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-item__sub {
    font-size: 3.2vw;
  }
}

.interview-item__name {
  margin-top: 0.5em;
  font-size: 16px;
  font-size: min(1.14vw,16px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-item__name {
    font-size: 4.26vw;
  }
}

.interview-item__button {
  margin-top: 1.5em;
  position: relative;
  display: flex;
  padding: 0.5em 1em 0.5em 1.5em;
  width: 10.8em;
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 11px;
  font-size: min(0.78vw,11px);
  font-style: normal;
  font-weight: 500;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 960px) {
  .interview-item__button {
    margin-top: 0.75em;
    padding: 0.25em 1em 0.25em 1.5em;
    font-size: 2.93vw;
  }
}
.interview-item__button::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/recruit_common/arrow_right.svg);
          mask-image: url(../img/recruit_common/arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}

a:hover .interview-item__button, a:focus .interview-item__button {
  color: var(--primary-color);
  background-color: #fff;
}
a:hover .interview-item__button::after, a:focus .interview-item__button::after {
  background-color: var(--primary-color);
}

.interview-item + .interview-item {
  margin-top: 88px;
}
@media (max-width: 960px) {
  .interview-item + .interview-item {
    margin-top: 40px;
  }
}

.interview-item {
  position: relative;
  display: block;
}
@media (max-width: 960px) {
  .interview-item {
    padding-top: calc(135 / 375 * 100%);
  }
}
.interview-item::before {
  position: absolute;
  content: "";
  width: calc(657 / 1400 * 100%);
  aspect-ratio: 657/464;
  background: url(../img/interview/common/bg_iv01.png) no-repeat left top/contain;
  mix-blend-mode: multiply;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 960px) {
  .interview-item::before {
    top: 0;
    width: calc(312 / 375 * 100%);
  }
}
.interview-item:nth-child(odd)::before {
  right: 0;
}
@media (max-width: 960px) {
  .interview-item:nth-child(odd)::before {
    left: 0;
    right: auto;
  }
}
.interview-item:nth-child(even)::before {
  left: 0;
}
@media (max-width: 960px) {
  .interview-item:nth-child(even)::before {
    left: auto;
    right: 0;
  }
}
.interview-item.--interview01::before {
  top: -60%;
  width: 46.9285714286%;
  max-width: 657px;
  background-image: url(../img/interview/common/bg_iv01.png);
  aspect-ratio: 339/643;
}
@media (max-width: 960px) {
  .interview-item.--interview01::before {
    top: -15%;
    left: auto;
    right: 0;
    width: 100%;
  }
}
.interview-item.--interview02::before {
  top: -64%;
  width: 54.2142857143%;
  max-width: 759px;
  background-image: url(../img/interview/common/bg_iv02.png);
  aspect-ratio: 759/1286;
}
@media (max-width: 960px) {
  .interview-item.--interview02::before {
    top: -22%;
    left: 0;
    right: auto;
    width: 119%;
  }
}
.interview-item.--interview03::before {
  top: -9%;
  width: 51.2142857143%;
  max-width: 717px;
  background-image: url(../img/interview/common/bg_iv03.png);
  aspect-ratio: 717/1198;
}
@media (max-width: 960px) {
  .interview-item.--interview03::before {
    top: -15%;
    left: auto;
    right: 0;
    width: 100%;
  }
}
.interview-item.--interview04::before {
  top: -93%;
  width: 57.0714285714%;
  max-width: 799px;
  background-image: url(../img/interview/common/bg_iv04.png);
  aspect-ratio: 799/1656;
}
@media (max-width: 960px) {
  .interview-item.--interview04::before {
    top: -36%;
    left: 0;
    right: auto;
    width: 120%;
  }
}
.interview-item.--interview05::before {
  top: -93%;
  width: 65.0714285714%;
  max-width: 911px;
  background-image: url(../img/interview/common/bg_iv05.png);
  aspect-ratio: 991/1563;
}
@media (max-width: 960px) {
  .interview-item.--interview05::before {
    top: -34%;
    left: auto;
    right: 0;
    width: 134%;
  }
}

/***********
* インタビュー 詳細
**************/
.interview-header {
  position: relative;
  margin: 0 auto;
  padding-top: 155px;
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: calc(763 / 1400 * 100%) 1fr;
  grid-template-rows: auto 1fr;
  gap: 0px 0px;
  grid-template-areas: "g01 g03" "g02 g03";
  max-width: 1600px;
}
.interview-header .g01 {
  grid-area: g01;
}
.interview-header .g02 {
  grid-area: g02;
}
.interview-header .g03 {
  grid-area: g03;
}
@media (max-width: 960px) {
  .interview-header {
    padding-top: 0;
    display: block;
  }
}
.interview-header::before {
  position: absolute;
  z-index: 0;
  content: "";
  display: block;
  mix-blend-mode: multiply;
  background: url(../img/interview/interview01/bg_interview01.png) no-repeat top center/contain;
  pointer-events: none;
}
.interview-header.--interview01::before {
  top: 0px;
  left: 8.5%;
  width: 71%;
  aspect-ratio: 42/53;
  background: url(../img/interview/interview01/bg_interview01.png) no-repeat top center/contain;
}
@media (max-width: 960px) {
  .interview-header.--interview01::before {
    left: 0;
    width: 136%;
  }
}
.interview-header.--interview02::before {
  top: 0;
  left: 11.5%;
  background: url(../img/interview/interview02/bg_interview02.png) no-repeat top center/contain;
  width: 81%;
  aspect-ratio: 567/649;
}
@media (max-width: 960px) {
  .interview-header.--interview02::before {
    left: 0;
    width: 136%;
  }
}
.interview-header.--interview03::before {
  top: 0;
  left: 17.5%;
  background: url(../img/interview/interview03/bg_interview03.png) no-repeat top center/contain;
  width: 79%;
  aspect-ratio: 221/303;
}
@media (max-width: 960px) {
  .interview-header.--interview03::before {
    left: 0;
    width: 136%;
  }
}
.interview-header.--interview04::before {
  top: 0;
  left: 0%;
  background: url(../img/interview/interview04/bg_interview04.png) no-repeat top center/contain;
  width: 90.5%;
  aspect-ratio: 317/365;
}
@media (max-width: 960px) {
  .interview-header.--interview04::before {
    left: 0;
    width: 163%;
  }
}
.interview-header.--interview05::before {
  top: 0;
  left: 0;
  background: url(../img/interview/interview05/bg_interview05.png) no-repeat top center/contain;
  width: 95.5%;
  aspect-ratio: 1335/1712;
}
@media (max-width: 960px) {
  .interview-header.--interview05::before {
    left: 0;
    width: 174%;
  }
}

.interview-page-title01 {
  position: relative;
  padding-left: 12.5%;
  z-index: 1;
  color: #fff;
  text-align: left;
  height: 200px;
}
@media (max-width: 960px) {
  .interview-page-title01 {
    padding-left: 4.5%;
  }
}

.interview-header-body {
  position: relative;
  z-index: 1;
  margin-right: auto;
  padding: 80px calc(168 / 1400 * 100%) 80px calc(240 / 1400 * 100%);
  border: 2px solid #000;
  background-color: #fff;
}
@media (max-width: 960px) {
  .interview-header-body {
    margin-top: -11.5%;
    padding: 16.5% calc(15 / 375 * 100%) 40px calc(15 / 375 * 100%);
  }
}

.interview-header-thumb {
  position: relative;
  z-index: 2;
  margin-left: -6.5%;
  width: calc(100% + 6.5%);
}
@media (max-width: 960px) {
  .interview-header-thumb {
    margin-left: auto;
    width: calc(312 / 375 * 100%);
  }
}

.interview-header__title {
  font-weight: 900;
  font-size: 32px;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-header__title {
    font-size: 25px;
  }
}

.interview-header__name {
  margin-top: 0.5em;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 768px) {
  .interview-header__name {
    font-size: 16px;
  }
}

.interview-header__sub {
  margin-top: 20px;
  color: #7E8F9A;
  font-weight: 500;
  font-size: 15px;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-header__sub {
    margin-top: 40px;
    font-size: 13px;
  }
}

.interview-header__lead {
  margin-top: 40px;
  font-weight: 400;
  font-size: 19px;
  line-height: 180%;
}
@media (max-width: 960px) {
  .interview-header__lead {
    font-size: 16px;
  }
}

/* インタビュー部分 */
.interview-contents {
  margin: 135px auto 0;
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  counter-reset: number 0;
  max-width: 1600px;
}
@media (max-width: 960px) {
  .interview-contents {
    display: block;
    margin-top: 110px;
  }
}

.interview-contents__thumb02.pc-only {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  right: 0;
  top: 100px;
  z-index: 4;
  margin-left: -6.5%;
  width: calc(594 / 1400 * 100% + 6.5%);
  aspect-ratio: 513/571;
}
@media (max-width: 960px) {
  .interview-contents__thumb02.pc-only {
    position: static;
    margin-left: 0;
    width: 100%;
    aspect-ratio: 5/3;
  }
}
.interview-contents__thumb02.pc-only img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.interview-contents__thumb02.sp-only {
  display: none;
}
@media (max-width: 960px) {
  .interview-contents__thumb02.sp-only {
    position: static;
    margin-top: 10px;
    margin-left: -7.5%;
    width: 100%;
    aspect-ratio: 5/3;
    width: calc(100% + 15%);
    display: block;
  }
}
.interview-contents__thumb02.sp-only img {
  width: 100%;
  height: auto;
}
.interview-contents__thumb02.sp-only + * {
  margin-top: 60px;
}

.interview-contents__body {
  margin-right: auto;
  padding-top: 0;
  padding-left: calc(96 / 1400 * 100%);
  padding-right: calc(150 / 1400 * 100%);
  width: calc(763 / 1400 * 100%);
  border: 2px solid #000;
  background-color: #fff;
}
@media (max-width: 960px) {
  .interview-contents__body {
    padding: 60px calc(15 / 375 * 100%) 40px;
    width: 100%;
    overflow: hidden;
  }
}

.interview-contents__qa {
  padding: 72px 0;
}
@media (max-width: 960px) {
  .interview-contents__qa {
    padding: 36px 0;
  }
}
.interview-contents__qa + .interview-contents__qa {
  border-top: none;
}

.interview-contents__quest {
  position: relative;
  padding-left: 4.5em;
  font-weight: 900;
  font-size: 28px;
  line-height: 160%;
}
@media (max-width: 960px) {
  .interview-contents__quest {
    padding-left: 0;
  }
}
.interview-contents__quest::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: var(--main-fontEn);
  font-size: 92px;
  font-weight: 400;
  font-size: clamp(68px,5.75vw,92px);
  line-height: 1;
  color: rgba(0, 0, 0, 0.1);
}
@media (max-width: 960px) {
  .interview-contents__quest::before {
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(0);
    font-size: 92px;
    font-size: min(24.53vw,92px);
  }
}

.interview-contents__answer {
  margin-top: 60px;
  margin-left: 120px;
  font-size: 16px;
  line-height: 180%;
}
@media (max-width: 960px) {
  .interview-contents__answer {
    margin-top: 40px;
    margin-left: 0;
    font-size: 15px;
  }
}
.interview-contents__answer .lead {
  font-size: 135%;
  font-weight: 700;
}
.interview-contents__answer .lead + p {
  margin-top: 1em;
}

.interview-contents__thumb03 {
  margin-top: 72px;
  aspect-ratio: 615/337;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 960px) {
  .interview-contents__thumb03 {
    margin-top: 36px;
  }
}
.interview-contents__thumb03 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview-contents__thumb03 + * {
  margin-top: 72px;
}
@media (max-width: 960px) {
  .interview-contents__thumb03 + * {
    margin-top: 36px;
  }
}

/***********
* インタビュー メニュー
**************/
.interview-menu {
  padding: 105px calc(64 / 1400 * 100%) 50px;
  display: flex;
  align-items: flex-start;
  gap: 0 4%;
  width: 100%;
  background: linear-gradient(180deg, var(--primary-color) 0, var(--primary-color) 50%, #fff 50.1%, #fff 100%);
}
@media (max-width: 960px) {
  .interview-menu {
    padding: 80px 0 0;
    flex-direction: column;
    background: transparent;
  }
}

.interview-menu__title {
  padding-top: 3%;
  width: 30%;
}
@media (max-width: 960px) {
  .interview-menu__title {
    padding-left: 6.5%;
  }
}
.interview-menu__title span {
  font-family: var(--main-fontEn);
  font-style: normal;
  font-weight: 700;
  font-size: 56px;
  font-size: min(4vw,56px);
  line-height: 1;
  text-transform: uppercase;
  color: #fff;
}
@media (max-width: 960px) {
  .interview-menu__title span {
    font-size: 14.93vw;
  }
}

.interview-menu__wrap {
  display: flex;
  align-items: flex-start;
  width: 92%;
  gap: 0 6.5%;
}
@media (max-width: 960px) {
  .interview-menu__wrap {
    flex-direction: column;
    width: 100%;
  }
}

.interview-menu__item {
  position: relative;
  display: block;
  width: calc(50% - 32px);
  overflow: hidden;
}
@media (max-width: 960px) {
  .interview-menu__item {
    padding: 30px 6.5%;
    width: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0, var(--primary-color) 50%, #fff 50.1%, #fff 100%);
  }
}

.interview-menu__body {
  padding: 1em 4%;
  padding-bottom: 48px;
  width: 100%;
}
@media (max-width: 960px) {
  .interview-menu__body {
    padding-bottom: min(6.4vw,24px);
  }
}

.interview-menu__thumb {
  width: 100%;
  aspect-ratio: 448/465;
}
.interview-menu__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform ease-in-out 0.3s;
}

.interview-menu__message {
  font-size: 18px;
  font-size: min(1.28vw,18px);
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}
@media (max-width: 768px) {
  .interview-menu__message {
    font-size: 4.8vw;
  }
}

.interview-menu__sub {
  margin-top: 0.5em;
  color: #7E8F9A;
  font-size: 12px;
  font-size: min(0.85vw,12px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 768px) {
  .interview-menu__sub {
    font-size: 3.2vw;
  }
}

.interview-menu__name {
  margin-top: 0.5em;
  font-size: 16px;
  font-size: min(1.14vw,16px);
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
}
@media (max-width: 768px) {
  .interview-menu__name {
    font-size: 4.26vw;
  }
}

.interview-menu__button {
  margin-top: 1em;
  position: relative;
  display: flex;
  padding: 0.5em 1em 0.5em 1.5em;
  width: 10.8em;
  color: #fff;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  font-size: 11px;
  font-size: min(0.78vw,11px);
  font-style: normal;
  font-weight: 500;
  border-radius: 40px;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .interview-menu__button {
    margin-top: 0.75em;
    padding: 0.25em 1em 0.25em 1.5em;
    font-size: 2.93vw;
  }
}
.interview-menu__button::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  width: 1em;
  height: 1em;
  -webkit-mask-image: url(../img/recruit_common/arrow_right.svg);
          mask-image: url(../img/recruit_common/arrow_right.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
}

.interview-menu__item:hover .interview-menu__button, .interview-menu__item:focus .interview-menu__button {
  color: var(--primary-color);
  background-color: #fff;
}
.interview-menu__item:hover .interview-menu__button::after, .interview-menu__item:focus .interview-menu__button::after {
  background-color: var(--primary-color);
}

/***********
* 募集要項  一覧
**************/
.joblist-outer {
  margin-top: 40px;
}

.joblist-item + .joblist-item {
  margin-top: 144px;
}
@media (max-width: 960px) {
  .joblist-item + .joblist-item {
    margin-top: 60px;
  }
}

.joblist-btn-wrap {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}
@media (max-width: 960px) {
  .joblist-btn-wrap {
    margin-top: 30px;
    flex-direction: column;
    align-items: center;
  }
}
.joblist-btn-wrap * + * {
  margin-left: 56px;
}
@media (max-width: 960px) {
  .joblist-btn-wrap * + * {
    margin-top: 30px;
    margin-left: 0;
  }
}

.joblist-search {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 960px) {
  .joblist-search {
    flex-direction: column;
  }
}

.joblist-search__title {
  color: #fff;
}

.joblist-search__select {
  margin-left: 24px;
  width: 327px;
}
@media (max-width: 960px) {
  .joblist-search__select {
    margin-top: 20px;
    margin-left: 0;
  }
}

.joblist-search__button {
  margin-left: 48px;
}
@media (max-width: 960px) {
  .joblist-search__button {
    margin-top: 30px;
    margin-left: 0;
  }
}

/***********
* 募集要項 共通
**************/
.joblist-item {
  padding: 0 84px;
}
@media (max-width: 960px) {
  .joblist-item {
    padding: 0 6.5%;
  }
}

.joblist-contents {
  position: relative;
}

* + .joblist-contents {
  margin-top: 56px;
}
@media (max-width: 960px) {
  * + .joblist-contents {
    margin-top: 30px;
  }
}

.joblist-item__title {
  position: relative;
  padding: 1em 0;
  font-weight: 700;
  font-size: 32px;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .joblist-item__title {
    font-size: 20px;
  }
}
.joblist-item__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--primary-color);
}

.joblist-detail {
  position: relative;
  display: flex;
  padding: 32px 0;
}
@media (max-width: 960px) {
  .joblist-detail {
    flex-direction: column;
  }
}
.joblist-detail:not(:first-child)::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #C8C8C8;
}
.joblist-detail:last-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #C8C8C8;
}

.joblist-detail__title {
  width: 14.9090909091%;
  font-weight: 700;
  font-size: 16px;
  line-height: 190%;
  letter-spacing: 0.1em;
}
@media (max-width: 960px) {
  .joblist-detail__title {
    font-size: 14px;
    width: 100%;
  }
}

.joblist-detail__text {
  padding-right: 10.2673796791%;
  width: 85%;
  font-weight: 400;
  font-size: 16px;
  line-height: 190%;
}
@media (max-width: 960px) {
  .joblist-detail__text {
    margin-top: 1em;
    padding-right: 0;
    width: 100%;
    font-size: 14px;
  }
}

/*****************
* 詳細
******************/
.joblist-detail__imglist {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 632px;
}
.joblist-detail__imglist > * {
  width: calc(50% - 16px);
  aspect-ratio: 3/2;
}
.joblist-detail__imglist > * img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.joblist-detail__imglist > *:nth-child(even) {
  margin-left: 32px;
}
.joblist-detail__imglist > *:nth-child(3) {
  margin-top: 32px;
}
@media (max-width: 960px) {
  .joblist-detail__imglist > * {
    width: 100%;
  }
  .joblist-detail__imglist > *:nth-child(even) {
    margin-left: 0;
  }
  .joblist-detail__imglist > *:nth-child(2) {
    margin-top: 32px;
  }
}

/*************************
* 数字で見る　number
**************************/
.number-anchor-menu {
  margin: 70px auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  counter-reset: number 0;
}
@media (max-width: 960px) {
  .number-anchor-menu {
    margin: 24px auto 0;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
  }
}
.number-anchor-menu li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30px;
}
@media (max-width: 960px) {
  .number-anchor-menu li {
    padding: 15px;
  }
}
.number-anchor-menu li.--center {
  justify-content: center;
}
.number-anchor-menu li.--left {
  justify-content: flex-start;
}
@media (max-width: 960px) {
  .number-anchor-menu li.--left {
    justify-content: center;
  }
}
.number-anchor-menu li.--right {
  justify-content: flex-end;
}
@media (max-width: 960px) {
  .number-anchor-menu li.--right {
    justify-content: center;
  }
}
.number-anchor-menu li:nth-child(1) {
  margin: 0 auto 0 0;
  background: url(../img/number/bg_menu01.png) no-repeat left top/80%;
}
.number-anchor-menu li:nth-child(2) {
  transform: translateY(-40px);
  background: url(../img/number/bg_menu02.png) no-repeat right top/80%;
}
@media (max-width: 960px) {
  .number-anchor-menu li:nth-child(2) {
    transform: translateY(0);
  }
}
.number-anchor-menu li:nth-child(3) {
  background: url(../img/number/bg_menu03.png) no-repeat center top/cover;
}
@media (max-width: 960px) {
  .number-anchor-menu li:nth-child(3) {
    background-size: 100%;
  }
}

.number-anchor-link {
  position: relative;
  padding: 48px 56px;
  display: flex;
  flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 1em 0;
  color: #FFFFFF;
  border: 10px solid #FFF;
}
@media (max-width: 960px) {
  .number-anchor-link {
    padding: 24px 28px;
  }
}
.number-anchor-link.--center {
  align-items: center;
}
.number-anchor-link.--left {
  align-items: flex-start;
}
.number-anchor-link.--right {
  align-items: flex-end;
}
.number-anchor-link::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  font-family: var(--main-fontEn);
  font-weight: 400;
  font-size: 72px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #FFF;
}
@media (max-width: 960px) {
  .number-anchor-link::before {
    font-size: 50px;
  }
}
.number-anchor-link::after {
  content: "";
  display: block;
  width: 2.25em;
  height: 2.25em;
  background-color: #fff;
  -webkit-mask-image: url(../img/number/arrow_down.svg);
          mask-image: url(../img/number/arrow_down.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transform-origin: center;
}
.number-anchor-link .ja {
  font-size: 32px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .number-anchor-link .ja {
    font-size: 24px;
  }
}
.number-anchor-link .en {
  font-family: var(--main-fontEn);
  font-size: 16px;
  font-weight: 400;
}
.number-anchor-link .large {
  font-size: calc(58 / 32 * 100%);
}
/*************************
* 数字で見るコンテンツ
**************************/
@media (max-width: 768px) {
  .sec-number-outer {
    margin-top: 65px;
  }
}
.sec-number-outer + .sec-number-outer {
  margin-top: 168px;
  padding-bottom: 168px;
}
@media (max-width: 768px) {
  .sec-number-outer + .sec-number-outer {
    margin-top: 65px;
    padding-bottom: 65px;
  }
}

/*************************
* セクション見出し
**************************/
.sec-number {
  padding-bottom: 144px;
}
@media (max-width: 768px) {
  .sec-number {
    padding-bottom: 65px;
  }
}

.data-sub-title01 {
  margin-top: 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.data-sub-title01::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  content: attr(data-num);
  font-family: var(--main-fontEn);
  font-style: normal;
  font-size: 180px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: var(--text-black);
}
@media (max-width: 960px) {
  .data-sub-title01::before {
    left: auto;
    right: 0;
    top: -1em;
    font-size: 70px;
  }
}
.data-sub-title01 > * {
  position: relative;
  z-index: 1;
}
.data-sub-title01 .ja {
  font-weight: 900;
  font-size: 40px;
  line-height: 140%;
  text-align: center;
}
@media (max-width: 960px) {
  .data-sub-title01 .ja {
    font-size: 28px;
  }
}
.data-sub-title01 .large {
  font-size: calc(72 / 40 * 100%);
}
.data-sub-title01 .en {
  margin-top: 1em;
  font-family: var(--main-fontEn);
  font-size: 16px;
  text-align: right;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .data-sub-title01 .en {
    font-size: 14px;
  }
}

/**************
*  50の質問
***************/
.number-qa-anchor01 {
  margin: 88px auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1144px;
  gap: 40px 30px;
}
@media (max-width: 960px) {
  .number-qa-anchor01 {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 30px;
    width: 92%;
  }
}
.number-qa-anchor01 li > * {
  min-width: 256px;
  min-height: 87px;
}
@media (max-width: 960px) {
  .number-qa-anchor01 li > * {
    margin: 0 auto 0 0;
    min-width: auto;
    min-height: 50px;
  }
}

.number-qa-anchor02 li {
  position: relative;
  font-weight: 500;
  font-size: 16px;
  line-height: 140%;
}
.number-qa-anchor02 li:not(:first-child) {
  margin-top: 0.875em;
}
.number-qa-anchor02 li a {
  display: inline-block;
}

.number-qa-link {
  padding-left: 2.5em;
  color: #6E6E6E;
  transition: ease-in-out 0.3 padding-left;
}
.number-qa-link::before {
  position: absolute;
  display: none;
  top: 0.25em;
  left: 0;
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background-color: #6E6E6E;
  background: url(../img/number/icon_arrow.svg) no-repeat center/contain;
  transform: scale(1);
  transform-origin: center;
}
.number-qa-link.is-active {
  padding-left: 1.5em;
  color: var(--text-black);
}
.number-qa-link.is-active::before {
  display: block;
}

.number-qa-contents-wrap {
  margin-top: 125px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 2%;
}
@media (max-width: 960px) {
  .number-qa-contents-wrap {
    margin-top: 60px;
  }
}

.number-qa-menu {
  position: -webkit-sticky;
  position: sticky;
  top: 150px;
  left: auto;
  right: 0;
  padding: 45px 40px;
  gap: 8px;
  width: 284px;
  background: #fff;
  border: 1px solid var(--text-black);
  border-radius: 8px;
}
@media (max-width: 960px) {
  .number-qa-menu {
    display: none;
  }
}

.number-qa-contents {
  width: 71%;
}
@media (max-width: 960px) {
  .number-qa-contents {
    width: 100%;
  }
}

.number-qa-group + .number-qa-group {
  margin-top: 140px;
}
@media (max-width: 960px) {
  .number-qa-group + .number-qa-group {
    margin-top: 70px;
  }
}

.number-title01-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .number-title01-wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

.number-title01 {
  font-weight: 700;
  font-size: 32px;
  line-height: 140%;
}
@media (max-width: 960px) {
  .number-title01 {
    font-size: 24px;
  }
}

.number-qa-all {
  position: relative;
  padding: 1em 3em;
  display: flex;
  align-items: flex-start;
  color: #fff;
  background-color: transparent;
  font-weight: 500;
  font-size: 13px;
  line-height: 140%;
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (max-width: 960px) {
  .number-qa-all {
    font-size: 14px;
    align-self: flex-end;
  }
}
.number-qa-all::before, .number-qa-all::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 960px) {
  .number-qa-all::before, .number-qa-all::after {
    width: 12px;
  }
}
.number-qa-all::after {
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.number-qa-all.is-open::before {
  opacity: 0;
}
.number-qa-all.is-open::after {
  transform: translateY(-50%) rotate(180deg);
}

.accordion {
  margin-top: 50px;
  margin-left: auto;
  width: 95.6663055255%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media (max-width: 960px) {
  .accordion {
    margin-top: 20px;
    width: 100%;
  }
}

.accordion__menu {
  margin-top: 20px;
}

.accordion__button {
  padding: 25px 30px 25px 36px;
  display: flex;
  align-items: center;
  gap: 0 0.25em;
  width: 100%;
  font-weight: 500;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: left;
  color: var(--text-black);
  background: #fff;
  border: 1px solid var(--text-black);
  border-radius: 50px;
  overflow: hidden;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}
@media (max-width: 960px) {
  .accordion__button {
    padding: 20px 18px 20px 24px;
    font-size: 16px;
  }
}
.accordion__button .q_num {
  position: relative;
  padding-left: 1em;
}
.accordion__button .q_num::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 0.75em;
  height: 0.75em;
  background-color: var(--text-black);
  -webkit-mask-image: url(../img/number/icon_q.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/number/icon_q.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform-origin: center;
}
.accordion__button .text {
  margin-left: 1.5em;
}
@media (max-width: 960px) {
  .accordion__button .text {
    margin-left: 1em;
  }
}
.accordion__button .toggle {
  position: relative;
  margin-left: auto;
  display: block;
  width: 30px;
  height: 30px;
  background-color: var(--text-black);
  border-radius: 100%;
  flex-shrink: 0;
}
@media (max-width: 960px) {
  .accordion__button .toggle {
    width: 20px;
    height: 20px;
  }
}
.accordion__button .toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0.5em;
  height: 0.5em;
  background-color: #fff;
  -webkit-mask-image: url(../img/recruit_common/arrow_down.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/recruit_common/arrow_down.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform-origin: center;
  transform: translate(-50%, -50%) rotate(0deg);
  transition: transform 0.3s ease-in-out;
}

.accordion__body {
  margin-top: 20px;
  height: 0;
  overflow: hidden;
  transition: all 0.5s;
  color: var(--primary-color);
}

.accordion__text {
  padding: 32px 60px;
  display: flex;
  color: var(--primary-color);
}
@media (max-width: 960px) {
  .accordion__text {
    padding: 16px 30px;
  }
}
.accordion__text::before {
  margin-right: 1em;
  content: "";
  flex-shrink: 0;
  display: block;
  width: 23px;
  height: 23px;
  background-color: var(--primary-color);
  -webkit-mask-image: url(../img/number/icon_a.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../img/number/icon_a.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transform-origin: center;
  transition: opacity 0.3s ease-in-out;
}

.accordion__menu.is-open .accordion__button {
  color: var(--primary-color);
  background: #fff;
  border: 1px solid var(--primary-color);
}
.accordion__menu.is-open .accordion__body {
  background: #fff;
  border: 1px solid var(--primary-color);
  border-radius: 40px;
}
.accordion__menu.is-open .q_num::before {
  background: var(--primary-color);
}
.accordion__menu.is-open .toggle {
  background-color: var(--primary-color);
}
.accordion__menu.is-open .toggle::after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.trip-list {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 10px;
}
@media (max-width: 960px) {
  .trip-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.trip-list-item {
  width: 100%;
}

.trip-list-thumb {
  background-color: #fff;
  aspect-ratio: 1/1;
}
.trip-list-thumb img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}

.trip-list-label {
  font-size: 12px;
  text-align: center;
  line-height: 1.25;
}
.trip-list-label span {
  font-size: 80%;
}

/********
chart
**********/
.chart-wrap {
  margin-top: 56px;
}

.chart-area.pie {
  margin-left: auto;
  margin-right: auto;
  max-width: 245px;
  width: 90%;
}

.graph-gender {
  margin: 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.graph-gender-item {
  margin: 24px 20px 0;
  width: 30px;
}
@media (max-width: 768px) {
  .graph-gender-item {
    margin: 30px 10px 0;
    width: 30px;
  }
}

.datatable {
  margin-top: 50px;
}
.datatable.data08b {
  width: 100%;
  display: grid;
  grid-template-columns: 33% 33% 1fr;
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: column dense;
  gap: 1em 30px;
}
@media (max-width: 768px) {
  .datatable.data08b {
    grid-template-columns: auto;
    grid-template-rows: repeat(1, 1fr);
    grid-auto-flow: row;
    gap: 1em 0;
  }
}
.datatable > li {
  display: flex;
  align-items: flex-end;
  font-size: 16px;
  font-weight: 500;
}
.datatable .num {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 500;
  line-height: 0.5;
}
@media (max-width: 768px) {
  .datatable .num {
    font-size: 24px;
  }
}
.datatable .unit {
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .datatable .unit {
    font-size: 15px;
  }
}

.datatable-head {
  flex-grow: 1;
  padding-right: 1em;
  text-align: left;
  font-size: 22px;
}
@media (max-width: 768px) {
  .datatable-head {
    font-size: 18px;
  }
}

/*****************************
* entry form
******************************/
.p-contact-submit__wrap {
  margin-top: 60px;
}

@media (max-width: 767px) {
  .p-contact-submit__wrap {
    margin-top: 40px;
  }
}
.p-contact-submit__wrap .c-form-submit-button {
  max-width: 368px;
  width: 100%;
}

.p-contact-submit__wrap .c-form-submit-button + .c-form-submit-button {
  margin-left: 30px;
}

@media (max-width: 767px) {
  .p-contact-submit__wrap .c-form-submit-button + .c-form-submit-button {
    margin-left: 0;
  }
}
@media (max-width: 767px) {
  .p-contact-submit__wrap .c-form-submit-button:nth-child(1) {
    margin-top: 40px;
  }
}
.p-contact-submit__wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .p-contact-submit__wrap {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.contact-form {
  margin: 40px auto 0;
}
@media (max-width: 960px) {
  .contact-form {
    margin: 20px auto 0;
  }
}

.contact-form *::-moz-placeholder {
  color: #B5B5B5;
  font-weight: 400;
}

.contact-form *::placeholder {
  color: #B5B5B5;
  font-weight: 400;
}

.contact-form .c-text-nodata {
  margin-top: 40px;
}

.contact-from__check label {
  margin-right: 48px;
}

@media (max-width: 767px) {
  .contact-from__check label {
    display: block;
    margin-right: 0;
    margin-bottom: 16px;
  }
}
.form-agree {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  line-height: 2;
}

.form-agree a {
  text-decoration: underline;
  text-underline-offset: 0.1em;
  color: var(--primary-color);
}

.form-agree__check .c-form-checkbox-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.form-agree__check p:nth-child(2) {
  margin-top: 1em;
}

.p-form-agree__check .c-form-checkbox-name {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.mw_wp_form_confirm .p-form-agree__text {
  display: none;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.wpcf7-list-item.first {
  margin-left: 0;
}

.table-contact {
  margin: 60px auto 0;
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

.table-contact th {
  position: relative;
  padding: 2em 1em 2em 2em;
  text-align: left;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #B1C6E5;
  width: 33%;
}

.table-contact th.-top {
  padding-top: 2.25em;
  vertical-align: top;
}

.table-contact th .is-required, .table-contact th .is-optional {
  position: static;
  margin-top: 3px;
  margin-left: 1em;
}

.table-contact td {
  padding: 2em 0 2em 2em;
  border-bottom: 1px solid #B1C6E5;
}

.dl-address {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.dl-address dt {
  padding: 5px 0;
  text-align: left;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.08em;
  width: 154px;
}

.dl-address dd {
  padding: 5px 0;
  width: calc(100% - 164px);
  max-width: 480px;
}

.form-text-lead {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.form-text-lead .is-required {
  margin-right: 0.25em;
}

.form-text01 {
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0.08em;
}

.contact-block .tel-number {
  font-family: YakuHanJP, "Inter", "Noto Sans JP", sans-serif;
}

@media (max-width: 767px) {
  .table-contact {
    margin: 70px auto 0;
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    max-width: 1000px;
  }
  .table-contact th {
    display: block;
    width: 100%;
    padding: 10px 35px 10px 0;
    text-align: left;
    font-size: 14px;
    border-bottom: 1px solid #DEDEDE;
  }
  .table-contact th.-top {
    padding-top: 10px;
    vertical-align: middle;
  }
  .table-contact th .is-required, .table-contact th .is-optional {
    position: static;
    margin-top: 3px;
    margin-right: 1em;
  }
  .table-contact td {
    display: block;
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #DEDEDE;
  }
  .dl-address dl {
    display: flex;
    flex-direction: column;
  }
  .dl-address dt {
    font-size: 14px;
    width: 100%;
  }
  .dl-address dd {
    padding-top: 0;
    width: 100%;
  }
  .form-text-lead {
    font-size: 15px;
    line-height: 1.65;
  }
  .form-text01 {
    font-size: 15px;
  }
}
.sec-contact01 {
  padding: 96px 0;
}

.sec-contact01 .tel-number {
  margin-top: 38px;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.11;
  letter-spacing: -0.05em;
}

.sec-contact01 .num a {
  font-size: 40px;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05em;
}

.sec-contact01 .tel-info {
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.sec-contact01 .tel-info dt {
  font-weight: 700;
  width: 5em;
}

.sec-contact01 .tel-info dd {
  position: relative;
  padding-left: 1em;
}

.sec-contact01 .tel-info dd::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 1px;
  height: 18px;
  background-color: #262626;
}

.sec-contact01 .tel-info dd + dt {
  margin-left: 1em;
}

.sec-contact01 .tel-info + p {
  margin-top: 36px;
}

.sec-contact02 {
  padding: 96px 0;
}

.p-country-name {
  display: none;
}

@media (max-width: 767px) {
  .sec-contact01 {
    padding: 40px 6vw;
  }
  .sec-contact01 .tel-number {
    margin-top: 20px;
    font-size: 28px;
  }
  .sec-contact01 .num a {
    font-size: 32px;
  }
  .sec-contact01 .tel-info {
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    max-width: 300px;
  }
  .sec-contact01 .tel-info dt {
    width: 5em;
  }
  .sec-contact01 .tel-info dd {
    width: calc(100% - 6em);
  }
  .sec-contact01 .tel-info dd + dt {
    margin-left: 0;
  }
  .sec-contact01 .tel-info + p {
    margin-top: 20px;
  }
  .sec-contact02 {
    padding: 40px 6vw;
  }
}
/*************************
* animation
**************************/
.js-animation[data-type=fadeIn] {
  visibility: hidden;
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, visibility;
}

.js-animation[data-type=fadeIn].is-show {
  visibility: visible;
  opacity: 1;
}

.js-animation[data-type=fadeInLeft] {
  transform: translate(-30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInLeft].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInRight] {
  transform: translate(30px, 0);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInRight].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=fadeInUp] {
  transform: translate(0, 30px);
  opacity: 0;
  transition: 0.9s ease-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=fadeInUp].is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.js-animation[data-type=chgScale] {
  opacity: 0;
  transform: scale(0.6);
  transform-origin: center;
  transition: 0.3s ease-in-out;
  transition-property: opacity, transform;
}

.js-animation[data-type=chgScale].is-show {
  opacity: 1;
  transform: scale(1);
}