@charset "UTF-8";
/*font ---------------------------------------------*/
:root {
  /*fonts*/
  --font-main: Noto Sans JP, sans-serif;
  --font-sub: Figtree, sans-serif;
  /*colors*/
  --color-main-100: #0e59c2;
  --color-main-200: #16b4f7;
  --color-main-300: #86d7f9;
  --color-main-400: #ccf1ff;
  --color-accent-100: #ffca4c;
  --color-txt-100: #1f1f1f;
  --color-txt-200: #737373;
  --color-base-100: #e3f5fc;
  --color-base-200: #e3ebef;
  --color-white: #ffffff;
  --color-black: #000000;
  /*font-weights*/
  --font-thin: 100;
  --font-exlight: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-exbold: 800;
  --font-black: 900;
  --color-txt-temp: #333333;
  --color-link-temp: #0066bb;
}
@media screen and (min-width: 767px) {
  :root {
    /*==========================================
    767px以上のとき
    ===========================================*/
    /*padding magin*/
    --cmn-pd-md: 120px;
    --ttl-mb-md: 70px;
  }
}
@media screen and (max-width: 767px) {
  :root {
    /*==========================================
    767px以下のとき
    ===========================================*/
    --cmn-pd-md: 90px;
    --ttl-mb-md: 50px;
  }
}

/*==========================================
sp用
===========================================*/
/* display ------------------------------------------------- */
.block {
  display: block;
}

.inblock {
  display: inline-block;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

/* flex-direction ------------------------------------------------- */
.fd-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.fd-row-rev {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fd-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.fd-col-rev {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

/* align-items ------------------------------------------------- */
.items-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.items-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.items-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

/* justify-content ------------------------------------------------- */
.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.justify-btw {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* text-align ------------------------------------------------- */
.text-center {
  text-align: center;
}

.text-start {
  text-align: start;
}

.text-end {
  text-align: end;
}

/*font-weight -------------------------------------------------*/
/* font-family -------------------------------------------------*/
.font-main {
  font-family: Noto Sans JP, sans-serif;
}

.font-sub {
  font-family: Figtree, sans-serif;
}

/*font-color  ------------------------------------------*/
.color-main-100 {
  color: var(--color-main-100);
}

.color-main-200 {
  color: var(--color-main-200);
}

.color-main-300 {
  color: var(--color-main-300);
}

.color-main-400 {
  color: var(--color-main-400);
}

.color-accent-100 {
  color: var(--color-accent-100);
}

.color-txt-100 {
  color: var(--color-txt-100);
}

.color-txt-200 {
  color: var(--color-txt-200);
}

.color-base-100 {
  color: var(--color-base-100);
}

.color-base-200 {
  color: var(--color-base-200);
}

.color-white {
  color: var(--color-white);
}

.color-black {
  color: var(--color-black);
}

/* common ---------------------------------------------- */
body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  word-break: normal;
  font-optical-sizing: auto;
  overflow-wrap: anywhere;
  font-weight: var(--font-medium);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0em;
  color: var(--color-txt-100);
}

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

a {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

a:hover {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0.7;
}

.cmn-txt-mb {
  margin-bottom: 1em;
}

/*==========================================
767px以上のとき
===========================================*/
@media screen and (min-width: 767px) {
  body {
    width: 100%;
    min-width: 1280px;
    position: relative;
  }
  .inner {
    max-width: 1080px;
    margin: 0 auto;
  }
  .pc-none {
    display: none !important;
  }
}
/*==========================================
767px以下のとき
===========================================*/
@media screen and (max-width: 767px) {
  body {
    width: 100%;
    min-width: 350px;
    position: relative;
  }
  .inner {
    max-width: 768px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }
  .sp-none {
    display: none !important;
  }
}
/*==================================================
 入力フィールド
================================================== */
select,
textarea,
input[type=tel],
input[type=text],
input[type=email],
input[type=url] {
  max-width: 100%;
  padding: 8px;
  font-size: 14px;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
          box-shadow: 0 1px 1px rgba(150, 150, 150, 0.1) inset;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

textarea {
  width: 100%;
}

/* ボタン
-------------------------------------------------- */
input[type=button],
input[type=submit] {
  /* background: var(--color-main); */
  background: var(--color-main, var(--color-txt-temp));
  color: var(--color-white);
  font-family: var(--font-main);
  margin: 0 4px;
  padding: 1em 2em;
  font-size: 16px;
  border: none;
  border-radius: 2px;
  -webkit-appearance: none;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

input[type=button]:hover,
input[type=submit]:hover {
  opacity: 0.8;
  cursor: pointer;
}

input[type=button][disabled],
input[type=submit][disabled] {
  opacity: 0.5;
  pointer-events: none;
}

/* チェックボックス・ラジオボタン
-------------------------------------------------- */
input[type=radio],
input[type=checkbox] {
  display: inline-block;
  margin-right: 6px;
}

input[type=radio] + label,
input[type=checkbox] + label {
  position: relative;
  display: inline-block;
  margin-right: 12px;
  line-height: 30px;
  cursor: pointer;
}

input[type=radio],
input[type=checkbox] {
  display: none;
  margin: 0;
}

input[type=radio] + label,
input[type=checkbox] + label {
  margin-bottom: 5px;
  padding: 0 0 0 24px;
}

input[type=radio] + label::before,
input[type=checkbox] + label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  width: 18px;
  height: 18px;
  margin-top: -9px;
  background: #FFF;
}

input[type=radio] + label::before {
  border: 2px solid #ccc;
  border-radius: 30px;
}

input[type=checkbox] + label::before {
  border: 2px solid #ccc;
}

input[type=radio]:checked + label::after,
input[type=checkbox]:checked + label::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

input[type=radio]:checked + label::after {
  left: 5px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #e74c3c;
  border-radius: 8px;
}

input[type=checkbox]:checked + label::after {
  left: 3px;
  width: 16px;
  height: 8px;
  margin-top: -8px;
  border-left: 3px solid #e74c3c;
  border-bottom: 3px solid #e74c3c;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*==================================================
 テーブル
================================================== */
.contact-form-table {
  margin: 0 0 16px;
}

/* スマホ表示時にはテーブルを縦向きにする */
@media screen and (max-width: 768px) {
  .contact-form-table,
  .contact-form-table tbody,
  .contact-form-table tr,
  .contact-form-table th,
  .contact-form-table td {
    width: auto;
    display: block;
  }
}
/* ご住所だけ2段なのでマージンを開ける */
input[name="items[address]"] {
  margin-top: 8px;
}

/* 「不正な送信です」「時間を空けて再度送信ください」などのセキュリティエラー文 */
.sec-error-text {
  line-height: 1.5em;
  padding: 40px 10px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  background: #e74c3c;
}

.sec-error-link {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .sec-error-text {
    padding: 30px 10px;
    font-size: 4vw;
  }
  .sec-error-link {
    font-size: 5vw;
  }
}
/* 「任意」「必須」マーク */
.optional-mark,
.required-mark {
  padding: 2px 4px;
  color: #fff;
  font-size: 13px;
  border-radius: 4px;
  float: right;
}

.optional-mark {
  background: #3498db;
}

.required-mark {
  background: #e74c3c;
}

/* 「~が入力されていません」などの未記入エラー文 */
.error-text {
  margin: 0 0 4px;
  color: #e74c3c;
}

/* 送信・確認ボタン */
.contact-submits-wrap {
  text-align: center;
}

/* プライバシーポリシー */
.inline-privacy-policy {
  height: 350px;
  margin: 16px 0;
  border: 1px solid #dfdfdf;
  background: #fff;
}

.inline-privacy-policy-inner {
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  display: inline-block;
}

.inline-privacy-policy iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/* リキャプチャ */
.contact-recaptcha-wrap {
  margin: 16px auto;
  display: table;
}

/*==================================================
 日付選択フォーム
================================================== */
.date-list {
  padding-left: inherit;
}

.date-list li {
  list-style: none;
  margin-bottom: 15px;
}

.date-list li p {
  margin-bottom: 5px;
}

/*==================================================
 画像アップロードフォーム
================================================== */
.upload-item-wrap {
  font-size: 13px;
  overflow: hidden;
}

.upload-item-wrap input[type=file] {
  display: none;
}

/* アップされた画像のサムネイル */
.upload-item-wrap .thumb {
  width: 220px;
  height: 220px;
  margin: 0 8px 0 0;
  position: relative;
  overflow: hidden;
  float: left;
}

.upload-item-wrap .thumb img {
  max-width: none;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}

/*選択・削除ボタン  */
.upload-item-wrap .ancion-btn-wrap {
  float: left;
}

.upload-item-wrap .ancion-btn {
  margin: 0 0 8px;
  width: 110px;
  line-height: 35px;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  background: #e6e6e6;
  display: block;
}

.upload-item-wrap .select-file {
  background: #2ecc71;
}

.upload-item-wrap .deselect-file {
  background: #e74c3c;
}

.upload-item-wrap .ancion-btn:hover {
  cursor: pointer;
}

/*添付ファイルの注意文  */
.upload-notice {
  margin-top: 10px;
  font-size: 0.8em;
}

.btn, .btn-md-main, .btn-thick-lg-accent, .btn-thick-ml-accent, .btn-thin-sm-accent, .btn-sm-accent {
  display: block;
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  text-align: center;
  position: relative;
  z-index: 1;
}

/*アクセントカラー ---------------------------------------------*/
.btn-thin-sm-accent, .btn-sm-accent {
  width: 221px;
  color: var(--color-txt-100);
  padding: 10px 0;
  background: var(--color-accent-100);
  border: 2px solid var(--color-txt-100);
}
.btn-thin-sm-accent .btn-cont, .btn-sm-accent .btn-cont {
  padding-left: 8px;
  margin-left: 22px;
  position: relative;
  z-index: 1;
}
.btn-thin-sm-accent .btn-cont::before, .btn-sm-accent .btn-cont::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 22px;
  height: 16px;
  left: 0;
  top: calc(50% + 1px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/mail-icon.png) no-repeat;
  background-size: contain;
}

.btn-sm-accent {
  padding: 20px 0;
}

.btn-thick-lg-accent, .btn-thick-ml-accent {
  width: 440px;
  color: var(--color-txt-100);
  padding: 35px 40px;
  background: var(--color-accent-100);
  border: 2px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
}
.btn-thick-lg-accent::before, .btn-thick-ml-accent::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 12/10;
  width: 12px;
  left: 20px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-double.png) no-repeat;
  background-size: contain;
}

.btn-thick-ml-accent {
  width: 342px;
}

/*メインカラー ---------------------------------------------*/
.btn-md-main {
  width: 280px;
  color: var(--color-txt-100);
  padding: 20px 40px;
  background: var(--color-main-200);
  border: 2px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
}
.btn-md-main::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 12/10;
  width: 12px;
  left: 20px;
  top: calc(50% + 1px);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-double.png) no-repeat;
  background-size: contain;
}

/*コモンテキスト --------------------------------*/
.txt, .com-info-data, .com-info-header, .member-txt, .description .empty-message, .description-data, .description-header, .flow-txt, .experienced-txt, .career-txt, .salary-body .desc, .salary-lead, .point-txt, .faq .empty-message, .faq-definition, .skills-txt, .service-txt, .top-about-txt, .txt-news-ttl, .news-item-ttl, .news .tag-change li, .top-news-item-ttl, .txt-news-date, .detail .date, .news-item .date, .top-news .date, .txt-lg, .top-area-txt {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

.txt-lg, .top-area-txt {
  font-size: 20px;
  line-height: 34px;
}

.txt-sm, .footer .copy, .footer .com-details, .footer .address, .txt-news-tag, .detail .tag, .news-item .tag, .top-news .tag {
  font-family: var(--font-main);
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0em;
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
}

/* ---------------------------------------------*/
.txt-xs {
  font-family: var(--font-main);
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.08em;
  font-weight: var(--font-semibold);
  color: var(--color-txt-100);
}

/* ---------------------------------------------*/
.txt-news-date, .detail .date, .news-item .date, .top-news .date {
  color: var(--color-main-200);
  line-height: 34px;
}

.txt-news-tag, .detail .tag, .news-item .tag, .top-news .tag {
  line-height: 34px;
  color: var(--color-white);
}

.txt-hd-nav {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

.txt-ft-nav, .footer .nav-item {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-txt-100);
  font-weight: var(--font-bold);
}

/*電話アイコンと番号 -------------------------------------------*/
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.tel {
  font-family: var(--font-main);
  font-size: 30px;
  font-weight: var(--font-bold);
  position: relative;
  line-height: 1;
  letter-spacing: 0em;
  color: var(--color-main-200);
}
.tel-num {
  display: inline-block;
  padding-left: 8px;
  margin-left: 23px;
  position: relative;
  z-index: 1;
}
.tel-num::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  width: 23px;
  left: 0;
  top: calc(50% + 2px);
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  background: url(/img/common/tel-icon.png) no-repeat;
  background-size: contain;
}

.tel-svg img {
  display: block;
}

.ttl, .com-info-ttl, .description-ttl, .flow-ttl, .career-ttl, .schedule-ttl, .point-ttl, .faq-ttl, .top-news-ttl, .top-area-ttl, .top-about-ttl, .ttl-ms, .ideal-subttl, .salary-subttl, .ttl-sm, .complete-ttl,
.notfound-ttl,
.privacy-ttl,
.form-ttl,
.site-map-ttl,
.news-ttl, .member-ttl, .experienced-ttl, .ideal-ttl, .salary-ttl, .data-ttl, .skills-ttl, .service-ttl, .top-wanted-ttl, .ttl-lg, .ttl-xs {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 78px;
  line-height: 86px;
  letter-spacing: 0em;
  font-weight: var(--font-black);
}

.ttl-xs {
  font-size: 32px;
}

.ttl-lg {
  font-size: 50px;
  line-height: 65px;
}

.ttl-sm, .complete-ttl,
.notfound-ttl,
.privacy-ttl,
.form-ttl,
.site-map-ttl,
.news-ttl, .member-ttl, .experienced-ttl, .ideal-ttl, .salary-ttl, .data-ttl, .skills-ttl, .service-ttl, .top-wanted-ttl {
  font-size: 60px;
}

.ttl-ms, .ideal-subttl, .salary-subttl {
  font-size: 54px;
}

.ttl-xxs, .flow-subttl, .service-subttl, .top-links .top-links-ttl, .top-wanted-subttl {
  font-family: var(--font-main);
  color: var(--color-main-100);
  font-size: 40px;
  line-height: 60px;
  letter-spacing: 0em;
  font-weight: var(--font-black);
}

.ttl-border, .ttl-border-ms {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 20px 20px;
  line-height: 1;
}
.ttl-border::before, .ttl-border-ms::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: calc(100% - 6px);
  height: 30px;
  clip-path: polygon(10px 0, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  left: 50%;
  bottom: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-200);
}
.ttl-border::after, .ttl-border-ms::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 34px;
  clip-path: polygon(11.5px 0, 100% 0%, calc(100% - 11.5px) 100%, 0% 100%);
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-txt-100);
}

