@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css?family=Raleway:500,800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500");
/*! creativereset.css v0.0.2 | MIT License | creative team at GMO Internet, Inc */
/*

  機能概要
  ==========================================================================
    - デフォルトのスタイルは維持
    - ブラウザごとの異なるスタイルやバグを修正
    - ユーザビリティを改善

  参考
  ==========================================================================
  ■ sanitize.css v6.0.0
      Chrome (last 3)
      Edge (last 3)
      Firefox (last 3)
      Firefox ESR
      Opera (last 3)
      Safari (last 3)
      iOS Safari (last 2)
      Internet Explorer 9+

  ■ normalize.css v8.0.0
      Chrome
      Edge
      Firefox ESR+
      Internet Explorer 10+
      Safari 8+
      Opera
*/
/* ドキュメント（Document）
 * ========================================================================== */
/**
 * box-sizingをすべての要素に適用（全てのブラウザ）
 */
*, ::before, ::after {
  box-sizing: border-box;
}

/**
 * 擬似要素は text-decoration, vertical-alignを継承（全てのブラウザ）
 */
::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/**
 * 1. 全てのブラウザでベースのline-heightを統一
 * 2. フォントサイズの調整を防止(Windows PhoneのIE,iOS)
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* セクション(Sections)
 * ========================================================================== */
/**
 * マージンを削除（全てのブラウザ）
 */
body {
  margin: 0;
}

/* グループコンテンツ(Grouping content)
 * ========================================================================== */
/**
 * 1. 高を修正(Firefox)
 * 2. オーバーフローを修正(Edge,IE)
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * displayの正しいプロパティを追加（IE）
 */
main {
  display: block;
}

/* テキストレベル（Text-level semantics）
 * ========================================================================== */
/**
 * 1. アクティブリンク時の背景グレイを削除(IE10)
 * 2. リンク下線のギャップを削除(iOS 8+ and Safari 8+ )
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * テキストデコレーションを修正（Edge,IE,Opera and Safari）
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * フォントウェイトを修正（Chrome, Edge, and Safari）
 */
b, strong {
  font-weight: bolder;
}

/**
 * 1. フォントサイズの継承とスケーリングを修正（全てのブラウザ）
 * 2. フォントの不規則なサイズを統一（全てのブラウザ）
 */
pre, code, kbd, samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * フォントのサイズを修正（全てのブラウザ）
 */
small {
  font-size: 80%;
}

/**
 * subとsup要素が行の高さに与える影響を阻止（全てのブラウザ）
 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* 埋め込みコンテント（Embedded content）
 * ========================================================================== */
/**
 * オーバーフローを修正（IE）
 */
svg:not(:root) {
  overflow: hidden;
}

/* 表形式のデータ（Tabular data）
 * ========================================================================== */
/**
 * テーブルのボーダーを削除
 */
table {
  border-collapse: collapse;
}

/* フォーム（Forms）
 * ========================================================================== */
input {
  border-radius: 0;
}

/**
 * マージンを削除（Firefox,Safari）
 */
button, input, optgroup, select, textarea {
  margin: 0;
}

/**
 * テキストのトランスフォームの継承を削除（Edge,IE,Firefox）
 */
button, select {
  text-transform: none;
}

/**
 * クリック可能なタイプをスタイルできない問題を修正（iOS,Safari）
 */
button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

/**
 * 前のルールで設定したフォーカスのスタイルを元に戻す(Firefox)
 */
