@charset "UTF-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* ============================================
  reset
============================================  */
*,
*::before,
*::after {
  margin: 0; /* マージンは0に */
  padding: 0; /* パディングも常に0に */
  -webkit-box-sizing: border-box;
  box-sizing: border-box; /* もちろん、より直感的なbox-sizingに設定 */
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important; /* hiddenは非表示を意味します */
}

:where(html) {
  -webkit-text-size-adjust: none; /* iOSのランドスケープでテキストが調整されないようにする */
  color-scheme: dark light; /* ユーザーがダークテーマを好む場合、自動的にダークテーマになる */
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth; /* 何かにフォーカスがある場合のみスムーズスクロール */
  }
}
:where(body) {
  block-size: 100%; /* サファリ以外のブラウザのフォールバック */
  block-size: 100dvb; /* 1dvbは動的ビューポートの長さの1%、100dvbで高さいっぱいに */
  line-height: 1.5; /* アクセシブルな行の高さ */
  font-family: system-ui, sans-serif; /* timeの代わりにシステムフォントを使用 */
  -webkit-font-smoothing: antialiased; /* テキストのレンダリングを改善 */
}

:where(input, button, textarea, select) {
  font: inherit; /* フォーム コントロールは親フォントを継承 */
  color: inherit; /* カラーも継承 */
}

:where(textarea) {
  resize: vertical; /* テキストエリアの水平リサイズを無効に */
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer; /* インタラクティブなものにカーソルを合わせる */
}

:where(:disabled) {
  cursor: not-allowed; /* フォームコントロール無効時のカーソルを許可しない */
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed; /* ラベルにもカーソルを許可しない */
}

:where(button) {
  border-style: solid; /* ボタンのボーダーのスタイルを設定しやすくする */
}

:where(a) {
  text-underline-offset: 0.2ex; /* 下線の上にスペースを追加する */
}

:where(ul, ol) {
  list-style: none; /* ビュレットを削除、必要に応じて手動で追加する */
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block; /* 置換された要素をより予測可能にする */
}

:where(img, picture, svg) {
  max-inline-size: 100%; /* images should never overflow past the available space */
  block-size: auto; /* アスペクト比を保持 */
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word; /* 長い単語は改行 */
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem); /* 見出しの行の高さを減らす */
}

:where(hr) {
  /* より一貫性のある、スタイリッシュなhr */
  border: none;
  -webkit-border-before: 1px solid;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(:focus-visible) {
  /* より一貫性のある、カスタマイズ可能なフォーカスのアウトライン */
  outline: 2px solid var(--focus-color, Highlight);
  outline-offset: 2px;
}

/* .visually-hiddenは後のカスケードレイヤーを上書きするために!importantを使用 */
:where(
  .visually-hidden:not(:focus, :active, :focus-within, .not-visually-hidden)
) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:root {
  --color-base: #000;
  --color-primary: #12b3c7;
  --color-secondary: #ff8040;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --header-height-pc: 80px;
  --header-height-sp: 60px;
}

/* ============================================
  base
============================================  */
html {
  font-size: 62.5% !important;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow: auto;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  width: 100%;
  color: var(--color-base);
  font-family:
    "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", Arial, Verdana, sans-serif;
  line-height: 1;
  letter-spacing: 0;
  background: #fff;
  overscroll-behavior-y: none;
}
@media screen and (max-width: 767px) {
  body {
    overflow-x: none;
  }
}

p:not([class]) {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  p:not([class]) {
    font-size: 1.4rem;
  }
}

sup {
  vertical-align: super;
}

a {
  color: inherit;
}
a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  vertical-align: top;
  height: auto;
}

img[src$=".svg"] {
  max-width: 100%;
}