.ttl-border-ms {
  width: 246px;
  padding: 0 0 16px;
  text-align: center;
}
.ttl-border-ms::before {
  width: 240px;
}
.ttl-border-ms::after {
  width: 246px;
}

.ttl-border-xs {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0 20px 8px;
}
.ttl-border-xs::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 14px;
  clip-path: polygon(10px 0, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  left: 50%;
  bottom: 2px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-200);
}

/*==========================================

===========================================*/
.ttl-set-md, .ttl-set-sm, .ttl-set-sm-c, .ttl-set-md-white, .ttl-set-md-c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.ttl-set-md .en, .ttl-set-sm .en, .ttl-set-sm-c .en, .ttl-set-md-white .en, .ttl-set-md-c .en {
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-semibold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-main);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(130, 208, 244)), to(rgb(164, 226, 174)));
  background: linear-gradient(0deg, rgb(130, 208, 244), rgb(164, 226, 174));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttl-set-md .ja, .ttl-set-sm .ja, .ttl-set-sm-c .ja, .ttl-set-md-white .ja, .ttl-set-md-c .ja {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 40px;
  line-height: 70px;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
}

.ttl-set-md-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ttl-set-md-white .en {
  background: var(--color-white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--color-white);
}
.ttl-set-md-white .ja {
  color: var(--color-white);
}

.ttl-set-sm .ja, .ttl-set-sm-c .ja {
  font-size: 32px;
  line-height: 57px;
}

.ttl-set-sm-c {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ttl-set02-xs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.ttl-set02-xs .en {
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-semibold);
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  color: var(--color-white);
  padding: 7.5px 15px;
  border-radius: 17.5px;
  background-image: linear-gradient(310deg, rgb(130, 208, 244), rgb(164, 226, 174));
  margin-bottom: 13px;
}
.ttl-set02-xs .ja {
  font-family: var(--font-main);
  color: var(--color-main);
  font-size: 26px;
  line-height: 40px;
  letter-spacing: 0.05em;
  font-weight: var(--font-bold);
}

