@charset "UTF-8";

/* 共通
-------------------------------------------------- */
header {
  border-bottom: 2px solid #000;
}
@media all and (min-width: 767px) {
  header {
    border-bottom: 3px solid #000;
  }
}

header .home_icon {
  display: inline-block;
}


/* 【共通】scrollTextWrap
-------------------------------------------------- */
.scrollTextWrap {
  background-color: #000;
  color: #fff;
  padding: 4.8vw 0 4.53333vw;
  overflow: hidden;
}
@media all and (min-width: 767px) {
  .scrollTextWrap {
    background-color: #000;
    color: #fff;
    padding: 1.40625vw 0;
    /* padding: 1.66667vw 0 1.145833vw; */
  }
}

.scrollText {
  display: flex;
  align-items: center;
  white-space: nowrap;
  width: 100%;

  /* カクつき防止用 */
  transform: translate3d(0, 0, 0); 
  will-change: transform, transition;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 英語 */
.scrollTextWrap .scrollText__en {
  font-size: 10.1333333vw;
  font-weight: 400;
  line-height: 8vw;
  margin: 0 2.66667vw;
  transform: translateY(1.066667vw);
}
@media all and (min-width: 767px) {
  .scrollTextWrap .scrollText__en {
    font-size: 3.125vw;
    line-height: 2.3958333vw;
    margin: 0 .78125vw;
    transform: translateY(.4166666vw);
  }
}

/* 日本語 */
.scrollTextWrap .scrollText__jp {
  font-size: max(4.266667vw, 10px);
  font-weight: 500;
  line-height: 1.5;
  margin: 0 2.66667vw;
}
@media all and (min-width: 767px) {
  .scrollTextWrap .scrollText__jp {
    font-size: max(.8333333vw, 10px);
    margin: 0 .78125vw;
  }
}

/* 白バージョン */
.scrollTextWrap.white {
  background-color: #fff;
}
.scrollTextWrap.white .scrollText__en,
.scrollTextWrap.white .scrollText__jp {
  color: #000;
}


/* 【共通】openPositions
-------------------------------------------------- */
/* インナー */
.sec_openPositions .sec__inner {
  margin: 0 auto;
  padding: 13.33333vw 0;
  width: 84%;
}

@media all and (min-width: 767px) {
  .sec_openPositions .sec__inner {
    padding: 3.072916vw 0 3.125vw;
    width: 94.89584vw;
  }
}

/* タイトル */
.openPositions__ttl img {
  margin: 0 auto;
  width: 73.06667vw;
}
@media all and (min-width: 767px) {
  .openPositions__ttl {
    display: flex;
    gap: 0 .78125vw;
    align-items: baseline;
  }
}
@media all and (min-width: 767px) {
  .openPositions__ttl img {
    display: inline-block;
    width: 61.04167vw;
  }
}

.openPositions__ttl--jp {
  display: block;
  font-size: 5.33333vw;
  font-weight: 500;
  line-height: 1.45;
  margin-top: 2vw;
  text-align: center;
}
@media all and (min-width: 767px) {
  .openPositions__ttl--jp {
    display: inline-block;
    font-size: max(1.30208vw, 10px);
    line-height: 1.44;
    margin: 0;
    text-align: left;
  }
}

/* カードリスト */
.cardList {
  display: flex;
  flex-direction: column;
  gap: 5.33333vw 0;
  margin-top: 13.06667vw;
}

@media all and (min-width: 767px) {
  .cardList {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-top: 3.33333vw;
    padding: 0 .4166667vw;
  }
}

/* カード本体 */
.card {
  width: 100%;
  position: relative;
  cursor: pointer;
}

@media all and (min-width: 767px) {
  .card {
    position: relative;
    cursor: pointer;
    margin-right: -.4166667vw;
    width: 19.0625vw;
  }
}

/* 擬似要素とpadding-topでカードの高さを指定 */
.card::before {
  content: "";
  display: block;
  padding-top: 98.66667vw;
}

@media all and (min-width: 767px) {
  .card::before {
    content: "";
    display: block;
    padding-top: 22.39584vw;
  }
}

.sec_openPositions a {
  display: block;
}

.sec_openPositions a:hover {
  opacity: 1;
}

/* カード内の画像 */
.card img {
  width: 100%;
}

/* カード裏面・表面の共通スタイル */
.card .card__back,
.card .card__front {
  transition: all 0.6s;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
}

/* カード表面のスタイル */
@media all and (min-width: 767px) {
  .card .card__front {
    transform: rotateY(-180deg);
  }
}

/* ホバー時のカード裏面 */
@media all and (max-width: 766px) {
  .card .card__back {
    display: none;
  }
}

@media all and (min-width: 767px) {
  .card:hover .card__back {
    transform: rotateY(180deg);
  }
}

/* ホバー時のカード表面 */
@media all and (min-width: 767px) {
  .card:hover .card__front {
    transform: rotateY(0);
  }
}

/* CHECKボタン */
@media all and (max-width: 766px) {
  .sec_openPositions .btn {
    position: absolute;
    bottom: 5.33333vw;
    right: 4.266667vw;
  }
  .sec_openPositions .btn img {
    display: block;
    margin: 0 0 0 auto;
    width: 30.4vw;
  }

  .sec_openPositions a:hover .btn {
    opacity: .7;
  }
}

@media all and (min-width: 767px) {
  .sec_openPositions .btn {
    display: none;
  }
}

/* 各ページ */
.recruit_director .sec_openPositions .cardList li:nth-child(1),
.recruit_designer .sec_openPositions .cardList li:nth-child(2),
.recruit_frontEndengineer .sec_openPositions .cardList li:nth-child(3),
.recruit_programmer .sec_openPositions .cardList li:nth-child(4),
.recruit_marketer .sec_openPositions .cardList li:nth-child(5) {
  display: none;
}


/* 【共通】エントリー
-------------------------------------------------- */
.entryWrap {
  background-image: url(/img/recruit/cmn/bg_entry_sp.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: max(.5333333vw, 2px) solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66.66666vw;
  width: 100%;
}
.entryWrap .entry__ticket {
  width: 84vw;
}
.entryWrap .entry__ticket a {
  display: block;
}
.entryWrap .entry__ticket a:hover {
  opacity: 1;
}
@media all and (min-width: 767px) {
  .entryWrap {
    background-image: url(/img/recruit/cmn/bg_entry_pc.png);
    background-size: cover;
    border-bottom: .15625vw solid #000;
    height: 23.9583333vw;
  }
  .entryWrap .entry__ticket {
    transition-duration: .4s;
    width: 35.2604166vw;
  }
  .entryWrap .entry__ticket:hover {
    transform: scale(1.1);
  }
}


/* 【共通】インタビュー
-------------------------------------------------- */
.recruit .interview_link__ttl {
  font-size: 4.266667vw;
  font-weight: 500;
  line-height: 1.5;
  padding: 4vw 7.46667vw;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__ttl {
    font-size: 1.30208vw;
    line-height: 1.44;
    padding: .78125vw 1.5625vw;
  }
}

.recruit .interview_link__list {
  border-top: max(.5333333vw, 2px) solid #000;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list {
    border-top: .15625vw solid #000;
    display: flex;
    flex-wrap: wrap;
  }
}

.recruit .interview_link__list li {
  border-bottom: max(.5333333vw, 2px) solid #000;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list li {
    border-bottom: .15625vw solid #000;
    width: 50%;
    min-height: 20.8333333vw;
  }
  .recruit .interview_link__list li:nth-child(odd) {
    border-right: .15625vw solid #000;
  }
}