/*  pc表示時に電話発信させない
------------------------- */
a[href^="tel:"] {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ============================================
  header
============================================  */
.l-header {
  height: 150px;
  width: 100%;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
  background-color: #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 10px 0 20px;
}
@media only screen and (max-width: 1000px) {
  .l-header {
    height: 80px !important;
    padding: 20px 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .l-header {
    height: 60px !important;
    padding: 10px 0 !important;
  }
}
.l-header .l-inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.l-header ._navcorporate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2em;
  font-size: 1.4rem;
  margin-bottom: 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding-right: 16px;
}
@media only screen and (max-width: 1000px) {
  .l-header ._navcorporate {
    display: none;
  }
}
.l-header ._navcorporate ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.l-header ._navcorporate ._item a {
  text-decoration: none;
}
.l-header ._navcorporate ._item a:hover {
  text-decoration: underline;
}
.l-header ._navcorporate ._item::after {
  position: absolute;
  bottom: 0px;
  right: -16px;
  content: "";
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../../recruit/img/icon-blank.svg);
  mask-image: url(../../recruit/img/icon-blank.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #000;
}
.l-header ._logoarea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-header ._logoarea ._logo {
  width: 316px;
}
@media screen and (max-width: 767px) {
  .l-header ._logoarea ._logo {
    width: 200px;
  }
}
.l-header ._logoarea ._entrybtn {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-secondary);
  padding: 15px 40px 15px 25px;
  height: 40px;
  border-radius: 9999px;
  border: solid 3px var(--color-secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1000px) {
  .l-header ._logoarea ._entrybtn {
    display: none;
  }
}
.l-header ._logoarea ._entrybtn i {
  width: 20px;
  height: 16px;
  -webkit-mask-image: url(../../recruit/img/icon_entry.svg);
  mask-image: url(../../recruit/img/icon_entry.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  margin: 0 5px 0 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-header ._logoarea ._entrybtn i {
    width: 16px;
    height: 12px;
  }
}
.l-header ._logoarea ._entrybtn:hover {
  background-color: #fff;
  color: var(--color-secondary);
}
.l-header ._logoarea ._entrybtn:hover i {
  background-color: var(--color-secondary);
}
.l-header ._nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.7rem;
  font-weight: var(--font-weight-bold);
  gap: 2em;
  margin-top: 25px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media only screen and (max-width: 1000px) {
  .l-header ._nav {
    display: none;
  }
}
.l-header ._nav ._item {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-header ._nav ._item:hover {
  color: var(--color-primary);
}
.l-header.sticky {
  padding: 20px 0;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}
.l-header.sticky ._navcorporate {
  display: none;
}
.l-header.sticky ._nav {
  margin-top: 15px;
}

/* ============================================

hamburger

============================================  */
.l-hamburger {
  display: none;
}
@media only screen and (max-width: 1000px) {
  .l-hamburger {
    display: block;
  }
}
.l-hamburger ._nav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  z-index: 99;
  width: 100%; /* スマホに収まるくらい */
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  padding-top: 100px;
  padding-bottom: 60px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  visibility: hidden;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav {
    gap: 20px;
  }
}
.l-hamburger ._nav ._item {
  display: block;
  font-size: 2.4rem;
  line-height: 1.6;
  font-weight: bold;
  text-decoration: none;
  border-bottom: solid 1px #ccc;
  padding-bottom: 10px;
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._item {
    width: 88%;
    font-size: 1.8rem;
  }
}
.l-hamburger ._nav ._item::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  content: "";
  width: 100%;
  height: 2px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
  background: var(--color-primary);
}
.l-hamburger ._nav ._item:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.l-hamburger ._nav ._entrybtn {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-secondary);
  padding: 15px 40px 15px 25px;
  height: 40px;
  border-radius: 9999px;
  border: solid 3px var(--color-secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-hamburger ._nav ._entrybtn i {
  width: 20px;
  height: 16px;
  -webkit-mask-image: url(../../recruit/img/icon_entry.svg);
  mask-image: url(../../recruit/img/icon_entry.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  margin: 0 5px 0 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._nav ._entrybtn i {
    width: 16px;
    height: 12px;
  }
}
.l-hamburger ._nav ._entrybtn:hover {
  background-color: #fff;
  color: var(--color-secondary);
}
.l-hamburger ._nav ._entrybtn:hover i {
  background-color: var(--color-secondary);
}
.l-hamburger ._line {
  position: fixed;
  right: 30px;
  top: 29px;
  width: 32px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 22px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .l-hamburger ._line {
    top: 20px;
    right: 20px;
  }
}
.l-hamburger ._line ._item {
  position: absolute;
  left: 0;
  width: 32px;
  height: 2px;
  background-color: #333;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
}
.l-hamburger ._line ._item--1 {
  top: 0;
}
.l-hamburger ._line ._item--2 {
  top: 10px;
}
.l-hamburger ._line ._item--3 {
  top: 20px;
}
.l-hamburger ._line:hover ._item--1 {
  top: 2px;
}
.l-hamburger ._line:hover ._item--3 {
  top: 18px;
}

/* 表示された時用のCSS */
.is-open ._nav {
  opacity: 1;
  visibility: visible;
}
.is-open ._item--1 {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 10px !important;
}
.is-open ._item--2 {
  opacity: 0;
  transform: translateX(30px);
  -webkit-transform: translateX(30px);
}
.is-open ._item--3 {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 10px !important;
}

/* ============================================
  inner
============================================  */
.l-inner {
  width: 100%;
  max-width: 1700px;
  padding: 0 200px;
  margin: 0 auto;
}
@media only screen and (max-width: 1400px) {
  .l-inner {
    padding: 0 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .l-inner {
    padding: 0 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/* ============================================
  footer
============================================  */
.l-entry {
  background-color: var(--color-secondary);
  padding: 50px 0 80px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .l-entry {
    padding: 30px 0 40px;
  }
}
.l-entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fff;
  border-radius: 9999px;
  height: 150px;
  padding: 45px 60px;
  text-decoration: none;
  position: relative;
  z-index: 10;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border: solid 3px #fff;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-entry a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 15px;
    height: auto;
    padding: 30px 20px;
  }
}
.l-entry a:hover {
  background-color: var(--color-secondary);
}
.l-entry a:hover ._text {
  color: #fff;
}
.l-entry a:hover ._text i {
  background-color: #fff;
}
.l-entry a ._text {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-entry a ._text {
    font-size: 1.6rem;
  }
}
.l-entry a ._text i {
  width: 28px;
  height: 23px;
  -webkit-mask-image: url(../../recruit/img/icon_entry.svg);
  mask-image: url(../../recruit/img/icon_entry.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: var(--color-secondary);
  margin: 0 10px 0 20px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .l-entry a ._text i {
    width: 20px;
    height: 16px;
    margin: 0 8px 0 12px;
  }
}
.l-entry a ._text span {
  font-family: "Montserrat", sans-serif;
  font-size: 5rem;
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 767px) {
  .l-entry a ._text span {
    font-size: 2.5rem;
  }
}
.l-entry a ._bnr {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 200px;
  height: 45px;
  padding: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: solid 1px #00aaef;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .l-entry a ._bnr {
    width: 150px;
    height: 34px;
    padding: 6px;
  }
}
.l-entry a ._bnr img {
  width: 100%;
}
.l-entry .infiniteslide {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 100%;
  font-family: "Montserrat", sans-serif;
  font-size: 12.8rem;
  line-height: 1;
  color: #ffb691;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .l-entry .infiniteslide {
    font-size: 6.4rem;
    bottom: -5px;
  }
}

/* ============================================
  footer
============================================  */
.l-footer {
  background-color: #f7f7f7;
  padding: 100px 0 20px;
}
.l-footer ._colwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer ._colwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.l-footer ._company {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 340px;
}
.l-footer ._company ._logo {
  width: 242px;
  margin-bottom: 20px;
}
.l-footer ._company ._logo img {
  width: 100%;
}
.l-footer ._company ._address {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 40px;
}
.l-footer ._company ._teltitle {
  font-size: 1.6rem;
  font-weight: var(--font-weight-semibold);
  margin-bottom: 20px;
}
.l-footer ._company ._tel {
  font-size: 1.6rem;
}
.l-footer ._company ._tel a {
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-decoration: none;
}
.l-footer ._company ._tel a:hover {
  text-decoration: underline;
}
.l-footer ._company ._note {
  font-size: 1.4rem;
  margin-top: 10px;
}
.l-footer ._nav {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav {
    width: 100%;
  }
}
.l-footer ._nav ._item {
  float: left;
  width: calc(33.33% - 10px);
  margin-right: 15px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .l-footer ._nav ._item {
    width: calc(50% - 10px);
    margin-right: 0;
  }
}
.l-footer ._nav ._item a {
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.l-footer ._nav ._item a:hover {
  color: var(--color-primary);
}
.l-footer ._nav ._item:nth-child(3n) {
  margin-right: 0;
}
.l-footer ._copyright {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 90px;
}

/* ============================================
  pagetop
============================================  */
.l-pagetop {
  position: fixed;
  bottom: 33px;
  right: 33px;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  /* 非表示にする */
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-pagetop {
    bottom: 10px;
    right: 10px;
  }
}
.l-pagetop svg {
  fill: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-pagetop:hover {
  background-color: var(--color-primary);
}

.l-pagetop.is-active {
  /* 表示する */
  opacity: 1;
  visibility: visible;
}

/* ============================================
  btn
============================================  */
.c-button {
  position: relative;
  display: inline-block;
  background-color: var(--color-primary);
  color: #fff;
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  padding: 15px 75px 15px 60px;
  border-radius: 9999px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  text-decoration: none;
  border: solid 2px var(--color-primary);
}
@media screen and (max-width: 767px) {
  .c-button {
    font-size: 1.6rem;
    padding: 10px 50px 10px 20px;
  }
}
.c-button::after {
  position: absolute;
  top: 50%;
  right: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border-radius: 9999px;
  margin-left: 10px;
  background-image: url("../../recruit/img/icon_arrow.svg");
  background-position: center 10px;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.c-button:hover {
  color: var(--color-primary);
  background-color: #fff;
}
.c-button:hover::after {
  right: 8px;
}
.c-button.--wh {
  background-color: #fff;
  color: var(--color-primary);
  border: solid 2px #fff;
}
.c-button.--wh::after {
  background-color: var(--color-primary);
  background-image: url("../../recruit/img/icon_arrow_wh.svg");
}
.c-button.--wh:hover {
  color: #fff;
  background-color: var(--color-primary);
}

/* ============================================
  共通
============================================  */
.f-h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .f-h2 {
    margin-bottom: 25px;
    gap: 5px;
  }
}
.f-h2 ._sub {
  color: var(--color-primary);
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-h2 ._sub {
    font-size: 1.4rem;
  }
}
.f-h2 ._main {
  font-size: 5rem;
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .f-h2 ._main {
    font-size: 3rem;
  }
}

.f-text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: var(--font-weight-medium);
}
@media screen and (max-width: 767px) {
  .f-text {
    font-size: 1.4rem;
  }
}

/* ============================================
  メインビジュアル
============================================  */
.f-mainvisual {
  height: 700px;
  background-color: #fff;
  position: relative;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-mainvisual {
    height: 380px;
  }
}
.f-mainvisual.is-loaded.active {
  background-color: var(--color-primary);
}
.f-mainvisual.is-loaded.active ._contents {
  opacity: 1;
}
.f-mainvisual.is-loaded.active ._illust01,
.f-mainvisual.is-loaded.active ._illust02,
.f-mainvisual.is-loaded.active ._illust03,
.f-mainvisual.is-loaded.active ._illust04 {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.f-mainvisual ._contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 224px;
  position: relative;
  z-index: 10;
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 1.5s;
  transition-delay: 1.5s;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents {
    padding-top: 120px;
  }
}
.f-mainvisual ._contents ._copy02 {
  color: #fff;
  font-size: 3rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-top: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._copy02 {
    font-size: 2rem;
  }
}
.f-mainvisual ._contents ._copy02 ._emphasis {
  color: #fedc5e;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._copy02 ._emphasis {
    font-size: 3rem;
  }
}
.f-mainvisual ._contents ._entrybtn {
  font-size: 1.6rem;
  font-weight: var(--font-weight-bold);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  margin-top: 30px;
  background-color: var(--color-secondary);
  padding: 20px 40px;
  height: 60px;
  border-radius: 9999px;
  border: solid 3px var(--color-secondary);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._entrybtn {
    font-size: 1.4rem;
    height: 50px;
    padding: 15px 30px;
  }
}
.f-mainvisual ._contents ._entrybtn i {
  width: 20px;
  height: 16px;
  -webkit-mask-image: url(../../recruit/img/icon_entry.svg);
  mask-image: url(../../recruit/img/icon_entry.svg);
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #fff;
  margin: 0 5px 0 10px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._entrybtn i {
    width: 16px;
    height: 12px;
  }
}
.f-mainvisual ._contents ._entrybtn span {
  font-family: "Montserrat", sans-serif;
  font-size: 2.4rem;
  font-weight: var(--font-weight-semibold);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._contents ._entrybtn span {
    font-size: 1.8rem;
  }
}
.f-mainvisual ._contents ._entrybtn:hover {
  background-color: #fff;
  color: var(--color-secondary);
}
.f-mainvisual ._contents ._entrybtn:hover i {
  background-color: var(--color-secondary);
}
.f-mainvisual ._map {
  position: absolute;
  top: 30px;
  right: 50%;
  -webkit-transform: translateX(50%);
  transform: translateX(50%);
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._map {
    width: 90%;
  }
}
.f-mainvisual ._illust01 {
  position: absolute;
  top: 20px;
  left: 200px;
  z-index: 5;
}
@media only screen and (max-width: 1400px) {
  .f-mainvisual ._illust01 {
    left: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-mainvisual ._illust01 {
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust01 {
    left: 20px;
    top: 10px;
  }
}
.f-mainvisual ._illust01 img {
  height: 180px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust01 img {
    height: 90px;
  }
}
.f-mainvisual ._illust02 {
  position: absolute;
  top: 20px;
  right: 200px;
  z-index: 5;
}
@media only screen and (max-width: 1400px) {
  .f-mainvisual ._illust02 {
    right: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-mainvisual ._illust02 {
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust02 {
    right: 20px;
    top: 10px;
  }
}
.f-mainvisual ._illust02 img {
  height: 186px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust02 img {
    height: 93px;
  }
}
.f-mainvisual ._illust03 {
  position: absolute;
  bottom: -15px;
  left: 240px;
  z-index: 5;
}
@media only screen and (max-width: 1400px) {
  .f-mainvisual ._illust03 {
    left: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-mainvisual ._illust03 {
    left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust03 {
    left: 20px;
    bottom: -30px;
  }
}
.f-mainvisual ._illust03 img {
  height: 235px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust03 img {
    height: 120px;
  }
}
.f-mainvisual ._illust04 {
  position: absolute;
  bottom: 0px;
  right: 150px;
  z-index: 5;
}
@media only screen and (max-width: 1400px) {
  .f-mainvisual ._illust04 {
    right: 100px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-mainvisual ._illust04 {
    right: 50px;
  }
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust04 {
    right: 20px;
    bottom: -30px;
  }
}
.f-mainvisual ._illust04 img {
  height: 353px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-mainvisual ._illust04 img {
    height: 120px;
  }
}
.f-mainvisual ._illust01,
.f-mainvisual ._illust02,
.f-mainvisual ._illust03,
.f-mainvisual ._illust04 {
  opacity: 0;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transition-delay: 2.5s;
  transition-delay: 2.5s;
}

/* ============================================
  メッセージ
============================================  */
.f-message {
  padding-top: 80px;
  padding-bottom: 170px;
  background-color: #efefef;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-message {
    padding-top: 60px;
    padding-bottom: 85px;
  }
}
.f-message::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  background-image: url(../../recruit/img/wave_top_gray.svg);
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .f-message::before {
    height: 75px;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
.f-message .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .f-message .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.f-message ._title-box {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 480px;
}
@media screen and (max-width: 767px) {
  .f-message ._title-box {
    width: 100%;
  }
}
.f-message ._title-box ._title {
  font-size: 6rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .f-message ._title-box ._title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.f-message ._title-box ._title span {
  color: var(--color-primary);
}
.f-message ._title-box ._illust {
  width: 100%;
  max-width: 286px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .f-message ._title-box ._illust {
    width: 70%;
    margin-bottom: 40px;
  }
}
.f-message ._title-box ._illust img {
  width: 100%;
  height: auto;
  -webkit-transform: translateX(-20%);
  transform: translateX(-20%);
}
@media screen and (max-width: 767px) {
  .f-message ._title-box ._illust img {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.f-message ._text {
  font-size: 2rem;
  line-height: 2;
  font-weight: var(--font-weight-medium);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .f-message ._text {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}

/* ============================================
  仕事を知る
============================================  */
.f-work {
  padding-top: 100px;
  padding-bottom: 264px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-work {
    padding-top: 50px;
    padding-bottom: 132px;
  }
}
.f-work::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  background-image: url(../../recruit/img/wave_top_white.svg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .f-work::before {
    height: 75px;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
.f-work .l-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .f-work .l-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 60px;
  }
}
.f-work ._contents {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 400px;
}
@media screen and (max-width: 767px) {
  .f-work ._contents {
    width: 100%;
  }
}
.f-work .c-button {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .f-work .c-button {
    margin-top: 30px;
  }
}
.f-work ._imgarea {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .f-work ._imgarea {
    width: 30%;
  }
}
@media screen and (max-width: 767px) {
  .f-work ._imgarea {
    width: 100%;
  }
}
.f-work ._imgarea ._img {
  width: 100%;
  height: 300px;
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-work ._imgarea ._img {
    width: 70%;
    height: 150px;
    margin-left: auto;
    margin-right: 0;
  }
}
.f-work ._imgarea ._img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.f-work ._imgarea ._illust {
  position: absolute;
  bottom: 55px;
  left: -106px;
}
@media screen and (max-width: 767px) {
  .f-work ._imgarea ._illust {
    left: 0;
    bottom: -30px;
  }
}
.f-work ._imgarea ._illust img {
  height: 235px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-work ._imgarea ._illust img {
    height: 117px;
  }
}

/* ============================================
  社員インタビュー
============================================  */
.f-interview {
  background-color: var(--color-primary);
  position: relative;
  padding-bottom: 30px;
}
.f-interview::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  background-image: url(../../recruit/img/wave_top_primary.svg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .f-interview::before {
    height: 75px;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
.f-interview::after {
  content: "";
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  background-image: url(../../recruit/img/wave_bottom_primary.svg);
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .f-interview::after {
    height: 75px;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
.f-interview .l-inner {
  position: relative;
}
.f-interview ._illust {
  position: absolute;
  top: -190px;
  right: 150px;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .f-interview ._illust {
    right: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-interview ._illust {
    right: 25px;
  }
}
@media screen and (max-width: 767px) {
  .f-interview ._illust {
    right: 20px;
    top: -100px;
  }
}
.f-interview ._illust img {
  height: 276px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-interview ._illust img {
    height: 138px;
  }
}
.f-interview .f-h2,
.f-interview .f-text,
.f-interview .f-h2 ._sub {
  color: #fff !important;
}
.f-interview .f-text {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .f-interview .f-text {
    margin-bottom: 25px;
  }
}
.f-interview ._list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .f-interview ._list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.f-interview ._list ._item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-interview ._list ._item:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.f-interview ._list ._item:hover ._inner::after {
  background-color: var(--color-secondary);
}
.f-interview ._list ._item:hover ._thumb img {
  scale: 1.1;
}
.f-interview ._list ._item ._thumb {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .f-interview ._list ._item ._thumb {
    height: 200px;
  }
}
.f-interview ._list ._item ._thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s ease;
  object-position: top;
  transition: 0.3s ease;
}
.f-interview ._list ._item ._inner {
  padding: 10px 30px 40px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  height: calc(100% - 260px);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .f-interview ._list ._item ._inner {
    padding: 10px 20px 30px;
  }
}
.f-interview ._list ._item ._inner::after {
  position: absolute;
  right: 12px;
  bottom: 12px;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 9999px;
  background-image: url("../../recruit/img/icon_arrow_wh.svg");
  background-position: center 10px;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.f-interview ._list ._item ._inner ._title {
  -webkit-transform: translateX(-40px);
  transform: translateX(-40px);
  width: calc(100% + 40px);
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .f-interview ._list ._item ._inner ._title {
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    width: calc(100% + 30px);
  }
}
.f-interview ._list ._item ._inner ._title span {
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  background-color: #4c4948;
  line-height: 2.1;
  padding: 5px 10px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media screen and (max-width: 1200px) {
  .f-interview ._list ._item ._inner ._title span {
    font-size: 1.6rem;
    line-height: 2.4;
  }
}
.f-interview ._list ._item ._inner ._department {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .f-interview ._list ._item ._inner ._department {
    font-size: 1.2rem;
  }
}
.f-interview ._list ._item ._inner ._name {
  font-size: 1.8rem;
  font-weight: var(--font-weight-bold);
}
@media screen and (max-width: 767px) {
  .f-interview ._list ._item ._inner ._name {
    font-size: 1.6rem;
  }
}
.f-interview ._button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f-interview ._button {
    margin-top: 30px;
  }
}

/* ============================================
  数字で知る
============================================  */
.f-data {
  background-color: #efefef;
  position: relative;
  padding-top: 220px;
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .f-data {
    padding-top: 120px;
    padding-bottom: 100px;
  }
}
.f-data .l-inner {
  position: relative;
}
.f-data .dataslide {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .f-data .dataslide {
    width: calc(100% - 100px);
    margin: 0 auto;
  }
}
.f-data ._list ._item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* padding: 25px 20px 75px; */
  padding: 25px 20px;
  border-radius: 30px;
  background-color: #fff;
  border: solid 3px var(--color-primary);
  position: relative;
  /* height: 326px; */
  height: auto;
}
@media screen and (max-width: 767px) {
  .f-data ._list ._item {
    height: 290px;
    /* padding: 20px 15px 60px; */
    padding: 20px 15px;
  }
}
.f-data ._list ._item ._title {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .f-data ._list ._item ._title {
    font-size: 1.6rem;
  }
}
.f-data ._list ._item ._icon {
  height: 80px;
  margin-bottom: 5px;
}
.f-data ._list ._item ._icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.f-data ._list ._item ._number {
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .f-data ._list ._item ._number {
    font-size: 1.8rem;
  }
}
.f-data ._list ._item ._number span {
  color: var(--color-primary);
  font-size: 7rem;
}
@media screen and (max-width: 767px) {
  .f-data ._list ._item ._number span {
    font-size: 6rem;
  }
}
/* .f-data ._list ._item::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: var(--color-primary);
  border-radius: 9999px;
  background-image: url("../img/icon_arrow_wh.svg");
  background-position: center 10px;
  background-repeat: no-repeat;
  vertical-align: middle;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-data ._list ._item::after {
    right: 15px;
    bottom: 15px;
  }
} */
.f-data ._list ._item ._ratio {
  width: 172px;
}
.f-data .swiper-button-prev,
.f-data .swiper-button-next {
  width: 22px;
  height: 40px;
  background-size: contain;
}
.f-data .swiper-button-prev {
  left: 100px;
  background-image: url(../../recruit/img/swiper-prev.svg);
}
@media only screen and (max-width: 1400px) {
  .f-data .swiper-button-prev {
    left: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-data .swiper-button-prev {
    left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .f-data .swiper-button-prev {
    left: 20px;
  }
}
.f-data .swiper-button-next {
  right: 100px;
  background-image: url(../../recruit/img/swiper-next.svg);
}
@media only screen and (max-width: 1400px) {
  .f-data .swiper-button-next {
    right: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-data .swiper-button-next {
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .f-data .swiper-button-next {
    right: 20px;
  }
}
/* 1200pxを超えたらボタンを非表示 */
@media only screen and (min-width: 1201px) {
  .f-data .swiper-button-prev,
  .f-data .swiper-button-next {
    display: none;
  }
}

.f-data ._illust {
  position: absolute;
  top: -280px;
  left: 65px;
  z-index: 2;
}
@media only screen and (max-width: 1400px) {
  .f-data ._illust {
    left: 50px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-data ._illust {
    left: 25px;
  }
}
@media screen and (max-width: 767px) {
  .f-data ._illust {
    left: auto;
    right: 20px;
    top: -130px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
}
.f-data ._illust img {
  height: 251px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .f-data ._illust img {
    height: 125px;
  }
}
.f-data ._button {
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .f-data ._button {
    margin-top: 30px;
  }
}

/* ============================================
  その他
============================================  */
.f-other {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .f-other {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.f-other::before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  z-index: 1;
  width: 100%;
  height: 150px;
  background-image: url(../../recruit/img/wave_top_white.svg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .f-other::before {
    height: 75px;
    background-size: contain;
    background-repeat: repeat-x;
  }
}
.f-other .page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 35px;
}
@media screen and (max-width: 767px) {
  .f-other .page-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}
.f-other .page-list ._item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
@media screen and (max-width: 767px) {
  .f-other .page-list ._item {
    width: 60%;
    margin: 0 auto;
  }
}
.f-other .page-list ._item img {
  width: 100%;
}
.f-other .page-list ._item:hover {
  scale: 1.1;
}

/* ============================================
  PC／SPのみ表示
============================================  */
@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }
}

/* ============================================
  inline-block
============================================  */
.u-inlineblock {
  display: inline-block;
}

/* ============================================
  font
============================================  */
.u-bold {
  font-weight: bold !important;
}

.u-normal {
  font-weight: normal !important;
}

.u-lighter {
  font-weight: 200 !important;
}

.u-left {
  text-align: left !important;
}

.u-right {
  text-align: right !important;
}

.u-center {
  text-align: center !important;
}

.u-cap {
  font-size: 1.5rem;
}

.u-highlight {
  text-decoration: underline; /* 下線 */
  text-decoration-thickness: 0.5em; /* 線の太さ */
  text-decoration-color: rgb(255, 255, 65); /* 線の色 */
  text-underline-offset: -0.2em; /* 線の位置。テキストに重なるようにやや上部にする */
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none; /* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
}

/* ============================================
  icon
============================================  */
.u-blank::after {
  content: "";
  width: 16px;
  height: 15px;
  background-image: url(../../recruit/img/icon-blank_w.svg);
  background-repeat: no-repeat;
  margin-left: 5px;
  display: inline-block;
  position: relative;
  top: 3px;
}

/* ============================================
  margin/padding
============================================  */
.u-mt0 {
  margin-top: 0 !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-pt5 {
  padding-top: 5px !important;
}

.u-mr5 {
  margin-right: 5px !important;
}

.u-pr5 {
  padding-right: 5px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-pb5 {
  padding-bottom: 5px !important;
}

.u-ml5 {
  margin-left: 5px !important;
}

.u-pl5 {
  padding-left: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-pt15 {
  padding-top: 15px !important;
}

.u-mr15 {
  margin-right: 15px !important;
}

.u-pr15 {
  padding-right: 15px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-ml15 {
  margin-left: 15px !important;
}

.u-pl15 {
  padding-left: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-pt25 {
  padding-top: 25px !important;
}

.u-mr25 {
  margin-right: 25px !important;
}

.u-pr25 {
  padding-right: 25px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-ml25 {
  margin-left: 25px !important;
}

.u-pl25 {
  padding-left: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-pt30 {
  padding-top: 30px !important;
}

.u-mr30 {
  margin-right: 30px !important;
}

.u-pr30 {
  padding-right: 30px !important;
}

.u-mb30 {
  margin-bottom: 30px !important;
}

.u-pb30 {
  padding-bottom: 30px !important;
}

.u-ml30 {
  margin-left: 30px !important;
}

.u-pl30 {
  padding-left: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-pt35 {
  padding-top: 35px !important;
}

.u-mr35 {
  margin-right: 35px !important;
}

.u-pr35 {
  padding-right: 35px !important;
}

.u-mb35 {
  margin-bottom: 35px !important;
}

.u-pb35 {
  padding-bottom: 35px !important;
}

.u-ml35 {
  margin-left: 35px !important;
}

.u-pl35 {
  padding-left: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-pt45 {
  padding-top: 45px !important;
}

.u-mr45 {
  margin-right: 45px !important;
}

.u-pr45 {
  padding-right: 45px !important;
}

.u-mb45 {
  margin-bottom: 45px !important;
}

.u-pb45 {
  padding-bottom: 45px !important;
}

.u-ml45 {
  margin-left: 45px !important;
}

.u-pl45 {
  padding-left: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-mr50 {
  margin-right: 50px !important;
}

.u-pr50 {
  padding-right: 50px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-ml50 {
  margin-left: 50px !important;
}

.u-pl50 {
  padding-left: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-pt55 {
  padding-top: 55px !important;
}

.u-mr55 {
  margin-right: 55px !important;
}

.u-pr55 {
  padding-right: 55px !important;
}

.u-mb55 {
  margin-bottom: 55px !important;
}

.u-pb55 {
  padding-bottom: 55px !important;
}

.u-ml55 {
  margin-left: 55px !important;
}

.u-pl55 {
  padding-left: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-mr60 {
  margin-right: 60px !important;
}

.u-pr60 {
  padding-right: 60px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-ml60 {
  margin-left: 60px !important;
}

.u-pl60 {
  padding-left: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-pt65 {
  padding-top: 65px !important;
}

.u-mr65 {
  margin-right: 65px !important;
}

.u-pr65 {
  padding-right: 65px !important;
}

.u-mb65 {
  margin-bottom: 65px !important;
}

.u-pb65 {
  padding-bottom: 65px !important;
}

.u-ml65 {
  margin-left: 65px !important;
}

.u-pl65 {
  padding-left: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-mr70 {
  margin-right: 70px !important;
}

.u-pr70 {
  padding-right: 70px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-ml70 {
  margin-left: 70px !important;
}

.u-pl70 {
  padding-left: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-pt75 {
  padding-top: 75px !important;
}

.u-mr75 {
  margin-right: 75px !important;
}

.u-pr75 {
  padding-right: 75px !important;
}

.u-mb75 {
  margin-bottom: 75px !important;
}

.u-pb75 {
  padding-bottom: 75px !important;
}

.u-ml75 {
  margin-left: 75px !important;
}

.u-pl75 {
  padding-left: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-mr80 {
  margin-right: 80px !important;
}

.u-pr80 {
  padding-right: 80px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-ml80 {
  margin-left: 80px !important;
}

.u-pl80 {
  padding-left: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-pt85 {
  padding-top: 85px !important;
}

.u-mr85 {
  margin-right: 85px !important;
}

.u-pr85 {
  padding-right: 85px !important;
}

.u-mb85 {
  margin-bottom: 85px !important;
}

.u-pb85 {
  padding-bottom: 85px !important;
}

.u-ml85 {
  margin-left: 85px !important;
}

.u-pl85 {
  padding-left: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-mr90 {
  margin-right: 90px !important;
}

.u-pr90 {
  padding-right: 90px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-ml90 {
  margin-left: 90px !important;
}

.u-pl90 {
  padding-left: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-pt95 {
  padding-top: 95px !important;
}

.u-mr95 {
  margin-right: 95px !important;
}

.u-pr95 {
  padding-right: 95px !important;
}

.u-mb95 {
  margin-bottom: 95px !important;
}

.u-pb95 {
  padding-bottom: 95px !important;
}

.u-ml95 {
  margin-left: 95px !important;
}

.u-pl95 {
  padding-left: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-mr100 {
  margin-right: 100px !important;
}

.u-pr100 {
  padding-right: 100px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-ml100 {
  margin-left: 100px !important;
}

.u-pl100 {
  padding-left: 100px !important;
}

/* ============================================
  Scroll Animation
============================================  */
/* fadeUp
------------------------- */
.a-fadeUp {
  opacity: 0;
}
.a-fadeUp.is-active {
  -webkit-animation-name: fade-up;
  animation-name: fade-up;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fade-up {
  0% {
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
} /*# sourceMappingURL=style.css.map */