.ttl-sv, .sv-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  position: relative;
  z-index: 1;
}
.ttl-sv .en, .sv-ttl .en {
  display: inline-block;
  text-transform: uppercase;
  font-family: var(--font-sub);
  font-weight: var(--font-exbold);
  font-size: 180px;
  line-height: 1;
  letter-spacing: 0;
  margin-bottom: -6px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgb(14, 89, 194)), to(rgb(22, 180, 247)));
  background-image: linear-gradient(90deg, rgb(14, 89, 194), rgb(22, 180, 247));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.ttl-sv .bg, .sv-ttl .bg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 46px;
  aspect-ratio: 741/118;
  width: 741px;
  -webkit-filter: drop-shadow(7.6604444312px 6.4278760969px 0px #86d7f9);
          filter: drop-shadow(7.6604444312px 6.4278760969px 0px #86d7f9);
  background: url(/img/common/sv-ttl-bg.png) no-repeat center center/contain;
}
.ttl-sv .ja, .sv-ttl .ja {
  font-family: var(--font-main);
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: var(--font-bold);
  color: var(--color-white);
  text-shadow: 4.0147836382px 4.4588689529px 0px rgba(31, 31, 31, 0.4);
}

/*コモンサブタイトル --------------------------------*/
.sub-ttl, .member-subttl, .footer .member-subttl, .ideal-item .cont-item, .point-subttl, .footer .point-subttl, .skills-item, .footer .skills-item, .top-about-subttl, .sub-ttl-lg, .footer .sub-ttl, .footer .sub-ttl-lg, .footer .top-about-subttl {
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  color: var(--color-white);
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0em;
}

.sub-ttl02, .schedule-row .cont, .salary-body .heading, .faq-term {
  font-family: var(--font-main);
  font-weight: var(--font-bold);
  color: var(--color-white);
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0em;
}

.sub-ttl-lg, .footer .sub-ttl, .footer .member-subttl, .footer .ideal-item .cont-item, .ideal-item .footer .cont-item, .footer .point-subttl, .footer .skills-item, .footer .sub-ttl-lg, .footer .top-about-subttl {
  font-size: 28px;
  font-weight: var(--font-black);
}

/*下層ページ固定スタイル ---------------------------------------------*/
/*==========================================
site-map
===========================================*/
.site-map {
  padding: var(--cmn-pd-md, 120px) 0;
}
.site-map-list {
  font-size: 18px;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.site-map-item {
  border-bottom: 1px solid var(--color-txt-def, var(--color-txt-temp));
  font-weight: var(--font-medium, 500);
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
  line-height: 1.7;
}
.site-map-item a {
  display: block;
  padding: 2% 0 2% 3%;
  position: relative;
  z-index: 1;
}
.site-map-item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/*==========================================
404
===========================================*/
.notfound {
  padding: var(--cmn-pd-md, 120px) 0;
}
.notfound-txt {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.notfound-txt a {
  color: var(--color-main-100, var(--color-link-temp));
  text-decoration: underline;
}

/*==========================================
bread-clumb
===========================================*/
.bread-clumb {
  padding: 15px 0;
  overflow: hidden;
}
.bread-clumb-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bread-clumb-item {
  font-size: 14px;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.bread-clumb-item:not(:last-child) {
  padding-right: 1.07em;
  margin-right: 1.07em;
  position: relative;
  z-index: 1;
}
.bread-clumb-item:not(:last-child)::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0.71em;
  height: 0.71em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23202931' viewBox='0 0 16 16'%3E%3Cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
}

/*==========================================
privacy
===========================================*/
.privacy {
  padding: var(--cmn-pd-md, 120px) 0;
}
.privacy .ttl02 {
  font-size: 24px;
  font-family: var(--font-main);
  padding-bottom: 10px;
  margin-bottom: 15px;
  color: var(--color-txt-def, var(--color-txt-temp));
  font-weight: var(--font-bold, bold);
  border-bottom: 1px solid var(--color-txt-def, var(--color-txt-temp));
}
.privacy .privacy-box {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.privacy .privacy-box:not(:last-child) {
  margin-bottom: 70px;
}

/*==========================================
contact
===========================================*/
#contact {
  padding: var(--cmn-pd-md, 120px) 0;
}

#contact table {
  width: 100%;
  margin-bottom: 16px;
  border-collapse: collapse;
}

#contact table tr td,
#contact table tr th {
  font-size: 15px;
  padding: 10px;
  vertical-align: middle;
  text-align: left;
  font-weight: 400;
  border: 1px solid #dfdfdf;
}

#contact table tr th {
  width: 30%;
  color: #fff;
  background: var(--color-main-100, var(--color-txt-temp));
}

#contact table tr td {
  width: 70%;
  background: #fff;
}

#contact table .required-mark {
  color: var(--color-main-100, var(--color-txt-temp));
  font-size: 13px;
  border-radius: 0;
  background: #fff;
}

@media screen and (max-width: 768px) {
  #contact table {
    border-collapse: separate;
  }
  #contact table tr {
    margin-bottom: 5vw;
  }
  #contact table tr td,
  #contact table tr th {
    font-size: 4vw;
    padding: 4vw;
    text-align: left;
    font-weight: 400;
    border: 1px solid #dfdfdf;
  }
  #contact table tr th {
    width: 100%;
    color: #fff;
    background: var(--color-main-100, var(--color-txt-temp));
  }
  #contact table tr td {
    width: 100%;
    background: #fff;
  }
  #contact table tr textarea,
  #contact table tr input {
    font-size: 4vw;
    padding: 4vw;
  }
  #contact table .required-mark {
    font-weight: 500;
    color: var(--color-main-100, var(--color-txt-temp));
    font-size: 3.5vw;
    border-radius: 0;
    background: #fff;
  }
}
#contact label[for=agree] a {
  color: var(--color-main-100);
  padding-bottom: 2px;
  border-bottom: 1px solid var(--color-main-100);
}

#contact .contact-btn.contact-submits-wrap button[type=button] {
  border: unset;
  background: var(--color-main-100, var(--color-txt-temp));
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

#contact .contact-btn.contact-submits-wrap button[type=button]:hover {
  opacity: 0.6;
}

#contact input[type=button],
#contact input[type=submit] {
  color: #fff;
  background: var(--color-main-100, var(--color-txt-temp));
  font-size: 16px;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

@media screen and (max-width: 768px) {
  #contact input[type=button],
  #contact input[type=submit] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact input[type=button]:hover,
#contact input[type=submit]:hover {
  opacity: 0.7;
}

#contact button[type=button] {
  color: #fff;
  background: var(--color-main-100, var(--color-txt-temp));
  font-size: 16px;
  margin: 0 4px;
  padding: 1em 2em;
  cursor: pointer;
  border: unset;
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}

@media screen and (max-width: 768px) {
  #contact button[type=button] {
    width: 95%;
    font-size: 4vw;
    margin-bottom: 2vw;
  }
}
#contact button[type=button] :hover {
  opacity: 0.7;
}

#contact input[type=button][disabled],
#contact input[type=submit][disabled] {
  color: #777;
  opacity: 0.7;
  background: #ccc;
}

/*==========================================
complete
===========================================*/
.complete {
  padding: var(--cmn-pd-md, 120px) 0;
}
.complete-box {
  font-weight: var(--font-medium, 500);
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: 0;
  color: var(--color-txt-def, var(--color-txt-temp));
}
.complete-box a {
  display: inline-block;
  margin-top: 20px;
  color: var(--color-main-100, var(--color-link-temp));
  text-decoration: underline;
}

/*==========================================
common
===========================================*/
.cmn-txt-mb {
  margin-bottom: 30px;
}

/*==========================================
top
===========================================*/
/*header ---------------------------------------------*/
.header {
  height: 108px;
  position: relative;
  z-index: 10;
  background: var(--color-white);
  padding: 16px 30px 0;
}
.header .logo {
  margin-top: 8px;
}
.header-info {
  margin-bottom: 16px;
  gap: 20px;
}
.header .tel-area {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-main-200);
}
.header .tel {
  margin-right: 14px;
}
.header .nav-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header .nav-item {
  position: relative;
  z-index: 1;
}
.header .nav-item:not(:last-child) {
  padding-right: 32px;
  margin-right: 32px;
}
.header .nav-item:not(:last-child)::before {
  content: "/";
  color: var(--color-main-100);
  position: absolute;
  z-index: -1;
  right: 0;
  width: 1em;
  height: 1em;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.header .current {
  color: var(--color-main-200);
}

/*mv ---------------------------------------------*/
.mv {
  --mv-height: 840px;
  height: var(--mv-height);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/top/mv-deco-r.png) no-repeat right bottom/auto, url(/img/top/mv-deco-l.png) no-repeat left center/auto;
  background-color: var(--color-base-100);
}
.mv .bx-wrapper,
.mv ul {
  height: 100%;
}
.mv li {
  height: var(--mv-height);
}
.mv li:nth-child(1) {
  background: url(/img/top/mv-deco-r.png) no-repeat right bottom/auto, url(/img/top/mv-bg01.png) no-repeat right center/auto;
}
.mv li:nth-child(2) {
  background: url(/img/top/mv-deco-r.png) no-repeat right bottom/auto, url(/img/top/mv-bg02.png) no-repeat right center/auto;
}
.mv li:nth-child(3) {
  background: url(/img/top/mv-deco-r.png) no-repeat right bottom/auto, url(/img/top/mv-bg03.png) no-repeat right center/auto;
}
.mv li:nth-child(4) {
  background: url(/img/top/mv-deco-r.png) no-repeat right bottom/auto, url(/img/top/mv-bg04.png) no-repeat right center/auto;
}
.mv-catch {
  position: absolute;
  z-index: 100;
  left: 30px;
  top: 39px;
  width: 745px;
  width: clamp(34.063rem, 9.063rem + 31.25vw, 46.563rem);
  width: clamp(40.625rem, 28.75rem + 14.84vw, 46.563rem);
}
.mv-sub-catch {
  position: absolute;
  z-index: 100;
  right: 36px;
  bottom: 0;
  width: 752px;
  width: clamp(37.5rem, 18.5rem + 23.75vw, 47rem);
}