.recruit .interview_link__list li a {
  color: #000;
  display: block;
  padding: 7.466667vw 0;
  height: 100%;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .recruit .interview_link__list .interview_link__director a {
    padding: 2.6041666vw 2.8645833vw 2.65625vw 3.489583vw;
  }
  .recruit .interview_link__list .interview_link__front a {
    padding: 2.6041666vw 2.96875vw 2.6041666vw 3.489583vw;
  }
  .recruit .interview_link__list .interview_link__directorEnsineer a {
    padding: 2.6041666vw 1.7708333vw 2.6041666vw 3.489583vw;
    
  }
  .recruit .interview_link__list .interview_link__designer a {
    padding: 2.6041666vw 1.3020833vw 2.6041666vw 3.489583vw;
  }
}

.recruit .interview_link__list li a:hover {
  opacity: 1;
}

.recruit .interview_link__director {
  background-color: #BFBAFF;
}
.recruit .interview_link__front {
  background-color: #C1E4F5;
}
.recruit .interview_link__directorEnsineer {
  background-color: #F68652;
  
}
.recruit .interview_link__designer {
  background-color: #F0A2C3;
}

/* タイトル */
.recruit .interview_link__list .ttlWrap {
  padding: 0 7.46667vw;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list .ttlWrap {
    padding: 0;
    position: relative;
  }
}