button:-moz-focusring, [type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * インナーボーダー（-moz-focus-inner）とpaddingを削除（Firefox）
 */
button::-moz-focus-inner, [type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * padding修正（Firefox）.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. テキスト周りを修正（IE）
 * 2. fieldsetからの色の継承を修正（IE）
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}

/**
 * 1. displayの正しいプロパティを追加
 * 2. vertical-alignの正しい値を追加（Chrome, Firefox, and Opera）
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * テキストのトランスフォームの継承を削除（Firefox）
 */
select {
  text-transform: none;
}

/**
 * 1. デフォルトの垂直スクロールバーを削除（IE10+）
 * 2. 縦方向のみリサイズ（すべてのブラウザ）
 */
textarea {
  overflow: auto; /* 1 */
  resize: vertical; /* 2 */
}

/**
 * 1. box-sizingを修正（IE 10-）.
 * 2. paddingを削除（IE 10-）
 */
[type=checkbox], [type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * 増減ボタンのカーソルのスタイルを修正（Chrome）
 */
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. 不規則な外観を修正（Chrome,Safari）
 * 2. アウトラインのスタイルを修正（Safari）
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * 外観を修正（Safari 8）
 */
[type=search]::-webkit-search-cancel-button, [type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 幅を修正（Firefox 36+）
 */
[type=number] {
  width: auto;
}

/**
 * 内側のパディングを削除（macOSのChrome, Safari）
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. クリック可能なタイプをスタイルできない問題を修正（iOSとSafari）
 * 2. フォントのプロパティを「inherit」に変更（Safari）
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* インタラクティブ（Interactive）
 * ========================================================================== */
/*
 * displayの正しいプロパティを追加（Edge,IE）
 */
details {
  display: block;
}

/*
 * 正しいプロパティを追加（Edge,IE,Safari）
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * displayの正しいプロパティを追加（全てのブラウザ）
 */
summary {
  display: list-item;
}

/*
 * displayの正しいプロパティを追加（IE 10-）
 */
[hidden] {
  display: none;
}

/* スクリプト制御される要素（Scripting）
 * ========================================================================== */
/**
 * displayの正しいプロパティを追加（IE 9-）
 */
canvas {
  display: inline-block;
}

/**
 * displayの正しいプロパティを追加（IE）
 */
template {
  display: none;
}

/* ユーザーインタラクション（User interaction）
 * ========================================================================== */
/*
 * 1. タップ反応の遅延を削除（IE10）
 * 2. クリック可能な要素のタップ反応の遅延を削除（全てのブラウザ）
 */
a, area, button, input, label, select, summary, textarea, [tabindex] { /* 1 */
  touch-action: manipulation; /* 2 */
}

.mediaTriger {
  height: 0;
  width: 0;
}

.is-hidden {
  display: none;
}

.is-sp {
  display: block !important;
}
@media screen and (min-width: 992px) {
  .is-sp {
    display: none !important;
  }
}

.is-tb {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .is-tb {
    display: block;
  }
}

.is-pc {
  display: none !important;
}
@media screen and (min-width: 992px) {
  .is-pc {
    display: block !important;
  }
}

.only-mobile {
  display: block;
}
@media screen and (min-width: 992px) {
  .only-mobile {
    display: none;
  }
}

.only-sp {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .only-sp {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .only-sp {
    display: none;
  }
}

.no-scroll {
  height: 100vh;
  overflow: hidden;
}

.align-left {
  text-align: left !important;
}
.align-center {
  text-align: center !important;
}
.align-right {
  text-align: right !important;
}

a.external::after {
  color: inherit;
  content: "\f08e";
  font-family: "FontAwesome";
  font-size: 1em;
  margin-left: 0.4em;
}
a.external:hover span {
  text-decoration: underline;
}

.weight-normal {
  font-weight: normal !important;
}
.weight-bold {
  font-weight: bold !important;
}
@keyframes arrowdown {
  0% {
    opacity: 1;
    width: 60px;
  }
  75% {
    opacity: 0;
    width: 0;
  }
  100% {
    opacity: 0;
    width: 0;
  }
}
@keyframes blink-gray {
  0% {
    background-color: rgba(129, 142, 153, 0.2);
  }
  15% {
    background-color: transparent;
  }
  30% {
    background-color: rgba(129, 142, 153, 0.2);
  }
  45% {
    background-color: transparent;
  }
  60% {
    background-color: rgba(129, 142, 153, 0.2);
  }
  75% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes blink-white {
  0% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  15% {
    background-color: transparent;
  }
  30% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  45% {
    background-color: transparent;
  }
  60% {
    background-color: rgba(255, 255, 255, 0.2);
  }
  75% {
    background-color: transparent;
  }
  100% {
    background-color: transparent;
  }
}
@keyframes toptitle {
  0% {
    background-position-y: 0;
  }
  2.5% {
    background-position-y: 0;
  }
  5% {
    background-position-y: 0;
  }
  7.5% {
    background-position-y: 3.84615%;
  }
  10% {
    background-position-y: 7.69231%;
  }
  12.5% {
    background-position-y: 11.53846%;
  }
  15% {
    background-position-y: 11.53846%;
  }
  17.5% {
    background-position-y: 15.38462%;
  }
  20% {
    background-position-y: 19.23077%;
  }
  22.5% {
    background-position-y: 23.07692%;
  }
  25% {
    background-position-y: 26.92308%;
  }
  27.5% {
    background-position-y: 30.76923%;
  }
  30% {
    background-position-y: 34.61538%;
  }
  32.5% {
    background-position-y: 38.46154%;
  }
  35% {
    background-position-y: 42.30769%;
  }
  37.5% {
    background-position-y: 46.15385%;
  }
  40% {
    background-position-y: 46.15385%;
  }
  42.5% {
    background-position-y: 50%;
  }
  45% {
    background-position-y: 53.84615%;
  }
  47.5% {
    background-position-y: 57.69231%;
  }
  50% {
    background-position-y: 61.53846%;
  }
  52.5% {
    background-position-y: 65.38462%;
  }
  55% {
    background-position-y: 69.23077%;
  }
  57.5% {
    background-position-y: 73.07692%;
  }
  60% {
    background-position-y: 76.92308%;
  }
  62.5% {
    background-position-y: 76.92308%;
  }
  65% {
    background-position-y: 80.76923%;
  }
  67.5% {
    background-position-y: 84.61538%;
  }
  70% {
    background-position-y: 88.46154%;
  }
  72.5% {
    background-position-y: 92.30769%;
  }
  75% {
    background-position-y: 96.15385%;
  }
  80% {
    background-position-y: 96.15385%;
  }
  85% {
    background-position-y: 100%;
  }
  100% {
    background-position-y: 100%;
  }
}
@keyframes timer {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.margin-0 {
  margin: 0 !important;
}
.marginTop-0 {
  margin-top: 0px !important;
}
.marginTop-4 {
  margin-top: 4px !important;
}
.marginTop-8 {
  margin-top: 8px !important;
}
.marginTop-12 {
  margin-top: 12px !important;
}
.marginTop-16 {
  margin-top: 16px !important;
}
.marginTop-20 {
  margin-top: 20px !important;
}
.marginTop-24 {
  margin-top: 24px !important;
}
.marginTop-28 {
  margin-top: 28px !important;
}
.marginTop-32 {
  margin-top: 32px !important;
}
.marginTop-36 {
  margin-top: 36px !important;
}
.marginTop-40 {
  margin-top: 40px !important;
}
.marginTop-44 {
  margin-top: 44px !important;
}
.marginTop-48 {
  margin-top: 48px !important;
}
.marginTop-52 {
  margin-top: 52px !important;
}
.marginTop-56 {
  margin-top: 56px !important;
}
.marginTop-60 {
  margin-top: 60px !important;
}
.marginTop-64 {
  margin-top: 64px !important;
}
.marginTop-68 {
  margin-top: 68px !important;
}
.marginTop-72 {
  margin-top: 72px !important;
}
.marginTop-76 {
  margin-top: 76px !important;
}
.marginTop-80 {
  margin-top: 80px !important;
}
.marginTop-84 {
  margin-top: 84px !important;
}
.marginTop-88 {
  margin-top: 88px !important;
}
.marginTop-92 {
  margin-top: 92px !important;
}
.marginTop-96 {
  margin-top: 96px !important;
}
.marginTop-100 {
  margin-top: 100px !important;
}
.marginTopResponsive-0 {
  margin-top: 0px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-0 {
    margin-top: 0px !important;
  }
}
.marginTopResponsive-4 {
  margin-top: 4px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-4 {
    margin-top: 2px !important;
  }
}
.marginTopResponsive-8 {
  margin-top: 8px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-8 {
    margin-top: 4px !important;
  }
}
.marginTopResponsive-12 {
  margin-top: 12px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-12 {
    margin-top: 6px !important;
  }
}
.marginTopResponsive-16 {
  margin-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-16 {
    margin-top: 8px !important;
  }
}
.marginTopResponsive-20 {
  margin-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-20 {
    margin-top: 10px !important;
  }
}
.marginTopResponsive-24 {
  margin-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-24 {
    margin-top: 12px !important;
  }
}
.marginTopResponsive-28 {
  margin-top: 28px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-28 {
    margin-top: 14px !important;
  }
}
.marginTopResponsive-32 {
  margin-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-32 {
    margin-top: 16px !important;
  }
}
.marginTopResponsive-36 {
  margin-top: 36px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-36 {
    margin-top: 18px !important;
  }
}
.marginTopResponsive-40 {
  margin-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-40 {
    margin-top: 20px !important;
  }
}
.marginTopResponsive-44 {
  margin-top: 44px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-44 {
    margin-top: 22px !important;
  }
}
.marginTopResponsive-48 {
  margin-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-48 {
    margin-top: 24px !important;
  }
}
.marginTopResponsive-52 {
  margin-top: 52px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-52 {
    margin-top: 26px !important;
  }
}
.marginTopResponsive-56 {
  margin-top: 56px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-56 {
    margin-top: 28px !important;
  }
}
.marginTopResponsive-60 {
  margin-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-60 {
    margin-top: 30px !important;
  }
}
.marginTopResponsive-64 {
  margin-top: 64px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-64 {
    margin-top: 32px !important;
  }
}
.marginTopResponsive-68 {
  margin-top: 68px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-68 {
    margin-top: 34px !important;
  }
}
.marginTopResponsive-72 {
  margin-top: 72px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-72 {
    margin-top: 36px !important;
  }
}
.marginTopResponsive-76 {
  margin-top: 76px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-76 {
    margin-top: 38px !important;
  }
}
.marginTopResponsive-80 {
  margin-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-80 {
    margin-top: 40px !important;
  }
}
.marginTopResponsive-84 {
  margin-top: 84px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-84 {
    margin-top: 42px !important;
  }
}
.marginTopResponsive-88 {
  margin-top: 88px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-88 {
    margin-top: 44px !important;
  }
}
.marginTopResponsive-92 {
  margin-top: 92px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-92 {
    margin-top: 46px !important;
  }
}
.marginTopResponsive-96 {
  margin-top: 96px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-96 {
    margin-top: 48px !important;
  }
}
.marginTopResponsive-100 {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .marginTopResponsive-100 {
    margin-top: 50px !important;
  }
}
.marginBottom-0 {
  margin-bottom: 0px !important;
}
.marginBottom-4 {
  margin-bottom: 4px !important;
}
.marginBottom-8 {
  margin-bottom: 8px !important;
}
.marginBottom-12 {
  margin-bottom: 12px !important;
}
.marginBottom-16 {
  margin-bottom: 16px !important;
}
.marginBottom-20 {
  margin-bottom: 20px !important;
}
.marginBottom-24 {
  margin-bottom: 24px !important;
}
.marginBottom-28 {
  margin-bottom: 28px !important;
}
.marginBottom-32 {
  margin-bottom: 32px !important;
}
.marginBottom-36 {
  margin-bottom: 36px !important;
}
.marginBottom-40 {
  margin-bottom: 40px !important;
}
.marginBottom-44 {
  margin-bottom: 44px !important;
}
.marginBottom-48 {
  margin-bottom: 48px !important;
}
.marginBottom-52 {
  margin-bottom: 52px !important;
}
.marginBottom-56 {
  margin-bottom: 56px !important;
}
.marginBottom-60 {
  margin-bottom: 60px !important;
}
.marginBottom-64 {
  margin-bottom: 64px !important;
}
.marginBottom-68 {
  margin-bottom: 68px !important;
}
.marginBottom-72 {
  margin-bottom: 72px !important;
}
.marginBottom-76 {
  margin-bottom: 76px !important;
}
.marginBottom-80 {
  margin-bottom: 80px !important;
}
.marginBottom-84 {
  margin-bottom: 84px !important;
}
.marginBottom-88 {
  margin-bottom: 88px !important;
}
.marginBottom-92 {
  margin-bottom: 92px !important;
}
.marginBottom-96 {
  margin-bottom: 96px !important;
}
.marginBottom-100 {
  margin-bottom: 100px !important;
}
.marginBottomResponsive-0 {
  margin-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-0 {
    margin-bottom: 0px !important;
  }
}
.marginBottomResponsive-4 {
  margin-bottom: 4px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-4 {
    margin-bottom: 2px !important;
  }
}
.marginBottomResponsive-8 {
  margin-bottom: 8px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-8 {
    margin-bottom: 4px !important;
  }
}
.marginBottomResponsive-12 {
  margin-bottom: 12px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-12 {
    margin-bottom: 6px !important;
  }
}
.marginBottomResponsive-16 {
  margin-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-16 {
    margin-bottom: 8px !important;
  }
}
.marginBottomResponsive-20 {
  margin-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-20 {
    margin-bottom: 10px !important;
  }
}
.marginBottomResponsive-24 {
  margin-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-24 {
    margin-bottom: 12px !important;
  }
}
.marginBottomResponsive-28 {
  margin-bottom: 28px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-28 {
    margin-bottom: 14px !important;
  }
}
.marginBottomResponsive-32 {
  margin-bottom: 32px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-32 {
    margin-bottom: 16px !important;
  }
}
.marginBottomResponsive-36 {
  margin-bottom: 36px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-36 {
    margin-bottom: 18px !important;
  }
}
.marginBottomResponsive-40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-40 {
    margin-bottom: 20px !important;
  }
}
.marginBottomResponsive-44 {
  margin-bottom: 44px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-44 {
    margin-bottom: 22px !important;
  }
}
.marginBottomResponsive-48 {
  margin-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-48 {
    margin-bottom: 24px !important;
  }
}
.marginBottomResponsive-52 {
  margin-bottom: 52px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-52 {
    margin-bottom: 26px !important;
  }
}
.marginBottomResponsive-56 {
  margin-bottom: 56px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-56 {
    margin-bottom: 28px !important;
  }
}
.marginBottomResponsive-60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-60 {
    margin-bottom: 30px !important;
  }
}
.marginBottomResponsive-64 {
  margin-bottom: 64px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-64 {
    margin-bottom: 32px !important;
  }
}
.marginBottomResponsive-68 {
  margin-bottom: 68px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-68 {
    margin-bottom: 34px !important;
  }
}
.marginBottomResponsive-72 {
  margin-bottom: 72px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-72 {
    margin-bottom: 36px !important;
  }
}
.marginBottomResponsive-76 {
  margin-bottom: 76px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-76 {
    margin-bottom: 38px !important;
  }
}
.marginBottomResponsive-80 {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-80 {
    margin-bottom: 40px !important;
  }
}
.marginBottomResponsive-84 {
  margin-bottom: 84px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-84 {
    margin-bottom: 42px !important;
  }
}
.marginBottomResponsive-88 {
  margin-bottom: 88px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-88 {
    margin-bottom: 44px !important;
  }
}
.marginBottomResponsive-92 {
  margin-bottom: 92px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-92 {
    margin-bottom: 46px !important;
  }
}
.marginBottomResponsive-96 {
  margin-bottom: 96px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-96 {
    margin-bottom: 48px !important;
  }
}
.marginBottomResponsive-100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .marginBottomResponsive-100 {
    margin-bottom: 50px !important;
  }
}

.padding-0 {
  padding: 0 !important;
}
.paddingTop-0 {
  padding-top: 0px !important;
}
.paddingTop-4 {
  padding-top: 4px !important;
}
.paddingTop-8 {
  padding-top: 8px !important;
}
.paddingTop-12 {
  padding-top: 12px !important;
}
.paddingTop-16 {
  padding-top: 16px !important;
}
.paddingTop-20 {
  padding-top: 20px !important;
}
.paddingTop-24 {
  padding-top: 24px !important;
}
.paddingTop-28 {
  padding-top: 28px !important;
}
.paddingTop-32 {
  padding-top: 32px !important;
}
.paddingTop-36 {
  padding-top: 36px !important;
}
.paddingTop-40 {
  padding-top: 40px !important;
}
.paddingTop-44 {
  padding-top: 44px !important;
}
.paddingTop-48 {
  padding-top: 48px !important;
}
.paddingTop-52 {
  padding-top: 52px !important;
}
.paddingTop-56 {
  padding-top: 56px !important;
}
.paddingTop-60 {
  padding-top: 60px !important;
}
.paddingTop-64 {
  padding-top: 64px !important;
}
.paddingTop-68 {
  padding-top: 68px !important;
}
.paddingTop-72 {
  padding-top: 72px !important;
}
.paddingTop-76 {
  padding-top: 76px !important;
}
.paddingTop-80 {
  padding-top: 80px !important;
}
.paddingTop-84 {
  padding-top: 84px !important;
}
.paddingTop-88 {
  padding-top: 88px !important;
}
.paddingTop-92 {
  padding-top: 92px !important;
}
.paddingTop-96 {
  padding-top: 96px !important;
}
.paddingTop-100 {
  padding-top: 100px !important;
}
.paddingTopResponsive-0 {
  padding-top: 0px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-0 {
    padding-top: 0px !important;
  }
}
.paddingTopResponsive-4 {
  padding-top: 4px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-4 {
    padding-top: 2px !important;
  }
}
.paddingTopResponsive-8 {
  padding-top: 8px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-8 {
    padding-top: 4px !important;
  }
}
.paddingTopResponsive-12 {
  padding-top: 12px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-12 {
    padding-top: 6px !important;
  }
}
.paddingTopResponsive-16 {
  padding-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-16 {
    padding-top: 8px !important;
  }
}
.paddingTopResponsive-20 {
  padding-top: 20px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-20 {
    padding-top: 10px !important;
  }
}
.paddingTopResponsive-24 {
  padding-top: 24px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-24 {
    padding-top: 12px !important;
  }
}
.paddingTopResponsive-28 {
  padding-top: 28px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-28 {
    padding-top: 14px !important;
  }
}
.paddingTopResponsive-32 {
  padding-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-32 {
    padding-top: 16px !important;
  }
}
.paddingTopResponsive-36 {
  padding-top: 36px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-36 {
    padding-top: 18px !important;
  }
}
.paddingTopResponsive-40 {
  padding-top: 40px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-40 {
    padding-top: 20px !important;
  }
}
.paddingTopResponsive-44 {
  padding-top: 44px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-44 {
    padding-top: 22px !important;
  }
}
.paddingTopResponsive-48 {
  padding-top: 48px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-48 {
    padding-top: 24px !important;
  }
}
.paddingTopResponsive-52 {
  padding-top: 52px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-52 {
    padding-top: 26px !important;
  }
}
.paddingTopResponsive-56 {
  padding-top: 56px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-56 {
    padding-top: 28px !important;
  }
}
.paddingTopResponsive-60 {
  padding-top: 60px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-60 {
    padding-top: 30px !important;
  }
}
.paddingTopResponsive-64 {
  padding-top: 64px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-64 {
    padding-top: 32px !important;
  }
}
.paddingTopResponsive-68 {
  padding-top: 68px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-68 {
    padding-top: 34px !important;
  }
}
.paddingTopResponsive-72 {
  padding-top: 72px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-72 {
    padding-top: 36px !important;
  }
}
.paddingTopResponsive-76 {
  padding-top: 76px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-76 {
    padding-top: 38px !important;
  }
}
.paddingTopResponsive-80 {
  padding-top: 80px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-80 {
    padding-top: 40px !important;
  }
}
.paddingTopResponsive-84 {
  padding-top: 84px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-84 {
    padding-top: 42px !important;
  }
}
.paddingTopResponsive-88 {
  padding-top: 88px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-88 {
    padding-top: 44px !important;
  }
}
.paddingTopResponsive-92 {
  padding-top: 92px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-92 {
    padding-top: 46px !important;
  }
}
.paddingTopResponsive-96 {
  padding-top: 96px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-96 {
    padding-top: 48px !important;
  }
}
.paddingTopResponsive-100 {
  padding-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .paddingTopResponsive-100 {
    padding-top: 50px !important;
  }
}
.paddingBottom-0 {
  padding-bottom: 0px !important;
}
.paddingBottom-4 {
  padding-bottom: 4px !important;
}
.paddingBottom-8 {
  padding-bottom: 8px !important;
}
.paddingBottom-12 {
  padding-bottom: 12px !important;
}
.paddingBottom-16 {
  padding-bottom: 16px !important;
}
.paddingBottom-20 {
  padding-bottom: 20px !important;
}
.paddingBottom-24 {
  padding-bottom: 24px !important;
}
.paddingBottom-28 {
  padding-bottom: 28px !important;
}
.paddingBottom-32 {
  padding-bottom: 32px !important;
}
.paddingBottom-36 {
  padding-bottom: 36px !important;
}
.paddingBottom-40 {
  padding-bottom: 40px !important;
}
.paddingBottom-44 {
  padding-bottom: 44px !important;
}
.paddingBottom-48 {
  padding-bottom: 48px !important;
}
.paddingBottom-52 {
  padding-bottom: 52px !important;
}
.paddingBottom-56 {
  padding-bottom: 56px !important;
}
.paddingBottom-60 {
  padding-bottom: 60px !important;
}
.paddingBottom-64 {
  padding-bottom: 64px !important;
}
.paddingBottom-68 {
  padding-bottom: 68px !important;
}
.paddingBottom-72 {
  padding-bottom: 72px !important;
}
.paddingBottom-76 {
  padding-bottom: 76px !important;
}
.paddingBottom-80 {
  padding-bottom: 80px !important;
}
.paddingBottom-84 {
  padding-bottom: 84px !important;
}
.paddingBottom-88 {
  padding-bottom: 88px !important;
}
.paddingBottom-92 {
  padding-bottom: 92px !important;
}
.paddingBottom-96 {
  padding-bottom: 96px !important;
}
.paddingBottom-100 {
  padding-bottom: 100px !important;
}
.paddingBottomResponsive-0 {
  padding-bottom: 0px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-0 {
    padding-bottom: 0px !important;
  }
}
.paddingBottomResponsive-4 {
  padding-bottom: 4px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-4 {
    padding-bottom: 2px !important;
  }
}
.paddingBottomResponsive-8 {
  padding-bottom: 8px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-8 {
    padding-bottom: 4px !important;
  }
}
.paddingBottomResponsive-12 {
  padding-bottom: 12px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-12 {
    padding-bottom: 6px !important;
  }
}
.paddingBottomResponsive-16 {
  padding-bottom: 16px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-16 {
    padding-bottom: 8px !important;
  }
}
.paddingBottomResponsive-20 {
  padding-bottom: 20px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-20 {
    padding-bottom: 10px !important;
  }
}
.paddingBottomResponsive-24 {
  padding-bottom: 24px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-24 {
    padding-bottom: 12px !important;
  }
}
.paddingBottomResponsive-28 {
  padding-bottom: 28px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-28 {
    padding-bottom: 14px !important;
  }
}
.paddingBottomResponsive-32 {
  padding-bottom: 32px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-32 {
    padding-bottom: 16px !important;
  }
}
.paddingBottomResponsive-36 {
  padding-bottom: 36px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-36 {
    padding-bottom: 18px !important;
  }
}
.paddingBottomResponsive-40 {
  padding-bottom: 40px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-40 {
    padding-bottom: 20px !important;
  }
}
.paddingBottomResponsive-44 {
  padding-bottom: 44px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-44 {
    padding-bottom: 22px !important;
  }
}
.paddingBottomResponsive-48 {
  padding-bottom: 48px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-48 {
    padding-bottom: 24px !important;
  }
}
.paddingBottomResponsive-52 {
  padding-bottom: 52px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-52 {
    padding-bottom: 26px !important;
  }
}
.paddingBottomResponsive-56 {
  padding-bottom: 56px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-56 {
    padding-bottom: 28px !important;
  }
}
.paddingBottomResponsive-60 {
  padding-bottom: 60px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-60 {
    padding-bottom: 30px !important;
  }
}
.paddingBottomResponsive-64 {
  padding-bottom: 64px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-64 {
    padding-bottom: 32px !important;
  }
}
.paddingBottomResponsive-68 {
  padding-bottom: 68px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-68 {
    padding-bottom: 34px !important;
  }
}
.paddingBottomResponsive-72 {
  padding-bottom: 72px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-72 {
    padding-bottom: 36px !important;
  }
}
.paddingBottomResponsive-76 {
  padding-bottom: 76px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-76 {
    padding-bottom: 38px !important;
  }
}
.paddingBottomResponsive-80 {
  padding-bottom: 80px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-80 {
    padding-bottom: 40px !important;
  }
}
.paddingBottomResponsive-84 {
  padding-bottom: 84px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-84 {
    padding-bottom: 42px !important;
  }
}
.paddingBottomResponsive-88 {
  padding-bottom: 88px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-88 {
    padding-bottom: 44px !important;
  }
}
.paddingBottomResponsive-92 {
  padding-bottom: 92px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-92 {
    padding-bottom: 46px !important;
  }
}
.paddingBottomResponsive-96 {
  padding-bottom: 96px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-96 {
    padding-bottom: 48px !important;
  }
}
.paddingBottomResponsive-100 {
  padding-bottom: 100px !important;
}
@media screen and (max-width: 767px) {
  .paddingBottomResponsive-100 {
    padding-bottom: 50px !important;
  }
}

.slick-slider {
  box-sizing: border-box;
  display: block;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  touch-action: pan-y;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}
.slick-slider .slick-track, .slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-slider .slick-list {
  display: block;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
}
.slick-slider .slick-list:focus {
  outline: none;
}
.slick-slider .slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-list .slick-track {
  display: block;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0;
}
.slick-slider .slick-list .slick-track::before, .slick-slider .slick-list .slick-track::after {
  content: "";
  display: table;
}
.slick-slider .slick-list .slick-track::after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  margin-bottom: 0;
  min-height: 1px;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-vertical .slick-slide {
  border: 1px solid transparent;
  display: block;
  height: auto;
}

.slick-arrow.slick-hidden {
  display: none;
}

* {
  border: none;
  box-sizing: border-box;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  line-height: 1.8;
  margin: 0;
  padding: 0;
}

html, body {
  color: #1d1d1d;
  height: 100%;
  width: 100%;
}

body {
  overflow-x: hidden;
}

button, label {
  cursor: pointer;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  font-size: inherit;
  text-decoration: none;
}
a:hover {
  color: #005bac;
  text-decoration: underline;
}

main img {
  display: block;
  height: auto;
  width: 100%;
}

p {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

:focus {
  outline: none;
}

button:active {
  border: none;
}

@media screen and (min-width: 769px) {
  .header {
    margin-top: 29px;
  }
}
.footer {
  background-color: #fff;
  margin: auto;
  padding-bottom: 5px;
  position: relative;
  z-index: 101;
}
.footerTop {
  margin: 0 auto;
  max-width: 1080px;
  padding: 100px 0;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footerTop {
    padding: 60px 0;
    width: 92%;
  }
}
.footerTop_navHeader {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footerTop_navHeader {
    flex-direction: column;
    gap: 40px;
  }
}
.footerTop_navList {
  display: flex;
  gap: 145px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .footerTop_navList {
    flex-direction: column;
    gap: 30px;
  }
}
.footerTop_navListLogo {
  margin-bottom: 60px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .footerTop_navListLogo {
    display: block;
    margin: 0 auto;
    width: 240px;
  }
}
.footerTop_navListItem {
  margin-bottom: 30px;
  width: 260px;
}
.footerTop_navListItem:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footerTop_navListItem {
    width: 100%;
  }
}
.footerTop_navListItemLogo {
  width: 180px;
}
.footerTop_title {
  color: #005bab;
  font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: bold;
  padding-bottom: 10px;
  position: relative;
  font-size: 16px;
  font-size: 1rem;
}
.footerTop_links {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.footerTop_links:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footerTop_links {
    justify-content: space-between;
  }
}
.footerTop_links li {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .footerTop_links li {
    width: 162px;
  }
}
.footerTop_links a {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  text-decoration: none;
  width: 100%;
}
.footerTop_links a:hover {
  color: #005bac;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .footerTop_links a {
    line-height: 1.8;
    padding: 18px 0 9px;
  }
}
.footerTop_sns {
  align-items: center;
  display: flex;
  font-weight: 700;
  gap: 0 20px;
  justify-content: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footerTop_sns {
    flex-direction: column;
    gap: 20px;
  }
}
.footerTop_snsText {
  font-size: 12px;
  font-size: 0.75rem;
}
.footerTop_snsContent {
  display: flex;
  gap: 0 20px;
}
@media screen and (max-width: 767px) {
  .footerTop_snsContent {
    gap: 0 28px;
    margin: auto;
  }
}
.footerTop_snsContentLink {
  align-items: center;
  display: flex;
}
.footerTop_snsContentLinkImage {
  width: 20px;
}
.footerTop_snsContentLinkImage-tiktok {
  width: 17px;
}
.footer-terms {
  background-color: #005bac;
}
.footer-terms-inner {
  margin: auto;
  padding: 28px 20px;
}
.footer-terms-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.footer-terms-link {
  margin: auto;
  max-width: 980px;
  text-align: center;
  width: 100%;
}
.footer-terms-link-list {
  font-size: 0;
}
.footer-terms-link-list li {
  display: inline-block;
  font-size: 12px;
  font-size: 0.75rem;
}
.footer-terms-link-list li a {
  color: #fff;
  text-decoration: none;
}
.footer-terms-link-list li a:hover, .footer-terms-link-list li a:focus {
  color: #fff;
}
.footer-terms-link-list li + li {
  margin-left: 1em;
  padding-left: 1em;
  position: relative;
}
.footer-terms-link-list li + li::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 0.8em;
  left: 0;
  margin-top: -0.4em;
  position: absolute;
  top: 50%;
  width: 1px;
}
.footer-terms-link-list + .footer-terms-link-list {
  margin-top: 4px;
}
.footer-terms-seal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  text-align: center;
}
.footer-terms-seal-item {
  margin: 0 0 8px 8px;
}
.footer-terms-copy {
  color: #fff;
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.footer-sns {
  background-color: #005bac;
  display: flex;
  gap: 0 16px;
  justify-content: center;
  padding: 40px 20px 8px;
  text-align: center;
}
.footer-sns-item {
  height: 32px;
  width: 32px;
}
.footer-sns-item img {
  height: 100%;
  width: 100%;
}
.footer-sns-item.is-title {
  font-size: 16px;
  font-size: 1rem;
  align-items: center;
  color: #fff;
  display: flex;
  font-weight: bold;
  justify-content: center;
  white-space: nowrap;
  width: 50px;
}
.footer-sns .btn-copy {
  background-color: transparent;
}
.footerBottomSeal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 auto;
  margin-block: 40px;
  width: 100%;
}
.footerBottomSeal_item {
  aspect-ratio: 100/50;
  height: auto;
  width: 100px;
}
.footerBottom .copy {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.8;
  margin-top: 32px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .footerBottom .copy {
    margin-top: 43px;
  }
}
.footerBottom_gmoFooter > div {
  margin: auto;
  max-width: 1040px;
  padding: 40px 20px 15px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991px) {
  .footerBottom_offerList {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 9px;
  }
  .footerBottom_offerList li + li {
    margin: 0 5px;
  }
  .footerBottom_gmoFooter {
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) and (width: 768px) {
  .footerBottom_gmoFooter {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footerBottom_policy {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
  .footerBottom_policy li {
    width: calc((100% - 32px) / 3);
  }
  .footerBottomSeal .SSLBox {
    position: absolute;
    right: 25px;
    top: -80px;
  }
  .footerBottom_SNS {
    margin: 40px auto 0;
  }
  .footer_offerList {
    flex-direction: row;
    justify-content: space-between;
    margin-top: 9px;
  }
  .footer_offerList li + li {
    margin: 0 5px;
  }
  .footer_gmoFooter {
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) and (width: 768px) {
  .footer_gmoFooter {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .footer_policy {
    flex-direction: row;
    flex-wrap: wrap;
    margin-left: -5px;
    width: 85%;
  }
  .footer_policy li {
    margin: 0 5px;
    width: 31%;
  }
  .footer_policy li + li {
    margin-top: 0;
  }
  .footer_policy li:nth-child(n+4) {
    margin-top: 16px;
  }
  .footer_SNS {
    margin: 32px auto 0;
    width: 280px;
  }
}
.gmoGroupFooter {
  border: none;
}
.gmoGroupFooter_inner:not[this_sec] {
  margin: auto;
  max-width: 992px;
  padding: 30px 20px !important;
}
.gmoGroupFooter_sec {
  border-bottom: 1px solid #eaeaea;
}

.btnBox-toTop {
  border: 1px solid #1d1d1d;
  border-radius: 40px;
  bottom: 40px;
  height: 40px;
  place-content: center;
  position: fixed;
  right: 20px;
  text-align: center;
  width: 40px;
  z-index: 1000;
  font-size: 12px;
  font-size: 0.75rem;
}
.btnBox-toTop svg {
  width: 20px;
}
@media screen and (max-width: 767px) {
  .btnBox-toTop {
    bottom: 30px;
    right: 20px;
  }
}

.sidebar_inner {
  padding: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar_inner {
    padding: 48px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .sidebar_inner {
    padding: 0;
  }
}
.sidebar_inner + .sidebar_pickup {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .sidebar_inner + .sidebar_pickup {
    margin-top: 40px;
  }
}
.sidebar_head {
  border-left: 4px solid #005bac;
  color: #000;
  padding-left: 8px;
}
.sidebar_headMain {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.16;
}
.sidebar_headSub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.5;
}
.sidebar .offerList {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .sidebar .offerList {
    margin-top: 24px;
  }
}
.sidebar_pickup {
  position: relative;
}
.sidebar_pickup .sidebar_head {
  margin: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar_pickup .sidebar_head {
    margin: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .sidebar_pickup .sidebar_head {
    margin: 0;
  }
}
.sidebar_pickup + .sidebar_inner {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .sidebar_pickup + .sidebar_inner {
    margin-top: 40px;
  }
}
.sidebar_pickup.is-talk + .sidebar_inner {
  margin-top: 48px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar_pickup.is-talk + .sidebar_inner {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .sidebar_pickup.is-talk + .sidebar_inner {
    margin-top: 40px;
  }
}
.sidebar .pickupList {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .pickupList {
    justify-content: space-between;
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList {
    margin-top: 20px;
  }
}
.sidebar .pickupList + .sidebar_head {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList + .sidebar_head {
    margin-top: 40px;
  }
}
.sidebar .pickupList_item {
  margin-right: 16px;
  overflow: hidden;
  position: relative;
  width: 45vw;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .pickupList_item {
    margin-right: 0;
    width: 28.38vw;
  }
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList_item {
    margin-right: 0;
  }
  .sidebar .pickupList_item + .pickupList_item {
    margin-top: 12px;
  }
}
@media (min-width: 768px) {
  .sidebar .pickupList_item:hover .hover {
    right: 0;
  }
}
.sidebar .pickupList_img {
  position: relative;
}
.sidebar .pickupList_img::before, .sidebar .pickupList_img::after {
  border-style: solid;
  border-width: 8px;
  content: "";
  display: inline-block;
  height: 0;
  position: absolute;
  width: 0;
  z-index: 10;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .pickupList_img::before, .sidebar .pickupList_img::after {
    border-width: 1.22vw;
  }
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList_img::before, .sidebar .pickupList_img::after {
    border-width: 10px;
  }
}
.sidebar .pickupList_img::before {
  border-color: #fff transparent transparent #fff;
  left: 0;
  top: 0;
}
.sidebar .pickupList_img::after {
  border-color: transparent #fff #fff transparent;
  bottom: 0;
  right: 0;
}
.sidebar .pickupList .hover {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  right: 100%;
  top: 0;
  transition: 0.3s;
  width: 100%;
}
.sidebar .pickupList .hover::before {
  background: #005bac;
  background-image: url("/assets/images/filtter.svg");
  background-size: 100px 100px;
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 0;
}
.sidebar .pickupList .hover_text {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin: auto;
  padding: 8px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList .hover_text {
    font-size: 16px;
    font-size: 1rem;
    margin: 0;
    width: 100%;
  }
}
.sidebar .pickupList .hover_link {
  font-size: 10px;
  font-size: 0.625rem;
  bottom: 12px;
  color: #fff;
  left: 50%;
  line-height: 1.5;
  position: absolute;
  text-decoration: underline;
  transform: translateX(-50%);
  z-index: 2;
}
.sidebar .pickupList .hover_link::after {
  background-image: url("/assets/images/icon/arrow-white.svg");
  background-position: center;
  background-repeat: no-repeat;
  bottom: 0;
  content: "";
  height: 10px;
  position: absolute;
  right: -12px;
  width: 6px;
}
@media screen and (min-width: 992px) {
  .sidebar .pickupList .hover_link {
    font-size: 12px;
    font-size: 0.75rem;
  }
  .sidebar .pickupList .hover_link::after {
    bottom: 3px;
  }
}
.sidebar .pickupList_label {
  font-size: 12px;
  font-size: 0.75rem;
  align-items: center;
  bottom: 9.72%;
  color: #fff;
  display: inline-flex;
  font-weight: bold;
  height: 18.1%;
  justify-content: center;
  left: 0;
  position: absolute;
  width: 77.78%;
}
.sidebar .pickupList_label.is-engineer {
  background-color: rgba(0, 160, 200, 0.5);
}
.sidebar .pickupList_label.is-creator {
  background-color: rgba(255, 180, 40, 0.5);
}
.sidebar .pickupList_label.is-corporate {
  background-color: rgba(0, 180, 120, 0.5);
}
.sidebar .pickupList_label.is-business {
  background-color: rgba(53, 52, 145, 0.5);
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .pickupList_label {
    font-size: 13px;
    font-size: 0.8125rem;
    height: 14.9%;
    width: 62.9%;
  }
}
.sidebar .pickupList a {
  display: block;
  height: 100%;
  text-decoration: none;
  width: 100%;
}
.sidebar .is-talk {
  margin-top: 32px;
}
.sidebar .is-talk .pickupList_item {
  width: 63.75vw;
}
.sidebar .is-talk .pickupList_item::after {
  bottom: auto;
  top: calc(35.9vw - 29px);
}
.sidebar .is-talk .pickupList_img {
  position: relative;
}
.sidebar .is-talk .pickupList_title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 12px;
  text-align: center;
}
.sidebar .is-talk .pickupList_link {
  text-decoration: none;
}
.sidebar .is-talk .hover {
  height: 100%;
}
.sidebar .is-talk .hover_text {
  font-size: 10px;
  font-size: 0.625rem;
  text-decoration: underline;
}
@media screen and (min-width: 992px) {
  .sidebar .is-talk .hover_text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.sidebar .is-talk .hover .icon {
  font-size: 10px;
  font-size: 0.625rem;
  margin-left: 4px;
  margin-top: 4px;
}
.sidebar .is-talk .slick-dots {
  margin-top: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .is-talk .pickupList_item {
    width: 28.38vw;
  }
}
@media screen and (min-width: 992px) {
  .sidebar .is-talk .pickupList_item:nth-child(n+2) {
    margin-top: 20px;
  }
}
.sidebar .slick-dots {
  display: flex;
  justify-content: center;
  margin: 10px auto 6px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .slick-dots {
    display: none;
  }
}
.sidebar .slick-dots li {
  height: auto;
  width: 16px;
}
.sidebar .slick-dots li + li {
  margin-left: 4px;
}
.sidebar .slick-dots button {
  background: #d6d6d6;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 0;
  height: 4px;
  width: 16px;
}
.sidebar .slick-dots .slick-active {
  width: 32px;
}
.sidebar .slick-dots .slick-active button {
  background: #005bac;
  border-radius: 0;
  width: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .slick-dots {
    margin-top: 26px;
  }
}
@media screen and (min-width: 992px) {
  .sidebar .slick-dots {
    margin-top: 26px;
  }
}
.sidebar .slick-arrowBox {
  bottom: 17px;
  height: 0;
  left: 50%;
  overflow: visible;
  position: absolute;
  top: auto;
  transform: translateX(-50%);
  width: 119px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar .slick-arrowBox {
    display: none;
  }
}
.sidebar .slick-arrowBox .slick-arrow {
  cursor: pointer;
  height: 16px;
  padding: 3px 5px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 16px;
}
.sidebar .slick-arrowBox .slick-arrow img {
  height: 10px;
  width: 6px;
}
.sidebar .slick-arrowBox .slick-arrow .icon {
  height: 100%;
  position: relative;
  width: 100%;
}
.sidebar .slick-arrowBox .slick-arrow .icon::before {
  font-size: 10px;
  font-size: 0.625rem;
  height: 100%;
  width: 100%;
}
.sidebar .slick-arrowBox .slick-arrow:nth-child(1) {
  left: 0;
}
.sidebar .slick-arrowBox .slick-arrow:hover {
  background: #f6f6f6;
}
@media screen and (min-width: 992px) {
  .sidebar .slick-arrowBox {
    bottom: 31px;
  }
}
.sidebar_moreList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .sidebar_moreList {
    margin-top: 20px;
  }
}
.sidebar_moreList li {
  border: 1px solid #d6d6d6;
  min-height: 50px;
  width: 50%;
}
.sidebar_moreList li:first-child {
  width: 100%;
}
.sidebar_moreList li:first-child .btn-blue {
  text-align: center;
}
.sidebar_moreList li:nth-child(n+2) {
  margin-top: -1px;
}
.sidebar_moreList li:nth-child(2n+3) {
  border-left: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .sidebar_moreList li {
    width: 25%;
  }
  .sidebar_moreList li:nth-child(4) {
    border-left: none;
  }
}
@media screen and (min-width: 992px) {
  .sidebar_moreList li {
    width: 100%;
  }
  .sidebar_moreList li:first-child .btn-blue {
    text-align: left;
  }
  .sidebar_moreList li:nth-child(2n+3) {
    border: 1px solid #d6d6d6;
  }
}
.sidebar_moreList .btn-blue {
  font-size: 12px;
  font-size: 0.75rem;
  border: none;
  color: #000;
  font-weight: normal;
  height: 100%;
  line-height: 1.5;
  padding: 17px 17px 15px;
  text-align: left;
  width: 100%;
}
.sidebar_moreList .btn-blue::after {
  font-size: 10px;
  font-size: 0.625rem;
  background-image: none;
  content: "\f004";
  font-family: "recruit_icon";
  height: 10px;
  width: 10px;
}
.sidebar_moreList .btn-blue:hover {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .sidebar_moreList .btn-blue {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 20px;
    text-align: left;
  }
}

/* ----------------------------------------
	ページング
---------------------------------------- */
.listPaging {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  width: 100%;
}

.linkPaging {
  background-repeat: no-repeat;
  border: 1px solid #005bac;
  color: #005bac;
  display: block;
  height: 32px;
  margin: 0 4px;
  text-align: center;
  text-decoration: none;
  width: 32px;
}
.linkPaging.is-current, .linkPaging:hover {
  background-color: #005bac;
  color: #fff;
  text-decoration: none;
}
.linkPaging.is-before, .linkPaging.is-next {
  background-image: url("/assets/images/icon/arrow-blue.svg");
  background-position: center;
  background-size: 9px 15px;
}
.linkPaging.is-before:hover, .linkPaging.is-next:hover {
  background-image: url("/assets/images/icon/arrow-white.svg");
}
.linkPaging.is-before.is-disable, .linkPaging.is-next.is-disable {
  background-color: #d6d6d6;
  background-image: url("/assets/images/icon/arrow.svg");
  border: 1px solid #d6d6d6;
  cursor: not-allowed;
}
.linkPaging.is-before {
  transform: rotate(180deg);
}

/* ----------------------------------------
	ニュース
---------------------------------------- */
.listNews {
  margin: auto;
  max-width: calc(100% - 20px);
}
.listNews_category {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #005bac;
  border-radius: 2px;
  color: #005bac;
  display: inline-block;
  min-width: 96px;
  padding: 4px 8px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .listNews_category {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.listNews_date {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  margin-left: 12px;
}
@media screen and (min-width: 992px) {
  .listNews_date {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.listNews_title {
  font-size: 14px;
  font-size: 0.875rem;
  display: block;
  line-height: 1.8;
  margin-top: 8px;
  max-width: calc(100vw - 20px);
  text-decoration: underline;
}
.listNews_title:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .listNews_title {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .listNews {
    width: calc(100vw - 80px);
  }
}
.listNews .slick-list, .listNews .slick-track {
  height: auto;
  width: 100%;
}
.listNews .slick-slide {
  height: auto;
  padding: 0 10px;
  width: calc(100vw - 20px);
}
.listNews .slick-slide.slick-active {
  display: block;
}
@media (min-width: 768px) and (max-width: 991px) {
  .listNews .slick-slide {
    width: calc(100vw - 80px);
  }
}
@media screen and (min-width: 992px) {
  .listNews .slick-slide {
    width: 980px;
  }
}
.listNews .slick-dots {
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
}
.listNews .slick-dots li {
  height: auto;
  width: 16px;
}
.listNews .slick-dots li + li {
  margin-left: 4px;
}
.listNews .slick-dots button {
  background: #d6d6d6;
  border: none;
  border-radius: 0;
  cursor: pointer;
  font-size: 0;
  height: 4px;
  width: 16px;
}
.listNews .slick-dots .slick-active {
  width: 32px;
}
.listNews .slick-dots .slick-active button {
  background: #005bac;
  border-radius: 0;
  width: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .listNews .slick-dots {
    margin-top: 26px;
  }
}
@media screen and (min-width: 992px) {
  .listNews .slick-dots {
    margin-top: 26px;
  }
}
.listNews + .slick-arrowBox {
  bottom: 26px;
  height: 0;
  left: 50%;
  overflow: visible;
  position: absolute;
  top: auto;
  transform: translateX(-50%);
  width: 119px;
}
.listNews + .slick-arrowBox .slick-arrow {
  cursor: pointer;
  height: 16px;
  padding: 3px 5px;
  position: absolute;
  right: 0;
  text-align: center;
  width: 16px;
}
.listNews + .slick-arrowBox .slick-arrow img {
  height: 10px;
  width: 6px;
}
.listNews + .slick-arrowBox .slick-arrow:nth-child(1) {
  left: 0;
  transform: rotate(180deg);
}
.listNews + .slick-arrowBox .slick-arrow:hover {
  background: #f6f6f6;
}
@media screen and (min-width: 992px) {
  .listNews + .slick-arrowBox {
    bottom: 31px;
  }
}

/* ----------------------------------------
	Instagram埋め込み
---------------------------------------- */
.newsSns {
  padding: 30px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns {
    padding: 60px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .newsSns {
    padding: 0 0 80px;
  }
  .newsSnsRight {
    margin-top: 0;
  }
}
.newsSnsCenter {
  background: #fff;
  margin: 18px auto 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSnsCenter {
    width: 47%;
  }
}
@media screen and (min-width: 992px) {
  .newsSnsCenter {
    width: 45%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns .inner {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .newsSns .inner {
    display: flex;
    justify-content: space-between;
  }
}
.newsSns_contents {
  border: 1px solid #d6d6d6;
  height: 300px;
  margin: 0;
  overflow: auto;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_contents {
    height: calc(100% - 38px);
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_contents {
    height: 460px;
    width: 100%;
  }
}
.newsSns_contents iframe {
  margin: 0 auto !important;
  overflow: hidden !important;
  width: 100% !important;
}
.newsSns_contents.is-insta {
  height: auto;
  overflow: hidden;
  padding: 15px 6px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_contents.is-insta {
    height: auto;
    max-height: 446px;
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_contents.is-insta {
    height: 460px;
    padding: 20px;
    width: 100%;
  }
}
.newsSns_instaList {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 3px;
  margin-top: 10px;
}
.newsSns_instaList li {
  box-sizing: border-box;
  max-height: calc((100vw - 46px) / 3);
  width: calc((100% - 6px) / 3);
}
@media screen and (min-width: 992px) {
  .newsSns_instaList li {
    max-height: 131px;
  }
}
.newsSns_instaList li img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.newsSns_instaAccount {
  align-items: center;
  display: flex;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaAccount {
    align-items: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaAccount {
    align-items: flex-start;
  }
}
.newsSns_instaAccount > a img {
  display: block;
  height: 48px;
  width: 48px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaAccount > a img {
    height: 76px;
    width: 76px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaAccount > a img {
    height: 76px;
    width: 76px;
  }
}
.newsSns_instaAccount > div {
  color: #6b778d;
  margin-left: 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaAccount > div {
    margin-left: 15px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaAccount > div {
    margin-left: 15px;
  }
}
.newsSns_instaAccount > div h4 {
  font-size: 12px;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaAccount > div h4 {
    font-size: 14px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaAccount > div h4 {
    font-size: 14px;
  }
}
.newsSns_instaAccount > div p {
  display: none;
  font-size: 12px;
  line-height: 1.6;
  margin-top: 8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaAccount > div p {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaAccount > div p {
    display: block;
  }
}
.newsSns_instaFollow {
  background-color: #6b778d;
  border-bottom: 2px solid #17223b;
  color: #1d1d1d;
  height: 27px;
  line-height: 24px;
  margin: 10px auto 0;
  transition: all 0.1s;
  width: 200px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaFollow {
    width: 208px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaFollow {
    width: 208px;
  }
}
.newsSns_instaFollow a {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .newsSns_instaFollow a {
    font-size: 13px;
  }
}
@media screen and (min-width: 992px) {
  .newsSns_instaFollow a {
    font-size: 13px;
  }
}
.newsSns_instaFollow:hover {
  background: #17223b;
  border-bottom: 0 solid #007676;
  color: #1d1d1d;
  margin: 12px auto 0;
}

/* ----------------------------------------
	ページ内ナビ
---------------------------------------- */
.navPage {
  margin: 16px 10px 0;
}
@media (min-width: 768px) {
  .navPage {
    margin: 16px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .navPage {
    margin: 48px auto 0;
    width: 980px;
  }
}
@media (min-width: 768px) {
  .navPageList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .navPageList {
    justify-content: flex-start;
    margin-right: -40px;
  }
}
.navPageList_item {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  font-weight: bold;
  line-height: 1.4;
  list-style: none;
  padding: 32px 0 0;
  position: relative;
  width: 100%;
}
.navPageList_item::after {
  font-size: 10px;
  font-size: 0.625rem;
  bottom: 10px;
  content: "\f002";
  font-family: "recruit_icon";
  height: 15px;
  position: absolute;
  right: 0;
  transform: scale(0.8);
  width: 10px;
}
.navPageList_item:hover::after {
  color: #005bac;
}
@media (min-width: 768px) {
  .navPageList_item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 992px) {
  .navPageList_item {
    margin-right: 40px;
    width: calc(33.3333333333% - 40px);
  }
}
.navPageList_item a {
  display: inline-block;
  padding-bottom: 8px;
  text-decoration: none;
  width: 100%;
}

/* ----------------------------------------
	モーダル
---------------------------------------- */
.modalImgList_item {
  display: flex;
  gap: 60px;
  justify-content: space-between;
  margin-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .modalImgList_item {
    margin-bottom: 40px;
  }
}
.modalImgList_item:nth-child(2n) {
  flex-direction: row-reverse;
}
.modalImgList_item:last-child {
  margin-bottom: 0;
}
.modalImgList_itemImage {
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .modalImgList_itemImage {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .modalImgList_itemImage {
    width: 100%;
  }
}
.modalImgList_itemText {
  width: 540px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .modalImgList_itemText {
    width: unset;
  }
}
@media screen and (max-width: 767px) {
  .modalImgList_itemText {
    width: 100%;
  }
}
.modalImgList_itemText h3 {
  margin-bottom: 10px;
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .modalImgList_itemText h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) {
  .modalImgList_item {
    display: block;
  }
  .modalImgList_itemImage {
    margin-bottom: 20px;
    width: 100%;
  }
}
.modalImgList_btn {
  background: #fff;
  cursor: pointer;
  width: 100%;
}
.modalImgList_btn:hover .modalImgList_img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.modalImgList_btn:hover .modalImgList_title {
  color: #005bac;
}
.modalImgList_img {
  height: 56.25vw;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.modalImgList_img img {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  width: 100%;
}
@media (min-width: 768px) {
  .modalImgList_img {
    height: 25.13vw;
  }
}
@media screen and (min-width: 992px) {
  .modalImgList_img {
    height: 276px;
  }
}
.modalImgList_title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 16px;
}
.modalImgList_hoverContent {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  background-image: url("/assets/images/filtter.svg");
  background-repeat: repeat;
  background-size: 100px 100px;
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 50;
}
@media screen and (min-width: 769px) {
  .modalImgList_hoverContent {
    margin: 30px 0 0;
    max-height: calc(100vh - 30px);
  }
}
.modalImgList .hover_inner {
  align-items: flex-end;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  margin: 0 auto;
  min-height: 100%;
  padding: 20px 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .modalImgList .hover_inner {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .modalImgList .hover_inner {
    padding: 40px 0;
    width: 820px;
  }
}
.modalImgList .hover_close {
  align-items: center;
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 48px;
  justify-content: center;
  margin-right: 0;
  width: 48px;
}
.modalImgList .hover_close .icon {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 992px) {
  .modalImgList .hover_close {
    margin-right: 66px;
  }
}
.modalImgList .hover_img {
  margin-top: 8px;
}
@media (min-width: 768px) {
  .modalImgList .hover_img {
    margin: 8px 24px 0;
  }
}
@media screen and (min-width: 992px) {
  .modalImgList .hover_img {
    align-self: center;
    height: 384px;
    margin: 14px 0 0;
    padding: 0;
    width: 640px;
  }
  .modalImgList .hover_img.is-hachiko {
    width: 576px;
  }
}
.modalImgList .hover_title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 16px auto 0;
  padding: 0 10px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .modalImgList .hover_title {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 20px;
  }
}
.modalImgList .hover_text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 16px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .modalImgList .hover_text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 20px;
  }
}

/* ----------------------------------------
	ボタン
---------------------------------------- */
.btnBox {
  display: block;
  text-align: center;
}

.rectBtn, .btn-blueGradient, .btn-white, .btn-blue {
  font-size: 14px;
  font-size: 0.875rem;
  border-style: solid;
  border-width: 1px;
  display: inline-block;
  font-weight: bold;
  height: 52px;
  padding: 16px 22px;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  width: 252px;
}
.rectBtn:hover, .btn-blueGradient:hover, .btn-white:hover, .btn-blue:hover {
  text-decoration: none;
}
.rectBtn:hover::before, .btn-blueGradient:hover::before, .btn-white:hover::before, .btn-blue:hover::before {
  width: 100%;
}
.rectBtn:hover::after, .btn-blueGradient:hover::after, .btn-white:hover::after, .btn-blue:hover::after {
  right: 8px;
}
@media screen and (min-width: 992px) {
  .rectBtn, .btn-blueGradient, .btn-white, .btn-blue {
    height: 64px;
    padding: 21px 22px;
    width: 320px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.rectBtn::before, .btn-blueGradient::before, .btn-white::before, .btn-blue::before, .rectBtn::after, .btn-blueGradient::after, .btn-white::after, .btn-blue::after {
  content: "";
  position: absolute;
}
.rectBtn::before, .btn-blueGradient::before, .btn-white::before, .btn-blue::before {
  display: inline-block;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
  width: 0;
  z-index: -1;
}
.rectBtn::after, .btn-blueGradient::after, .btn-white::after, .btn-blue::after {
  font-size: 10px;
  font-size: 0.625rem;
  content: "\f004";
  font-family: "recruit_icon";
  height: 10px;
  line-height: 1;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: width 0.3s, right 0.3s;
  width: 6px;
}

.btn-blue {
  border: 1px solid #005bac;
  color: #005bac;
}
.btn-blue::before {
  background: #005bac;
}
.btn-blue:hover {
  color: #fff;
}
.btn-white {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid #fff;
  color: #fff;
}
.btn-white::before {
  background: #fff;
}
.btn-white:hover {
  color: #005bac;
}
.btn-blueGradient {
  border: none;
  color: #fff;
  padding: 0;
}
.btn-blueGradient .inner {
  display: inline-block;
  height: 53px;
  line-height: 1.2;
  padding: 16px 22px;
  position: relative;
  width: 252px;
  z-index: 1;
}
.btn-blueGradient .inner::before {
  background: #ffd200;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 0;
  z-index: -1;
}
.btn-blueGradient::after {
  z-index: 1;
}
.btn-blueGradient::before {
  background: #005bac;
  background-image: linear-gradient(to right, #005bac, #00a0a0);
  height: 100%;
  width: 100%;
  z-index: 1;
}
.btn-blueGradient:hover {
  color: #fff;
}
.btn-blueGradient:hover .inner::before {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .btn-blueGradient .inner {
    height: 64px;
    padding: 21px 22px;
    width: 320px;
  }
}

/* ----------------------------------------
	リスト
---------------------------------------- */
.listHorizon {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.listHorizon li {
  align-items: center;
  display: flex;
  height: 162px;
  justify-content: center;
  text-align: center;
  width: 50%;
}

.listImgWithText {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.4;
  width: 100%;
}
.listImgWithText li {
  margin-top: 30px;
  width: 46.67%;
}
.listImgWithText li:nth-child(1), .listImgWithText li:nth-child(2) {
  margin-top: 0;
}
.listImgWithText_title {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.listImgWithText img {
  display: block;
  margin: auto;
  width: 28.75vw;
}
.listImgWithText img + div {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .listImgWithText img {
    width: 12vw;
  }
}
@media screen and (min-width: 992px) {
  .listImgWithText img {
    width: 142px;
  }
}

.selectList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: visible;
  padding: 0;
}
.selectList_item {
  overflow: hidden;
  width: 44.4vw;
}
@media (min-width: 768px) and (max-width: 991px) {
  .selectList_item {
    width: 20.83vw;
  }
}
@media screen and (min-width: 992px) {
  .selectList_item {
    border-radius: 58px;
    width: 18.3%;
  }
}
.selectList_item:first-child {
  width: 100%;
}
.selectList_item:first-child label {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .selectList_item:first-child {
    width: 18.3%;
  }
}
.selectList_item + .selectList_item {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .selectList_item + .selectList_item {
    margin-top: 0;
  }
  .selectList_item + .selectList_item:nth-child(n+6) {
    margin-top: 20px;
  }
}
.selectList_text {
  color: #005bac;
  display: block;
  position: relative;
}
.selectList label, .selectList a {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #005bac;
  border-radius: 58px;
  color: #005bac;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
  overflow: visible;
  padding: 8px 14px 7px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: calc(100% - 1px);
}
.selectList label::before, .selectList a::before {
  background: #005bac;
  border-radius: 18px;
  content: "";
  height: calc(100% + 2px);
  left: -1px;
  position: absolute;
  top: -1px;
  transition: 0.3s;
  width: 0;
}
.selectList label:hover::before, .selectList label.is-checked::before, .selectList a:hover::before, .selectList a.is-checked::before {
  width: calc(100% + 2px);
}
.selectList label:hover .selectList_text, .selectList label.is-checked .selectList_text, .selectList a:hover .selectList_text, .selectList a.is-checked .selectList_text {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .selectList label, .selectList a {
    font-size: 16px;
    font-size: 1rem;
    border-radius: 58px;
    line-height: 1.4;
    padding: 12px 20px;
  }
  .selectList label::before, .selectList a::before {
    border-radius: 58px;
  }
}
.selectList input {
  display: none;
  position: absolute;
}
.selectList input:checked + label .selectList_text {
  color: #fff;
}
.selectList input:checked + label::before {
  width: calc(100% + 2px);
}
.selectList + .head-tag {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .selectList + .head-tag {
    margin-top: 40px;
  }
}

.selectSquareList {
  display: flex;
  flex-wrap: wrap;
  overflow: visible;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .selectSquareList {
    flex-wrap: nowrap;
  }
}
.selectSquareList_item {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  border-top: 1px solid #d6d6d6;
  font-weight: bold;
  height: 48px;
  position: relative;
  text-align: center;
  width: 33.333333333%;
}
.selectSquareList_item:nth-child(n+4) {
  border-top: none;
}
@media screen and (min-width: 992px) {
  .selectSquareList_item {
    width: 16.666666667%;
  }
  .selectSquareList_item:nth-child(n+4) {
    border-top: 1px solid #d6d6d6;
  }
}
.selectSquareList_item::before {
  background: #005bac;
  content: "";
  height: calc(100% + 2px);
  left: -1px;
  position: absolute;
  top: -1px;
  transition: 0.3s;
  width: 0;
}
.selectSquareList_item:hover::before, .selectSquareList_item.is-selected::before {
  width: 100%;
}
.selectSquareList_item:hover a, .selectSquareList_item:hover label, .selectSquareList_item.is-selected a, .selectSquareList_item.is-selected label {
  color: #fff;
}
.selectSquareList a {
  align-items: center;
  color: #005bac;
  display: flex;
  height: 100%;
  justify-content: center;
  position: relative;
  text-decoration: none;
  width: 100%;
  z-index: 2;
}
.selectSquareList label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #005bac;
  display: inline-block;
  font-weight: bold;
  overflow: visible;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: calc(100% - 1px);
}
.selectSquareList label::before {
  background: #005bac;
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: -1px;
  transition: 0.3s;
  width: 0;
}
.selectSquareList label:hover::before, .selectSquareList label.is-checked::before {
  width: calc(100% + 2px);
}
.selectSquareList label:hover .selectList_text, .selectSquareList label.is-checked .selectList_text {
  color: #fff;
}
.selectSquareList input {
  display: none;
  position: absolute;
}
.selectSquareList input:checked + label .selectList_text {
  color: #fff;
}
.selectSquareList input:checked + label::before {
  width: calc(100% + 2px);
}
.selectSquareList + .head-tag {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .selectSquareList + .head-tag {
    margin-top: 40px;
  }
}

.selectLinkList_link {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #005bac;
  border-radius: 18px;
  color: #005bac;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
  overflow: hidden;
  padding: 8px 16px 7px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
}
.selectLinkList_link::before {
  background: #005bac;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 0;
}
.selectLinkList_link:hover, .selectLinkList_link.is-selected {
  text-decoration: none;
}
.selectLinkList_link:hover::before, .selectLinkList_link.is-selected::before {
  width: 100%;
}
.selectLinkList_link:hover .selectList_text, .selectLinkList_link.is-selected .selectList_text {
  color: #fff;
}
@media screen and (min-width: 992px) {
  .selectLinkList_link {
    font-size: 16px;
    font-size: 1rem;
    border-radius: 58px;
    line-height: 1.4;
    padding: 11px 20px;
    width: 100%;
  }
}
.selectLinkList_text {
  color: #005bac;
  display: block;
  position: relative;
}

.selectFreeTagList {
  color: #1d1d1d;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-left: -5px;
  padding: 0;
}
@media screen and (min-width: 992px) {
  .selectFreeTagList {
    margin-left: -8px;
  }
}
.selectFreeTagList_item {
  margin: 4px 5px;
}
@media screen and (min-width: 992px) {
  .selectFreeTagList_item {
    margin: 6px;
  }
}
.selectFreeTagList_item label, .selectFreeTagList_item a {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 18px;
  display: inline-block;
  padding: 8px;
  text-align: center;
  text-decoration: none;
  width: auto;
}
.selectFreeTagList_item label.is-select, .selectFreeTagList_item a.is-select {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #fff;
}
@media screen and (min-width: 992px) {
  .selectFreeTagList_item label, .selectFreeTagList_item a {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    padding: 4px 12px;
  }
}
.selectFreeTagList_item input {
  display: none;
  position: absolute;
}
.selectFreeTagList_item input:checked + label {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #fff;
}

.tagAccordionBox {
  display: flex;
  flex-direction: column;
}
.tagAccordionBox.is-open .btn-more::after {
  transform: rotate(180deg);
}
.tagAccordionDetail {
  display: none;
}
@media (min-width: 768px) {
  .tagAccordionBox {
    display: inline-block;
  }
  .tagAccordionDetail {
    display: inline-block;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .offerList {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.offerList .inner {
  padding: 8px;
}
.offerList .inner:nth-child(2) {
  border-top: 1px solid #d6d6d6;
  padding: 12px 8px;
}
@media screen and (min-width: 992px) {
  .offerList .inner {
    padding: 12px;
  }
  .offerList .inner:nth-child(2) {
    padding: 20px 12px;
  }
}
.offerList_item {
  border: 1px solid #d6d6d6;
}
.offerList_item + .offerList_item {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .offerList_item + .offerList_item {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .offerList_item + .offerList_item {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .offerList_item {
    width: 31.6%;
  }
}
.offerList_label {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  font-weight: normal;
  line-height: 1.5;
  padding: 4px 12px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .offerList_label {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.offerList_label.is-engineer {
  background: #00a0c8;
}
.offerList_label.is-creator {
  background: #ffb428;
}
.offerList_label.is-business {
  background: #353491;
}
.offerList_label.is-corporate {
  background: #00b478;
}
.offerList_type {
  font-size: 10px;
  font-size: 0.625rem;
  color: #00a0a0;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .offerList_type {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 12px;
  }
}
.offerList_name {
  font-size: 12px;
  font-size: 0.75rem;
  color: #1d1d1d;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .offerList_name {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 4px;
  }
}
.offerList_other {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .offerList_other {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.offerList_other li + li {
  margin-top: 4px;
}
.offerList .btn-blue {
  height: 42px;
  padding: 12px 27px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .offerList .btn-blue {
    font-size: 14px;
    font-size: 0.875rem;
    height: 36px;
    padding: 8px 20px;
  }
}

.checkboxWrap {
  color: #1d1d1d;
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .checkboxWrap {
    margin-top: 40px;
  }
}

.checkboxTitle {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  font-weight: bold;
  line-height: 1.5;
  padding-bottom: 8px;
}
@media screen and (min-width: 992px) {
  .checkboxTitle {
    font-size: 16px;
    font-size: 1rem;
  }
}

.checkboxList {
  position: relative;
}
.checkboxList_item {
  display: inline-block;
  margin: 16px 16px 0 0;
}
@media screen and (min-width: 992px) {
  .checkboxList_item {
    margin: 20px 20px 0 0;
  }
}
.checkboxList label {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  line-height: 2;
  padding-left: 32px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .checkboxList label {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 20px;
    padding-left: 28px;
  }
}
.checkboxList label::before, .checkboxList label::after {
  content: "";
  display: inline-block;
  position: absolute;
}
.checkboxList label::before {
  border: 1px solid #005bac;
  border-radius: 3px;
  height: 24px;
  left: 0;
  top: 0;
  width: 24px;
}
@media screen and (min-width: 992px) {
  .checkboxList label::before {
    height: 20px;
    width: 20px;
  }
}
.checkboxList label::after {
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  content: "\f006";
  font-family: "recruit_icon";
  left: 6px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 992px) {
  .checkboxList label::after {
    left: 4px;
  }
}
.checkboxList input {
  display: none;
  height: 1px;
  left: 0;
  position: absolute;
  top: 0;
  width: 1px;
}
.checkboxList input:checked + label::before {
  background: #005bac;
}
.checkboxList input:checked + label::after {
  opacity: 1;
}

.searchedJobList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  margin-top: 40px;
  padding-bottom: 60px;
}
.searchedJobList_item {
  background-color: #fff;
  border-radius: 10px;
  width: calc(50% - 5px);
}
@media screen and (max-width: 767px) {
  .searchedJobList_item {
    width: 100%;
  }
}
.searchedJobList_itemLink {
  border-radius: 10px;
  display: block;
  padding: 40px;
}
.searchedJobList_itemLink:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .searchedJobList_itemLink {
    padding: 20px;
  }
}
.searchedJobList .item_label {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  display: inline-block;
  height: 23px;
  line-height: 23px;
  position: absolute;
  right: 8px;
  text-align: center;
  top: 8px;
  width: 88px;
}
.searchedJobList .item_label.is-engineer {
  background: #00a0c8;
}
.searchedJobList .item_label.is-creator {
  background: #ffb428;
}
.searchedJobList .item_label.is-business {
  background: #353491;
}
.searchedJobList .item_label.is-corporate {
  background: #00b478;
}
.searchedJobList .item_category {
  font-size: 12px;
  font-size: 0.75rem;
  color: #005bab;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .searchedJobList .item_category {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.searchedJobList .item_name {
  font-size: 16px;
  font-size: 1rem;
  align-items: flex-start;
  display: flex;
  font-weight: bold;
  gap: 10px;
  justify-content: space-between;
  line-height: 1.5;
}
.searchedJobList .item_name + .item_other {
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .searchedJobList .item_name {
    align-items: center;
  }
}
.searchedJobList .item_name .icon {
  color: #005bab;
  line-height: 1.5;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .searchedJobList .item_name .icon {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.searchedJobList .item_other {
  display: flex;
  justify-content: flex-start;
}
.searchedJobList .item_other .other_head, .searchedJobList .item_other .other_detail {
  font-size: 12px;
  font-size: 0.75rem;
  display: inline-block;
  line-height: 1.5;
}
.searchedJobList .item_other .other_head {
  border: 1px solid #005bab;
  color: #005bab;
  height: 26px;
  line-height: 1.35;
  padding: 4px 8px;
  text-align: center;
  width: 64px;
}
.searchedJobList .item_other .other_detail {
  padding: 4px 6px;
}
.searchedJobList .item_other + .item_other {
  margin-top: 4px;
}
.searchedJobList .btn-blue {
  font-size: 12px;
  font-size: 0.75rem;
  height: 42px;
  line-height: 1.4;
  padding: 12px;
  width: 200px;
}

/* ----------------------------------------
	ボックス
---------------------------------------- */
.boxImg + .section_inner, .boxImg + .boxImg {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .boxImg + .section_inner, .boxImg + .boxImg {
    margin-top: 40px;
  }
}

.box2Column {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .box2Column {
    flex-direction: row;
    justify-content: center;
    margin-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .box2Column_left {
    width: 720px;
  }
}
.box2Column_right {
  margin-top: 48px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .box2Column_right {
    margin-left: 56px;
    margin-top: 0;
    width: 204px;
  }
}

/* ----------------------------------------
	メインビジュアル
---------------------------------------- */
.mainvisual-blue {
  background-image: url("/assets/images/interview/mainimages-sp.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 32px 10px;
  position: relative;
}
.mainvisual-blue::before {
  background-color: #005bac;
  background-image: url("/assets/images/filtter.svg");
  background-size: 100px 100px;
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 0;
  width: 100%;
}
.mainvisual-blue .head {
  position: relative;
}
.mainvisual-blue .head-main {
  color: #fff;
  display: block;
  line-height: 1.16;
  text-align: left;
}
.mainvisual-blue .head-main + .head-sub {
  margin-top: 0;
}
.mainvisual-blue .head-sub {
  display: block;
  font-weight: normal;
  line-height: 1.5;
  text-align: left;
  font-size: 12px;
  font-size: 0.75rem;
}
@media screen and (min-width: 992px) {
  .mainvisual-blue .head {
    line-height: 1.17;
    margin: 0 auto;
    max-width: 980px;
  }
  .mainvisual-blue .head-main {
    font-size: 64px;
    font-size: 4rem;
  }
  .mainvisual-blue .head-sub {
    font-weight: normal;
    height: 29px;
    line-height: 1.1;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .mainvisual-blue {
    padding: 32px 40px;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-blue {
    padding: 40px 0;
  }
}
.mainvisual-subPage {
  background: #005bac;
  padding: 16px 10px;
  position: relative;
}
.mainvisual-subPage::before {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mainvisual-subPage {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage {
    padding: 40px 0;
  }
}
.mainvisual-subPage .head {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mainvisual-subPage .head {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage .head {
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    line-height: 1.17;
    margin: 0 auto;
    max-width: 980px;
  }
}
.mainvisual-subPage .head-sup {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  display: inline-block;
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  line-height: 1.4;
  position: relative;
}
.mainvisual-subPage .head-sup::after {
  background: #00a0a0;
  content: "";
  display: inline-block;
  height: 1px;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mainvisual-subPage .head-sup {
    font-size: 16px;
    font-size: 1rem;
    padding-right: 28px;
  }
  .mainvisual-subPage .head-sup::after {
    height: 2px;
    right: 8px;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage .head-sup {
    font-size: 16px;
    font-size: 1rem;
    padding-right: 28px;
  }
  .mainvisual-subPage .head-sup::after {
    height: 2px;
    right: 8px;
  }
}
.mainvisual-subPage .head-main {
  font-size: 28px;
  font-size: 1.75rem;
  color: #fff;
  display: block;
  line-height: 1.18;
  margin-top: 4px;
  text-align: left;
}
@media (min-width: 768px) and (max-width: 991px) {
  .mainvisual-subPage .head-main {
    font-size: 40px;
    font-size: 2.5rem;
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage .head-main {
    font-size: 40px;
    font-size: 2.5rem;
    margin: 0;
  }
}
.mainvisual-subPage .head-sub {
  font-size: 12px;
  font-size: 0.75rem;
  display: block;
  text-align: left;
}
.mainvisual-subPage .head-label {
  font-size: 10px;
  font-size: 0.625rem;
  align-items: center;
  color: #fff;
  display: inline-flex;
  height: 23px;
  justify-content: center;
  width: 88px;
}
.mainvisual-subPage .head-label.is-recruit {
  background: #00a0a0;
}
.mainvisual-subPage .head-label.is-event {
  background: #353491;
}
.mainvisual-subPage .head-label.is-notice {
  background: #ffb428;
}
.mainvisual-subPage .head-label + .head-section {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage .head-label + .head-section {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .mainvisual-subPage .head-label {
    font-size: 12px;
    font-size: 0.75rem;
    height: 26px;
    width: 108px;
  }
}

/* ----------------------------------------
	アコーディオン
---------------------------------------- */
.accordionHead {
  cursor: pointer;
}
.accordionDetail {
  display: none;
}

.accordion-plus {
  margin-top: 20px;
}
.accordion-plus .accordionHead {
  font-size: 18px;
  font-size: 1.125rem;
  border: 1px solid #d6d6d6;
  color: #005bac;
  font-weight: bold;
  line-height: 1.4;
  padding: 16px 32px 16px 16px;
  position: relative;
  transition: 0.5s;
}
.accordion-plus .accordionHead::before, .accordion-plus .accordionHead::after {
  background: #1d1d1d;
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}
.accordion-plus .accordionHead::before {
  height: 16px;
  right: 16px;
  width: 1px;
}
.accordion-plus .accordionHead::after {
  height: 1px;
  right: 8px;
  width: 16px;
}
.accordion-plus .accordionHead:hover {
  opacity: 0.8;
}
.accordion-plus .accordionHead:hover::after {
  opacity: 0.8;
}
.accordion-plus .accordionHead.is-open {
  background: #005bac;
  color: #fff;
}
.accordion-plus .accordionHead.is-open::before, .accordion-plus .accordionHead.is-open::after {
  background-color: #fff;
}
.accordion-plus .accordionHead.is-open::before {
  transform: translateY(-50%) rotate(90deg);
}
.accordion-plus .detail_item {
  background: #f6f6f6;
  margin-top: 8px;
  padding: 16px;
}
.accordion-plus .detail_title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
}
.accordion-plus .detail_list {
  font-size: 12px;
  font-size: 0.75rem;
  margin-top: 8px;
}
.accordion-plus .detail_list li {
  line-height: 1.8;
  padding-left: 1em;
  text-indent: -1em;
}
.accordion-plus .detail_text {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
  margin-top: 8px;
}
.accordion-plus + .accordion-plus {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .accordion-plus.is-3 .detailBox, .accordion-plus.is-2 .detailBox, .accordion-plus.is-6 .detailBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .accordion-plus.is-3 .detail_item, .accordion-plus.is-2 .detail_item, .accordion-plus.is-6 .detail_item {
    width: calc(50% - 4px);
  }
}
@media screen and (min-width: 992px) {
  .accordion-plus .accordionHead {
    font-size: 24px;
    font-size: 1.5rem;
    padding: 20px;
  }
  .accordion-plus .detail_item {
    margin-top: 16px;
    padding: 20px;
  }
  .accordion-plus .detail_title {
    font-size: 16px;
    font-size: 1rem;
  }
  .accordion-plus .detail_text, .accordion-plus .detail_list {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .accordion-plus.is-3 .detailBox, .accordion-plus.is-6 .detailBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .accordion-plus.is-3 .detail_item, .accordion-plus.is-6 .detail_item {
    margin-right: 16px;
    width: calc((100% - 32px) / 3);
  }
  .accordion-plus.is-3 .detail_item:nth-child(3n), .accordion-plus.is-6 .detail_item:nth-child(3n) {
    margin-right: 0;
  }
  .accordion-plus.is-2 .detailBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .accordion-plus.is-2 .detail_item {
    margin-right: 16px;
    width: calc((100% - 32px) / 2);
  }
  .accordion-plus.is-2 .detail_item:nth-child(2n) {
    margin-right: 0;
  }
}

/* ----------------------------------------
	テキスト
---------------------------------------- */
.text-main {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  line-height: 1.8;
}
.text-main + .text-main {
  margin-top: 16px;
}
.text-main + .head-question, .text-main + .head-article {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .text-main {
    font-size: 16px;
    font-size: 1rem;
  }
  .text-main + .text-main {
    margin-top: 20px;
  }
  .text-main + .head-question, .text-main + .head-article {
    margin-top: 40px;
  }
}

.text-notice {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 992px) {
  .text-notice {
    font-size: 16px;
    font-size: 1rem;
  }
}

/* ----------------------------------------
	タイトル
---------------------------------------- */
.head-main {
  font-size: 32px;
  font-size: 2rem;
  color: #000;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}
.head-main + .head-sub {
  margin-top: 1px;
}
@media screen and (min-width: 992px) {
  .head-main {
    font-size: 64px;
    font-size: 4rem;
  }
}
.head-sub {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  text-align: center;
}
.head-sub + .movieBox {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .head-sub + .movieBox {
    margin-top: 20px;
  }
}
.head-border {
  color: #000;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 15px;
  position: relative;
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
.head-border::after {
  background-color: #005bac;
  bottom: 0;
  content: "";
  display: inline-block;
  height: 2px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 48px;
}
@media screen and (min-width: 992px) {
  .head-border {
    font-size: 32px;
    font-size: 2rem;
    line-height: 1.46;
    padding-bottom: 20px;
  }
}
.head-border + .selectList {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .head-border + .selectList {
    margin-top: 60px;
  }
}
.head-border + .section_textBox {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .head-border + .section_textBox {
    margin-top: 60px;
  }
}
.head-tag {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  font-weight: bold;
  line-height: 1.4;
  padding-bottom: 8px;
  padding-left: 24px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .head-tag {
    font-size: 16px;
    font-size: 1rem;
  }
}
.head-tag::before {
  background-image: url("/assets/images/icon/tag.svg");
  background-size: 16px 16px;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 4px;
  width: 16px;
}
.head-tag + .selectFreeTagList {
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .head-tag + .selectFreeTagList {
    margin-top: 12px;
  }
}
.head-section {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 992px) {
  .head-section {
    font-size: 32px;
    font-size: 2rem;
  }
}
.head-section + .date {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .head-section + .date {
    margin-top: 12px;
  }
}
.head-article {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
}
.head-article + .head-question, .head-article + .text-main {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .head-article {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .head-article + .head-question, .head-article + .text-main {
    margin-top: 40px;
  }
}
.head-question {
  font-size: 14px;
  font-size: 0.875rem;
  color: #005bac;
  line-height: 1.8;
}
.head-question + .text-main, .head-question + .text-talk {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .head-question + .text-main, .head-question + .text-talk {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .head-question {
    font-size: 16px;
    font-size: 1rem;
  }
}
.head-leftLine {
  border-left: 4px solid #005bac;
  color: #000;
  padding-left: 8px;
}
.head-leftLineMain {
  font-size: 32px;
  font-size: 2rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.16;
}
.head-leftLineSub {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: normal;
  line-height: 1.5;
}
.head-centerBlue {
  font-size: 18px;
  font-size: 1.125rem;
  color: #005bac;
  line-height: 1.5;
  margin-top: 40px;
  text-align: center;
}
.head-centerBlue + .text-main, .head-centerBlue + .section_textBox {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .head-centerBlue + .text-main, .head-centerBlue + .section_textBox {
    margin-top: 32px;
  }
}
@media screen and (min-width: 992px) {
  .head-centerBlue + .text-main, .head-centerBlue + .section_textBox {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .head-centerBlue {
    margin-top: 48px;
  }
}
@media screen and (min-width: 992px) {
  .head-centerBlue {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 60px;
  }
}
.head-leftGreen {
  font-size: 14px;
  font-size: 0.875rem;
  color: #00a0a0;
  line-height: 1.8;
  margin-top: 32px;
  text-align: left;
}
.head-leftGreen + .text-main {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .head-leftGreen {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 40px;
  }
  .head-leftGreen + .text-main {
    margin-top: 20px;
  }
}

/* ----------------------------------------
	リンク
---------------------------------------- */
.link-window {
  display: inline-block;
  line-height: 1.4;
  position: relative;
  text-decoration: none;
}
.link-window::after {
  content: "\f00b";
  display: inline-block;
  font-family: "recruit_icon";
  height: 1em;
  margin-left: 0.57em;
  right: 0;
  width: 1em;
}
.link-window.is-white::after {
  color: #fff;
}
.link-window.is-white:hover::after {
  color: #fff;
}
.link-window:hover {
  text-decoration: none;
}
.link-window:hover::after {
  color: #005bac;
}

.link-return {
  font-size: 12px;
  font-size: 0.75rem;
  border-bottom: 1px solid #d6d6d6;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 0 8px 24px;
  position: relative;
  text-decoration: none;
}
.link-return::before {
  font-size: 16px;
  font-size: 1rem;
  content: "\f001";
  display: inline-block;
  font-family: "recruit_icon";
  font-weight: normal;
  height: 16px;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  width: 16px;
}
.link-return:hover {
  text-decoration: none;
}

/* ----------------------------------------
	アンカー
---------------------------------------- */
.anchor {
  display: block;
  margin-top: -60px;
  padding-top: 60px;
}
@media (min-width: 768px) {
  .anchor {
    margin-top: -100px;
    padding-top: 100px;
  }
}

/* ----------------------------------------
	カード
---------------------------------------- */
.infoCard {
  display: block;
  text-decoration: none;
}
.infoCard:hover {
  color: #1d1d1d;
  text-decoration: none;
}
.infoCard:hover .infoCard_img img {
  transform: translate(-50%, -50%) scale(1.1);
}
.infoCard:hover .infoCard_title {
  border-bottom: 1px solid #005bac;
  color: #005bac;
}
.infoCard:hover .infoCard_title::after {
  color: #005bac;
  right: -2px;
}
.infoCard_img {
  border: 1px solid #d6d6d6;
  height: 56.25vw;
  overflow: hidden;
  position: relative;
}
.infoCard_img img {
  display: block;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  width: 101%;
}
.infoCard_text {
  margin-top: 32px;
}
.infoCard_title {
  font-size: 18px;
  font-size: 1.125rem;
  border-bottom: 1px solid #d6d6d6;
  display: flex;
  gap: 8px;
  line-height: 1.5;
  padding-bottom: 8px;
  position: relative;
  transition: 0.3s;
  width: 100%;
}
.infoCard_title::after {
  font-size: 10px;
  font-size: 0.625rem;
  content: "\f004";
  display: inline-block;
  font-family: "recruit_icon";
  height: 10px;
  line-height: 1;
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  transition: 0.3s;
  width: 6px;
}
.infoCard_description {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-top: 8px;
}
.infoCard_tag .list_item {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  display: inline-block;
  line-height: 1.5;
  margin: 14px 8px 0 0;
  padding: 4px 7px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .infoCard_img {
    height: 26vw;
  }
  .infoCard_description {
    display: block;
    height: 145px;
  }
}
@media screen and (min-width: 992px) {
  .infoCard {
    align-items: stretch;
    display: flex;
    justify-content: center;
  }
  .infoCard_img {
    height: 228px;
    width: 380px;
  }
  .infoCard_text {
    display: flex;
    flex-direction: column;
    margin: 0 0 0 40px;
    width: 560px;
  }
  .infoCard_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .infoCard_description {
    font-size: 16px;
    font-size: 1rem;
    height: 111px;
  }
  .infoCard_tag {
    margin-top: auto;
  }
}

.detailList {
  margin-top: 40px;
}
.detailList > li:nth-child(n+2) {
  margin-top: 32px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .detailList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .detailList > li {
    width: calc(50% - 10px);
  }
  .detailList > li:nth-child(n+2) {
    margin-top: 0;
  }
  .detailList > li:nth-child(n+3) {
    margin-top: 32px;
  }
}
@media screen and (min-width: 992px) {
  .detailList {
    margin-top: 60px;
  }
  .detailList > li:nth-child(n+2) {
    margin-top: 40px;
  }
}

/* ----------------------------------------
	動画
---------------------------------------- */
.movieBox {
  padding: 11px 0;
}

.section_inner.fade-in-hidden {
  opacity: 0;
  transform: translateY(20px);
}
.section_inner.fade-in-visible {
  opacity: 1;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.main {
  margin: 0;
}

.mainvisual {
  align-items: center;
  background-color: #666;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 340px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .mainvisual {
    height: 200px;
  }
}
.mainvisual h1 {
  color: #fff;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 42px;
  font-size: 2.625rem;
}
.mainvisual h1::before {
  backdrop-filter: invert(100%);
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  content: "";
  display: block;
  height: 64px;
  position: absolute;
  right: -25px;
  top: 55%;
  transform: translateY(-50%);
  width: 2px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .mainvisual h1 {
    font-size: 32px;
    font-size: 2rem;
    margin-top: 20px;
    text-align: left;
  }
  .mainvisual h1::before {
    height: 48px;
    right: -15px;
  }
}

.videoArea {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.videoArea_item {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .videoArea_item {
    height: 100%;
    min-width: 100%;
  }
}

.message {
  background-color: #fff;
  border-bottom: 1px solid #1d1d1d;
  padding: 60px 0;
}
.message-noborder {
  border-bottom: none;
}
.message_content {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: auto;
  max-width: 1200px;
  width: 92%;
}
@media screen and (max-width: 767px) {
  .message_content {
    flex-direction: column;
    gap: 40px;
    transform: translateX(0);
  }
}
.message_contentImageTitle {
  max-width: 520px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .message_contentImageTitle {
    margin-right: auto;
  }
}
.message_contentImageText {
  max-width: 660px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .message_contentImageText {
    margin-right: auto;
  }
}

.tableRadius-top {
  border-radius: 10px 10px 0 0;
}

.introduction_contentVideo iframe {
  border-radius: 10px;
}

.tableRadius-bottom {
  border-radius: 0 0 10px 10px;
}

.detail_title {
  color: #005bac;
  font-weight: 400;
  font-size: 24px;
  font-size: 1.5rem;
}
.detail_table {
  border-collapse: collapse;
  margin-bottom: 120px;
  width: 100%;
  font-size: 14px;
  font-size: 0.875rem;
}
.detail_tableRow {
  border: 1px solid #1d1d1d;
  display: block;
}
.detail_tableRow:first-child {
  border-radius: 10px 10px 0 0;
}
.detail_tableRow:last-child {
  border-radius: 0 0 10px 10px;
}
.detail_tableRow:not(:first-child) {
  border-top: none;
}
.detail_tableRow-column {
  display: flex;
}
@media screen and (max-width: 767px) {
  .detail_tableRow-column {
    flex-direction: column;
  }
}
.detail_tableRow-column .detail_tableHeader {
  border-bottom: none;
  line-height: 1;
  width: 70px;
  font-size: 40px;
  font-size: 2.5rem;
}
.detail_tableRow-column .detail_tableCellText-large {
  font-size: 20px;
  font-size: 1.25rem;
  margin-bottom: 15px;
}
.detail_tableCell {
  border-top: none;
  display: block;
  padding: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .detail_tableCell {
    padding: 10px 20px 20px;
  }
}
.detail_tableCell p {
  margin-bottom: 10px;
}
.detail_tableCell p:last-child {
  margin-bottom: 0;
}
.detail_tableHeader {
  border-bottom: 1px solid #1d1d1d;
  border-right: none;
  display: block;
  font-weight: 700;
  padding: 20px;
  text-align: left;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .detail_tableHeader {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 15px 20px 10px;
  }
}

.lookingForTable .detail_tableHeader {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .lookingForTable .detail_tableHeader {
    padding: 20px 15px 0;
  }
}
.lookingForTable .detail_tableCell {
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .lookingForTable .detail_tableCell {
    padding: 20px 15px;
  }
}

.section {
  background-color: #fff;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}
.section-nobg {
  background-color: transparent;
}
.section_inner {
  margin: auto;
  max-width: 1200px;
  width: 92%;
}
.section_inner + .boxImg {
  margin-top: 40px;
}
.section_inner + .boxImg img {
  border-radius: 10px;
  margin: auto;
  max-width: 700px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .section_inner + .boxImg img {
    width: 92%;
  }
}
@media screen and (min-width: 992px) {
  .section_inner + .boxImg {
    margin-top: 60px;
  }
}
@media screen and (max-width: 767px) {
  .section_inner {
    width: 92%;
  }
}
.section_inner-small {
  max-width: 1080px;
}
.section_subTitle {
  font-size: 16px;
  font-size: 1rem;
  color: #005bab;
  font-weight: 700;
  margin-bottom: 10px;
}
.section_subTitle-white {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .section_subTitle {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.section_title {
  font-size: 60px;
  font-size: 3.75rem;
  font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-weight: bold;
  line-height: 1.35;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.section-borderBottom {
  border-bottom: 1px solid #1d1d1d;
}
.section-borderTop {
  border-top: 1px solid #1d1d1d;
}
.section_text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}
.section-interviewCard {
  margin: auto;
  max-width: 1000px;
}
.section-toEntry {
  background: #f6f6f6;
  padding: 32px 10px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .section-toEntry {
    margin: auto;
    padding: 40px;
    width: 980px;
  }
}
.section-toEntry .entry_head {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (min-width: 992px) {
  .section-toEntry .entry_head {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.section-toEntry .entry_text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.4;
  margin-top: 4px;
}
@media screen and (min-width: 992px) {
  .section-toEntry .entry_text {
    font-size: 16px;
    font-size: 1rem;
  }
}
.section-toEntry .btn-blueGradient {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  .section-toEntry .btn-blueGradient {
    margin-top: 28px;
  }
}
.section_textBox {
  margin: auto;
}
@media screen and (min-width: 992px) {
  .section_textBox {
    width: 1080px;
  }
}

.showmore {
  align-items: center;
  background-color: #1d1d1d;
  border: 1px solid #1d1d1d;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  display: flex;
  gap: 8px;
  height: 36px;
  justify-content: center;
  text-align: center;
  -webkit-user-select: none;
          user-select: none;
  width: 120px;
  font-size: 16px;
  font-size: 1rem;
}
.showmore:hover {
  background-color: #fff;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
  text-decoration: none;
}
.showmore:hover .arrowicon-white {
  filter: invert(0);
}
.showmore a {
  font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  text-decoration: none;
}
.showmore a:hover {
  color: #1d1d1d;
}
.showmore .arrowicon {
  display: inline-block;
  margin-bottom: 1px;
  margin-left: 4px;
}
.showmore-alignRight {
  margin-left: auto;
}
.showmore-hidden {
  display: none;
}
.showmore-white {
  background-color: #fff;
  border-radius: 3px;
  color: #1d1d1d;
}
.showmore-white:hover {
  background-color: #1d1d1d;
  color: #fff;
}
.showmore-white:hover a {
  color: #fff;
}
.showmore-white:hover .arrowicon {
  filter: invert(1);
}

.entryButton {
  background-color: #0ef;
  border-radius: 50px;
  display: block;
  height: 68px;
  margin: 60px auto 0;
  place-content: center;
  width: 280px;
}
.entryButton:hover {
  background: radial-gradient(circle at center bottom, rgb(212, 251, 255) 0%, rgb(212, 251, 255) 5%, rgb(212, 251, 255) 10%, rgb(0, 238, 255) 100%);
  color: #1d1d1d;
  padding-bottom: 0;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .entryButton {
    height: 60px;
    width: 92%;
  }
}
.entryButton p {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .entryButton p {
    font-size: 16px;
    font-size: 1rem;
  }
}

.interview-blue-bg {
  background-image: url("/assets/images/lightblue_bg.jpg");
  background-size: cover;
}

.arrowicon {
  width: 16px;
}
.arrowicon-white {
  filter: invert(1);
}

.font-normal {
  font-weight: 400;
}

@media (min-width: 768px) and (max-width: 991px) {
  .section {
    padding: 40px 0;
  }
}
.RecruitCategory {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .RecruitCategory {
    flex-direction: column;
  }
}
.RecruitCategory_listItem {
  align-items: flex-end;
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  padding: 20px;
  position: relative;
  width: 50%;
  z-index: 1;
}
.RecruitCategory_listItem_bg {
  border-radius: 10px;
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: transform 0.5s ease;
  width: 100%;
  z-index: -2;
}
.RecruitCategory_listItem::after {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0 0 10px 10px;
  bottom: 0;
  content: "";
  height: 100%;
  height: 72px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .RecruitCategory_listItem::after {
    height: 50px;
  }
}
@media screen and (max-width: 767px) {
  .RecruitCategory_listItem {
    width: 100%;
  }
}
.RecruitCategory_listItem:hover {
  color: #1d1d1d;
  text-decoration: none;
}
.RecruitCategory_listItem:hover .RecruitCategory_listItem_bg {
  transform: scale(1.03);
}
.RecruitCategory_listItemImage {
  width: 100px;
}
@media screen and (max-width: 767px) {
  .RecruitCategory_listItemImage {
    width: 60px;
  }
}
.RecruitCategory_listItemTitle {
  flex: 1;
  line-height: 1;
  margin-left: 40px;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .RecruitCategory_listItemTitle {
    font-size: 20px;
    font-size: 1.25rem;
    margin-left: 15px;
  }
}
.RecruitCategory_listItem .arrowicon {
  width: 25px;
}
@media screen and (max-width: 767px) {
  .RecruitCategory_listItem .arrowicon {
    width: 18px;
  }
}

/* ----------------------------------------
	パンくずリスト
---------------------------------------- */
.breadcrumb {
  font-size: 10px;
  font-size: 0.625rem;
  line-height: 1.8;
  margin: 20px 10px;
}
.breadcrumb_list {
  display: flex;
}
.breadcrumb_list li {
  list-style: none;
  position: relative;
}
.breadcrumb_list li + li {
  padding-left: 24px;
}
.breadcrumb_list li + li::before {
  font-size: 10px;
  font-size: 0.625rem;
  content: "\f004";
  display: inline-block;
  font-family: "recruit_icon";
  height: 10px;
  left: 8px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.breadcrumb_list a {
  text-decoration: none;
}
.breadcrumb_list a:hover {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .breadcrumb {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 30px auto 0;
    max-width: 1080px;
  }
  .breadcrumb li + li {
    padding-left: 30px;
  }
  .breadcrumb li + li::before {
    left: 10px;
  }
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes infiniteScrollMobile {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.page-top .section {
  position: relative;
  z-index: 0;
}
.page-top .mainvisual {
  background-color: unset;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100vh - 30px);
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual {
    min-height: 100vh;
  }
}
.page-top .mainvisual h1 {
  position: relative;
  z-index: 2;
}
.page-top .mainvisual_container {
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: -1;
}
.page-top .mainvisual_video {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual_video {
    height: 100%;
    left: 50%;
    min-width: 100%;
    transform: translateX(-50%) translateZ(0);
    width: auto;
  }
}
.page-top .mainvisual .typing {
  height: 140px;
  left: 50%;
  max-width: 1200px;
  opacity: 1;
  padding: 10px;
  position: fixed;
  text-align: center;
  top: 45%;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .typing {
    top: 40%;
  }
}
.page-top .mainvisual .typing_text {
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .typing_text .typing_input {
    font-size: 2rem;
    min-height: 50px;
  }
  .page-top .mainvisual .typing_text span {
    border-radius: 3px;
  }
}
.page-top .mainvisual .typing_textContent {
  color: #fff;
  cursor: text;
  display: inline-block;
  line-height: 1.4;
  min-height: 70px;
  position: relative;
  z-index: 2;
  font-size: 70px;
  font-size: 4.375rem;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .typing_textContent {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.page-top .mainvisual .typing_textContent span {
  border-radius: 0;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  color: #fff;
  display: inline-block;
  line-height: 1.4;
  mix-blend-mode: normal;
  padding: 2px 10px;
  position: relative;
}
.page-top .mainvisual .typing_textContent span::before {
  backdrop-filter: invert(100%);
  background-color: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  height: 80px;
  position: absolute;
  right: -15px;
  top: 10px;
  transform: translateY(20%);
  width: 2px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .typing_textContent span::before {
    height: 45px;
  }
}
.page-top .mainvisual .typing_textContent span:empty {
  display: inline-block;
  min-height: 1em;
}
.page-top .mainvisual .typing_input {
  background: transparent;
  border: none;
  color: white;
  display: none;
  outline: none;
  padding: 10px;
  text-align: center;
  width: 100%;
  font-size: 70px;
  font-size: 4.375rem;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .typing_input {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.page-top .mainvisual .buttons {
  align-items: center;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  left: 50%;
  max-width: 1200px;
  opacity: 1;
  padding: 10px 0;
  position: absolute;
  transform: translateX(-50%);
  transition: opacity 0.5s ease;
  width: 92%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .buttons {
    bottom: 10px;
  }
}
.page-top .mainvisual .buttons_row {
  display: grid;
  gap: 10px;
  width: 100%;
}
.page-top .mainvisual .buttons_row:first-child {
  grid-template-columns: repeat(4, 1fr);
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .buttons_row:first-child {
    grid-template-columns: repeat(2, 1fr);
  }
}
.page-top .mainvisual .buttons_row:last-child {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .buttons_row:last-child {
    grid-template-columns: 1fr;
  }
}
.page-top .mainvisual .buttons_rowItem {
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  color: #fff;
  display: flex;
  height: 50px;
  justify-content: space-between;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-size: 18px;
  font-size: 1.125rem;
}
.page-top .mainvisual .buttons_rowItem:hover {
  backdrop-filter: none;
  background-color: unset;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  text-decoration: none;
}
.page-top .mainvisual .buttons_rowItem span {
  line-height: 1.35;
}
.page-top .mainvisual .buttons_rowItem .arrowicon {
  width: 24px;
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .buttons_rowItem .arrowicon {
    width: 16px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .mainvisual .buttons_rowItem {
    padding: 8px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-top .news {
  padding-top: 60px;
  position: relative;
  z-index: 0;
}
.page-top .news_video {
  display: block;
  height: 100%;
  left: 0;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
  transform: translateZ(0);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-top .news_video {
    height: 100%;
    min-width: 100%;
  }
}
.page-top .news_videoContainer {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -2;
}
.page-top .news .listNews {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(100% - 30px);
}
@media screen and (max-width: 767px) {
  .page-top .news .listNews {
    flex-direction: column;
  }
}
.page-top .news .listNews_contentWindow {
  flex: 1;
  max-height: 300px;
  padding-right: 10px;
}
.page-top .news .listNews_contentWindow-open {
  overflow-y: scroll;
}
.page-top .news .listNews_contentWindow-open::-webkit-scrollbar {
  width: 2px;
}
.page-top .news .listNews_contentWindow-open::-webkit-scrollbar-thumb {
  background: #1d1d1d;
  border-radius: 4px;
}
.page-top .news .listNews_item {
  display: flex;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .page-top .news .listNews_item {
    display: flex;
    flex-direction: column;
  }
}
.page-top .news .listNews_item-hidden {
  display: none;
}
.page-top .news .listNews_title {
  display: inline;
  margin: 0;
  max-width: 100%;
  text-decoration: none;
}
.page-top .news .listNews_title a {
  overflow: hidden;
  text-decoration: none;
  text-overflow: ellipsis;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-top .news .listNews_title a {
    text-decoration: none;
    white-space: normal;
  }
}
.page-top .news .listNews_category {
  border: none;
  border-radius: 0;
  color: #005bac;
  font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: left;
}
.page-top .news .listNews_category.is-recruit {
  background: #008478;
  border-color: #008478;
}
.page-top .news .listNews_category.is-event {
  background: #353491;
  border-color: #353491;
}
.page-top .news .listNews_category.is-notice {
  background: #ffb428;
  border-color: #ffb428;
}
.page-top .news .listNews_date {
  color: #1d1d1d;
  font-size: 16px;
  margin-left: 8px;
  margin-right: 8px;
  white-space: nowrap;
}
.page-top .news .icon {
  font-size: 0.7em;
}
.page-top .newsAbout_Inner {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
  margin-left: calc(50% - 600px);
  margin-right: 20px;
  margin-top: 60px;
  max-width: 1300px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-top .newsAbout_Inner {
    margin: 20px 4%;
  }
}
@media screen and (max-width: 767px) {
  .page-top .newsAbout_Inner {
    flex-direction: column;
    gap: 60px;
    margin: 0 15px;
    padding-top: 80px;
  }
}
.page-top .newsAbout_InnerTitle {
  font-size: 80px;
  font-size: 5rem;
  letter-spacing: 2px;
  line-height: 1.5;
  max-width: 720px;
}
@media screen and (max-width: 767px) {
  .page-top .newsAbout_InnerTitle {
    font-size: 50px;
    font-size: 3.125rem;
  }
}
.page-top .newsAbout_InnerText {
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 2px;
  line-height: 1.65;
  max-width: 420px;
}
@media screen and (max-width: 767px) {
  .page-top .newsAbout_InnerText {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .page-top .news .listNews {
    max-width: 1200px;
  }
}
.page-top .about {
  background-color: #fff;
  padding-bottom: 320px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-top .about {
    padding-bottom: 80px;
    padding-top: 120px;
  }
}
.page-top .about_text {
  max-width: 540px;
}
.page-top .about .section_inner {
  position: relative;
}
.page-top .aboutImage {
  position: absolute;
  z-index: -1;
}
.page-top .aboutImage-1 {
  right: 26%;
  top: 5%;
}
@media screen and (max-width: 767px) {
  .page-top .aboutImage-1 {
    right: 35%;
    top: -10%;
    width: 105px;
  }
}
.page-top .aboutImage-2 {
  right: -7%;
  top: 15%;
}
@media (max-width: 1300px) {
  .page-top .aboutImage-2 {
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-top .aboutImage-2 {
    right: -4%;
    top: -3%;
    width: 115px;
  }
}
.page-top .aboutImage-3 {
  bottom: -50%;
  left: -15%;
}
@media screen and (max-width: 767px) {
  .page-top .aboutImage-3 {
    bottom: -5%;
    left: 0;
    width: 120px;
  }
}
.page-top .aboutImage-4 {
  bottom: -45%;
  right: 5%;
}
@media screen and (max-width: 767px) {
  .page-top .aboutImage-4 {
    bottom: 0;
    right: 5%;
    top: 30%;
    width: 130px;
  }
}
.page-top .aboutImage img {
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .page-top .aboutImage img {
    border-radius: 5px;
  }
}
.page-top .program {
  backdrop-filter: blur(10px);
  background-color: unset;
}
.page-top .program_list {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .page-top .program_list {
    flex-direction: column;
  }
}
.page-top .program_listItem {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.page-top .program_listItemBanner {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
  width: 100%;
}
.page-top .program_listItemBanner:hover {
  transform: scale(1.03);
}
.page-top .program_listItem .arrowicon {
  bottom: 20px;
  height: 46px;
  position: absolute;
  right: 20px;
  width: 46px;
}
@media screen and (max-width: 767px) {
  .page-top .program_listItem .arrowicon {
    bottom: 15px;
    height: 36px;
    right: 15px;
    width: 36px;
  }
}
.page-top .category {
  background-color: #fff;
}
.page-top .category_list {
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto;
}
.page-top .category_listItem {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 390px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-top .category_listItem {
    max-width: calc(50% - 5px);
  }
}
.page-top .category_listItemBg {
  height: 100%;
  left: 0;
  object-fit: cover;
  position: absolute;
  top: 0;
  transition: transform 0.3s ease;
  width: 100%;
  z-index: 1;
}
.page-top .category_listItem:hover {
  color: #1d1d1d;
  text-decoration: none;
}
.page-top .category_listItem:hover .category_listItemBg {
  transform: scale(1.03);
}
.page-top .category_listItem .arrowicon {
  height: 46px;
  width: 46px;
}
@media screen and (max-width: 767px) {
  .page-top .category_listItem .arrowicon {
    height: 20px;
    width: 20px;
  }
}
.page-top .category_listItemImage {
  margin: 40px auto;
  position: relative;
  width: 160px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-top .category_listItemImage {
    margin: 20px auto;
    width: 80px;
  }
}
.page-top .category_listItemTitle {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.6);
  display: flex;
  height: 126px;
  justify-content: space-between;
  line-height: 1.35;
  padding: 0 40px;
  position: relative;
  width: 100%;
  z-index: 2;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (max-width: 767px) {
  .page-top .category_listItemTitle {
    font-size: 15px;
    font-size: 0.9375rem;
    height: 64px;
    padding: 0 10px;
  }
}
.page-top .category_list .top-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}
.page-top .category_list .bottom-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-top .interview {
  backdrop-filter: blur(10px);
  background-color: unset;
}
.page-top .welfare {
  background-color: #fff;
  overflow: hidden;
  padding-top: 120px;
}
.page-top .welfare_list {
  animation: infiniteScroll 25s linear infinite;
  display: flex;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .page-top .welfare_list {
    margin-left: 10px;
    margin-right: 10px;
    overflow-x: auto;
  }
}
.page-top .welfare_listItem {
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  min-width: 25vw;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease;
  width: 25vw;
}
@media screen and (max-width: 767px) {
  .page-top .welfare_listItem {
    height: auto;
    min-width: 280px;
    overflow: unset;
    width: 280px;
  }
}
.page-top .welfare_listItemImage {
  border-radius: 8px;
  display: block;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.3s ease;
  width: 100%;
}
.page-top .welfare_listItemImage:hover {
  transform: scale(1.03);
}
@media screen and (max-width: 767px) {
  .page-top .welfare_listItemImage {
    height: auto;
    object-fit: unset;
    width: 280px;
  }
}
.page-top .welfare_listItemTitle {
  color: #fff;
  font-weight: 700;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
  font-size: 24px;
  font-size: 1.5rem;
}
@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.page-top .info {
  backdrop-filter: blur(10px);
  background-color: unset;
}
.page-top .info_list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-top .info_list {
    flex-direction: column;
  }
}
.page-top .info_listItem {
  margin-bottom: 20px;
  width: 100%;
}
.page-top .info_listItemText {
  font-size: 20px;
  font-size: 1.25rem;
}
.page-top .info_listItem a {
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0);
  border-radius: 5px;
  display: flex;
  height: 80px;
  justify-content: space-between;
  max-width: 590px;
  padding: 0 40px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
  font-size: 20px;
  font-size: 1.25rem;
}
.page-top .info_listItem a:hover {
  backdrop-filter: none;
  background-color: unset;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
  text-decoration: none;
}
.page-top .info_listItem a .arrowicon {
  width: 28px;
}
@media screen and (max-width: 767px) {
  .page-top .info_listItem a .arrowicon {
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .page-top .info_listItem a {
    height: 60px;
  }
}
.page-top .groupHub {
  background-color: #fff;
}
.page-top .groupHub_inner {
  background-color: transparent !important;
  background-image: none !important;
  border-radius: 20px;
  color: #fff;
  margin: 0 auto;
  max-width: calc(100% - 120px);
  overflow: hidden;
  padding: 90px 0 90px 60px;
  position: relative;
  transition: all 0.3s ease;
}
.page-top .groupHub_inner::before {
  background-image: url("/assets/images/top/grouphub.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 0.3s ease;
  width: 100%;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .page-top .groupHub_inner::before {
    background-image: url("/assets/images/top/grouphub_sp.jpg");
  }
}
@media screen and (max-width: 767px) {
  .page-top .groupHub_inner {
    max-width: calc(100% - 30px);
    padding: 60px 20px 200px;
  }
}
.page-top .groupHub_inner:hover::before {
  transform: scale(1.03);
}
.page-top .groupHub_innerContent {
  position: relative;
  width: 420px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page-top .groupHub_innerContent {
    width: 100%;
  }
}
.page-top .groupHub_inner .showmore {
  border: none;
}

.page-news {
  line-height: 1.8;
}
.page-news .mainvisual {
  background-image: url("/assets/images/news/mainvisual-news.jpg");
}
.page-news .mainvisual.mainvisual-intern {
  background-image: url("/assets/images/news/mainvisual-intern.jpg");
}
.page-news .section-select {
  padding: 120px 0 0;
}
@media screen and (max-width: 767px) {
  .page-news .section-select {
    padding: 60px 0 0;
  }
}
.page-news .message {
  border-bottom: none;
}
.page-news .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-news .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-news .message_content-block {
  display: block;
}
.page-news .categoryFilterTitle {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.page-news .categoryList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
@media screen and (max-width: 767px) {
  .page-news .categoryList {
    gap: 10px;
    margin: 0 auto 40px;
    width: 92%;
  }
}
.page-news .categoryList .button-filter {
  align-items: center;
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #005bab;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  color: #8d8d8d;
  display: flex;
  height: 108px;
  justify-content: center;
  font-size: 20px;
  font-size: 1.25rem;
}
.page-news .categoryList .button-filter:hover {
  background-color: #f5f9fc;
  color: #005bab;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-news .categoryList .button-filter {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    height: 48px;
    width: 168px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-news .categoryList .button-filter.selected {
  background-color: unset;
  border-bottom: none;
  border-left: 1px solid #005bab;
  border-right: 1px solid #005bab;
  border-top: 1px solid #005bab;
  color: #005bab;
  font-weight: 700;
  position: relative;
}
.page-news .categoryList .button-filter.selected:hover {
  background-color: #f5f9fc;
}
@media screen and (max-width: 767px) {
  .page-news .categoryList .button-filter.selected {
    border: 1px solid #005bab;
    border-radius: 10px;
  }
}
@media screen and (min-width: 992px) {
  .page-news .selectList {
    flex-wrap: nowrap;
    justify-content: center;
  }
}
.page-news .selectList_item label {
  cursor: pointer;
  width: 100%;
}
.page-news .selectList_item:nth-child(2) {
  margin-top: 0;
}
.page-news .selectList_item:nth-child(n+3) {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-news .selectList_item {
    width: 21%;
  }
  .page-news .selectList_item:nth-child(n+3) {
    margin-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-news .selectList_item {
    width: 16.666666667%;
  }
  .page-news .selectList_item:nth-child(n+3) {
    margin-top: 0;
  }
}
.page-news .selectFreeTagList_item label {
  padding: 5px 8px;
}
.page-news .listNews {
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
  padding: 80px 0;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-news .listNews {
    padding: 60px 0;
  }
}
.page-news .listNews-intern {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .page-news .listNews-intern {
    padding: 60px 0;
  }
}
.page-news .listNews_list {
  margin: auto;
  max-width: 1200px;
}
.page-news .listNews_listItem {
  display: flex;
}
.page-news .listNews_listItemLink {
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
  padding: 40px;
  width: 100%;
}
.page-news .listNews_listItemLink:hover {
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-news .listNews_listItemLink {
    gap: 25px;
    margin: 0 auto 10px;
    padding: 20px;
    width: 92%;
  }
}
.page-news .listNews_listItemLink a {
  padding: 40px;
  text-decoration: none;
}
.page-news .listNews_listItemLink .icon {
  flex: 1;
  text-align: right;
}
.page-news .listNews_category {
  border: none;
  border-radius: 0;
  color: #005bab;
  font-weight: 700;
  height: 23px;
  line-height: 17px;
  min-width: 88px;
  padding: 2px 8px;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-news .listNews_category {
    display: block;
    margin-bottom: 5px;
    min-width: unset;
    text-align: left;
  }
}
.page-news .listNews_date {
  border-right: 1px solid #e9e9e9;
  color: #1d1d1d;
  margin-left: 6px;
  padding-right: 15px;
  font-size: 16px;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .page-news .listNews_date {
    display: inline-block;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-news .listNews_date {
    border-right: none;
  }
}
.page-news .listNews_title {
  text-decoration: none;
}
.page-news .listNews_title a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .page-news .listNews_title {
    display: inline-block;
    margin: 0;
  }
}
.page-news .listNews_item {
  border-bottom: 1px solid #d6d6d6;
  padding: 24px 0;
}
@media (min-width: 768px) {
  .page-news .listNews_item {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}
.page-news .section-news {
  background-image: url("/assets/images/lightblue_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .page-news .section-news {
    padding: 60px 0;
  }
}
.page-newsDetails {
  word-break: break-all;
}
.page-newsDetails .mainvisual {
  background-image: url("/assets/images/news/mainvisual-news.jpg");
}
.page-newsDetails .mainvisual.mainvisual-intern {
  background-image: url("/assets/images/news/mainvisual-intern.jpg");
}
.page-newsDetails .mainvisual-blue {
  background: #005bac;
  padding: 16px 10px;
}
.page-newsDetails .mainvisual-blue::before {
  display: none;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-newsDetails .mainvisual-blue {
    padding: 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-newsDetails .mainvisual-blue {
    padding: 40px 0;
  }
}
.page-newsDetails .head-label {
  font-size: 16px;
  font-size: 1rem;
  color: #005bab;
  font-weight: 700;
}
.page-newsDetails .date {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 16px;
}
.page-newsDetails .section-article {
  padding-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article {
    margin: 0 auto;
    padding: 80px 80px 0;
  }
}
.page-newsDetails .section-article .text-main {
  margin-top: 32px;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article .text-main {
    margin-top: 20px;
  }
}
.page-newsDetails .section-article .subtitle {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article .subtitle {
    margin-top: 12px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-newsDetails .section-article .subtitle {
    margin-top: 16px;
  }
}
.page-newsDetails .section-article .img {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article .img {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article .img {
    margin-top: 20px;
  }
}
.page-newsDetails .section-article + .section-toEntry {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-newsDetails .section-article + .section-toEntry {
    margin-top: 80px;
  }
}
.page-newsDetails .section .showmore {
  height: 40px;
  width: 160px;
}
.page-newsDetails .text-main a {
  color: #4085ff;
}
.page-newsDetails .text-main a:hover {
  text-decoration: underline;
}

.interview {
  background-color: #fff;
}
.interview_inner {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .interview_inner {
    flex-direction: column;
    gap: 40px;
  }
}
.interview_inner .listInterviewee {
  gap: 40px 18px;
  height: 620px;
  margin-top: 0;
  max-width: 625px;
  overflow-y: auto;
}
.interview_inner .listInterviewee::-webkit-scrollbar {
  width: 2px;
}
.interview_inner .listInterviewee::-webkit-scrollbar-thumb {
  background: #1d1d1d;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .interview_inner .listInterviewee {
    gap: 10px;
  }
}
.interview .listInterviewee {
  align-content: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 15px;
  justify-content: flex-start;
}
.interview .listInterviewee_item {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .interview .listInterviewee_item {
    max-width: 160px;
  }
}
.interview .listInterviewee_item img {
  background-color: #e9e9e9;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 300px;
}
@media screen and (max-width: 767px) {
  .interview .listInterviewee_item img {
    max-width: 160px;
    min-height: unset;
  }
}
.interview .listInterviewee_card {
  cursor: pointer;
}
.interview .listInterviewee_video {
  left: 50%;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.interview .listInterviewee_video iframe {
  height: 574px;
  width: 1020px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .interview .listInterviewee_video iframe {
    height: 281px;
    width: 500px;
  }
}
@media screen and (max-width: 767px) {
  .interview .listInterviewee_video iframe {
    height: 169px;
    width: 300px;
  }
}
.interview .listInterviewee_label {
  font-size: 16px;
  font-size: 1rem;
  align-items: center;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  left: 0;
  margin-bottom: 5px;
  padding: 0 10px;
}
.interview .listInterviewee_label.is-engineer {
  background-color: rgba(0, 160, 200, 0.5);
}
.interview .listInterviewee_label.is-creator {
  background-color: rgba(255, 180, 40, 0.5);
}
.interview .listInterviewee_label.is-corporate {
  background-color: rgba(0, 180, 120, 0.5);
}
.interview .listInterviewee_label.is-business {
  background-color: rgba(53, 52, 145, 0.5);
}
.interview .listInterviewee_title {
  -webkit-box-orient: vertical;
  color: #1d1d1d;
  display: -webkit-box;
  font-weight: 700;
  height: 60px;
  -webkit-line-clamp: 2;
  line-height: 1.5;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 20px;
  font-size: 1.25rem;
}
.interview .listInterviewee_subTitle {
  color: #5a5858;
  font-size: 14px;
  font-size: 0.875rem;
}
.interview .listInterviewee a {
  display: block;
  height: 100%;
  text-decoration: none;
  width: 100%;
}
.interview .resultTitle {
  margin: 54px 0 40px;
}
.interview .resultTitle span {
  display: inline-block;
}
.interview .resultTitle_main, .interview .resultTitle .num_result {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .interview .resultTitle_main, .interview .resultTitle .num_result {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.interview .resultTitle .num_main {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .interview .resultTitle .num_main {
    margin-left: 20px;
  }
}
.interview .resultTitle .num_all {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}
.interview_selectTitle {
  color: #1d1d1d;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
}
.interview_selectList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.interview_selectListItem {
  margin: 0;
}
.interview_selectListItemLink {
  background-color: #fff;
  border: 1px solid #1d1d1d;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.interview_selectListItemLink:hover {
  text-decoration: none;
}
.interview_selectListItemLink span {
  color: #1d1d1d;
}
.interview_selectListItemLink.is-checked {
  background-color: #1d1d1d;
  color: #fff;
}
.interview_selectListItemLink.is-checked span {
  color: #fff;
}
.interview_selectListItemLink.selected {
  align-items: center;
  background-color: #1d1d1d;
  color: #fff;
  display: flex;
}
.interview_selectListItemLink.selected .icon {
  margin-left: 5px;
}

.page-interview .mainvisual {
  background-image: url("/assets/images/interview/mainvisual-interview.jpg");
}
.page-interview .message_content {
  display: block;
}
.page-interview .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .page-interview .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-interview .listInterviewee_item {
  max-width: 390px;
}
@media screen and (max-width: 767px) {
  .page-interview .listInterviewee_item {
    max-width: 160px;
  }
}
.page-interview .listInterviewee_item img {
  min-height: 390px;
}
@media screen and (max-width: 767px) {
  .page-interview .listInterviewee_item img {
    max-width: 160px;
    min-height: unset;
  }
}
.page-interview-details .mainvisual {
  background-image: url("/assets/images/interview/mainvisual-interview.jpg");
}
.page-interview-details .detail {
  background-color: unset;
}
.page-interview-details .detail_top {
  margin: auto;
  max-width: 1200px;
  position: relative;
}
.page-interview-details .detail_topImage {
  max-width: 700px;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-interview-details .detail_topImage {
    margin-bottom: 20px;
    position: relative;
    right: unset;
    top: unset;
  }
}
.page-interview-details .detail_topInfo {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page-interview-details .detail_topInfo {
    width: 92%;
  }
}
.page-interview-details .detail_topInfoSubTitle {
  font-size: 16px;
  font-size: 1rem;
  color: #005bab;
  font-weight: 700;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .page-interview-details .detail_topInfoSubTitle {
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-interview-details .detail_topInfoTitle {
  line-height: 1.35;
  margin-bottom: 40px;
  max-width: 640px;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .page-interview-details .detail_topInfoTitle {
    font-size: 40px;
    font-size: 2.5rem;
    margin-bottom: -20px;
  }
}
.page-interview-details .detail_topInfoDepartment {
  color: #1d1d1d;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-interview-details .detail_topInfoDepartment {
    margin-bottom: 10px;
  }
}
.page-interview-details .detail_topInfoSub {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
  font-size: 1.25rem;
}
.page-interview-details .detail_topInfoList {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.page-interview-details .detail_topInfoListItem {
  font-size: 12px;
  font-size: 0.75rem;
  background-color: #f5f9fc;
  border-radius: 15px;
  color: #005bab;
  padding: 3px 15px;
}
.page-interview-details .detail_topInfoListItem a:hover {
  text-decoration: none;
}
.page-interview-details .listArticleTag {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 32px 10px 0;
  padding: 12px 24px 12px 20px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .listArticleTag {
    margin: 32px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .listArticleTag {
    margin: 40px 0 0;
    padding: 12px 24px 12px 32px;
  }
}
.page-interview-details .listArticleTag::before {
  background-image: url("/assets/images/icon/tag.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 22px;
  width: 16px;
}
@media screen and (min-width: 992px) {
  .page-interview-details .listArticleTag::before {
    height: 20px;
    top: 24px;
    width: 20px;
  }
}
.page-interview-details .listArticleTag_item {
  margin: 4px;
}
@media screen and (min-width: 992px) {
  .page-interview-details .listArticleTag_item {
    margin: 6px;
  }
}
.page-interview-details .listArticleTag_link {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  color: #1d1d1d;
  display: inline-block;
  line-height: 1.5;
  padding: 4px 8px;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .page-interview-details .listArticleTag_link {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 3px 11px;
  }
}
.page-interview-details .listArticleTag_link:hover {
  background: #1d1d1d;
  border-color: #1d1d1d;
  color: #fff;
}
.page-interview-details .timeline {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .page-interview-details .timeline {
    align-items: flex-end;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .timeline {
    align-items: stretch;
    flex-direction: row;
    margin: 18px 40px 0;
    padding-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .timeline {
    align-items: stretch;
    flex-direction: row;
    margin: 20px 0 0;
    padding-top: 22px;
  }
}
.page-interview-details .timeline_item {
  font-size: 10px;
  font-size: 0.625rem;
  border: 1px solid #f6f6f6;
  border-right: none;
  color: #1d1d1d;
  line-height: 1.5;
  list-style: none;
  padding: 8px 4px;
  position: relative;
  width: 86.25%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .timeline_item {
    font-size: 12px;
    font-size: 0.75rem;
    align-items: center;
    display: flex;
    line-height: 1.4;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .timeline_item {
    font-size: 12px;
    font-size: 0.75rem;
    align-items: center;
    display: flex;
    line-height: 1.8;
    padding: 0;
  }
}
.page-interview-details .timeline_item:nth-child(1) .timeline_time {
  display: none;
}
.page-interview-details .timeline_item:nth-last-child(1) {
  border-right: 1px solid #f6f6f6;
}
.page-interview-details .timeline_item:nth-child(odd) {
  background: #f6f6f6;
}
.page-interview-details .timeline_time {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  left: -13%;
  line-height: 1.5;
  position: absolute;
  top: -8px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .timeline_time {
    top: -20px;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .timeline_time {
    font-size: 12px;
    font-size: 0.75rem;
    top: -22px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .timeline_text {
    padding: 27px 8px;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .timeline_text {
    padding: 27px 8px;
  }
}
.page-interview-details .head-gradient {
  font-size: 20px;
  font-size: 1.25rem;
  background-image: linear-gradient(to right, #005bac, #00a0a0);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 48px;
  padding: 16px 16px 16px 10px;
  width: 87.5%;
}
@media screen and (min-width: 992px) {
  .page-interview-details .head-gradient {
    font-size: 32px;
    font-size: 2rem;
    background: #005bac;
    margin-top: 80px;
    padding: 20px;
    position: relative;
    text-align: left;
    width: 580px;
  }
  .page-interview-details .head-gradient::before, .page-interview-details .head-gradient::after {
    content: "";
    position: absolute;
  }
  .page-interview-details .head-gradient::before {
    background: #005bac;
    display: block;
    height: 100%;
    left: -1000%;
    top: 0;
    width: 1000%;
  }
  .page-interview-details .head-gradient::after {
    background-image: linear-gradient(to right, transparent, #00a0a0);
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
  }
  .page-interview-details .head-gradient .inner {
    position: relative;
    z-index: 10;
  }
}
.page-interview-details .listInterviewee_item {
  margin-right: 0 !important;
}
.page-interview-details .listInterviewee_item img {
  background-color: #e9e9e9;
  border-radius: 10px;
  margin-bottom: 20px;
  min-height: 390px;
}
@media screen and (max-width: 767px) {
  .page-interview-details .listInterviewee_item {
    width: 48%;
  }
}
.page-interview-details .section-schedule {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-interview-details .section-schedule {
    margin-top: 40px;
  }
}
.page-interview-details .section-schedule .head-section {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-interview-details .section-schedule .head-section {
    margin: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-interview-details .section-schedule .head-section {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-interview-details .section-article {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
}
.page-interview-details .section-article .showmore {
  height: 40px;
  width: 160px;
}

.video-backdrop {
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9998;
}

.video-modal {
  left: 50%;
  max-height: 90vh;
  max-width: 90vw;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}
.video-modal iframe {
  height: 45vw;
  max-height: 574px;
  max-width: 1020px;
  min-height: 180px;
  min-width: 320px;
  width: 80vw;
}
@media (min-width: 768px) and (max-width: 991px) {
  .video-modal iframe {
    height: 47.8vw;
    width: 85vw;
  }
}
@media screen and (max-width: 767px) {
  .video-modal iframe {
    height: 50.6vw;
    width: 90vw;
  }
}

.modal-open {
  overflow: hidden;
}

.page-talk .mainvisual-blue {
  background-image: url("/assets/images/talk/mainimages-sp.jpg");
}
@media screen and (min-width: 992px) {
  .page-talk .mainvisual-blue {
    background-image: url("/assets/images/talk/mainimages-pc.jpg");
  }
}
.page-talk .btn-more {
  align-items: center;
  background: #37373c;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  margin-top: 8px;
  position: relative;
  width: 100%;
}
.page-talk .btn-more::after {
  font-size: 10px;
  font-size: 0.625rem;
  content: "\f002";
  display: inline-block;
  font-family: "recruit_icon";
  height: 6px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  width: 10px;
}
@media (min-width: 768px) {
  .page-talk .btn-more {
    display: none;
  }
}
.page-talk .listCrosstalk {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-talk .listCrosstalk {
    margin-top: 60px;
  }
}
.page-talk .listCrosstalk_item {
  width: 100%;
}
.page-talk .listCrosstalk_item:nth-child(n+2) {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .page-talk .listCrosstalk_item:nth-child(2) {
    margin-top: 0;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talk .listCrosstalk_item {
    margin-right: 2.9%;
    width: 48.54%;
  }
  .page-talk .listCrosstalk_item:nth-child(2n) {
    margin-right: 0;
  }
  .page-talk .listCrosstalk_item:nth-child(n+3) {
    margin-top: 32px;
  }
}
@media screen and (min-width: 992px) {
  .page-talk .listCrosstalk_item {
    margin-right: 2.45%;
    width: 48.77%;
  }
  .page-talk .listCrosstalk_item:nth-child(2n) {
    margin-right: 0;
  }
  .page-talk .listCrosstalk_item:nth-child(n+3) {
    margin-top: 40px;
  }
}
.page-talk .listCrosstalk_link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  width: 100%;
}
.page-talk .listCrosstalk_link::before, .page-talk .listCrosstalk_link::after {
  border-style: solid;
  border-width: 8px;
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 10;
}
@media (min-width: 768px) {
  .page-talk .listCrosstalk_link::before, .page-talk .listCrosstalk_link::after {
    border-width: 10px;
  }
}
.page-talk .listCrosstalk_link::before {
  border-color: #fff transparent transparent #fff;
  left: 0;
  top: 0;
}
.page-talk .listCrosstalk_link::after {
  border-color: transparent #fff #fff transparent;
  right: 0;
  top: calc(45vw - 16px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talk .listCrosstalk_link::after {
    top: calc(21.48vw - 16px);
  }
}
@media screen and (min-width: 992px) {
  .page-talk .listCrosstalk_link::after {
    top: 216px;
  }
}
@media (min-width: 768px) {
  .page-talk .listCrosstalk_link:hover .listCrosstalk_img::after {
    opacity: 0.8;
  }
  .page-talk .listCrosstalk_link:hover .hover {
    right: 0;
  }
}
.page-talk .listCrosstalk_img {
  height: 45vw;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.page-talk .listCrosstalk_img img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.page-talk .listCrosstalk_img::before {
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talk .listCrosstalk_img {
    height: 21.48vw;
  }
}
@media screen and (min-width: 992px) {
  .page-talk .listCrosstalk_img {
    height: 236px;
  }
}
.page-talk .listCrosstalk_title {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 16px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .page-talk .listCrosstalk_title {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 20px;
  }
}
.page-talk .listCrosstalk .hover {
  align-items: center;
  background-color: rgba(0, 91, 172, 0.8);
  background-image: url("/assets/images/filtter.svg");
  background-repeat: repeat;
  background-size: 100px 100px;
  content: "";
  display: flex;
  height: 100%;
  justify-content: center;
  position: absolute;
  right: 100%;
  top: 0;
  transition: 0.3s;
  width: 100%;
}
.page-talk .listCrosstalk .hover_text {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  text-decoration: underline;
  z-index: 2;
}
.page-talk .listCrosstalk .hover .icon {
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "recruit_icon";
  margin-left: 4px;
  margin-top: 2px;
  position: absolute;
  width: 6px;
}
.page-talkDetails .talkerList {
  margin-top: 32px;
  padding: 0 10px;
}
@media (min-width: 768px) {
  .page-talkDetails .talkerList {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList {
    padding: 0;
  }
}
.page-talkDetails .talkerList_item {
  display: flex;
  overflow: hidden;
}
.page-talkDetails .talkerList_item:nth-child(n+2) {
  margin-top: 16px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talkDetails .talkerList_item {
    margin-right: 2vw;
    width: 48.8%;
  }
  .page-talkDetails .talkerList_item:nth-child(2n) {
    margin-right: 0;
  }
  .page-talkDetails .talkerList_item:nth-child(2) {
    margin-top: 0;
  }
  .page-talkDetails .talkerList_item:nth-child(n+3) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_item {
    margin-right: 20px;
    width: 48.6%;
  }
  .page-talkDetails .talkerList_item:nth-child(2n) {
    margin-right: 0;
  }
  .page-talkDetails .talkerList_item:nth-child(2) {
    margin-top: 0;
  }
  .page-talkDetails .talkerList_item:nth-child(n+3) {
    margin-top: 16px;
  }
}
.page-talkDetails .talkerList_img {
  height: 32.81vw;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  width: 32.81vw;
}
.page-talkDetails .talkerList_img img {
  height: 100%;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talkDetails .talkerList_img {
    height: 18.36vw;
    width: 18.36vw;
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_img {
    height: 136px;
    width: 136px;
  }
}
.page-talkDetails .talkerList_text {
  align-items: flex-start;
  background: #37373c;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8px 16px;
  width: calc(100% - 32.81vw);
}
@media (min-width: 768px) {
  .page-talkDetails .talkerList_text {
    width: calc(100% - 18.36vw);
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_text {
    width: calc(100% - 136px);
  }
}
.page-talkDetails .talkerList_initial {
  font-size: 18px;
  font-size: 1.125rem;
  font-family: "Raleway", sans-serif;
  font-weight: 800;
  line-height: 1.16;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_initial {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
.page-talkDetails .talkerList_data {
  font-size: 10px;
  font-size: 0.625rem;
  color: #d6d6d6;
  font-weight: normal;
  line-height: 1.5;
  margin-top: 4px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_data {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.page-talkDetails .talkerList_department {
  font-size: 10px;
  font-size: 0.625rem;
  color: #fff;
  line-height: 1.5;
  margin-top: 4px;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .talkerList_department {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.page-talkDetails .listArticleTag {
  border-bottom: 1px solid #dfdfdf;
  border-top: 1px solid #dfdfdf;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 32px 10px 0;
  padding: 12px 24px 12px 20px;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talkDetails .listArticleTag {
    margin: 32px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .listArticleTag {
    margin: 40px 0 0;
    padding: 12px 24px 12px 32px;
  }
}
.page-talkDetails .listArticleTag::before {
  background-image: url("/assets/images/icon/tag.svg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  content: "";
  height: 16px;
  left: 0;
  position: absolute;
  top: 22px;
  width: 16px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .listArticleTag::before {
    height: 20px;
    top: 24px;
    width: 20px;
  }
}
.page-talkDetails .listArticleTag_item {
  margin: 4px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .listArticleTag_item {
    margin: 6px;
  }
}
.page-talkDetails .listArticleTag_link {
  font-size: 12px;
  font-size: 0.75rem;
  border: 1px solid #d6d6d6;
  border-radius: 50px;
  color: #000;
  display: inline-block;
  line-height: 1.5;
  padding: 4px 8px;
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .listArticleTag_link {
    font-size: 14px;
    font-size: 0.875rem;
    padding: 3px 11px;
  }
}
.page-talkDetails .listArticleTag_link:hover {
  background: #000;
  border-color: #000;
  color: #fff;
}
.page-talkDetails .head-gradient {
  font-size: 20px;
  font-size: 1.25rem;
  background-image: linear-gradient(to right, #005bac, #00a0a0);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 32px;
  padding: 16px 16px 16px 10px;
  width: 87.5%;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .head-gradient {
    font-size: 32px;
    font-size: 2rem;
    background: #005bac;
    padding: 20px;
    position: relative;
    text-align: left;
    width: 580px;
  }
  .page-talkDetails .head-gradient::before, .page-talkDetails .head-gradient::after {
    content: "";
    position: absolute;
  }
  .page-talkDetails .head-gradient::before {
    background: #005bac;
    display: block;
    height: 100%;
    left: -1000%;
    top: 0;
    width: 1000%;
  }
  .page-talkDetails .head-gradient::after {
    background-image: linear-gradient(to right, transparent, #00a0a0);
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
  }
  .page-talkDetails .head-gradient .inner {
    position: relative;
    z-index: 10;
  }
}
.page-talkDetails .text-talk {
  font-size: 14px;
  font-size: 0.875rem;
  color: #000;
  display: flex;
  line-height: 1.8;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .text-talk {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-talkDetails .text-talk .name {
  display: inline-block;
  font-weight: bold;
  margin-right: 8px;
  min-width: 40px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .text-talk .name {
    margin-right: 12px;
  }
}
.page-talkDetails .text-talk + .head-article, .page-talkDetails .text-talk + .head-question {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .text-talk + .head-article, .page-talkDetails .text-talk + .head-question {
    margin-top: 40px;
  }
}
.page-talkDetails .text-talk + .text-talk {
  margin-top: 16px;
}
.page-talkDetails .section-data {
  padding-top: 0;
}
.page-talkDetails .section-schedule {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .section-schedule {
    margin-top: 40px;
  }
}
.page-talkDetails .section-schedule .head-section {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.4;
  margin: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-talkDetails .section-schedule .head-section {
    margin: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-talkDetails .section-schedule .head-section {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-talkDetails .section-schedule + .head-gradient {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .section-schedule + .head-gradient {
    margin-top: 80px;
  }
}
.page-talkDetails .section-article {
  border-bottom: 1px solid #dfdfdf;
  padding: 32px 0 48px;
}
@media screen and (min-width: 992px) {
  .page-talkDetails .section-article {
    padding: 48px 0 80px;
  }
  .page-talkDetails .section-article .section_inner {
    width: calc(100% - 40px);
  }
}

@font-face {
  font-family: "recruit_icon";
  font-style: normal;
  font-weight: normal;
  src: url("/assets/fonts/recruit_icon.eot?1609125714240");
  src: url("/assets/fonts/recruit_icon.woff?1609125714240") format("woff"), url("/assets/fonts/recruit_icon.ttf?1609125714240") format("truetype");
}
.icon {
  font-size: 13px;
  font-size: 0.8125rem;
}

.icon::before {
  display: inline-block;
  font-family: "recruit_icon";
  font-size: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  speak: none;
  text-decoration: none;
  text-transform: none;
}

a .icon {
  display: inline-block;
}

.icon-lg {
  font-size: 1.3333333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.icon-2x {
  font-size: 2em;
}

.icon-3x {
  font-size: 3em;
}

.icon-4x {
  font-size: 4em;
}

.icon-5x {
  font-size: 5em;
}

.icon-fw {
  text-align: center;
  width: 1.2857142857em;
}

.icon-back::before {
  content: "\f001";
}

.icon-arrow_down::before {
  content: "\f002";
}

.icon-arrow_left::before {
  content: "\f003";
}

.icon-arrow_right::before {
  content: "\f004";
}

.icon-arrow_up::before {
  content: "\f005";
}

.icon-check::before {
  content: "\f006";
}

.icon-close::before {
  content: "\f007";
}

.icon-tag::before {
  content: "\f008";
}

.icon-minus::before {
  content: "\f009";
}

.icon-plus::before {
  content: "\f00a";
}

.icon-popup::before {
  content: "\f00b";
}

.icon-menu::before {
  content: "\f00c";
}

.page-jobs .mainvisual {
  background-image: url("/assets/images/careers/mainvisual-career.jpg");
}
.page-jobs .resultTitle span {
  display: inline-block;
}
.page-jobs .resultTitle_main, .page-jobs .resultTitle .num_result {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .page-jobs .resultTitle_main, .page-jobs .resultTitle .num_result {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-jobs .resultTitle .num_main {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .page-jobs .resultTitle .num_main {
    margin-left: 20px;
  }
}
.page-jobs .resultTitle .num_all {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}
.page-jobs .section-result {
  padding-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-jobs .section-result {
    padding-top: 60px;
  }
}
.page-jobsDetail .mainvisual {
  background-image: url("/assets/images/careers/mainvisual-career.jpg");
}
.page-jobsDetail .section_title-small {
  font-size: 48px;
  font-size: 3rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .page-jobsDetail .section_title-small {
    font-size: 32px;
    font-size: 2rem;
  }
}
.page-jobsDetail .info {
  display: flex;
  gap: 5px;
  justify-content: center;
  margin-bottom: 60px;
}
.page-jobsDetail .info_label {
  background-color: #f5f9fc;
  border-radius: 20px;
  color: #005bab;
  padding: 4px 15px;
  font-size: 12px;
  font-size: 0.75rem;
}
.page-jobsDetail .description {
  padding-top: 120px;
}
.page-jobsDetail .descriptionBox {
  border: 1px solid #1d1d1d;
  border-radius: 10px;
  margin-bottom: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .page-jobsDetail .descriptionBox {
    margin-top: 40px;
  }
}
.page-jobsDetail .description_item a {
  word-wrap: break-word;
}
.page-jobsDetail .description_item:first-child .description_title {
  border-top: none;
}
.page-jobsDetail .description_title {
  font-size: 20px;
  font-size: 1.25rem;
  border-bottom: 1px solid #1d1d1d;
  border-top: 1px solid #1d1d1d;
  padding: 16px;
}
.page-jobsDetail .description_text {
  font-size: 16px;
  font-size: 1rem;
  border-top: 1px solid #d6d6d6;
  line-height: 1.8;
  padding: 16px;
}
.page-jobsDetail .returnTop {
  text-align: center;
}
.page-jobsDetail .returnTop a:hover {
  text-decoration: none;
}
.page-jobsDetail .returnTop .text {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .page-jobsDetail .returnTop .text {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-jobsDetail .searchedJobList {
  margin-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 992px) {
  .page-jobsDetail .searchedJobList .inner {
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .page-jobsDetail .searchedJobList .item_label {
    font-size: 12px;
    font-size: 0.75rem;
    height: 26px;
    line-height: 26px;
    width: 108px;
  }
}
@media screen and (min-width: 992px) {
  .page-jobsDetail .searchedJobList .item_name {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
@media screen and (min-width: 992px) {
  .page-jobsDetail .searchedJobList .item_other + .item_other {
    margin-top: 8px;
  }
  .page-jobsDetail .searchedJobList .item_other .other_head, .page-jobsDetail .searchedJobList .item_other .other_detail {
    font-size: 14px;
    font-size: 0.875rem;
  }
  .page-jobsDetail .searchedJobList .item_other .other_head {
    height: 28px;
    width: 76px;
  }
  .page-jobsDetail .searchedJobList .item_other .other_detail {
    padding-left: 8px;
  }
}
@media screen and (min-width: 992px) {
  .page-jobsDetail .searchedJobList .btn-blue {
    font-size: 14px;
    font-size: 0.875rem;
    align-items: center;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    width: 200px;
  }
}
.page-jobsDetail .relatedJob {
  background-image: url("/assets/images/lightblue_bg.jpg");
  padding: 60px 0;
}

.jobs {
  background-image: url("/assets/images/lightblue_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .jobs {
    padding: 60px 0;
  }
}
.jobs_inner {
  margin: auto;
  max-width: 1200px;
  width: 92%;
}
.jobs_categoryFilter {
  margin-bottom: 60px;
}
.jobs_categoryFilterTitle {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}
.jobs_categoryList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
@media screen and (max-width: 767px) {
  .jobs_categoryList {
    gap: 10px;
    margin: 0 auto 40px;
    width: 92%;
  }
}
.jobs_categoryList .button-filter {
  background-color: #fff;
  border: none;
  border-bottom: 1px solid #005bab;
  border-radius: 5px 5px 0 0;
  box-sizing: border-box;
  color: #8d8d8d;
  height: 108px;
  font-size: 20px;
  font-size: 1.25rem;
}
.jobs_categoryList .button-filter:hover {
  background-color: #f5f9fc;
  color: #005bab;
}
@media screen and (max-width: 767px) {
  .jobs_categoryList .button-filter {
    border: 1px solid #e9e9e9;
    border-radius: 10px;
    height: 48px;
    width: 168px;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.jobs_categoryList .button-filter.selected {
  background-color: unset;
  border-bottom: none;
  border-left: 1px solid #005bab;
  border-right: 1px solid #005bab;
  border-top: 1px solid #005bab;
  color: #005bab;
  font-weight: 700;
  position: relative;
}
.jobs_categoryList .button-filter.selected:hover {
  background-color: #f5f9fc;
}
@media screen and (max-width: 767px) {
  .jobs_categoryList .button-filter.selected {
    border: 1px solid #005bab;
    border-radius: 10px;
  }
}
.jobs_jobfilter {
  margin-bottom: 20px;
}
.jobs_jobfilterTitle {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.jobs_jobfilterList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jobs_areafilter {
  margin-bottom: 20px;
}
.jobs_areafilterTitle {
  color: #333;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
.jobs_areafilterList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.jobs_noResultsMessage {
  align-items: center;
  color: #005bab;
  display: flex;
  justify-content: center;
  margin: auto;
  padding: 60px 0;
  font-size: 20px;
  font-size: 1.25rem;
}
.jobs_noResultsMessage img {
  height: 24px;
  margin-right: 8px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .jobs_noResultsMessage {
    font-size: 16px;
    font-size: 1rem;
  }
  .jobs_noResultsMessage img {
    height: 20px;
    width: 20px;
  }
}
.jobs .hidden-checkbox, .jobs .hidden-radio, .jobs .js-hide-shougaisha, .jobs .js-hide-tokyo {
  display: none;
}

.button-filter {
  background-color: #fff;
  border: 1px solid #1d1d1d;
  border-radius: 10px;
  color: #333;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-size: 14px;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.button-filter:hover {
  background-color: #8d8d8d;
  color: #fff;
}
.button-filter.selected {
  background-color: #1d1d1d;
  color: #fff;
}
.button-filter.selected .icon {
  margin-left: 5px;
}

.page-welfare .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-welfare .section-accordion {
    padding-top: 48px;
  }
}
.page-welfare .section-accordion .head-border + .accordion-plus {
  margin-top: 60px;
}

.page-philosophy .mainvisual {
  background-image: url("/assets/images/top-message/mainvisual-top-message.jpg");
}
.page-philosophy .mainvisual-blue {
  background-color: #005bac;
  background-image: url("/assets/images/philosophy/mainimages.jpg");
  background-position: top 0 right -220px;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  .page-philosophy .mainvisual-blue {
    background-position: center;
    background-size: 118vw auto;
  }
}
@media screen and (min-width: 992px) {
  .page-philosophy .mainvisual-blue {
    background-position: center;
    background-size: cover;
  }
}
.page-philosophy .fillImageBox {
  height: 75vw;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.page-philosophy .fillImageBox img {
  height: 100%;
  left: 50%;
  max-width: none;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: auto;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .fillImageBox {
    height: 38.5vw;
  }
}
@media screen and (min-width: 992px) {
  .page-philosophy .fillImageBox {
    height: 38.7vw;
  }
}
.page-philosophy .section-philosophy {
  padding-top: 80px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .section-philosophy .head-centerBlue {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .only-mobile {
    display: none;
  }
}
.page-philosophy .boxGray {
  background: #f6f6f6;
  margin-top: 48px;
  padding: 48px 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .boxGray {
    margin: 48px 40px 0;
    padding: 48px;
  }
}
@media screen and (min-width: 992px) {
  .page-philosophy .boxGray {
    margin-top: 80px;
    padding: 80px;
  }
}
.page-philosophy .boxGray .head-centerBlue:first-child {
  margin-top: 0;
}
.page-philosophy .boxGray .head-centerBlue + .text-main {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-philosophy .boxGray .head-centerBlue + .text-main {
    margin-top: 40px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .boxGray .head-centerBlue {
    margin-top: 40px;
  }
}
.page-philosophy .text-notice {
  line-height: 1.8;
  margin-top: 16px;
  padding: 0 10px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-philosophy .text-notice {
    margin: 16px 40px 0;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-philosophy .text-notice {
    margin: 20px 0 0;
    padding: 0;
  }
}

.page-environment .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
}
.page-environment .section_img {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 0;
  padding: 0 10px;
}
.page-environment .section_img li {
  width: calc(50% - 20px);
}
.page-environment .section_img .figure_img {
  margin: 0 auto;
  width: 25vw;
}
.page-environment .section_img .figure_text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.7;
  margin-top: 16px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-environment .section_img {
    width: 480px;
  }
  .page-environment .section_img li {
    width: calc(50% - 40px);
  }
  .page-environment .section_img .figure_img {
    margin: 0 auto;
    width: 15.6vw;
  }
  .page-environment .section_img .figure_text {
    margin-top: 20px;
  }
}
@media screen and (min-width: 992px) {
  .page-environment .section_img {
    justify-content: center;
  }
  .page-environment .section_img li {
    width: 200px;
  }
  .page-environment .section_img li:nth-child(2) {
    margin-left: 80px;
  }
  .page-environment .section_img .figure_img {
    margin: 0 auto;
    width: 120px;
  }
  .page-environment .section_img .figure_text {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-environment .infoCard_description {
    height: 120px;
  }
}
.page-environment .section-support {
  padding-top: 80px;
}
@media screen and (min-width: 992px) {
  .page-environment .section-support {
    padding-top: 120px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-environment .section-support .head-centerBlue {
    margin-top: 40px;
  }
}
.page-environment .section-support .head-centerBlue + .section_textBox {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-environment .section-support .head-centerBlue + .section_textBox {
    margin-top: 40px;
  }
}

.page-company .mainvisual {
  background-image: url("/assets/images/top-message/mainvisual-top-message.jpg");
}
.page-company .mainvisual-blue {
  background-color: #005bac;
  background-image: url("/assets/images/philosophy/mainimages.jpg");
  background-position: top 0 right -220px;
  background-size: auto 100%;
}
@media (min-width: 768px) {
  .page-company .mainvisual-blue {
    background-position: center;
    background-size: 118vw auto;
  }
}
@media screen and (min-width: 992px) {
  .page-company .mainvisual-blue {
    background-position: center;
    background-size: cover;
  }
}
.page-company .navPage {
  margin: 16px 10px 0;
}
@media (min-width: 768px) {
  .page-company .navPage {
    margin: 16px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-company .navPage {
    margin: 48px auto 0;
    width: 980px;
  }
}
@media (min-width: 768px) {
  .page-company .navPageList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .page-company .navPageList {
    justify-content: flex-start;
    margin-right: -40px;
  }
}
.page-company .navPageList_item {
  font-size: 14px;
  font-size: 0.875rem;
  border-bottom: 1px solid #d6d6d6;
  font-weight: bold;
  line-height: 1.4;
  list-style: none;
  padding: 32px 0 0;
  position: relative;
  width: 100%;
}
.page-company .navPageList_item::after {
  font-size: 10px;
  font-size: 0.625rem;
  bottom: 10px;
  content: "\f002";
  font-family: "recruit_icon";
  height: 15px;
  position: absolute;
  right: 0;
  transform: scale(0.8);
  width: 10px;
}
.page-company .navPageList_item:hover::after {
  color: #005bac;
}
@media (min-width: 768px) {
  .page-company .navPageList_item {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 992px) {
  .page-company .navPageList_item {
    margin-right: 40px;
    width: calc(33.3333333333% - 40px);
  }
}
.page-company .navPageList_item a {
  display: inline-block;
  padding-bottom: 8px;
  text-decoration: none;
  width: 100%;
}
.page-company .borderBottomList {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .page-company .borderBottomList {
    display: flex;
  }
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList {
    padding-bottom: 20px;
  }
}
.page-company .borderBottomList_head, .page-company .borderBottomList_detail {
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList_head, .page-company .borderBottomList_detail {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-company .borderBottomList_head {
  font-weight: bold;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .page-company .borderBottomList_head {
    display: inline-block;
    margin-top: 2px;
    width: 100px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList_head {
    width: 160px;
  }
}
.page-company .borderBottomList_detail {
  line-height: 1.8;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .page-company .borderBottomList_detail {
    margin: 0 0 0 16px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList_detail {
    margin: 0 0 0 20px;
  }
}
.page-company .borderBottomList + .borderBottomList {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList + .borderBottomList {
    margin-top: 20px;
  }
}
.page-company .borderBottomList .iconTextBox {
  align-items: center;
  display: flex;
}
.page-company .borderBottomList .iconText_img {
  margin-right: 15px;
  width: 56px;
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList .iconText_img {
    margin-right: 20px;
  }
}
.page-company .borderBottomList .iconText_img img {
  height: auto;
  width: 100%;
}
.page-company .borderBottomList a {
  text-decoration: none;
}
.page-company .borderBottomList + .notice {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  line-height: 1.5;
  margin-top: 16px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .page-company .borderBottomList + .notice {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 20px;
  }
}
.page-company .infoCard_description {
  height: 120px;
}
.page-company .detailList + .head-centerBlue {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-company .detailList + .head-centerBlue {
    margin-top: 80px;
  }
}
.page-company .cardList {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 48px;
}
@media (min-width: 768px) {
  .page-company .cardList {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media screen and (min-width: 992px) {
  .page-company .cardList {
    margin-top: 100px;
  }
}
.page-company .cardList_item {
  border: 1px solid #d6d6d6;
  height: 193px;
  padding: 16px;
  width: 100%;
}
.page-company .cardList_item:nth-child(n+2) {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-company .cardList_item {
    width: calc(50% - 10px);
  }
  .page-company .cardList_item:nth-child(2) {
    margin: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-company .cardList_item {
    height: 266px;
    padding: 20px 16px;
    width: calc(50% - 30px);
  }
  .page-company .cardList_item:nth-child(n+3) {
    margin-top: 60px;
  }
}
.page-company .cardList_title {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .page-company .cardList_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-company .cardList_number {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 45px auto 0;
  width: 195px;
}
.page-company .cardList_number.is-min {
  padding-left: 10px;
}
@media screen and (min-width: 992px) {
  .page-company .cardList_number {
    margin-top: 65px;
    width: 261px;
  }
}
.page-company .cardList .number_img {
  height: auto;
  width: 60px;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .number_img {
    width: 80px;
  }
}
.page-company .cardList .number_text {
  font-size: 36px;
  font-size: 2.25rem;
  color: #005bac;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .number_text {
    font-size: 52px;
    font-size: 3.25rem;
  }
}
.page-company .cardList .number_unit {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1d1d1d;
  font-weight: normal;
  margin-left: 4px;
}
.page-company .cardList .graphBox {
  display: flex;
  line-height: 1.4;
  margin: 16px auto 0;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .graphBox {
    margin-top: 20px;
  }
}
.page-company .cardList .graphBox .label {
  line-height: 1.5;
}
.page-company .cardList .graphBox .num-ratio {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: bold;
  margin-top: 4px;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .graphBox .num-ratio {
    font-size: 40px;
    font-size: 2.5rem;
    line-height: 1.5;
  }
}
.page-company .cardList .graphBox .num-real {
  font-size: 20px;
  font-size: 1.25rem;
  color: #005bac;
  font-weight: bold;
  margin-top: 8px;
  white-space: nowrap;
}
.page-company .cardList .graphBox .num-real .unit {
  color: #1d1d1d;
  font-weight: normal;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .graphBox .num-real {
    font-size: 32px;
    font-size: 2rem;
    margin-top: 12px;
  }
}
.page-company .cardList .graphBox .unit {
  font-size: 14px;
  font-size: 0.875rem;
  margin-left: 4px;
}
@media screen and (min-width: 992px) {
  .page-company .cardList .graphBox .unit {
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-company .cardList .graph_left, .page-company .cardList .graph_right {
  min-width: 16%;
  text-align: center;
}
.page-company .cardList .graph_blue, .page-company .cardList .graph_green {
  color: #fff;
  padding: 8px 4px;
}
@media (min-width: 768px) {
  .page-company .cardList .graph_blue, .page-company .cardList .graph_green {
    padding: 12px 4px;
  }
}
.page-company .cardList .graph_blue {
  background: #005bac;
}
.page-company .cardList .graph_green {
  background: #00a0a0;
}
.page-company .cardList .graph-creator .graph_left {
  width: 46%;
}
.page-company .cardList .graph-creator .graph_right {
  width: 54%;
}
.page-company .cardList .graph-gender .graph_left {
  width: 60%;
}
.page-company .cardList .graph-gender .graph_right {
  width: 40%;
}
.page-company .cardList .graph-nationality .graph_left {
  width: 76%;
}
.page-company .cardList .graph-nationality .graph_right {
  width: 24%;
}
.page-company .cardList + .notice {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  line-height: 1.5;
  margin-top: 16px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .page-company .cardList + .notice {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 20px;
  }
}
.page-company .textList {
  font-size: 12px;
  font-size: 0.75rem;
  display: flex;
  flex-direction: column;
  line-height: 1.5;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .page-company .textList {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 60px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .textList {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-company .textList .icon {
  font-size: 12px;
  font-size: 0.75rem;
  margin-left: 8px;
}
.page-company .textList li:nth-child(n+2) {
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-company .textList li:nth-child(n+2) {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  .page-company .textList li {
    width: calc(50% - 44px);
  }
  .page-company .textList li:nth-child(2) {
    margin: 0;
  }
  .page-company .textList li:nth-child(n+3) {
    margin-top: 16px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .textList li:nth-child(n+3) {
    margin-top: 24px;
  }
}
.page-company .textList a {
  text-decoration: none;
}
.page-company .section_textBox + .head-centerBlue {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-company .section_textBox + .head-centerBlue {
    margin-top: 80px;
  }
}
.page-company .section_imgBox {
  margin-top: 32px;
  width: 100%;
}
.page-company .section_imgBox img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-company .section_imgBox {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .page-company .section-company {
    padding-top: 48px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-company {
    padding-top: 80px;
  }
}
@media (min-width: 768px) {
  .page-company .section-business {
    padding-top: 80px;
  }
  .page-company .section-business .head-border + .head-centerBlue {
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-business {
    padding-top: 120px;
  }
  .page-company .section-business .head-border + .head-centerBlue {
    margin-top: 60px;
  }
}
.page-company .section-business .section_textBox {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-company .section-business .section_textBox {
    margin-top: 40px;
  }
}
.page-company .section-business .section_textBox + .notice {
  font-size: 10px;
  font-size: 0.625rem;
  color: #666;
  line-height: 1.5;
  margin-top: 16px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  .page-company .section-business .section_textBox + .notice {
    font-size: 12px;
    font-size: 0.75rem;
    margin-top: 20px;
  }
}
.page-company .section-business .section_imgBox + .section_textBox {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-company .section-business .section_imgBox + .section_textBox {
    margin-top: 60px;
  }
}
.page-company .section-business .text-main.is-attention {
  margin-top: 32px;
}
@media (min-width: 768px) {
  .page-company .section-business .text-main.is-attention {
    margin-top: 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-business .text-main.is-attention {
    margin-top: 40px;
  }
}
.page-company .section-partner {
  padding-top: 80px;
}
@media screen and (min-width: 992px) {
  .page-company .section-partner {
    padding-top: 120px;
  }
}
.page-company .section-place {
  padding-top: 100px;
}
@media (min-width: 768px) {
  .page-company .section-place {
    padding-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-place {
    padding-top: 227px;
  }
}
.page-company .section-place .section_imgBox {
  margin-top: 40px;
}
.page-company .section-place .section_textBox {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-company .section-place .section_textBox {
    margin-top: 60px;
  }
}
.page-company .section-place .borderBottomList {
  flex-direction: column;
  padding-bottom: 12px;
}
.page-company .section-place .borderBottomList_head {
  font-size: 18px;
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .page-company .section-place .borderBottomList {
    margin-top: 16px;
    padding-bottom: 16px;
  }
  .page-company .section-place .borderBottomList_head {
    margin: 0;
    width: 100%;
  }
  .page-company .section-place .borderBottomList_detail {
    margin: 8px 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-place .borderBottomList {
    padding-bottom: 20px;
  }
  .page-company .section-place .borderBottomList_head {
    font-size: 24px;
    font-size: 1.5rem;
  }
  .page-company .section-place .borderBottomList_detail {
    margin: 16px 0 0;
  }
}
.page-company .section-place .borderBottomList + .borderBottomList {
  margin-top: 20px;
}
.page-company .section-place .borderBottomList + .text-main {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .page-company .section-place .borderBottomList + .text-main {
    margin-top: 32px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-place .borderBottomList + .text-main {
    margin-top: 40px;
  }
}
@media (min-width: 768px) {
  .page-company .section-group {
    padding-top: 80px;
  }
}
@media screen and (min-width: 992px) {
  .page-company .section-group {
    padding-top: 120px;
  }
}

.page-topMessage .mainvisual {
  background-image: url("/assets/images/top-message/mainvisual-top-message.jpg");
  margin-bottom: 20px;
}
.page-topMessage .about {
  background-color: unset;
}
.page-topMessage .about .section_inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .page-topMessage .about .section_inner {
    align-items: center;
    flex-direction: column;
  }
}
.page-topMessage .about_title {
  font-size: 48px;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .page-topMessage .about_title {
    font-size: 32px;
    font-size: 2rem;
  }
}
.page-topMessage .about_image {
  border-radius: 10px;
  margin-left: -100px;
  max-width: 660px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .page-topMessage .about_image {
    margin-left: 0;
    margin-top: -20px;
    width: 100%;
  }
}
.page-topMessage .section-message .text-main + .head-centerBlue {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-topMessage .section-message .text-main + .head-centerBlue {
    margin-top: 80px;
  }
}
.page-topMessage .section-message .text-main:last-child {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-topMessage .section-message .text-main:last-child {
    margin-top: 80px;
  }
}
.page-topMessage .section-message .head-centerBlue + .text-main {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-topMessage .section-message .head-centerBlue + .text-main {
    margin-top: 40px;
  }
}

.page-training .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
  margin-bottom: 20px;
}
.page-training .skillUpTable {
  width: 600px;
}
@media (min-width: 768px) {
  .page-training .skillUpTable {
    width: 100%;
  }
}
.page-training .skillUpTableBox {
  margin-top: 40px;
  overflow-x: scroll;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-training .skillUpTableBox {
    margin-top: 60px;
    overflow: hidden;
  }
}
.page-training .skillUpTable th, .page-training .skillUpTable td {
  font-size: 14px;
  font-size: 0.875rem;
  border: 1px solid #d6d6d6;
  font-weight: normal;
  line-height: 1.4;
  padding: 14px 8px;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .page-training .skillUpTable th, .page-training .skillUpTable td {
    font-size: 16px;
    font-size: 1rem;
    padding: 14px 12px;
  }
}
.page-training .skillUpTable th {
  background: #f6f6f6;
}
.page-training .skillUpTable thead th {
  padding: 8px 14px;
  width: 166px;
}
.page-training .skillUpTable thead th:first-child {
  width: 98px;
}
@media (min-width: 768px) {
  .page-training .skillUpTable thead th:first-child {
    width: 16.4%;
  }
}
@media screen and (min-width: 992px) {
  .page-training .skillUpTable thead th {
    padding: 12px 14px;
    width: 282px;
  }
  .page-training .skillUpTable thead th:first-child {
    width: 129px;
  }
}
.page-training .skillUpTable tbody tr:last-child td {
  padding: 8px 14px;
}
.page-training .skillUpTable .is-blue {
  background: #d2e6ff;
}
.page-training .skillUpTable .is-green {
  background: #dcf0f0;
}
.page-training .head-border + .section_textBox {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-training .head-border + .section_textBox {
    margin-top: 60px;
  }
}
.page-training .head-centerBlue:first-child {
  margin-top: 0;
}
.page-training .head-centerBlue + .section_textBox {
  margin-top: 32px;
}
.page-training .head-sub {
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .page-training .head-sub {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.page-training .head-sub + .text-main {
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .page-training .head-sub + .text-main {
    margin-top: 12px;
  }
}
.page-training .text-sub {
  font-size: 12px;
  font-size: 0.75rem;
  color: #666;
  line-height: 1.8;
  margin-top: 8px;
}
@media screen and (min-width: 992px) {
  .page-training .text-sub {
    margin-top: 12px;
  }
}
.page-training .anchor + .section_textBox {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-training .anchor + .section_textBox {
    margin-top: 40px;
  }
}
.page-training .anchor + .head-centerBlue {
  margin-top: 0;
}
@media (min-width: 768px) {
  .page-training .section {
    padding-top: 48px;
  }
}
@media screen and (min-width: 992px) {
  .page-training .section {
    padding-top: 80px;
  }
}
.page-training .section_textBox.is-borderBottom {
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 16px;
}
.page-training .section_textBox.is-borderBottom + .section_textBox {
  margin-top: 16px;
}
.page-training .section-project {
  padding-top: 80px;
}
.page-training .section-project .btnBox {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-training .section-project .btnBox {
    margin-top: 60px;
  }
}
.page-trainingMessage .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
}
.page-trainingMessage .head-gradient {
  font-size: 14px;
  font-size: 0.875rem;
  background-image: linear-gradient(to right, #005bac, #00a0a0);
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  padding: 16px 10px;
  position: relative;
  width: 95.3vw;
}
.page-trainingMessage .head-gradient .inner {
  position: relative;
  z-index: 10;
}
.page-trainingMessage .head-gradient .inner-sub {
  display: block;
  font-weight: normal;
  margin-top: 4px;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) {
  .page-trainingMessage .head-gradient {
    font-size: 16px;
    font-size: 1rem;
    padding: 16px 14px 16px 40px;
    width: 50%;
  }
  .page-trainingMessage .head-gradient .inner-sub {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .head-gradient {
    font-size: 20px;
    font-size: 1.25rem;
    align-items: flex-end;
    background: #005bac;
    display: flex;
    flex-direction: column;
    min-width: 427px;
    padding: 20px;
    text-align: left;
    width: 41.42vw;
  }
  .page-trainingMessage .head-gradient::before, .page-trainingMessage .head-gradient::after {
    content: "";
    position: absolute;
  }
  .page-trainingMessage .head-gradient::before {
    background: #005bac;
    display: block;
    height: 100%;
    left: -1000%;
    top: 0;
    width: 1000%;
  }
  .page-trainingMessage .head-gradient::after {
    background-image: linear-gradient(to right, transparent, #00a0a0);
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
  }
  .page-trainingMessage .head-gradient .inner {
    width: 407px;
  }
  .page-trainingMessage .head-gradient .inner-sub {
    font-size: 16px;
    font-size: 1rem;
    margin-top: 8px;
    width: 407px;
  }
}
.page-trainingMessage .head-question {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .head-question {
    font-size: 24px;
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.page-trainingMessage .plojectFlow {
  list-style: none;
}
.page-trainingMessage .plojectFlow_item {
  align-items: center;
  border: 1px solid #d6d6d6;
  display: flex;
  padding: 16px;
  position: relative;
}
.page-trainingMessage .plojectFlow_item:nth-child(n+2) {
  margin-top: 20px;
}
.page-trainingMessage .plojectFlow_item:nth-child(n+2)::before {
  background: #d6d6d6;
  content: "";
  height: 20px;
  left: 50%;
  position: absolute;
  top: -21px;
  transform: translateX(-50%);
  width: 1px;
}
.page-trainingMessage .plojectFlow_num {
  font-size: 20px;
  font-size: 1.25rem;
  align-items: center;
  color: #005bac;
  display: flex;
  font-weight: bold;
  justify-content: center;
  line-height: 1.4;
}
.page-trainingMessage .plojectFlow_text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  margin-left: 16px;
  width: 72.5vw;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .plojectFlow_item {
    padding: 20px 80px;
  }
  .page-trainingMessage .plojectFlow_num {
    font-size: 32px;
    font-size: 2rem;
    width: 40px;
  }
  .page-trainingMessage .plojectFlow_text {
    font-size: 16px;
    font-size: 1rem;
    margin-left: 20px;
    width: 760px;
  }
}
.page-trainingMessage .textImgBox {
  margin-top: 48px;
  position: relative;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox {
    display: flex;
    justify-content: flex-end;
    margin: 80px auto 0;
    width: 980px;
  }
}
.page-trainingMessage .textImgBox_img {
  height: 60vw;
  order: 2;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox_img {
    height: 384px;
    max-width: 640px;
    overflow: hidden;
    position: absolute;
    right: 550px;
    top: 0;
    width: 45.714vw;
  }
  .page-trainingMessage .textImgBox_img img {
    height: auto;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translate(-50%, 0);
    width: 100%;
  }
}
.page-trainingMessage .textImgBox_text {
  order: 1;
  padding: 0 10px;
  position: relative;
}
@media (min-width: 768px) {
  .page-trainingMessage .textImgBox_text {
    padding: 0 40px;
  }
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox_text {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0;
    width: 980px;
  }
  .page-trainingMessage .textImgBox_text .head-question, .page-trainingMessage .textImgBox_text .text-main {
    width: 510px;
  }
}
.page-trainingMessage .textImgBox_table {
  margin: 16px auto 0;
  max-width: 820px;
  width: 100%;
}
.page-trainingMessage .textImgBox_table img.is-pc {
  display: none;
}
.page-trainingMessage .textImgBox_table img.is-sp {
  display: block;
}
.page-trainingMessage .textImgBox_table.table-flex {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 32px auto 0;
  max-width: 100%;
}
.page-trainingMessage .textImgBox_table.table-flex div {
  margin-bottom: 6px;
  width: 480px;
  width: 100%;
}
.page-trainingMessage .textImgBox_table.table-flex div img {
  width: 100%;
}
@media (min-width: 768px) {
  .page-trainingMessage .textImgBox_table.table-flex {
    align-items: center;
    display: flex;
    justify-content: space-between;
    margin: 20px auto 0;
    max-width: 100%;
  }
  .page-trainingMessage .textImgBox_table.table-flex div {
    margin-bottom: 0;
    max-width: 480px;
    width: 49%;
  }
  .page-trainingMessage .textImgBox_table.table-flex div img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-trainingMessage .textImgBox_table {
    margin: 26px auto 0;
  }
  .page-trainingMessage .textImgBox_table img.is-pc {
    display: block;
  }
  .page-trainingMessage .textImgBox_table img.is-sp {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox_table {
    margin: 40px auto 0;
  }
}
.page-trainingMessage .textImgBox_detail {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox.img-right .textImgBox_img {
    left: 550px;
    right: auto;
  }
  .page-trainingMessage .textImgBox.img-right .textImgBox_text {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    padding: 0 40px 0 0;
  }
}
.page-trainingMessage .textImgBox + .section_inner {
  margin-top: 48px;
}
.page-trainingMessage .textImgBox + .section_inner.section-challenge {
  margin-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .textImgBox + .section_inner {
    margin-top: 80px;
  }
  .page-trainingMessage .textImgBox + .section_inner.section-challenge {
    margin-top: 295px;
  }
}
.page-trainingMessage .fillImageBox {
  margin: 48px 0 0;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .fillImageBox {
    margin: 80px 0 0;
  }
}
.page-trainingMessage .fillImageBox + .section_inner {
  margin-top: 32px;
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .fillImageBox + .section_inner {
    margin-top: 60px;
  }
}
.page-trainingMessage .plojectVideo {
  height: 0;
  margin: 48px auto 0;
  max-width: 500px;
  padding-top: 56%;
  position: relative;
  width: 100%;
}
.page-trainingMessage .plojectVideo iframe {
  border: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .page-trainingMessage .plojectVideo {
    padding-top: 38%;
  }
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .plojectVideo {
    margin: 80px auto 0;
    padding-top: 30.7%;
  }
}
.page-trainingMessage .section-title {
  align-items: flex-end;
  background-image: url("/assets/images/training/message/mv.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  height: 92.5vw;
  justify-content: flex-start;
  padding-bottom: 10vw;
}
@media (min-width: 768px) {
  .page-trainingMessage .section-title {
    background-size: cover;
    height: 38.57vw;
    padding-bottom: 4.17vw;
  }
}
@media screen and (min-width: 992px) {
  .page-trainingMessage .section-title {
    padding-bottom: 6.28vw;
  }
}

.page-event .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
}
.page-event .modalImgList_itemText h3 {
  font-size: 36px;
  font-size: 2.25rem;
}
@media screen and (max-width: 767px) {
  .page-event .modalImgList_itemText h3 {
    font-size: 26px;
    font-size: 1.625rem;
  }
}
.page-event .read-more {
  padding-right: 0.7em;
  position: relative;
}
.page-event .read-more::after {
  border-right: 1px solid;
  border-top: 1px solid;
  content: "";
  display: block;
  height: 0.5em;
  position: absolute;
  right: 0;
  top: calc(0.1em + 50%);
  transform: translateY(-50%) rotate(45deg);
  width: 0.5em;
}

.page-office .mainvisual {
  background-image: url("/assets/images/welfare/mainvisual-welfare.jpg");
}
.page-office .officeNav {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
}
@media screen and (max-width: 767px) {
  .page-office .officeNav {
    grid-template-columns: 50% 50%;
  }
}
.page-office .officeNav_item {
  text-align: center;
}
.page-office .officeNav_itemLink {
  font-size: 20px;
  font-size: 1.25rem;
  align-items: center;
  border-bottom: 1px solid #d2d2d2;
  color: #d2d2d2;
  display: flex;
  font-weight: 700;
  height: 150px;
  justify-content: center;
  transition: color 0.3s;
}
.page-office .officeNav_itemLink:hover {
  border-bottom: 1px solid #1d1d1d;
  color: #1d1d1d;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-office .officeNav_itemLink {
    font-size: 16px;
    font-size: 1rem;
    height: 120px;
  }
}
.page-office .officeNav_item-active .officeNav_itemLink {
  border-bottom: 1px solid #1d1d1d;
  color: #1d1d1d;
}
.page-office .officeArea {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .page-office .officeArea {
    flex-direction: column;
  }
}
.page-office .officeArea_title {
  text-align: left;
}
.page-office .officeArea_title h3 {
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
  .page-office .officeArea_title h3 {
    font-size: 32px;
    font-size: 2rem;
  }
}
.page-office .officeArea_title p {
  color: #005bab;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1rem;
}
.page-office .officeArea-center {
  justify-content: center;
}
.page-office .officeArea-center p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-office .officeArea-center p {
    text-align: left;
  }
}
.page-office .officeArea_video {
  flex: 1;
  max-width: 740px;
}
.page-office .officeArea_video iframe {
  aspect-ratio: 16/9;
  border-radius: 10px;
  width: 100%;
}

.page-privacy .mainvisual {
  background-image: url("/assets/images/privacy/mainimages.jpg");
  background-position: top center;
  /*
  background-size: auto 100%;

  @include tb {
  	background-position: center;
  	background-size: 118vw auto;
  }

  @include is-pc {
  	background-position: center;
  	background-size: cover;
  }
  */
}
.page-privacy .section-privacy {
  padding-top: 80px;
}
.page-privacy .section_inner {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-privacy .section_inner {
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 992px) {
  .page-privacy .section_inner {
    width: calc(100% - 20px);
  }
}
.page-privacy .boxGray {
  background: #f6f6f6;
  line-height: 1.6;
  margin-top: 40px;
  padding: 32px 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-privacy .boxGray {
    padding: 32px;
  }
}
@media screen and (min-width: 992px) {
  .page-privacy .boxGray {
    margin-top: 60px;
    padding: 40px 80px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-privacy .boxGray .privacy-title {
  line-height: 1.4;
  margin-top: 32px;
  font-size: 18px;
  font-size: 1.125rem;
}
.page-privacy .boxGray .privacy-title:first-child {
  margin-top: 0;
}
@media screen and (min-width: 992px) {
  .page-privacy .boxGray .privacy-title {
    margin-top: 40px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-privacy .boxGray .privacy-contact {
  margin-top: 32px;
  text-align: right;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 992px) {
  .page-privacy .boxGray .privacy-contact {
    margin-top: 40px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-privacy .boxGray .privacy-list {
  list-style-type: none;
  padding-top: 16px;
}
.page-privacy .boxGray .privacy-list li {
  margin-top: 4px;
  padding: 0 0 0 18px;
  position: relative;
}
.page-privacy .boxGray .privacy-list li span {
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 992px) {
  .page-privacy .boxGray .privacy-list li {
    padding-left: 24px;
  }
}
.page-privacy .boxGray .text-main {
  line-height: 1.6;
  padding-top: 16px;
}
@media screen and (min-width: 992px) {
  .page-privacy .boxGray .text-main {
    padding-top: 20px;
  }
}

.page-entry {
  background: #f6f6f6;
  padding-bottom: 80px;
}
.page-entry + .breadcrumb {
  margin-top: 40px;
}
@media screen and (min-width: 992px) {
  .page-entry + .breadcrumb {
    margin-top: 48px;
  }
}
@media screen and (min-width: 992px) {
  .page-entry {
    padding-bottom: 120px;
  }
}
.page-entry .mainvisual-blue {
  background-image: url("/assets/images/entry/mainimages.jpg");
  background-position: top center;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-entry .mainvisual-blue {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .mainvisual-blue {
    margin-bottom: 48px;
  }
}
.page-entry .section-entry {
  margin: auto;
  max-width: 980px;
  padding: 32px 0 0;
  position: relative;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .section-entry {
    padding: 32px 40px 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .section-entry {
    padding: 40px 40px 0;
  }
}
.page-entry .section-entry .section_inner {
  background: #fff;
  margin: auto;
  overflow: hidden;
  padding: 44px 10px 56px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .section-entry .section_inner {
    padding: 40px 64px;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .section-entry .section_inner {
    padding: 80px 64px;
  }
}
.page-entry .section-entry .section_inner.is-rookie {
  height: 344px;
  padding: 44px 10px 116px;
  transition: all 0.2s ease;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .section-entry .section_inner.is-rookie {
    height: 320px;
    padding: 40px 64px 92px;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .section-entry .section_inner.is-rookie {
    height: 462px;
    padding: 80px 64px 105px;
  }
}
.page-entry .section-entry .section_inner.is-show {
  height: auto;
}
.page-entry .section .text-main {
  line-height: 1.6;
  padding-top: 28px;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 992px) {
  .page-entry .section .text-main {
    padding-top: 36px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.page-entry .entry-content {
  margin: auto;
  max-width: 100%;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-content {
    max-width: 740px;
  }
}
.page-entry .entry-attention {
  border: 1px solid #005bad;
  color: #005bad;
  font-weight: bold;
  line-height: 1.8;
  margin: 20px 0 0;
  padding: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-attention {
    margin: 33px 0 0;
    padding: 10px 10px 12px;
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-attention {
    line-height: 1.6;
    margin: 40px 0 0;
    padding: 18px 18px 20px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-entry .entry-recruitmentType {
  font-size: 12px;
  line-height: 1.8;
  margin: 12px 0 20px 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-recruitmentType {
    margin: 20px 0 0 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-recruitmentType {
    margin: 20px 0 0 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-entry .entry-listBlue {
  margin-left: 16px;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-listBlue {
    margin-left: 22px;
  }
}
.page-entry .entry-listBlue li {
  color: #005bac;
  font-weight: bold;
  list-style-type: disc;
}
.page-entry .entry-imgStep {
  display: none;
}
@media (min-width: 768px) {
  .page-entry .entry-imgStep {
    display: block;
    margin-top: 40px;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-imgStep {
    display: block;
    margin-top: 32px;
  }
}
.page-entry .entry-imgStep_sp {
  margin-top: 32px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-entry .entry-imgStep_sp {
    display: none;
  }
}
.page-entry .entry-listTxt {
  line-height: 1.6;
  list-style-type: none;
  padding: 0 0 8px;
  font-size: 12px;
  font-size: 0.75rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-listTxt {
    padding: 16px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-listTxt {
    font-size: 14px;
    font-size: 0.875rem;
    margin-top: 20px;
  }
}
.page-entry .entry-listTxt li {
  margin-top: 4px;
  padding: 0 0 0 16px;
  position: relative;
}
.page-entry .entry-listTxt li span {
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-listTxt li {
    padding-left: 22px;
  }
}
.page-entry .entry-orderTitle {
  color: #005bac;
  line-height: 1.4;
  margin-top: 40px;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-orderTitle {
    margin-top: 60px;
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-entry .entry-videoBox {
  padding: 32px 0 0;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-videoBox {
    padding-top: 40px;
  }
}
.page-entry .entry-videoBox iframe {
  height: 50vw;
  margin: auto;
  padding: 0 14px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-entry .entry-videoBox iframe {
    height: auto;
    min-height: 315px;
    min-width: 560px;
    padding: 0;
    width: auto;
  }
}
.page-entry .entry-videoBox_movie {
  cursor: pointer;
  height: 50vw;
  margin: auto;
  overflow: hidden;
  padding: 0 14px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .page-entry .entry-videoBox_movie {
    height: auto;
    min-height: 315px;
    min-width: 560px;
    padding: 0;
    width: 560px;
  }
}
.page-entry .entry-videoBox_comingsoon {
  align-items: center;
  background-color: #0f0f0f;
  display: flex;
  height: 50vw;
  justify-content: center;
  margin: auto;
  position: relative;
  width: calc(100% - 28px);
}
@media (min-width: 768px) {
  .page-entry .entry-videoBox_comingsoon {
    height: auto;
    min-height: 315px;
    min-width: 560px;
    width: 560px;
  }
}
.page-entry .entry-videoBox_comingsoon::after {
  background-color: rgba(0, 92, 173, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: all 0.2s ease;
  width: 100%;
  z-index: 1;
}
.page-entry .entry-videoBox_comingsoon .is-triangle {
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.page-entry .entry-videoBox_comingsoon .is-triangle::before {
  border-color: transparent transparent transparent #707070;
  border-style: solid;
  border-width: 17px 0 17px 38px;
  content: "";
  height: 0;
  left: calc(50% - 19px);
  position: absolute;
  top: calc(50% - 17px);
  width: 0;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-videoBox_comingsoon .is-triangle::before {
    border-width: 28px 0 28px 64px;
    left: calc(50% - 32px);
    top: calc(50% - 28px);
  }
}
.page-entry .entry-videoBox_comingsoon .is-triangle::after {
  border-color: transparent transparent transparent #fff;
  border-style: solid;
  border-width: 15px 0 15px 33px;
  content: "";
  height: 0;
  left: calc(50% - 18px);
  position: absolute;
  top: calc(50% - 15px);
  width: 0;
  z-index: 0;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-videoBox_comingsoon .is-triangle::after {
    border-width: 25px 0 25px 58px;
    left: calc(50% - 30px);
    top: calc(50% - 25px);
  }
}
.page-entry .entry-videoBox_comingsoon .is-text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-videoBox_comingsoon .is-text {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.page-entry .entry-videoBox_notes {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.8;
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-videoBox_notes {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-entry .entry-mailAttention {
  color: #d2001e;
  line-height: 1.8;
  margin: 12px 0 0;
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-mailAttention {
    margin: 10px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-mailAttention {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.6;
  }
}
.page-entry .entry-mailInput {
  background: #fff;
  border: 1px solid #005bac;
  border-radius: 4px;
  line-height: 1.4;
  margin: 12px 0 0;
  padding: 16px;
  width: 100%;
  font-size: 16px;
  font-size: 1rem;
}
.page-entry .entry-mailInput:-moz-placeholder {
  color: #d6d6d6;
}
.page-entry .entry-mailInput::-moz-placeholder {
  color: #d6d6d6;
}
.page-entry .entry-mailInput::-webkit-input-placeholder {
  color: #d6d6d6;
}
.page-entry .entry-mailInput:-ms-input-placeholder {
  color: #d6d6d6;
}
.page-entry .entry-mailInput.is-error {
  border: 1px solid #d2001e;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-mailInput {
    margin: 20px 0 0;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-mailInput {
    margin: 40px 0 0;
  }
}
.page-entry .entry-inputError {
  color: #d2001e;
  display: none;
  line-height: 1.2;
  padding: 8px 0 0;
  font-size: 10px;
  font-size: 0.625rem;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-inputError {
    padding: 12px 0 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.page-entry .entry-agreeTxt {
  line-height: 1.8;
  padding-top: 16px;
  text-align: center;
  font-size: 10px;
  font-size: 0.625rem;
}
@media (min-width: 768px) {
  .page-entry .entry-agreeTxt {
    padding-top: 28px;
  }
  .page-entry .entry-agreeTxt br {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-agreeTxt {
    padding-top: 36px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.page-entry .entry-linkBox, .page-entry .entry-submitBox {
  padding: 16px 24px 0;
  position: relative;
  text-align: center;
  z-index: 1;
}
.page-entry .entry-linkBox button, .page-entry .entry-submitBox button {
  width: 100%;
}
.page-entry .entry-linkBox button .inner, .page-entry .entry-submitBox button .inner {
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .entry-linkBox button, .page-entry .entry-submitBox button {
    width: 252px;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-linkBox, .page-entry .entry-submitBox {
    padding: 20px 0 0;
  }
  .page-entry .entry-linkBox button, .page-entry .entry-submitBox button {
    width: 320px;
  }
}
.page-entry .entry-linkBox {
  padding-top: 48px;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-linkBox {
    padding-top: 80px;
  }
}
.page-entry .entry-listAttention {
  color: #666;
  line-height: 1.6;
  list-style-type: none;
  padding: 24px 0 0;
  font-size: 10px;
  font-size: 0.625rem;
}
.page-entry .entry-listAttention li {
  margin-top: 4px;
  padding: 0 0 0 16px;
  position: relative;
}
.page-entry .entry-listAttention li span {
  left: 0;
  position: absolute;
  top: 0;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-listAttention li {
    padding-left: 20px;
  }
}
@media screen and (min-width: 992px) {
  .page-entry .entry-listAttention {
    padding: 52px 0 0;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.page-entry .entry-telBox {
  font-weight: bold;
  line-height: 1;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}
.page-entry .entry-telBox span {
  color: #005bac;
  display: block;
  padding: 40px 4px 16px;
  text-decoration: none;
  font-size: 28px;
  font-size: 1.75rem;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-telBox span {
    padding: 48px 4px 20px;
  }
}
.page-entry .entry-telBox a {
  text-decoration: none;
}
@media screen and (min-width: 992px) {
  .page-entry .entry-telBox {
    font-size: 16px;
    font-size: 1rem;
  }
  .page-entry .entry-telBox span {
    font-size: 32px;
    font-size: 2rem;
  }
}
.page-entry .toggle {
  background-color: #fff;
  bottom: 0;
  height: 90px;
  left: 0;
  position: absolute;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .page-entry .toggle {
    height: 82px;
    left: 40px;
    width: calc(100% - 80px);
  }
}
@media screen and (min-width: 992px) {
  .page-entry .toggle {
    height: 100px;
    left: 40px;
    width: calc(100% - 80px);
  }
}
.page-entry .toggle_text {
  bottom: 40px;
  display: block;
  position: absolute;
  text-align: center;
  width: 100%;
}
.page-entry .toggleBox {
  border: 3px solid #fff;
  border-radius: 50%;
  bottom: -23px;
  height: 56px;
  left: calc(50% - 28px);
  position: absolute;
  transform: rotate(180deg);
  width: 56px;
  z-index: 1;
}
.page-entry .toggleBox_deco {
  bottom: calc(50% + 2px);
  height: 10px;
  left: calc(50% - 36px);
  overflow: hidden;
  position: absolute;
  width: 72px;
}
.page-entry .toggleBox_deco::before, .page-entry .toggleBox_deco::after {
  border-radius: 50%;
  bottom: 1px;
  box-shadow: 0 0 0 12px #fff;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  width: 25px;
}
.page-entry .toggleBox_deco::before {
  left: -14px;
}
.page-entry .toggleBox_deco::after {
  right: -14px;
}
.page-entry .toggleBox_button {
  align-items: center;
  background-color: #fff;
  border: #1d1d1d solid 1px;
  border-radius: 50%;
  display: flex;
  font-size: 40px;
  height: 50px;
  justify-content: center;
  line-height: 1;
  position: relative;
  transition: all 0.2s ease;
  width: 50px;
  z-index: 1;
}
@media screen and (min-width: 992px) {
  .page-entry .toggleBox_button:hover {
    background-color: #37373c;
  }
  .page-entry .toggleBox_button:hover .toggleBox_arrow {
    border-right: 2px solid #fff;
    border-top: 2px solid #fff;
  }
}
.page-entry .toggleBox_button.is-active .toggleBox_arrow {
  margin-top: -7px;
  transform: rotate(135deg);
}
.page-entry .toggleBox_arrow {
  border-right: 2px solid #37373c;
  border-top: 2px solid #37373c;
  display: block;
  height: 15px;
  margin-top: 0;
  margin-top: 4px;
  transform: rotate(-45deg);
  transition: all 0.2s ease;
  width: 15px;
}

.rookies .mainvisual {
  background-image: url("/assets/images/rookies/mainvisual-rookies.jpg");
}
.rookies .mainvisual-engineer {
  background-image: url("/assets/images/rookies/mainvisual-engineer.jpg");
}
.rookies .mainvisual-data-scientist {
  background-image: url("/assets/images/rookies/mainvisual-data-scientist.jpg");
}
.rookies .mainvisual-general {
  background-image: url("/assets/images/rookies/mainvisual-general.jpg");
}
@media screen and (max-width: 767px) {
  .rookies .joblist {
    padding-top: 120px;
  }
}
.rookies .joblist_content {
  border-radius: 10px;
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_content {
    flex-direction: column;
  }
}
.rookies .joblist_contentItem {
  background-image: url("/assets/images/rookies/rookies-joblist_bg1.jpg");
  background-size: cover;
  border-radius: 10px;
  padding: 60px 40px;
  width: 100%;
}
.rookies .joblist_contentItem:last-child {
  background-image: url("/assets/images/rookies/rookies-joblist_bg2.jpg");
  border-right: none;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItem {
    border-right: none;
    padding: 60px 20px;
  }
}
.rookies .joblist_contentItem > div:first-child {
  min-height: 260px;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItem > div:first-child {
    min-height: unset;
  }
}
.rookies .joblist_contentItemImage {
  margin: 0 auto 30px;
  width: 110px;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItemImage {
    width: 65px;
  }
}
.rookies .joblist_contentItemTitle {
  margin-bottom: 20px;
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItemTitle {
    text-align: center;
    font-size: 20px;
    font-size: 1.25rem;
  }
}
.rookies .joblist_contentItemLink {
  font-size: 20px;
  font-size: 1.25rem;
  align-items: center;
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.rookies .joblist_contentItemLink:hover {
  background-color: unset;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
}
.rookies .joblist_contentItemLink .icon {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItemLink {
    padding: 16px 20px;
    font-size: 16px;
    font-size: 1rem;
  }
  .rookies .joblist_contentItemLink .icon {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
.rookies .joblist_contentItemLink-close {
  color: rgb(156.5, 156.5, 156.5);
  cursor: unset;
  margin-bottom: 10px;
}
.rookies .joblist_contentItemLink-close:hover {
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: rgb(156.5, 156.5, 156.5);
}
.rookies .joblist_contentItem .addition {
  font-size: 12px;
  font-size: 0.75rem;
  color: rgb(156.5, 156.5, 156.5);
}
@media screen and (max-width: 767px) {
  .rookies .joblist_contentItem .addition {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.rookies .introduction-blue-bg {
  background-image: url("/assets/images/lightblue_bg.jpg");
}
.rookies .introduction_content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rookies .introduction_content {
    flex-direction: column;
  }
}
.rookies .introduction_contentTitle {
  max-width: 400px;
}
.rookies .introduction_contentVideo {
  flex: 1;
  min-width: 0;
  position: relative;
}
.rookies .introduction_contentVideo iframe {
  border: none;
  height: 416px;
  max-width: 740px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .rookies .introduction_contentVideo iframe {
    height: 326px;
  }
}
@media screen and (max-width: 767px) {
  .rookies .introduction_contentVideo iframe {
    height: 56.25vw;
    max-height: 416px;
  }
}
.rookies .program710_content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .rookies .program710_content {
    flex-direction: column;
  }
}
.rookies .program710_contentTitle {
  max-width: 525px;
}
.rookies .program710_contentImage {
  border-radius: 20px;
  max-width: 595px;
  overflow: hidden;
}
.rookies .program710_contentImage img {
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.rookies .program710_contentImage img:hover {
  transform: scale(1.03);
}
.rookies .tabs {
  display: flex;
}
.rookies .tabs_item {
  align-items: center;
  border-bottom: 1px solid #d5d5d5;
  color: #d5d5d5;
  cursor: pointer;
  display: flex;
  font-weight: 700;
  height: 150px;
  justify-content: center;
  text-align: center;
  transition: color 0.2s ease;
  width: 50%;
  font-size: 20px;
  font-size: 1.25rem;
}
.rookies .tabs_item:hover {
  border-bottom: 1px solid #aaa;
  color: #aaa;
}
@media screen and (max-width: 767px) {
  .rookies .tabs_item {
    font-size: 16px;
    font-size: 1rem;
    height: 120px;
  }
}
.rookies .tabs_item-active {
  border-bottom: 1px solid #1d1d1d;
  color: #1d1d1d;
}
.rookies .tabs_item-active:hover {
  border-bottom: 1px solid #1d1d1d;
  color: #1d1d1d;
}
.rookies .tab-section {
  display: none;
}
.rookies .tab-section.active {
  display: block;
}
.rookies .entry {
  padding-top: 0;
}
.rookies .entryTitle {
  margin-bottom: 40px;
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .rookies .entryTitle {
    font-size: 20px;
    font-size: 1.25rem;
    margin-bottom: 20px;
  }
}
.rookies .entryButtonArea {
  display: flex;
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .rookies .entryButtonArea {
    background-color: unset;
    flex-direction: column;
  }
}
.rookies .entryButton {
  height: 60px;
  margin: 60px 0 0;
  position: relative;
}
.rookies .entryButton::before {
  background-image: url(/assets/images/icon/arrow-half-right.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .rookies .entryButton {
    margin: 40px auto 0;
  }
}

.secondCareer .mainvisual {
  background-image: url("/assets/images/second-career/mainvisual-second-career.jpg");
}
.secondCareer .section_title-small {
  font-size: 42px;
  font-size: 2.625rem;
}
@media screen and (max-width: 767px) {
  .secondCareer .section_title-small {
    font-size: 28px;
    font-size: 1.75rem;
  }
}
.secondCareer .introduction_content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .secondCareer .introduction_content {
    flex-direction: column;
  }
}
.secondCareer .introduction_contentTitle {
  max-width: 540px;
}
.secondCareer .introduction_contentTitle h2 {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP", Meiryo, メイリオ, Osaka, "MS PGothic", arial, helvetica, sans-serif;
}
.secondCareer .introduction_contentImage {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  width: 600px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .secondCareer .introduction_contentImage {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .secondCareer .introduction_contentImage {
    width: 100%;
  }
}
.secondCareer .introduction_contentImage img {
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.secondCareer .introduction_contentImage img:hover {
  transform: scale(1.03);
}

.ainews {
  /* 検索結果タイトル */
  /* ==== 空表示（専用クラスを使う場合） ==== */
}
.ainews .mainvisual {
  background-color: unset;
  height: 600px;
}
.ainews .mainvisual .section_inner {
  max-width: 1400px;
}
@media screen and (max-width: 767px) {
  .ainews .mainvisual {
    height: 560px;
  }
}
.ainews .mainvisual h1 {
  line-height: 1.8;
  text-align: left;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .ainews .mainvisual h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.ainews .mainvisual h1::before {
  display: none;
}
.ainews .message_content {
  display: block;
}
.ainews .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .ainews .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.ainews .news {
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .ainews .news {
    padding: 80px 0;
  }
}
.ainews .news .newsList {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  margin: 0 auto;
  max-width: 1200px;
}
@media screen and (max-width: 767px) {
  .ainews .news .newsList {
    gap: 20px;
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
.ainews .news .newsList_item {
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
}
.ainews .news .newsList_item a:hover {
  text-decoration: none;
}
.ainews .news .newsList_itemImage {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
  height: 200px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.ainews .news .newsList_itemImage img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  width: 100%;
}
.ainews .news .newsList_itemImagePlaceholder {
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  display: flex;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.ainews .news .newsList_itemText {
  height: 140px;
  padding: 10px;
  position: relative;
}
.ainews .news .newsList_itemTags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 8px;
}
.ainews .news .newsList_itemTag {
  font-size: 10px;
  font-size: 0.625rem;
  align-items: center;
  background-color: rgba(102, 126, 234, 0.8);
  border-radius: 12px;
  color: #fff;
  display: inline-flex;
  font-weight: 500;
  justify-content: center;
  padding: 2px 8px;
}
@media screen and (max-width: 767px) {
  .ainews .news .newsList_itemTag {
    font-size: 9px;
    font-size: 0.5625rem;
    padding: 1px 6px;
  }
}
.ainews .news .newsList_itemMeta {
  align-items: center;
  display: flex;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .ainews .news .newsList_itemMeta {
    margin-top: 8px;
  }
}
.ainews .news .newsList_itemDate {
  bottom: 10px;
  color: #666;
  position: absolute;
  font-size: 12px;
  font-size: 0.75rem;
}
.ainews .news .newsList_itemTitle {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-height: 1.35;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  font-size: 1.125rem;
  /* フォントサイズを少し小さく */
}
.ainews .news .newsList_itemTitle a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ainews .news .newsList_itemTitle a:hover {
  color: #667eea;
}
.ainews .news .newsList_empty {
  color: #666;
  grid-column: 1/-1;
  padding: 60px 20px;
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
}
.ainews .pagination {
  margin-top: 40px;
  text-align: center;
}
.ainews .pagination_inner {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_inner {
    flex-wrap: nowrap;
  }
}
.ainews .pagination_btn {
  align-items: center;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #495057;
  display: inline-flex;
  padding: 8px 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-size: 0.875rem;
}
.ainews .pagination_btn:hover {
  background-color: #e9ecef;
  color: #007bff;
  text-decoration: none;
}
.ainews .pagination_btn:active {
  background-color: #dee2e6;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_btn {
    padding: 4px 12px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.ainews .pagination_numbers {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_numbers {
    margin: 0;
  }
}
.ainews .pagination_number {
  align-items: center;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  color: #495057;
  display: inline-flex;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  padding: 0 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
  font-size: 0.875rem;
}
.ainews .pagination_number:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_number {
    height: 32px;
    min-width: 32px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.ainews .pagination_current {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
  cursor: default;
}
.ainews .pagination_current:hover {
  background-color: #007bff;
  border-color: #007bff;
  color: #fff;
}
.ainews .pagination_dots {
  align-items: center;
  color: #6c757d;
  display: inline-flex;
  font-weight: 500;
  height: 40px;
  justify-content: center;
  min-width: 40px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_dots {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.ainews .pagination_info {
  margin-top: 16px;
}
.ainews .pagination_info p {
  color: #6c757d;
  margin: 0;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .ainews .pagination_info p {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
.ainews .resultTitle {
  margin: 20px 0 40px;
}
.ainews .resultTitle span {
  display: inline-block;
}
.ainews .resultTitle_main, .ainews .resultTitle .num_result {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 992px) {
  .ainews .resultTitle_main, .ainews .resultTitle .num_result {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
.ainews .resultTitle_num .num_all {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
}
.ainews .ainewsEmpty {
  color: #666;
  padding: 60px 20px;
  text-align: center;
}
.ainews .ainewsEmpty p {
  margin-bottom: 20px;
}
.ainews .ainewsBtn {
  border: none;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-family: inherit;
  font-weight: 500;
  padding: 12px 24px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  font-size: 0.875rem;
}
.ainews .ainewsBtn_primary {
  background-color: #005bac;
  border: 2px solid #005bac;
  color: #fff;
}
.ainews .ainewsBtn_primary:hover {
  background-color: #004080;
  border-color: #004080;
  color: #fff;
  text-decoration: none;
}
.ainews .ainewsBtn_secondary {
  background-color: #6c757d;
  border: 2px solid #6c757d;
  color: #fff;
}
.ainews .ainewsBtn_secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .ainews .ainewsBtn {
    padding: 10px 20px;
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.tagFilter_item.selected .icon, .ainews .ainewsFilter_item.selected .icon {
  margin-left: 5px;
}

.program710 .mainvisual {
  background-image: url("/assets/images/710program/710program_mainvisual.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
}
@media screen and (max-width: 767px) {
  .program710 .mainvisual {
    height: 560px;
  }
}
.program710 .mainvisual .section_inner {
  max-width: 1400px;
}
.program710 .mainvisual h1 {
  line-height: 1.8;
  text-align: left;
  font-size: 60px;
  font-size: 3.75rem;
}
@media screen and (max-width: 767px) {
  .program710 .mainvisual h1 {
    font-size: 40px;
    font-size: 2.5rem;
  }
}
.program710 .mainvisual h1::before {
  display: none;
}
.program710 .message_content {
  display: block;
}
.program710 .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .program710 .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}
.program710 .introduction_content {
  display: flex;
  gap: 60px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .program710 .introduction_content {
    flex-direction: column;
  }
}
.program710 .introduction_contentTitle {
  max-width: 400px;
}
.program710 .introduction_contentVideo {
  flex: 1;
  min-width: 0;
  position: relative;
}
.program710 .introduction_contentVideo iframe {
  border: none;
  height: 416px;
  max-width: 740px;
  width: 100%;
}
@media (min-width: 768px) and (max-width: 991px) {
  .program710 .introduction_contentVideo iframe {
    height: 326px;
  }
}
@media screen and (max-width: 767px) {
  .program710 .introduction_contentVideo iframe {
    height: 56.25vw;
    max-height: 416px;
  }
}
.program710 .about {
  background-image: url("/assets/images/710program/710program_mainvisual-blur.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  position: relative;
}
.program710 .about_image {
  margin: 0 auto 40px;
  width: 560px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .program710 .about_image {
    width: 400px;
  }
}
@media screen and (max-width: 767px) {
  .program710 .about_image {
    width: 100%;
  }
}
.program710 .about_content {
  text-align: center;
}
.program710 .about_content p {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .program710 .about_content p {
    font-size: 16px;
    font-size: 1rem;
  }
}
.program710 .mindset {
  border-top: 1px solid #fff;
  margin-top: 60px;
  padding-top: 60px;
}
.program710 .mindset_list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .program710 .mindset_list {
    flex-direction: column;
  }
}
.program710 .mindset_listItem {
  background-color: #fff;
  border-radius: 10px;
  padding: 40px;
  width: calc(50% - 5px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .program710 .mindset_listItem {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .program710 .mindset_listItem {
    padding: 40px 15px;
    width: 100%;
  }
}
.program710 .mindset_listItemTitle {
  font-size: 26px;
  font-size: 1.625rem;
  color: #005bab;
  margin-bottom: 10px;
}
.program710 .mindset_listItemText {
  color: #1d1d1d;
}
.program710 .grouphub-710program {
  background-image: url("/assets/images/710program/710program_mainvisual-blur.jpg");
}

.mainvisual-faq {
  background-image: url("/assets/images/faq/mainvisual-faq.jpg");
}

.message-faq {
  border-bottom: none;
}
.message-faq .message_content {
  display: block;
}
.message-faq .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .message-faq .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}

.faq {
  background-image: url("/assets/images/lightblue_bg.jpg");
  background-position: center;
  background-size: cover;
}
.faq_list {
  border-radius: 10px;
  list-style: none;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0;
}
.faq_listItem {
  background: white;
  border-radius: 8px;
  margin: auto;
  margin-bottom: 15px;
  overflow: hidden;
  width: 92%;
}
.faq_listItem:last-child {
  margin-bottom: 0;
}
.faq_listItem.active .icon-arrow_down {
  transform: rotate(180deg);
}
.faq_listItem.active .faq_answer {
  border-top: 1px solid #e9e9e9;
  margin-left: 40px;
  margin-right: 40px;
  max-height: 500px;
  padding: 40px 0;
}
.faq_question {
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 40px;
  text-align: left;
  transition: background-color 0.3s ease;
  width: 100%;
}
.faq_question::before {
  align-items: center;
  border-radius: 50%;
  color: #005bab;
  content: "Q";
  display: inline-flex;
  flex-shrink: 0;
  font-weight: bold;
  height: 30px;
  justify-content: center;
  margin-right: 15px;
  width: 30px;
}
@media screen and (max-width: 767px) {
  .faq_question::before {
    margin-right: 0;
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq_question {
    gap: 10px;
    padding: 20px;
  }
}
.faq_question .icon {
  margin-left: auto;
}
.faq_answer {
  max-height: 0;
  overflow: hidden;
}
.faq_answerContent {
  padding-left: 45px;
  position: relative;
}
.faq_answerContent::before {
  align-items: center;
  border-radius: 50%;
  color: #005bab;
  content: "A";
  display: inline-flex;
  font-weight: bold;
  height: 30px;
  justify-content: center;
  left: 0;
  position: absolute;
  top: 0;
  width: 30px;
}
.faq_answer_text {
  color: #1d1d1d;
  line-height: 1.7;
}

.mainvisual-grouphub {
  background-image: url("/assets/images/grouphub/mainvisual-grouphub.jpg");
}

.message-grouphub .message_content {
  display: block;
}
.message-grouphub .message_contentText {
  text-align: center;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .message-grouphub .message_contentText {
    font-size: 16px;
    font-size: 1rem;
  }
}

.grouphub {
  background-image: url("/assets/images/lightblue_bg.jpg");
  background-size: cover;
}
.grouphub_content {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto;
  max-width: 1200px;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .grouphub_content {
    flex-direction: column;
    width: 92%;
  }
}
.grouphub_contentItem {
  background-color: #fff;
  border-radius: 10px;
  color: #005bab;
  cursor: pointer;
  padding: 40px;
  position: relative;
  width: calc(50% - 5px);
}
@media (min-width: 768px) and (max-width: 991px) {
  .grouphub_contentItem {
    padding: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .grouphub_contentItem {
    padding: 20px;
    width: 100%;
  }
}
.grouphub_contentItem-large {
  width: 100%;
}
.grouphub_contentItem::before {
  color: #005bab;
  content: "\f004";
  font-family: "recruit_icon";
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .grouphub_contentItem::before {
    right: 10px;
    font-size: 16px;
    font-size: 1rem;
  }
}
.grouphub_contentItemText {
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .grouphub_contentItemText {
    margin-bottom: 20px;
  }
}
.grouphub_contentItemAddition {
  color: rgba(29, 29, 29, 0.5);
  margin-top: 15px;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .grouphub_contentItemAddition {
    font-size: 11px;
    font-size: 0.6875rem;
  }
}
.grouphub_contentItemImageArea {
  display: flex;
  width: unset;
}
@media screen and (max-width: 767px) {
  .grouphub_contentItemImageArea {
    display: block;
  }
}
.grouphub_contentItemImageArea .grouphub_contentItemImage:first-child {
  border-right: 1px solid #1d1d1d;
  margin-right: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .grouphub_contentItemImageArea .grouphub_contentItemImage:first-child {
    border-right: none;
    margin-bottom: 15px;
    margin-right: 0;
    padding-right: 0;
  }
}
.grouphub_contentItemImage {
  margin-bottom: 60px;
  width: unset;
}
@media (min-width: 768px) and (max-width: 991px) {
  .grouphub_contentItemImage {
    margin-bottom: 30px;
    max-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .grouphub_contentItemImage {
    margin-bottom: 30px;
    max-height: 17px;
  }
}
.grouphub_contentItem a:hover {
  text-decoration: none;
}
.grouphub_contentLabels {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .grouphub_contentLabels {
    flex-direction: column;
    gap: 6px;
  }
}
.grouphub_contentLabelsItem {
  border: 1px solid #005bab;
  color: #005bab;
  padding: 3px 16px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .grouphub_contentLabelsItem {
    padding: 3px 10px;
    font-size: 12px;
    font-size: 0.75rem;
  }
}
/*# sourceMappingURL=style.css.map */