/*side-btn ---------------------------------------------*/
.side-btn {
  position: fixed;
  right: 0;
  bottom: 20px;
  z-index: 1000;
}
.side-btn img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.side-btn-item {
  display: block;
}
.side-btn-item:nth-child(1) {
  position: absolute;
  right: 0;
  top: 0px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  aspect-ratio: 52/105;
  width: 52px;
}
.side-btn-item:nth-child(2) {
  aspect-ratio: 1;
  width: 141px;
  right: 0;
  bottom: 0;
}

/*top-wanted ---------------------------------------------*/
.top-wanted-ttl {
  color: var(--color-txt-100);
  text-shadow: 4.0147836382px 4.4588689529px 0px rgba(14, 89, 194, 0.3);
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.top-wanted-ttl .ttl-wrap {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.top-wanted-ttl .ttl-wrap::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 733/298;
  width: 733px;
  left: -99px;
  bottom: -6px;
  background: url(/img/top/top-wanted-ttl-en.png) no-repeat;
  background-size: contain;
}
.top-wanted-list {
  width: 100%;
  gap: 24px;
}
.top-wanted-item {
  width: 346px;
  height: 410px;
  background: url(/img/top/top-wanted-item-bg.png) no-repeat center center/contain;
  padding-top: 60px;
  position: relative;
  z-index: 1;
}
.top-wanted-item:nth-child(2) {
  -webkit-transform: translateY(-120px);
          transform: translateY(-120px);
}
.top-wanted-item:nth-child(3) {
  -webkit-transform: translateY(-240px);
          transform: translateY(-240px);
}
.top-wanted-subttl {
  position: absolute;
  z-index: -1;
  left: 9px;
  bottom: 10px;
  color: var(--color-white);
  text-shadow: rgb(14, 89, 194) 3px 0px 0px, rgb(14, 89, 194) 2.83487px 0.981584px 0px, rgb(14, 89, 194) 2.35766px 1.85511px 0px, rgb(14, 89, 194) 1.62091px 2.52441px 0px, rgb(14, 89, 194) 0.705713px 2.91581px 0px, rgb(14, 89, 194) -0.287171px 2.98622px 0px, rgb(14, 89, 194) -1.24844px 2.72789px 0px, rgb(14, 89, 194) -2.07227px 2.16926px 0px, rgb(14, 89, 194) -2.66798px 1.37182px 0px, rgb(14, 89, 194) -2.96998px 0.42336px 0px, rgb(14, 89, 194) -2.94502px -0.571704px 0px, rgb(14, 89, 194) -2.59586px -1.50383px 0px, rgb(14, 89, 194) -1.96093px -2.27041px 0px, rgb(14, 89, 194) -1.11013px -2.78704px 0px, rgb(14, 89, 194) -0.137119px -2.99686px 0px, rgb(14, 89, 194) 0.850987px -2.87677px 0px, rgb(14, 89, 194) 1.74541px -2.43999px 0px, rgb(14, 89, 194) 2.44769px -1.73459px 0px, rgb(14, 89, 194) 2.88051px -0.838247px 0px, rgb(14, 89, 194) 5.3530448509px 5.9451586038px 0px;
}
.top-wanted-subttl .sm {
  font-size: 34px;
}

/*top-about ---------------------------------------------*/
.top-about {
  padding-top: var(--cmn-pd-md);
  position: relative;
  z-index: 1;
}
.top-about::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 770/590;
  width: 770px;
  right: 0;
  top: 20px;
  background: url(/img/top/top-about-img.png) no-repeat;
  background-size: contain;
}
.top-about::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 122/830;
  width: 122px;
  right: 0;
  bottom: calc(var(--cmn-pd-md) * -1);
  background: url(/img/top/top-about-ttl-en.png) no-repeat;
  background-size: contain;
}
.top-about-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: 63px;
}
.top-about-txt {
  margin-left: 20px;
  margin-bottom: 100px;
}
.top-about-list {
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 70px;
}
.top-about-item {
  aspect-ratio: 1;
  width: 198px;
  background: url(/img/top/top-about-item-bg.png) no-repeat center center/contain;
  background-size: contain;
}
.top-about .btn-thick-lg-accent, .top-about .btn-thick-ml-accent {
  margin: 0 auto;
}

/*top-area ---------------------------------------------*/
.top-area {
  padding: 80px 0;
  position: relative;
  z-index: 1;
  background: url(/img/top/top-area-ttl-en.png) no-repeat right calc(50% - 405px) bottom, url(/img/common/pat02.jpg);
}
.top-area::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 106/195;
  width: 106px;
  left: calc(50% - 540px);
  bottom: 0;
  background: url(/img/top/top-area-deco-l.png) no-repeat;
  background-size: contain;
}
.top-area::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 270/214;
  width: 270px;
  right: calc(50% - 630px);
  top: -104px;
  background: url(/img/top/top-area-deco-r.png) no-repeat;
  background-size: contain;
}
.top-area-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 331/366;
  width: 331px;
  margin-left: 70px;
  margin-right: 70px;
}
.top-area-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: 60px;
}
.top-area-txt {
  font-weight: var(--font-bold);
}
.top-area-txt .lg {
  color: var(--color-main-100);
  font-size: 24px;
}

/*top-links ---------------------------------------------*/
.top-links {
  overflow: hidden;
}
.top-links-list {
  width: 100%;
  gap: 0;
}
.top-links-item {
  aspect-ratio: 640/340;
  width: 33.3333333333vw;
  min-width: 300px;
  position: relative;
  z-index: 1;
}
.top-links-item:nth-child(1) .link-item-wrapper {
  background: url(/img/top/top-links-bg01.png) no-repeat center center/cover;
}
.top-links-item:nth-child(1) .top-links-ttl::after {
  aspect-ratio: 122/144;
  left: 30px;
  background: url(/img/top/top-links-ill01.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-child(2) .link-item-wrapper {
  background: url(/img/top/top-links-bg02.png) no-repeat center center/cover;
}
.top-links-item:nth-child(2) .top-links-ttl::after {
  aspect-ratio: 101/144;
  left: 26px;
  background: url(/img/top/top-links-ill02.png) no-repeat;
  background-size: contain;
}
.top-links-item:nth-child(3) .link-item-wrapper {
  background: url(/img/top/top-links-bg03.png) no-repeat center center/cover;
}
.top-links-item:nth-child(3) .top-links-ttl::after {
  aspect-ratio: 154/144;
  left: 26px;
  background: url(/img/top/top-links-ill03.png) no-repeat;
  background-size: contain;
}
.top-links .link-item-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.top-links .top-links-ttl {
  position: absolute;
  z-index: -1;
  left: -2px;
  bottom: 30px;
  line-height: 1;
  color: var(--color-txt-100);
}
.top-links .top-links-ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: clamp(6.25rem, 0.75rem + 6.88vw, 9rem);
  top: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.top-links .top-links-ttl .deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  aspect-ratio: 360/96;
  width: clamp(18.75rem, 11.25rem + 9.38vw, 22.5rem);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: clamp(3.25rem, 4.06vw, 4.875rem);
  position: relative;
  z-index: 1;
  background: url(/img/top/top-links-btn-base.png) no-repeat center center/contain;
  -webkit-filter: drop-shadow(8.0295672763px 8.9177379057px 0px white);
          filter: drop-shadow(8.0295672763px 8.9177379057px 0px white);
}
.top-links .top-links-ttl .deco::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 12/10;
  width: 12px;
  right: 40px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/img/common/arw-double.png) no-repeat;
  background-size: contain;
}