@media all and (min-width: 767px) {
  .recruit .interview_link__front .ttlWrap,
  .recruit .interview_link__directorEnsineer .ttlWrap {
    margin-top: -1.1979166vw;
  }
}

.recruit .interview_link__list .ttl {
  display: inline-block;
  border-bottom: max(.5333333vw, 2px) solid #000;
  padding-bottom: 3.7333333vw;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list .ttl {
    border-bottom: max(.1041666vw, 2px) solid #000;
    display: flex;
    flex-direction: column;
    gap: 0 16px;
    padding-bottom: .78125vw;
  }
}

.recruit .interview_link__list .ttl .en {
  display: block;
  font-size: 6.13333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -.01em;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list .ttl .en {
    display: inherit;
    font-size: max(1.1979166vw, 10px);
    line-height: 1.304347;
  }
}

.recruit .interview_link__list .ttl .jp {
  display: block;
  font-size: 4.266667vw;
  font-weight: 500;
  line-height: 1;
  margin-top: 2.66667vw;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list .ttl .jp {
    display: inherit;
    font-size: max(.833333vw, 10px);
    line-height: 1.5;
    margin-top: .078125vw;
  }
}

.recruit .interview_link__list .period {
  font-size: 4.266667vw;
  font-weight: 500;
  line-height: 1;
  margin-top: 2.66667vw;
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list .period {
    font-size: max(.9375vw, 10px);
    line-height: 1.44444;
    margin-top: .677083vw;
  }
}

/* アニメーション */
@keyframes bound {
  /** 開始時は１倍の大きさ */
  from { transform: scale(1); }
  /** 0%～25%にかけて1.15倍する */
  25% { transform: scale(1.15); }
  /** 25%～50%にかけて0.95倍する */
  50% { transform: scale(0.95); }
  /** 50%～75%にかけて1.05倍する */
  75% { transform: scale(1.05); }
  /** 終了時は元の大きさに戻す */
  to { transform: scale(1); }
}
@media all and (min-width: 767px) {
  .recruit .interview_link__list li:hover .message__balloon {
    -webkit-animation: bound 1s ease-in; 
    -moz-animation:    bound 1s ease-in; 
    animation: bound 1s ease-in;
  }
}

/* メッセージ */
.recruit .interview_link__list .message {
  position: relative;
}

.recruit .interview_link__list .message__txt {
  font-size: 5.6vw;
  font-weight: 700;
  line-height: 1.57143;
  text-align: center;
  position: relative;
  z-index: 100;
}