/*top-news ---------------------------------------------*/
.top-news {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/top/top-news-deco.png) no-repeat left top/contain;
  position: relative;
  z-index: 1;
}
.top-news::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 481/123;
  width: 481px;
  right: 0;
  bottom: 0;
  background: url(/img/top/top-news-ttl-en.png) no-repeat;
  background-size: contain;
}
.top-news-wrap {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.top-news-heading {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 90px;
}
.top-news-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: 40px;
}
.top-news-list {
  width: 100%;
}
.top-news-item {
  width: 100%;
}
.top-news-item-body {
  width: 100%;
  height: 100%;
  padding: 20px 0 13px;
  position: relative;
  z-index: 1;
}
.top-news-item:first-child .top-news-item-body {
  padding-top: 0;
}
.top-news-item:last-child .top-news-item-body {
  padding-bottom: 0;
}
.top-news-item:not(:last-child) {
  border-bottom: 1px solid var(--color-main-200);
}
.top-news-item-ttl {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}
.top-news .meta {
  margin-bottom: 13px;
}
.top-news .date {
  margin-right: 14px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.top-news .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.top-news .tag {
  padding: 0px 14px;
  background: var(--color-main-200);
}

/*footer ---------------------------------------------*/
.footer {
  padding-top: 80px;
  padding-bottom: 30px;
  background: url(/img/top/footer-bg.png) no-repeat center center/cover;
}
.footer-contents {
  margin-bottom: 80px;
}
.footer-logo {
  display: block;
  margin-bottom: 40px;
}
.footer .address {
  line-height: 1;
  margin-bottom: 40px;
}
.footer .sub-ttl, .footer .member-subttl, .footer .ideal-item .cont-item, .ideal-item .footer .cont-item, .footer .point-subttl, .footer .skills-item, .footer .sub-ttl-lg, .footer .top-about-subttl {
  text-shadow: 2.6765224254px 2.9725793019px 0px white;
  line-height: 1;
  color: var(--color-main-100);
}
.footer .tel-area {
  margin-top: 30px;
  margin-bottom: 30px;
}
.footer .tel {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-main-200);
}
.footer .tel-svg {
  padding-top: 10px;
}
.footer .com-details {
  margin-bottom: 30px;
}
.footer .com-details span {
  color: var(--color-main-200);
}
.footer .nav-list {
  gap: 36px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer .current {
  color: var(--color-main-200);
}
.footer .copy-wrapper {
  margin-top: 57px;
}
.footer .copy {
  line-height: 1;
  color: var(--color-txt-200);
}

/*==========================================
sv
===========================================*/
.sv {
  width: 100%;
  height: 450px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(/img/common/sv-deco-r.png) no-repeat right bottom/auto, url(/img/common/sv-deco-l.png) no-repeat left top/auto;
}
.sv-ttl {
  margin-left: 60px;
  margin-top: 67px;
  position: relative;
  z-index: 1;
}
.sv-ttl .en {
  position: relative;
  z-index: 1;
}
.sv-ttl .en::before {
  content: "";
  position: absolute;
  aspect-ratio: 134/158;
  width: 134px;
  right: 26px;
  top: 50px;
  background: url(/img/common/sv-ill01.png) no-repeat;
  background-size: contain;
}
.sv-img {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 0;
  width: 1100px;
  height: 100%;
}
.sv-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sv-img::before {
  content: "";
  position: absolute;
  aspect-ratio: 234/382;
  width: 234px;
  right: 0;
  bottom: 0;
  background: url(/img/common/sv-deco-r.png) no-repeat;
  background-size: contain;
}
.sv-img::after {
  content: "";
  position: absolute;
  aspect-ratio: 127/152;
  width: 127px;
  right: 30px;
  bottom: 0;
  background: url(/img/common/sv-ill02.png) no-repeat;
  background-size: contain;
}

/*==========================================
bread-clumb
===========================================*/
/*==========================================
about
===========================================*/
.bg-container {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  background: url(/img/about/service-deco-r.png) no-repeat right bottom, url(/img/about/service-deco-l.png) no-repeat left bottom, url(/img/about/service-deco-base.png) no-repeat center bottom/max(1920px, 100%) 81%, url(/img/top/top-wanted-deco-r.png) no-repeat right top;
}

.service-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.service-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 591/105;
  width: 591px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/about/service-ttl-en.png) no-repeat;
  background-size: contain;
}
.service-list {
  margin-left: 33px;
  gap: 50px;
}
.service-item {
  gap: 50px;
}
.service-subttl {
  line-height: 1;
  color: var(--color-white);
  text-shadow: rgb(14, 89, 194) 3px 0px 0px, rgb(14, 89, 194) 2.83487px 0.981584px 0px, rgb(14, 89, 194) 2.35766px 1.85511px 0px, rgb(14, 89, 194) 1.62091px 2.52441px 0px, rgb(14, 89, 194) 0.705713px 2.91581px 0px, rgb(14, 89, 194) -0.287171px 2.98622px 0px, rgb(14, 89, 194) -1.24844px 2.72789px 0px, rgb(14, 89, 194) -2.07227px 2.16926px 0px, rgb(14, 89, 194) -2.66798px 1.37182px 0px, rgb(14, 89, 194) -2.96998px 0.42336px 0px, rgb(14, 89, 194) -2.94502px -0.571704px 0px, rgb(14, 89, 194) -2.59586px -1.50383px 0px, rgb(14, 89, 194) -1.96093px -2.27041px 0px, rgb(14, 89, 194) -1.11013px -2.78704px 0px, rgb(14, 89, 194) -0.137119px -2.99686px 0px, rgb(14, 89, 194) 0.850987px -2.87677px 0px, rgb(14, 89, 194) 1.74541px -2.43999px 0px, rgb(14, 89, 194) 2.44769px -1.73459px 0px, rgb(14, 89, 194) 2.88051px -0.838247px 0px, rgb(14, 89, 194) 5.3530448509px 5.9451586038px 0px;
  margin-bottom: 33px;
}
.service-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 350/240;
  width: 350px;
  position: relative;
  z-index: 1;
  outline: 2px solid var(--color-txt-100);
  -webkit-filter: drop-shadow(9.9702056147px 9.9702056147px 0px #16b4f7);
          filter: drop-shadow(9.9702056147px 9.9702056147px 0px #16b4f7);
}

/*skills ---------------------------------------------*/
.skills {
  margin-top: 120px;
}
.skills-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.skills-ttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 870/255;
  width: 870px;
  left: 0;
  top: 0;
  background: url(/img/about/skills-ttl-en.png) no-repeat;
  background-size: contain;
}
.skills-ttl::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 270/214;
  width: 270px;
  right: -90px;
  bottom: 14px;
  background: url(/img/top/top-area-deco-r.png) no-repeat;
  background-size: contain;
}
.skills-box {
  margin: 0 55px;
  background: var(--color-main-100);
  outline-offset: -8px;
  outline: 2px solid #3683f0;
  position: relative;
  z-index: 1;
  padding: 60px 178px;
}
.skills-box::before {
  content: "";
  position: absolute;
  aspect-ratio: 32/32;
  width: 32px;
  left: -8px;
  top: 28px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.skills-box::after {
  content: "";
  position: absolute;
  aspect-ratio: 22/22;
  width: 22px;
  right: 0;
  bottom: 0;
  background: url(/img/common/kirakira02.png) no-repeat;
  background-size: contain;
}
.skills-list {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 26px 68px;
}
.skills-item {
  line-height: 1;
  padding-left: 10px;
  margin-left: calc(8px * 1.41);
  position: relative;
  z-index: 1;
}
.skills-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  left: 0;
  top: 12px;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  background: #fff;
}
.skills-txt {
  text-align: center;
  margin-top: 13px;
}

/*faq ---------------------------------------------*/
.faq {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pat02.jpg);
}
.faq-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.faq-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 1009/260;
  width: 1009px;
  left: 0;
  top: 0;
  background: url(/img/about/faq-ttl-en.png) no-repeat;
  background-size: contain;
}
.faq-ttl::after {
  content: "";
  position: absolute;
  aspect-ratio: 106/195;
  width: 106px;
  right: -70px;
  top: 20px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  background: url(/img/top/top-area-deco-l.png) no-repeat;
  background-size: contain;
}
.faq-list {
  margin-left: 63px;
  margin-right: 47px;
  gap: 48px;
}
.faq-item {
  width: 100%;
  gap: 10px;
}
.faq-term {
  width: 100%;
  padding: 11px 39px;
  border: 2px solid var(--color-txt-100);
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
}
.faq-term::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 74/75;
  width: 74px;
  left: -56px;
  top: -8px;
  background: url(/img/about/faq-question-icon.png) no-repeat;
  background-size: contain;
}
.faq-definition {
  width: 100%;
  padding: 20px 40px;
  border: 2px solid var(--color-txt-100);
  background: var(--color-white);
}
/*point ---------------------------------------------*/
.point {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/about/point-deco-base.png) no-repeat center top/max(1920px, 100%) 74%;
  position: relative;
  z-index: 1;
}
.point::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 869/614;
  width: 869px;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  background: url(/img/top/top-wanted-deco-r.png) no-repeat;
  background-size: contain;
}
.point-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.point-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 433/105;
  width: 433px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/about/point-ttl-en.png) no-repeat;
  background-size: contain;
}
.point-list {
  margin-left: 120px;
  margin-right: 30px;
  gap: 33px;
}
.point-item {
  width: 860px;
  gap: 21px;
}
.point-item:nth-child(even) {
  margin-left: 70px;
}
.point-item:nth-child(1) .point-subttl::before {
  background: url(/img/about/point-num01.png) no-repeat;
  background-size: contain;
}
.point-item:nth-child(2) .point-subttl::before {
  background: url(/img/about/point-num02.png) no-repeat;
  background-size: contain;
}
.point-item:nth-child(3) .point-subttl::before {
  background: url(/img/about/point-num03.png) no-repeat;
  background-size: contain;
}
.point-item:nth-child(4) .point-subttl::before {
  background: url(/img/about/point-num04.png) no-repeat;
  background-size: contain;
}
.point-item:nth-child(5) .point-subttl::before {
  background: url(/img/about/point-num05.png) no-repeat;
  background-size: contain;
}
.point-subttl {
  padding: 10px 70px;
  width: 100%;
  border: 2px solid var(--color-txt-100);
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
}
.point-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 144/43;
  width: 144px;
  left: -96px;
  top: 8px;
}
.point-txt {
  width: 100%;
  padding: 0 40px 0 70px;
}

/*==========================================
work
===========================================*/
/*data ---------------------------------------------*/
.data-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.data-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 1109/105;
  width: 1109px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/work/data-ttl-en.png) no-repeat;
  background-size: contain;
}
.data-list {
  width: 100%;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/*salary ---------------------------------------------*/
.salary {
  margin-top: var(--cmn-pd-md);
}
.salary-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.salary-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 562/105;
  width: 562px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/work/salary-ttl-en.png) no-repeat;
  background-size: contain;
}
.salary-ttl::after {
  content: "";
  position: absolute;
  aspect-ratio: 270/214;
  width: 270px;
  right: -90px;
  top: -32px;
  background: url(/img/top/top-area-deco-r.png) no-repeat;
  background-size: contain;
}
.salary-lead {
  margin-bottom: 33px;
}
.salary-list {
  width: 100%;
  gap: 40px;
}
.salary-item {
  margin-left: auto;
  width: 1050px;
  gap: 34px;
  background: var(--color-main-100);
  outline-offset: -8px;
  outline: 2px solid #3683f0;
  position: relative;
  z-index: 1;
  padding: 60px 150px 60px 270px;
}
.salary-item::before {
  content: "";
  position: absolute;
  aspect-ratio: 32/32;
  width: 32px;
  left: -8px;
  top: 28px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.salary-item::after {
  content: "";
  position: absolute;
  aspect-ratio: 22/22;
  width: 22px;
  right: 0;
  bottom: 0;
  background: url(/img/common/kirakira02.png) no-repeat;
  background-size: contain;
}
.salary-body {
  gap: 17px;
}
.salary-body .heading {
  color: var(--color-white);
  margin-bottom: 9px;
}
.salary-body .heading .lg {
  font-size: 34px;
}
.salary-body .desc {
  color: var(--color-white);
}
.salary-txt {
  padding-left: 10px;
  margin-left: calc(8px * 1.41);
  position: relative;
  z-index: 1;
}
.salary-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  left: 0;
  top: 21px;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  background: #fff;
}
.salary-subttl {
  line-height: 1;
  color: var(--color-white);
  position: absolute;
  left: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-shadow: rgb(31, 31, 31) 3px 0px 0px, rgb(31, 31, 31) 2.83487px 0.981584px 0px, rgb(31, 31, 31) 2.35766px 1.85511px 0px, rgb(31, 31, 31) 1.62091px 2.52441px 0px, rgb(31, 31, 31) 0.705713px 2.91581px 0px, rgb(31, 31, 31) -0.287171px 2.98622px 0px, rgb(31, 31, 31) -1.24844px 2.72789px 0px, rgb(31, 31, 31) -2.07227px 2.16926px 0px, rgb(31, 31, 31) -2.66798px 1.37182px 0px, rgb(31, 31, 31) -2.96998px 0.42336px 0px, rgb(31, 31, 31) -2.94502px -0.571704px 0px, rgb(31, 31, 31) -2.59586px -1.50383px 0px, rgb(31, 31, 31) -1.96093px -2.27041px 0px, rgb(31, 31, 31) -1.11013px -2.78704px 0px, rgb(31, 31, 31) -0.137119px -2.99686px 0px, rgb(31, 31, 31) 0.850987px -2.87677px 0px, rgb(31, 31, 31) 1.74541px -2.43999px 0px, rgb(31, 31, 31) 2.44769px -1.73459px 0px, rgb(31, 31, 31) 2.88051px -0.838247px 0px, rgb(31, 31, 31) 5.3530448509px 5.9451586038px 0px;
}
.salary-ill {
  position: absolute;
  right: 20px;
  bottom: 0;
}

/*schedule ---------------------------------------------*/
.schedule {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pat02.jpg);
}
.schedule-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 54px;
  position: relative;
  z-index: 1;
}
.schedule-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 737/105;
  width: 737px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/work/schedule-ttl-en.png) no-repeat;
  background-size: contain;
}
.schedule-wrapper {
  width: 960px;
  background: url(/img/work/schedule-bg.png) no-repeat center center/cover;
  border: 2px solid var(--color-txt-100);
  padding: 60px 270px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.schedule-wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 216/576;
  width: 216px;
  left: 40px;
  bottom: 0;
  background: url(/img/work/schedule-ill-l.png) no-repeat;
  background-size: contain;
}
.schedule-wrapper::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 219/519;
  width: 219px;
  right: 40px;
  top: -20px;
  background: url(/img/work/schedule-ill-r.png) no-repeat;
  background-size: contain;
}
.schedule-list {
  position: relative;
  z-index: 1;
  gap: 52px;
}
.schedule-list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: calc(100% - 20px);
  background: var(--color-white);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.schedule-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.schedule-row::before {
  content: "";
  position: absolute;
  left: 50%;
  aspect-ratio: 24/24;
  width: 24px;
  background: var(--color-white);
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.schedule-row:first-child::before, .schedule-row:last-child::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  aspect-ratio: 36/36;
  width: 36px;
  background: var(--color-main-100);
  border: 8px solid var(--color-white);
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.schedule-row:first-child {
  margin-bottom: 6px;
}
.schedule-row:last-child {
  margin-top: 6px;
}
.schedule-row .time {
  font-size: 18px;
  font-weight: var(--font-bold);
  color: var(--color-white);
  text-align: right;
  padding-right: 58px;
  vertical-align: middle;
}
.schedule-row .cont {
  color: var(--color-white);
  text-align: left;
  padding-left: 58px;
  vertical-align: middle;
}

/*career ---------------------------------------------*/
.career {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/work/career-deco-t.png) no-repeat center top/100% 83%;
  position: relative;
  z-index: 1;
}
.career::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 869/614;
  width: 869px;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  background: url(/img/top/top-wanted-deco-r.png) no-repeat;
  background-size: contain;
}
.career-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 54px;
  position: relative;
  z-index: 1;
}
.career-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 942/105;
  width: 942px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/work/career-ttl-en.png) no-repeat;
  background-size: contain;
}
.career-list {
  margin-left: 100px;
  margin-right: 50px;
  gap: 20px;
}
.career-item {
  width: 100%;
}
.career-item:nth-child(even) {
  margin-left: 70px;
}
.career-item:nth-child(1) .career-txt::before {
  background: url(/img/work/career-num01.png) no-repeat;
  background-size: contain;
}
.career-item:nth-child(2) .career-txt::before {
  background: url(/img/work/career-num02.png) no-repeat;
  background-size: contain;
}
.career-item:nth-child(3) .career-txt::before {
  background: url(/img/work/career-num03.png) no-repeat;
  background-size: contain;
}
.career-item:nth-child(4) .career-txt::before {
  background: url(/img/work/career-num04.png) no-repeat;
  background-size: contain;
}
.career-txt {
  color: var(--color-white);
  padding: 25px 100px;
  width: 860px;
  border: 2px solid var(--color-txt-100);
  background: var(--color-main-100);
  position: relative;
  z-index: 1;
}
.career-txt::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 114/50;
  width: 114px;
  left: -55px;
  top: 30px;
}