.recruit .interview_link__list .message__balloon {
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media all and (min-width: 767px) {
  .recruit .interview_link__list .message__txt {
    font-size: 2.03125vw;
    line-height: 1.589743;
    white-space: nowrap;
  }
}

/* インタビューメッセージ */
/* director */
.recruit .interview_link__director .message {
  margin: 8vw auto 0;
  min-width: 84vw;
}
.recruit .interview_link__director .message__txt {
  padding: 10.66667vw 1em;
}
.recruit .interview_link__director .message__balloon {
  background-image: url(/img/recruit/top/bg_balloon_01.svg);
}

/* front */
.recruit .interview_link__front .message {
  margin: 2.66667vw auto 0;
  min-width: 86.4vw;
}
.recruit .interview_link__front .message__txt {
  padding: 15.2vw 0 11.65333vw;
}
.recruit .interview_link__front .message__balloon {
  background-image: url(/img/recruit/top/bg_balloon_02.svg);
}

/* directorEnsineer */
.recruit .interview_link__directorEnsineer .message {
  margin: 1.73334vw auto 0;
  min-width: 85.70934vw;
}
.recruit .interview_link__directorEnsineer .message__txt {
  padding: 14.7733vw 0 14.08vw;
}
.recruit .interview_link__directorEnsineer .message__balloon {
  background-image: url(/img/recruit/top/bg_balloon_03.svg);
}

/* designer */
.recruit .interview_link__designer .message {
  margin: 0;
  min-width: 95.2vw;
}
.recruit .interview_link__designer .message__txt {
  padding: 7.14667vw 0 7.14667vw;
}
.recruit .interview_link__designer .message__balloon {
  background-image: url(/img/recruit/top/bg_balloon_04.svg);
}

@media all and (min-width: 767px) {
  /* director */
  .recruit .interview_link__director .message {
    margin: 0;
    min-width: initial;
  }
  .recruit .interview_link__director .message__txt {
    padding: 3.75vw 4.84375vw;
  }
  .recruit .interview_link__director .message__balloon {
    background-image: url(/img/recruit/top/bg_balloon_01_pc.svg);
  }

  /* front */
  .recruit .interview_link__front .message {
    margin: 0;
    min-width: initial;
  }
  .recruit .interview_link__front .message__txt {
    padding: 5.0520833vw 2.03125vw 4.3229166vw 2.265625vw;
  }
  .recruit .interview_link__front .message__balloon {
    background-image: url(/img/recruit/top/bg_balloon_02_pc.svg);
  }

  /* directorEnsineer */
  .recruit .interview_link__directorEnsineer .message {
    margin: 0;
    min-width: initial;
  }
  .recruit .interview_link__directorEnsineer .message__txt {
    padding: 4.53125vw 3.5416666vw 4.7395833vw;
  }
  .recruit .interview_link__directorEnsineer .message__balloon {
    background-image: url(/img/recruit/top/bg_balloon_03_pc.svg);
  }

  /* designer */
  .recruit .interview_link__designer .message {
    margin: 0;
    min-width: initial;
  }
  .recruit .interview_link__designer .message__txt {
    padding: 2.65625vw 4.6875vw 2.8645833vw 3.90625vw;
  }
  .recruit .interview_link__designer .message__balloon {
    background-image: url(/img/recruit/top/bg_balloon_04_pc.svg);
  }
}



/* トップページ
================================================== */
/* トップページ共通
-------------------------------------------------- */
.recruit .kv {
  border-left: max(.5333333vw, 2px) solid #000;
  border-right: max(.5333333vw, 2px) solid #000;
}
.recruit .main-wrap {
  border-left: max(.5333333vw, 2px) solid #000;
  border-right: max(.5333333vw, 2px) solid #000;
  padding-bottom: 0;
}
@media all and (min-width: 767px) {
  .recruit .kv {
    border-left: .15625vw solid #000;
    border-right: .15625vw solid #000;
  }
  .recruit .main-wrap {
    border-left: .15625vw solid #000;
    border-right: .15625vw solid #000;
    padding-bottom: 0;
  }
}

/* トップページキャッチコピー
-------------------------------------------------- */
.recruit .sec_catch {
  position: relative;
  border-top: max(.5333333vw, 2px) solid #000;
  border-bottom: max(.5333333vw, 2px) solid #000;
}
@media all and (min-width: 767px) {
  .recruit .sec_catch {
    position: relative;
    border-top: .15625vw solid #000;
    border-bottom: .15625vw solid #000;
  }
}

/* タイトル */
.recruit .catch__ttl {
  position: absolute;
  top: 0;
  right: -2px;
  transform: translateY(-50%);
  width: 74.66667vw;
}
@media all and (min-width: 767px) {
  .recruit .catch__ttl {
    position: absolute;
    top: 0;
    right: 2.604167vw;
    transform: translateY(-50%);
    width: 40.83333vw;
  }
}

@media all and (min-width: 767px) {
  .recruit .sec_catch .sec__inner {
    display: flex;
  }
}

/* テント画像 */
.recruit .catch__l {
  background-color: #C1E4F5;
  border-bottom: max(.5333333vw, 2px) solid #000;
}
@media all and (min-width: 767px) {
  .recruit .catch__l {
    border-bottom: 0;
    flex-shrink: 0;
    width: 33.33334vw;
  }
}

.recruit .catch__l .catch__img {
  display: block;
}

/* テキスト */
.recruit .catch__r {
  background-color: #FFF9CC;
  padding: 8vw 7.466667vw 6.4vw;
}
@media all and (min-width: 767px) {
  .recruit .catch__r {
    border-left: .15625vw solid #000;
    padding: 8.48959vw 8.33333vw 8.48959vw 9.47916vw;
    width: 66.66666vw;
  }
}
.recruit .catch__r .catch__txt {
  font-size: max(10px, 4.8vw);
  font-weight: 500;
  line-height: 1.66666;
  text-align: center;
  margin-top: 8vw;
}
@media all and (min-width: 767px) {
  .recruit .catch__r .catch__txt {
    font-size: max(10px, 1.30208vw);
    line-height: 2.48;
    text-align: left;
    margin-top: 0;
  }
}
.recruit .catch__r .catch__txt:first-child {
  margin-top: 0;
}


/* リクルートページ職種別ページ用
================================================== */
.recruitList > div,
.recruitList dd,
.recruitList__ttl--jp {
  border-top: max(.5333333vw, 2px) solid #000;
}
@media all and (min-width: 767px) {
  .recruitList > div,
  .recruitList__ttl--jp {
    border-top: .15625vw solid #000;
  }
}

/* div */
@media all and (min-width: 767px) {
  .recruitList > div {
    display: flex;
  }
}

/* dt */
@media all and (min-width: 767px) {
  .recruitList dt {
    border-right: .15625vw solid #000;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    width: calc(33.33334vw - 3px);
  }
}

/* dd */
.recruitList dd {
  padding: 13.33333vw 7.4666666vw;
}
@media all and (min-width: 767px) {
  .recruitList dd {
    border-top: none;
    padding: 5vw 11.3020833vw 5vw 5.2083333vw;
    width: 66.66667vw;
  }
}

.recruitList dd > p:first-of-type,
.recruitList dd > section:first-of-type,
.recruitList dd > div:first-of-type {
  margin-top: 0;
}

/* タイトル（英語） */
.recruitList__ttl--en {
  padding: 7.4666666vw 8vw;
  margin: 0 auto;
}
@media all and (min-width: 767px) {
  .recruitList__ttl--en {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    padding: 6.7708333vw 2.6041666vw;
  }
}

.recruitList__conditions .recruitList__ttl--en {
  padding-top: 12.8vw;
  padding-bottom: 12.8vw;
}

.recruitList__ttl--en img {
  display: block;
  margin: 0 auto;
}

/* 個別 */
.recruitList__jobInfo .recruitList__ttl--en img {
  width: 57.7066666vw;
}
.recruitList__wanted .recruitList__ttl--en img {
  width: 52.9546666vw;
}
.recruitList__requireMents .recruitList__ttl--en img {
  width: 58.0213333vw;
}

.recruitList__conditions .recruitList__ttl--en img {
  width: 79.5226666vw;
}
@media all and (min-width: 767px) {
  .recruitList__jobInfo .recruitList__ttl--en img {
    width: 20.0375vw;
  }
  .recruitList__wanted .recruitList__ttl--en img {
    width: 18.3875vw;
  }
  .recruitList__requireMents .recruitList__ttl--en img {
    width: 20.1458333vw;
  }
  .recruitList__conditions .recruitList__ttl--en img {
    width: 27.6125vw;
  }
}

/* タイトル（日本語） */
.recruitList__ttl--jp {
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 5.33333vw;
  font-weight: 500;
  line-height: 1.45;
  text-align: right;
  padding: 2.13334vw 7.46667vw 2.66667vw;
}
@media all and (min-width: 767px) {
  .recruitList__ttl--jp {
    font-size: 1.3020833vw;
    line-height: 1.44;
    padding: .625vw 1.5625vw calc(.625vw + 3px);
  }
}

.recruitList__jobInfo .recruitList__ttl--jp {
  background-color: #90BBFF;
}
.recruitList__wanted .recruitList__ttl--jp {
  background-color: #F68652;
}
.recruitList__requireMents .recruitList__ttl--jp {
  background-color: #6BC15F;
}
.recruitList__conditions .recruitList__ttl--jp {
  background-color: #F0A2C3;
}

/* テキスト */
.recruitList .txt {
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4.266667vw;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 6.4vw;
}

/*  */
.catchWrap {
  margin: 0 0 13.33333vw -2.133334vw;
}

.recruitList .txt--catch {
  background-color: #B8E56F;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4.266667vw;
  font-weight: 500;
  line-height: 2.125;
  padding: 1.4666666vw 1.33334vw;
  white-space: nowrap;
}

.recruitList .txt--catch_sp {
  display: inline;
}

.recruitList .txt--catch_pc {
  display: none;
}
@media all and (min-width: 767px) {
  .catchWrap {
    margin: 0 0 2.6041666vw -.5208333vw;
  }

  .recruitList .txt {
    font-size: 1.0416666vw;
    margin-top: 1.5625vw;
  }

  .recruitList .txt--catch {
    font-size: 1.5625vw;
    line-height: 2.13333;
    padding: 0.546875vw .5208333vw;
  }

  .recruitList .txt--catch_sp {
    display: none;
  }

  .recruitList .txt--catch_pc {
    display: inline;
  }
}


/* REQUIRE-MENTS */
.recruitList__requireMents .requireMents__sec {
  margin-top: 8vw;
}
@media all and (min-width: 767px) {
  .recruitList__requireMents .requireMents__sec {
    margin-top: 2.6041666vw;
  }
}

.recruitList__requireMents .requireMents__secTtl {
  border-bottom: .266667vw solid #000;
  display: inline-block;
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4.266667vw;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1.33333vw;
  padding-bottom: 1.06667vw;
}
@media all and (min-width: 767px) {
  .recruitList__requireMents .requireMents__secTtl {
    border-bottom: max(.05208333vw, 1px) solid #000;
    font-size: 1.0416666vw;
    line-height: 1.5104166;
    margin-bottom: .78125vw;
    padding-bottom: .7291666vw;
  }
}

.recruitList__requireMents .requireMents__list {
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4.266667vw;
  font-weight: 400;
  line-height: 1.5;
}
@media all and (min-width: 767px) {
  .recruitList__requireMents .requireMents__list {
    font-size: 1.0416666vw;
  }
}

/* dd */
.recruitList__conditions dd {
  padding: 0;
}

/* table */
.recruitList__table {
  width: 100%;
}

/* tr */
.recruitList__table tr {
  border-bottom: .266667vw solid #000;
}
@media all and (min-width: 767px) {
  .recruitList__table tr {
    border-bottom: .15625vw solid #000;
  }
}

.recruitList__table th,
.recruitList__table td {
  font-family: 'Zen Kaku Gothic New', "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 4.266667vw;
  line-height: 1.5;
  vertical-align: middle;
}
@media all and (min-width: 767px) {
  .recruitList__table th,
  .recruitList__table td {
    font-size: 1.0416666vw;
  }
}

/* th */
.recruitList__table th {
  border-right: .266667vw solid #000;
  font-weight: 700;
  text-align: left;
  width: 29.866667vw;
}
@media all and (min-width: 767px) {
  .recruitList__table th {
    border-right: .15625vw solid #000;
    width: 16.66667vw;
  }
}
.recruitList__table th > span {
  display: table;
  margin: auto;
}

/* td */
.recruitList__table td {
  font-weight: 400;
  padding: 8vw 8vw 8vw 4.53333vw;
}
@media all and (min-width: 767px) {
  .recruitList__table td {
    padding: 2.6041666vw 3.8541666vw 2.4479166vw 3.8541666vw;
  }
}

@media all and (min-width: 767px) {
  .recruitList__conditions .recruitList__ttl--jp {
    border-bottom: .15625vw solid #000;
  }
  .recruitList__conditions .txt.pc_flex {
    display: flex;
  }
}

/*  */
.recruitList__table td > p:first-of-type {
  margin-top: 0;
}


/* ローディングアニメーション
-------------------------------------------------- */
/* //ローディング部分の回転エフェクト定義 */
@-webkit-keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loading {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

/* //ローディング画面の背景部分 */
#loading {
  width: 100%;
  height: 100dvh;
  background-color: #f6f7f8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000; }

/* //ローディング回転部分 */
#loading-main:after, #loading-main:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  margin-left: -50%;
  position: absolute;
  top: 40%;
  left: 50%;
  border-radius: 110%; }

#loading-main {
  display: block;
  width: 19.466667vw;
  height: 19.466667vw;
  position: absolute;
  top: 42%;
  left: 44%;
  transform: translate(-50%, -50%);
  z-index: 105;
}
@media all and (min-width: 767px) {
  #loading-main {
    width: 2.916667vw;
    height: 2.916667vw;
    top: 44%;
    left: 49%;
  }
}

#loading-main:after {
  -webkit-animation: loading 0.75s linear infinite;
  animation: loading 0.75s linear infinite;
  border: 5.33334vw solid transparent;
  border-top-color: #B8E56F; 
}
@media all and (min-width: 767px) {
  #loading-main:after {
    border: 1.0416667vw solid transparent;
    border-top-color: #B8E56F; 
  }
}

#loading-main:before {
  border: 5.33334vw solid rgba(51, 51, 51, 0.15); 
}
@media all and (min-width: 767px) {
  #loading-main:before {
    border: 1.0416667vw solid rgba(51, 51, 51, 0.15); 
  }
}