/*==========================================
recruit
===========================================*/
.bg-container-02 {
  padding: var(--cmn-pd-md) 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: url(/img/recruit/ideal-deco-r.png) no-repeat right bottom, url(/img/recruit/ideal-deco-l.png) no-repeat left bottom, url(/img/about/service-deco-base.png) no-repeat center bottom/max(1920px, 100%) 81%, url(/img/top/top-wanted-deco-r.png) no-repeat right top;
}

/*ideal ---------------------------------------------*/
.ideal {
  overflow: hidden;
}
.ideal-wrap {
  position: relative;
  z-index: 1;
}
.ideal-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.ideal-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 1273/255;
  width: 1273px;
  left: calc((100vw - 1080px) / 2 * -1);
  top: 0;
  background: url(/img/recruit/ideal-ttl-en.png) no-repeat;
  background-size: contain;
}
.ideal-list-container {
  position: relative;
  z-index: 1;
}
.ideal-list {
  width: 100%;
  gap: 60px;
  background: var(--color-main-100);
  outline-offset: -8px;
  outline: 2px solid #3683f0;
  position: relative;
  z-index: 1;
  padding: 70px 120px;
}
.ideal-list::before {
  content: "";
  position: absolute;
  aspect-ratio: 32/32;
  width: 32px;
  left: -8px;
  top: 28px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.ideal-list::after {
  content: "";
  position: absolute;
  aspect-ratio: 22/22;
  width: 22px;
  right: 0;
  bottom: 0;
  background: url(/img/common/kirakira02.png) no-repeat;
  background-size: contain;
}
.ideal-item {
  gap: 30px;
}
.ideal-item .cont-list {
  gap: 18px;
}
.ideal-item .cont-item {
  line-height: 30px;
  padding-left: 10px;
  margin-left: calc(8px * 1.41);
  position: relative;
  z-index: 1;
}
.ideal-item .cont-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  left: 0;
  top: 15px;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  background: #fff;
}
.ideal-subttl {
  line-height: 1;
  color: var(--color-white);
  text-shadow: rgb(31, 31, 31) 3px 0px 0px, rgb(31, 31, 31) 2.83487px 0.981584px 0px, rgb(31, 31, 31) 2.35766px 1.85511px 0px, rgb(31, 31, 31) 1.62091px 2.52441px 0px, rgb(31, 31, 31) 0.705713px 2.91581px 0px, rgb(31, 31, 31) -0.287171px 2.98622px 0px, rgb(31, 31, 31) -1.24844px 2.72789px 0px, rgb(31, 31, 31) -2.07227px 2.16926px 0px, rgb(31, 31, 31) -2.66798px 1.37182px 0px, rgb(31, 31, 31) -2.96998px 0.42336px 0px, rgb(31, 31, 31) -2.94502px -0.571704px 0px, rgb(31, 31, 31) -2.59586px -1.50383px 0px, rgb(31, 31, 31) -1.96093px -2.27041px 0px, rgb(31, 31, 31) -1.11013px -2.78704px 0px, rgb(31, 31, 31) -0.137119px -2.99686px 0px, rgb(31, 31, 31) 0.850987px -2.87677px 0px, rgb(31, 31, 31) 1.74541px -2.43999px 0px, rgb(31, 31, 31) 2.44769px -1.73459px 0px, rgb(31, 31, 31) 2.88051px -0.838247px 0px, rgb(31, 31, 31) 5.3530448509px 5.9451586038px 0px;
}
.ideal-ill {
  position: absolute;
  z-index: 1;
}
.ideal-ill:nth-of-type(1) {
  right: 157px;
  top: -30px;
  aspect-ratio: 110/194;
  width: 110px;
}
.ideal-ill:nth-of-type(2) {
  right: 20px;
  top: 80px;
  aspect-ratio: 129/158;
  width: 129px;
}
.ideal-ill img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*experienced ---------------------------------------------*/
.experienced {
  margin-top: var(--cmn-pd-md);
  position: relative;
  z-index: 1;
}
.experienced-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.experienced-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 970/255;
  width: 970px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/recruit/experienced-ttl-en.png) no-repeat;
  background-size: contain;
}
.experienced-body {
  position: relative;
  z-index: 1;
  padding: 0 60px;
  gap: 60px;
}
.experienced-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 420px;
  outline: 2px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
}
.experienced-img::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  left: calc(50% + 10px);
  top: calc(50% + 10px);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: var(--color-main-200);
}
/*flow ---------------------------------------------*/
.flow {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/common/pat02.jpg);
  position: relative;
  z-index: 1;
}
.flow::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 270/244;
  width: 270px;
  right: calc(50% - 630px);
  top: -134px;
  background: url(/img/recruit/flow-deco-r.png) no-repeat;
  background-size: contain;
}
.flow-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 54px;
  position: relative;
  z-index: 1;
}
.flow-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 407/105;
  width: 407px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/recruit/flow-ttl-en.png) no-repeat;
  background-size: contain;
}
.flow-list {
  width: 100%;
  padding: 0 35px;
  padding-right: 0;
  gap: 36px;
}
.flow-item {
  width: 100%;
}
.flow-img {
  margin-right: 46px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  aspect-ratio: 1;
  width: 142px;
  position: relative;
  z-index: 1;
}
.flow-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid var(--color-txt-100);
}
.flow-img::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(calc(-50% + 6px), calc(-50% + 6px));
          transform: translate(calc(-50% + 6px), calc(-50% + 6px));
  background: var(--color-main-100);
}
.flow-subttl {
  line-height: 1;
  color: var(--color-white);
  text-shadow: rgb(14, 89, 194) 3px 0px 0px, rgb(14, 89, 194) 2.83487px 0.981584px 0px, rgb(14, 89, 194) 2.35766px 1.85511px 0px, rgb(14, 89, 194) 1.62091px 2.52441px 0px, rgb(14, 89, 194) 0.705713px 2.91581px 0px, rgb(14, 89, 194) -0.287171px 2.98622px 0px, rgb(14, 89, 194) -1.24844px 2.72789px 0px, rgb(14, 89, 194) -2.07227px 2.16926px 0px, rgb(14, 89, 194) -2.66798px 1.37182px 0px, rgb(14, 89, 194) -2.96998px 0.42336px 0px, rgb(14, 89, 194) -2.94502px -0.571704px 0px, rgb(14, 89, 194) -2.59586px -1.50383px 0px, rgb(14, 89, 194) -1.96093px -2.27041px 0px, rgb(14, 89, 194) -1.11013px -2.78704px 0px, rgb(14, 89, 194) -0.137119px -2.99686px 0px, rgb(14, 89, 194) 0.850987px -2.87677px 0px, rgb(14, 89, 194) 1.74541px -2.43999px 0px, rgb(14, 89, 194) 2.44769px -1.73459px 0px, rgb(14, 89, 194) 2.88051px -0.838247px 0px, rgb(14, 89, 194) 5.3530448509px 5.9451586038px 0px;
  padding-right: 39px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flow-txt {
  padding: 15px 0;
  padding-left: 39px;
  border-left: 2px solid var(--color-main-100);
}

/*description ---------------------------------------------*/
.description {
  padding: var(--cmn-pd-md) 0;
  background: url(/img/work/career-deco-t.png) no-repeat center top/100% 810px;
  position: relative;
  z-index: 1;
}
.description::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 869/614;
  width: 869px;
  right: 0;
  bottom: 0;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
  background: url(/img/top/top-wanted-deco-r.png) no-repeat;
  background-size: contain;
}
.description-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 54px;
  position: relative;
  z-index: 1;
}
.description-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 939/255;
  width: 939px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/recruit/description-ttl-en.png) no-repeat;
  background-size: contain;
}
.description .table-wrapper {
  width: 100%;
  background: var(--color-main-100);
  border: 2px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
  padding: 70px 100px;
}
.description-table {
  width: 100%;
}
.description-row {
  width: 100%;
}
.description-row:not(:last-child) .description-header,
.description-row:not(:last-child) .description-data {
  border-bottom: 1px solid var(--color-txt-100);
}
.description-row:first-child .description-header,
.description-row:first-child .description-data {
  padding-top: 0;
}
.description-row:last-child .description-header,
.description-row:last-child .description-data {
  padding-bottom: 0;
}
.description-header {
  width: 230px;
  padding: 13.5px 0;
  padding-right: 20px;
  color: var(--color-accent-100);
}
.description-data {
  padding: 13.5px 0;
  color: var(--color-white);
}
/*==========================================
company
===========================================*/
/*member ---------------------------------------------*/
.member {
  padding: var(--cmn-pd-md) 0;
  position: relative;
  z-index: 1;
}
.member::before {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 1104/1082;
  width: 749px;
  left: 0;
  bottom: 0;
  background: url(/img/top/top-about-deco-l.png) no-repeat;
  background-size: contain;
}
.member::after {
  content: "";
  position: absolute;
  z-index: -1;
  aspect-ratio: 869/614;
  width: 869px;
  right: 0;
  top: 0;
  background: url(/img/top/top-wanted-deco-r.png) no-repeat;
  background-size: contain;
}
.member-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 48px;
  position: relative;
  z-index: 1;
}
.member-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 589/101;
  width: 589px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/company/member-ttl-en.png) no-repeat;
  background-size: contain;
}
.member-list {
  width: 100%;
  gap: 40px;
}
.member-item {
  width: 100%;
  gap: 60px;
  background: var(--color-main-100);
  outline-offset: -8px;
  outline: 2px solid #3683f0;
  position: relative;
  z-index: 1;
  padding: 70px 90px 80px 70px;
}
.member-item::before {
  content: "";
  position: absolute;
  aspect-ratio: 32/32;
  width: 32px;
  left: -8px;
  top: 28px;
  background: url(/img/common/kirakira01.png) no-repeat;
  background-size: contain;
}
.member-item::after {
  content: "";
  position: absolute;
  aspect-ratio: 22/22;
  width: 22px;
  right: 0;
  bottom: 0;
  background: url(/img/common/kirakira02.png) no-repeat;
  background-size: contain;
}
.member-img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 260px;
  height: 300px;
  -webkit-filter: drop-shadow(9.9702056147px 9.9702056147px 0px #16b4f7);
          filter: drop-shadow(9.9702056147px 9.9702056147px 0px #16b4f7);
  position: relative;
  z-index: 1;
}
.member-img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 2px solid var(--color-txt-100);
}
.member-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.member-subttl {
  line-height: 30px;
  color: var(--color-white);
  padding-left: 10px;
  margin-left: calc(8px * 1.41);
  position: relative;
  z-index: 1;
}
.member-subttl::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 8px;
  height: 8px;
  aspect-ratio: 1/1;
  left: 0;
  top: 15px;
  -webkit-transform: translate(-100%, -50%) rotate(45deg);
          transform: translate(-100%, -50%) rotate(45deg);
  background: #fff;
}
.member-txt {
  color: var(--color-white);
  padding-left: 1em;
  margin-top: 20px;
}

/*com-info ---------------------------------------------*/
.com-info {
  padding-top: var(--cmn-pd-md);
  padding-bottom: 0;
  background: url(/img/common/pat02.jpg);
}
.com-info-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 54px;
  position: relative;
  z-index: 1;
}
.com-info-ttl::before {
  content: "";
  position: absolute;
  z-index: -99;
  aspect-ratio: 1009/105;
  width: 1009px;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: url(/img/company/com-info-ttl-en.png) no-repeat;
  background-size: contain;
}
.com-info .table-wrapper {
  width: 100%;
  background: var(--color-main-100);
  border: 2px solid var(--color-txt-100);
  position: relative;
  z-index: 1;
  padding: 70px 100px;
}
.com-info-table {
  width: 100%;
}
.com-info-row {
  width: 100%;
}
.com-info-row:not(:last-child) .com-info-header,
.com-info-row:not(:last-child) .com-info-data {
  border-bottom: 1px solid var(--color-txt-100);
}
.com-info-row:first-child .com-info-header,
.com-info-row:first-child .com-info-data {
  padding-top: 0;
}
.com-info-row:last-child .com-info-header,
.com-info-row:last-child .com-info-data {
  padding-bottom: 0;
}
.com-info-header {
  width: 230px;
  padding: 11px 0;
  padding-right: 20px;
  color: var(--color-accent-100);
}
.com-info-data {
  padding: 11px 0;
  color: var(--color-white);
}
.com-info-data .tel-svg {
  display: block;
  margin-top: 10px;
  margin-bottom: 7px;
}
.com-info-data .tel-svg img {
  display: block;
}
.com-info-data .tel-link {
  display: block;
}
.com-info iframe {
  display: block;
  width: 100%;
  border: none;
  height: 400px;
  margin-top: 120px;
}

.complete,
.notfound,
.privacy,
.form,
.site-map,
.news,
.detail {
  overflow: hidden;
}

.complete,
.notfound,
.privacy,
.form,
.site-map,
.news {
  padding: var(--cmn-pd-md) 0;
}
.complete-ttl,
.notfound-ttl,
.privacy-ttl,
.form-ttl,
.site-map-ttl,
.news-ttl {
  text-shadow: 8.0295672763px 8.9177379057px 0px white;
  margin-bottom: var(--ttl-mb-md);
  padding-top: 75px;
  position: relative;
  width: 100vw;
  white-space: nowrap;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.complete-ttl::before,
.notfound-ttl::before,
.privacy-ttl::before,
.form-ttl::before,
.site-map-ttl::before,
.news-ttl::before {
  position: absolute;
  z-index: -99;
  text-transform: uppercase;
  white-space: nowrap;
  content: attr(data-en);
  font-family: var(--font-sub);
  font-weight: var(--font-exbold);
  font-size: 144px;
  line-height: 150px;
  color: var(--color-main-400);
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*==========================================
news
===========================================*/
/*news ---------------------------------------------*/
.news {
  padding: var(--cmn-pd-md) 0;
  position: relative;
}
.news-wrap {
  width: 100%;
}
.news .tag-change {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 70px;
}
.news .tag-change li {
  font-weight: var(--font-medium);
  border-radius: 10px;
  background: #eee;
  color: #b3b3b3;
  line-height: 1;
}
.news .tag-change li a {
  display: block;
  padding: 12px 26px;
}
.news .tag-change .current {
  color: var(--color-white);
  background: #16b4f7;
}
.news .tag-change a {
  display: block;
  width: 100%;
  text-align: center;
}
.news-list {
  width: 100%;
}
.news-item {
  width: 100%;
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.news-item:first-child {
  padding-top: 0;
}
.news-item:last-child {
  padding-bottom: 0;
}
.news-item:not(:last-child) {
  border-bottom: 1px solid var(--color-main-200);
}
.news-item-link {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.news-item-link.box-center {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.news-item-img {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  width: 200px;
  margin-right: 25px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-item-details {
  width: 100%;
}
.news-item .meta {
  margin-bottom: 13px;
}
.news-item .date {
  margin-right: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.news-item .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.news-item .tag {
  padding: 0px 14px;
  background: var(--color-main-200);
}
.news-item-txtarea {
  width: 100%;
  font-family: var(--font-main);
  color: var(--color-txt-def);
}
.news-item-ttl {
  width: 100%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

/*pagenation ---------------------------------------------*/
.pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
  gap: 20px;
}
.pagenation li {
  font-family: var(--font-main);
  font-weight: var(--font-medium);
  color: var(--color-txt-100);
  line-height: 1;
  width: 30px;
  text-align: center;
  padding-bottom: 10px;
  position: relative;
  z-index: 1;
}
.pagenation a {
  display: block;
  width: 100%;
  height: 100%;
}
.pagenation .current::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 20px;
  height: 2px;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: var(--color-main-200);
}

/*detail ---------------------------------------------*/
.detail {
  padding: var(--cmn-pd-md) 0;
}
.detail-ttl {
  font-size: 28px;
  color: var(--color-txt-100);
  margin-bottom: 20px;
  line-height: 1.5;
}
.detail .meta {
  margin-bottom: 72px;
}
.detail .date {
  line-height: 30px;
  margin-right: 13px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.detail .tag-list {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.detail .tag {
  line-height: 30px;
  position: relative;
  z-index: 1;
  padding: 2px 14px;
  background: var(--color-main-200);
}
.detail .page-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 72px;
  padding-top: 48px;
  text-align: center;
  border-top: 1px solid var(--color-main-200);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.detail .left,
.detail .mid,
.detail .right {
  font-size: 16px;
  font-family: var(--font-main);
  color: var(--color-txt-100);
  font-weight: var(--font-medium);
}
.detail .left {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-right: auto;
}
.detail .left a {
  display: block;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}
.detail .left a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-txt-100);
  border-right: 1px solid var(--color-txt-100);
  -webkit-transform: scale(-1, 1) skew(30deg) translateY(-50%);
          transform: scale(-1, 1) skew(30deg) translateY(-50%);
}
.detail .right {
  position: relative;
  z-index: 1;
  max-width: 33%;
  margin-left: auto;
}
.detail .right a {
  display: block;
  position: relative;
  z-index: 1;
  padding-right: 30px;
}
.detail .right a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 18px;
  height: 6px;
  border-bottom: 1px solid var(--color-txt-100);
  border-right: 1px solid var(--color-txt-100);
  -webkit-transform: skew(30deg) translateY(-50%);
          transform: skew(30deg) translateY(-50%);
}
.detail .mid {
  position: absolute;
  z-index: -1;
  left: 0;
  right: 0;
  bottom: 0;
}