@charset "UTF-8";
/**
	* clamp関数の文字列を返す
	*
	* @param {Number} $size-at-min-width - 最小画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $size-at-max-width - 最大画面幅での要素のサイズ (px|rem|emなど)
	* @param {Number} $min-width [optional] - 最小画面幅 (デフォルト: $min-width-default)
	* @param {Number} $max-width [optional] - 最大画面幅 (デフォルト: $max-width-default)
	* @return {String} CSS clamp関数を含む計算式
	*
	* @description
	* 画面幅に応じて値が滑らかに変化するレスポンシブな値を生成します。
	* 例えば、フォントサイズやマージン、パディングなどの値を画面幅に応じて
	* 自動的に調整することができます。
	*
	* @example
	*   // フォントサイズを16pxから24pxまで可変させる
	*   font-size: clamp-calc(16px, 24px);
	*
	*   // マージンを2remから4remまで可変させる（画面幅768px～1200px）
	*   margin: clamp-calc(2rem, 4rem, 768px, 1200px);
	*
	* @note
	* - 引数の単位は一貫している必要はありません（px, rem等が混在可能）
	* - 内部で全ての値をpxに変換して計算を行います
	* - 返り値は入力された$size-at-min-widthと同じ単位で返されます
	* - 負の値（マイナスマージンなど）にも対応しています
	*
	* @implementation
	* 1. 入力値を全てpxに変換
	* 2. 線形の傾きを計算
	* 3. y軸との交点を計算
	* 4. 必要に応じて最小値と最大値を入れ替え
	* 5. 元の単位に変換して最終的なclamp関数を構築
*/
/**
	* 与えられた値をピクセル(px)単位に変換する関数
	*
	* @param {Number} $value - 変換したい値（rem または px）
	* @return {Number} 変換後のピクセル値
	*
	* @example
	*   convert-to-px(1.5rem)  // 24px ($base-font-size が 16px の場合)
	*   convert-to-px(20px)    // 20px (そのまま返される)
	*   convert-to-px(2em)     // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - rem単位の場合: $base-font-sizeを基準にしてpxに変換
	* - px単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/**
	* ピクセル(px)単位の値をrem単位に変換する関数
	*
	* @param {Number} $px-value - 変換したい値（px または rem）
	* @return {Number} 変換後のrem値
	*
	* @example
	*   convert-to-rem(16px)   // 1rem ($base-font-size が 16px の場合)
	*   convert-to-rem(24px)   // 1.5rem ($base-font-size が 16px の場合)
	*   convert-to-rem(1.5rem) // 1.5rem (そのまま返される)
	*   convert-to-rem(2em)    // 2em (非対応の単位はそのまま返される)
	*
	* @description
	* - px単位の場合: $base-font-sizeを基準にしてremに変換
	* - rem単位の場合: 値をそのまま返す
	* - その他の単位: 変換せずそのまま返す
	*
	* @note
	* - レスポンシブデザインに適したrem単位への変換に使用
	* - $base-font-size はグローバルで定義されている必要がある
	*
	* @throws {Error} $base-font-size が定義されていない場合にエラー
 */
/*
	* 補助関数：小数点以下の指定した桁数で四捨五入する関数
*/
/*
	* 補助関数：累乗を計算する関数
	* 引数：$number 底となる数
	*      $exponent 指数（正の整数のみ対応）
 */
@media (max-width: 768px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 145%;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #474747;
  opacity: 0;
  -webkit-animation: fadeIn 0.5s ease-in 0.3s 1 forwards;
          animation: fadeIn 0.5s ease-in 0.3s 1 forwards;
}
@media (max-width: 1300px) {
  body {
    overflow-x: hidden;
  }
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
:target {
  scroll-margin-top: 100px;
}
@media (max-width: 1300px) {
  :target {
    scroll-margin-top: 70px;
  }
}

a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  width: 100%;
}

a[href*="tel:"] {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
}
@media (max-width: 768px) {
  a[href*="tel:"] {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  a.fax[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  padding: 0 25px;
  margin: auto;
}
@media (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding: 0 5%;
  }
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 370px;
  width: 100%;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px clamp(25px, 18.22px + 2.119vw, 50px) 31px;
  border-radius: 50px;
  background: #26F371;
  background: -webkit-gradient(linear, left top, right top, from(rgb(38, 243, 113)), to(rgb(0, 200, 172)));
  background: linear-gradient(90deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  top: 0;
}
@media (max-width: 768px) {
  .btn {
    max-width: 300px;
    font-size: 14px;
    padding: 20px 20px 21px;
  }
}

.btn::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #26F371;
  background: -webkit-gradient(linear, right top, left top, from(rgb(38, 243, 113)), to(rgb(0, 200, 172)));
  background: linear-gradient(270deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
  border-radius: 50px;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

.btn::after {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  right: 0;
}
@media (max-width: 768px) {
  .btn::after {
    width: 19px;
    height: 15px;
  }
}

.btn span {
  position: relative;
  z-index: 1;
}

.btn_center .btn {
  margin: 0 auto;
}

@media (min-width: 768px) {
  .btn:hover {
    top: 4px;
    -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  }
}

.btn:hover::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .btn:hover::after {
    right: -5px;
  }
}

.text_link {
  display: inline-block;
}

.text_link::after {
  content: "";
  display: block;
  width: 0;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  border-bottom: 1px solid #0058BB;
  margin: auto;
}

@media (min-width: 768px) {
  .text_link:hover::after {
    width: 100%;
  }
}

.body.is_open {
  overflow: hidden;
}

/* Header
------------------------------ */
.header {
  position: fixed;
  width: 100%;
  height: 120px;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0 clamp(24px, 21.831px + 0.678vw, 32px) 0 0;
  background: #003066;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(0, 48, 102)), color-stop(88%, rgba(0, 88, 187, 0)));
  background: linear-gradient(180deg, rgb(0, 48, 102) 0%, rgba(0, 88, 187, 0) 88%);
}
@media (max-width: 1300px) {
  .header {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
    padding: 0;
    background: #FFF;
    -webkit-box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
            box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.3);
  }
}

.header_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.header.header_fixed {
  background: #003066;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgb(0, 48, 102)), to(rgba(0, 88, 187, 0)));
  background: linear-gradient(180deg, rgb(0, 48, 102) 25%, rgba(0, 88, 187, 0) 100%);
}
@media (max-width: 1300px) {
  .header.header_fixed {
    height: 100px;
  }
}
@media (max-width: 768px) {
  .header.header_fixed {
    height: 60px;
    padding: 0;
    background: #FFF;
  }
}

.customize-support .header {
  top: 32px;
}
@media (max-width: 1300px) {
  .customize-support .header {
    top: 46px;
  }
}
@media (max-width: 768px) {
  .customize-support .header {
    top: 46px;
  }
}

@media (max-width: 768px) {
  .customize-support .header.header_fixed {
    top: 0;
  }
}

.header_fixed {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header_logo {
  position: relative;
  max-width: clamp(380px, 312.475px + 21.102vw, 629px);
  width: 100%;
  line-height: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
@media (max-width: 768px) {
  .header_logo {
    max-width: unset;
    height: 35px;
    margin: 13px 0 0 8px;
  }
}

.header_logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .header_logo a::after {
    content: "採用サイト";
    position: relative;
    display: block;
    color: #FFF;
    font-size: 10px;
    font-weight: 700;
    line-height: 100%;
    letter-spacing: 0.05em;
    padding: 5px;
    background: #1CC2FF;
    background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
    white-space: nowrap;
  }
}

@media (min-width: 768px) {
  .header_logo a:hover {
    opacity: 0.85;
  }
}

@media (max-width: 768px) {
  .header_logo img {
    width: auto;
    height: 35px;
  }
}

.header_nav {
  position: relative;
  display: block;
}
@media (max-width: 1300px) {
  .header_nav {
    display: none;
  }
}

.header_lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 0 clamp(15px, 10.932px + 1.271vw, 30px);
}

.header_list {
  position: relative;
  display: block;
}

.header_list_link {
  display: inline-block;
  position: relative;
  color: #FFF;
  font-size: clamp(13px, 12.186px + 0.254vw, 16px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.header_list_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #FFF;
  left: 0;
  bottom: -8px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .header_list_link:hover::after {
    width: 100%;
  }
}

.header_list_entry {
  display: none;
}

.header_list_entry .header_list_link {
  position: relative;
  display: block;
  height: 120px;
  color: #FFF;
  padding: 23px clamp(26px, 21.39px + 1.441vw, 43px) 26px;
  background: #0C4375;
  background: linear-gradient(45deg, rgb(12, 67, 117) 0%, rgb(0, 92, 177) 100%);
}

.header_fixed .header_list_entry .header_list_link {
  height: 90px;
  padding-top: 8px;
}

@media (min-width: 768px) {
  .header_list_entry .header_list_link::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #005CB1;
    background: linear-gradient(225deg, rgb(0, 92, 177) 0%, rgb(0, 138, 212) 100%);
    opacity: 0;
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
}

@media (min-width: 768px) {
  .header_list_entry .header_list_link:hover::before {
    opacity: 1;
  }
}

.header_list_icon {
  position: relative;
  display: block;
  max-width: 35px;
  width: 100%;
  margin: 0 auto;
  z-index: 1;
}

.header_list_entry .header_list_link span {
  position: relative;
  display: block;
  margin-top: 7px;
  z-index: 1;
}

.header_list_modal {
  position: absolute;
  top: 32px;
  left: 50%;
  width: 196px;
  background-color: #FFF;
  border-radius: 0 0 8px 8px;
  border: 1px solid #0058BB;
  -webkit-transform: scaleY(0) translateX(-50%);
          transform: scaleY(0) translateX(-50%);
  -webkit-transform-origin: center top;
          transform-origin: center top;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  overflow: hidden;
}

.header_list_modal_item a {
  position: relative;
  display: block;
  color: #0058BB;
  font-size: 14px;
  font-weight: bold;
  line-height: 100%;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 21px 0 17px;
}

.header_list_modal_item + .header_list_modal_item a {
  border-top: 1px solid #0058BB;
}

.header_list_modal_wrap .header_list_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 7px;
}

.header_list_modal_wrap .header_list_link::after {
  content: "";
  position: relative;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #07A316 transparent transparent transparent;
}

@media (min-width: 768px) {
  .header_list_modal_wrap:hover > .header_list_modal {
    -webkit-transform: scaleY(1) translateX(-50%);
            transform: scaleY(1) translateX(-50%);
  }
}

@media (min-width: 768px) {
  .header_list_modal_item a:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

/* //header_list_modal */
.header_hamburger {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 999;
  width: 100px;
  height: 100px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: #0058BB;
}
@media (max-width: 1300px) {
  .header_hamburger {
    display: block;
  }
}
@media (max-width: 768px) {
  .header_hamburger {
    display: block;
    width: 60px;
    height: 60px;
  }
}

.header_hamburger_bar {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 50px;
  height: 3px;
  background-color: #FFF;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .header_hamburger_bar {
    width: 25px;
    height: 2px;
  }
}

.header_hamburger_bar:nth-of-type(1) {
  top: -24px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(1) {
    top: -12px;
  }
}

.header_hamburger_bar:nth-of-type(2) {
  top: -10px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(2) {
    top: -5px;
  }
}

.header_hamburger_bar:nth-of-type(3) {
  top: 4px;
}
@media (max-width: 768px) {
  .header_hamburger_bar:nth-of-type(3) {
    top: 3px;
  }
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.header_hamburger.is_open .header_hamburger_bar:nth-of-type(3) {
  top: -4px;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header_hamburger_name {
  position: absolute;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 10px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_hamburger_name {
    font-size: 12px;
    bottom: 5px;
  }
}

.header_drawer {
  padding: 70px 0 30px;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scrollbar-width: none;
  background-color: rgba(241, 241, 241, 0.9);
}
@media (max-width: 768px) {
  .header_drawer {
    padding-top: 60px;
  }
}

.header_drawer::-webkit-scrollbar {
  display: none;
}

.header_drawer_nav {
  padding: 0 5%;
  height: 100%;
  overflow-y: scroll;
}

.header_drawer_list_link {
  padding: 15px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 15px;
  font-size: clamp(18px, 1.33vw, 20px);
  font-weight: 700;
  line-height: 1;
  border-bottom: 1px solid #474747;
}
@media (max-width: 768px) {
  .header_drawer_list_link {
    font-size: 15px;
    padding: 12px 0;
  }
}

@media (max-width: 768px) {
  .header_drawer_list_menus {
    display: none;
    padding: 10px 0;
  }
}

.header_drawer_list_menu a {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 15px 10px;
}
@media (max-width: 768px) {
  .header_drawer_list_menu a {
    padding: 7px 1em;
  }
}

@media (max-width: 768px) {
  .header_drawer_corporate_btn {
    margin-top: 30px;
  }
}

.sp_fixed_lang .header_hamburger {
  background-color: #D6E5F6;
  top: 0;
  right: 100px;
}
@media (max-width: 768px) {
  .sp_fixed_lang .header_hamburger {
    width: 60px;
    right: 60px;
  }
}

.header_hamburger_icon {
  position: absolute;
  width: 60px;
  top: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .header_hamburger_icon {
    width: 29px;
  }
}

.header_fixed .header_logo {
  margin-top: 0;
}
@media (max-width: 768px) {
  .header_fixed .header_logo {
    margin-top: 13px;
  }
}

.section_entry_btn {
  position: fixed;
  display: block;
  top: 120px;
  right: 0;
  z-index: 100;
}
@media (max-width: 768px) {
  .section_entry_btn {
    display: none;
  }
}

@media (min-width: 768px) {
  .customize-support .section_entry_btn {
    top: 152px;
  }
}

.section_entry_btn .entry_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  padding: 43px clamp(13px, 9.475px + 1.102vw, 26px) 37px;
  background: #26F371;
  background: linear-gradient(145deg, rgb(38, 243, 113) 0%, rgb(0, 170, 159) 100%);
  border-radius: 20px 0 0 20px;
}

.section_entry_btn .entry_btn::before {
  content: "";
  position: relative;
  display: block;
  width: 29px;
  height: 39px;
  background: url(../images/common/icon_entryWhite.svg) no-repeat center center/contain;
}

/* top - top_mw
------------------------------ */
.top_mw {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  height: 100vh;
  z-index: 1;
}
@media (max-width: 1300px) {
  .top_mw {
    height: 100%;
  }
}
@media (max-width: 768px) {
  .top_mw {
    margin-top: 60px;
  }
}

.top_mw_inner {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  height: 100vh;
}
@media (min-width: 768px) {
  .top_mw_inner {
    overflow: hidden;
  }
}
@media (max-width: 1300px) {
  .top_mw_inner {
    height: 100%;
  }
}

.top_mw_content {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
@media (max-width: 1300px) {
  .top_mw_content {
    position: absolute;
  }
}

.top_mw_content .inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-animation: cssAnimation 0.35s ease-in 15s forwards;
  animation: cssAnimation 0.35s ease-in 15s forwards;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media (min-width: 768px) {
  .top_mw_content .inner {
    max-width: 90%;
  }
}

@keyframes cssAnimation {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes cssAnimation {
  to {
    opacity: 0;
  }
}
.top_mw_title {
  position: relative;
  color: #FFF;
  font-size: clamp(25px, 18.22px + 2.119vw, 50px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  text-shadow: 3px 3px 8px #474747;
}
@media (max-width: 768px) {
  .top_mw_title {
    font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  }
}

.top_mw_outline {
  position: relative;
  color: #FFF;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 187%;
  letter-spacing: 0.05em;
  margin-top: 8px;
  text-shadow: 3px 3px 8px #474747;
}
@media (max-width: 768px) {
  .top_mw_outline {
    font-size: clamp(12px, 9.831px + 0.678vw, 20px);
  }
}

.top_mw_text_en {
  position: absolute;
  display: block;
  color: #FFF;
  font-size: clamp(80px, 61.017px + 5.932vw, 150px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  opacity: 0.6;
  right: 0;
  bottom: -1.6vh;
}
@media (max-width: 1300px) {
  .top_mw_text_en {
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .top_mw_text_en {
    font-size: clamp(60px, 49.153px + 3.39vw, 100px);
    line-height: 80%;
  }
}

.top_mw_bg {
  position: absolute;
  display: block;
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 1300px) {
  .top_mw_bg {
    position: relative;
    min-width: auto;
    width: 100%;
    min-height: auto;
  }
}

@media (max-width: 1300px) {
  .top_mw_bg source {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
  }
}

/* top - common
------------------------------ */
.top_section_title {
  position: relative;
  text-align: center;
}

.top_section_title_ja {
  position: relative;
  display: block;
  font-size: clamp(32px, 29.831px + 0.678vw, 40px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
  opacity: 0;
}
@media (max-width: 768px) {
  .top_section_title_ja {
    font-size: clamp(24px, 21.831px + 0.678vw, 32px);
    line-height: 145%;
  }
}

section:has(.is-visible) .top_section_title_ja {
  -webkit-animation: 0.4s topSectionMainTitleBlur 0.3s forwards;
          animation: 0.4s topSectionMainTitleBlur 0.3s forwards;
}

@-webkit-keyframes topSectionMainTitleBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}

@keyframes topSectionMainTitleBlur {
  0% {
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
  }
  100% {
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
.top_section_title_en {
  position: absolute;
  display: block;
  font-size: clamp(80px, 61.017px + 5.932vw, 150px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0;
}
@media (max-width: 768px) {
  .top_section_title_en {
    font-size: clamp(60px, 49.153px + 3.39vw, 100px);
  }
}

/* top - top_message
------------------------------ */
.top_message {
  position: relative;
  display: block;
  background: url(../images/top/top_message_bg.jpg) no-repeat center top/cover;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .top_message {
    padding-bottom: 60px;
  }
}

/* top_small_cta */
@media (max-width: 768px) {
  .top_small_cta.toppage_animation {
    opacity: 1;
  }
}

.top_small_cta_inner {
  border-radius: 0 0 30px 30px;
  background: #26F371;
  background: linear-gradient(145deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
}

.top_small_cta_btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
}
@media (max-width: 768px) {
  .top_small_cta_btns {
    padding: 8% 0;
    gap: 10px;
  }
}

.top_small_cta_btn {
  position: relative;
  max-width: clamp(260px, 230.169px + 9.322vw, 370px);
  width: 100%;
}

.top_small_cta_btn .btn {
  color: #474747;
  background: #FFF;
}

.top_small_cta_btn .btn::before {
  display: none;
}

.top_small_cta_btn .btn::after {
  background-image: url(../images/common/arrow_rightGreen.svg);
}

.top_message_title_en {
  color: #0058BB;
  opacity: 0.4;
  top: 24px;
  left: -16px;
}
@media (max-width: 768px) {
  .top_message_title_en {
    top: -20px;
    left: 0;
  }
}

.top_message_inner {
  position: relative;
  padding-top: 100px;
}
@media (max-width: 768px) {
  .top_message_inner {
    padding-top: 50px;
  }
}

.top_message_outline {
  position: relative;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 250%;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 768px) {
  .top_message_outline {
    font-size: 14px;
    line-height: 200%;
  }
}

.top_message_outline + .top_message_outline {
  margin-top: 1em;
}

@media (max-width: 768px) {
  .top_message_outline.toppage_animation {
    opacity: 1;
  }
}

.top_message_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .top_message_cards {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
  }
}

.top_message_card {
  position: relative;
  max-width: 290px;
  width: 100%;
}

.top_message_card_link {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  top: 0;
}
@media (max-width: 768px) {
  .top_message_card_link {
    border-radius: 10px;
  }
}

.top_message_card_link::before {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: 23px;
  bottom: 17px;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  z-index: 1;
}
@media (max-width: 768px) {
  .top_message_card_link::before {
    width: 19px;
    height: 15px;
    right: 17px;
    bottom: 12px;
  }
}

.top_message_card_link::after {
  content: "";
  position: absolute;
  display: block;
  width: 73px;
  height: 50px;
  border-radius: 20px 0 20px 0;
  background: #26F371;
  background: -webkit-gradient(linear, left top, right top, from(rgb(38, 243, 113)), to(rgb(0, 200, 172)));
  background: linear-gradient(90deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
  right: 0;
  bottom: 0;
}
@media (max-width: 768px) {
  .top_message_card_link::after {
    width: 53px;
    height: 40px;
    border-radius: 10px 0 10px 0;
  }
}

@media (min-width: 768px) {
  .top_message_card_link:hover {
    top: 4px;
    opacity: 0.85;
    -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 768px) {
  .top_message_card_link:hover::before {
    right: 18px;
  }
}

.top_message_card_contents {
  position: relative;
  padding: 25px clamp(10px, 6.475px + 1.102vw, 23px) 58px;
}

.top_message_card_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
}
@media (max-width: 1300px) {
  .top_message_card_title {
    font-size: clamp(16px, 14.373px + 0.508vw, 22px);
  }
}

.top_message_card_text {
  position: relative;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 18px;
}

/* top - top_workplace
------------------------------ */
.top_workplace {
  position: relative;
  padding: 120px 0;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
  overflow: hidden;
}
@media (max-width: 768px) {
  .top_workplace {
    padding: 60px 0;
  }
}

.top_workplace_title_en {
  color: #FFF;
  top: -60px;
  right: 0;
}
@media (max-width: 768px) {
  .top_workplace_title_en {
    top: -30px;
  }
}

.top_workplace_items {
  position: relative;
  margin-top: 170px;
}
@media (max-width: 768px) {
  .top_workplace_items {
    margin-top: 50px;
  }
}

.top_workplace_item {
  position: relative;
}

.top_workplace_item + .top_workplace_item {
  margin-top: 150px;
}
@media (max-width: 768px) {
  .top_workplace_item + .top_workplace_item {
    margin-top: 30px;
  }
}

.top_workplace_item::after {
  content: "";
  position: absolute;
  display: block;
  max-width: 1120px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background-color: #FFF;
  right: 0;
  bottom: 0;
}

.top_workplace_item:nth-child(even)::after {
  left: 0;
  right: auto;
}

.top_workplace_item_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(30px, 21.864px + 2.542vw, 60px);
  z-index: 1;
}
@media (max-width: 768px) {
  .top_workplace_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.top_workplace_item:nth-child(even) .top_workplace_item_wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top_workplace_item:nth-child(even) .top_workplace_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.top_workplace_item_img {
  position: relative;
  max-width: 605px;
  width: 100%;
  margin-left: clamp(-125px, -42.373px + -5.508vw, -60px);
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  top: -70px;
}
@media (max-width: 768px) {
  .top_workplace_item_img {
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
    top: auto;
  }
}

.top_workplace_item:nth-child(even) .top_workplace_item_img {
  margin: 0 clamp(-125px, -42.373px + -5.508vw, -60px) 0 0;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 768px) {
  .top_workplace_item:nth-child(even) .top_workplace_item_img {
    margin: 0 auto;
    border-radius: 20px 20px 0 0;
  }
}

.top_workplace_item_contents {
  position: relative;
  padding: 60px clamp(30px, 21.864px + 2.542vw, 60px) 70px 0;
}
@media (max-width: 768px) {
  .top_workplace_item_contents {
    padding: 0 5% 8%;
  }
}

.top_workplace_item:nth-child(even) .top_workplace_item_contents {
  padding: 60px 0 70px clamp(30px, 21.864px + 2.542vw, 60px);
}
@media (max-width: 768px) {
  .top_workplace_item:nth-child(even) .top_workplace_item_contents {
    padding: 0 5% 8%;
  }
}

@media (max-width: 768px) {
  .top_workplace_item_unit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 10px;
  }
}

.top_workplace_item_num {
  position: absolute;
  font-size: clamp(80px, 61.017px + 5.932vw, 150px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0.03em;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: -80px;
  right: clamp(30px, 21.864px + 2.542vw, 60px);
}
@media (max-width: 768px) {
  .top_workplace_item_num {
    position: relative;
    font-size: clamp(60px, 49.153px + 3.39vw, 100px);
    top: auto;
    right: auto;
  }
}

.top_workplace_item:nth-child(even) .top_workplace_item_num {
  right: 0;
}

.top_workplace_item_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}
@media (max-width: 1300px) {
  .top_workplace_item_title {
    font-size: clamp(20px, 18.373px + 0.508vw, 26px);
    line-height: 145%;
  }
}
@media (max-width: 768px) {
  .top_workplace_item_title {
    font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  }
}

.top_workplace_item_text {
  position: relative;
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0.05em;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_workplace_item_text {
    line-height: 190%;
    margin-top: 10px;
  }
}

/* top - top_interview
------------------------------ */
.top_interview {
  position: relative;
  padding: 115px 0 335px;
  background: url(../images/top/top_interview_bg.jpg) no-repeat center top/cover;
}
@media (max-width: 768px) {
  .top_interview {
    padding: 60px 0;
  }
}

.top_interview_title_ja {
  color: #FFF;
  -webkit-text-fill-color: unset;
}

.top_interview_title_en {
  color: #0058BB;
  top: -70px;
  left: 0;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .top_interview_title_en {
    top: -30px;
  }
}

.top_interview_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .top_interview_items {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .top_interview_items {
    gap: 30px;
    margin-top: 30px;
  }
}

.top_interview_item a {
  position: relative;
  display: block;
  max-width: clamp(280px, 250.169px + 9.322vw, 390px);
  width: 100%;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  top: 0;
}

@media (min-width: 768px) {
  .top_interview_item a:hover {
    opacity: 0.85;
    top: 4px;
    -webkit-box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
            box-shadow: 0 4px 7px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 768px) {
  .top_interview_item a:hover::after {
    right: clamp(5px, 0.932px + 1.271vw, 20px);
  }
}

.top_interview_item_contents {
  position: relative;
  padding: 20px clamp(15px, 10.932px + 1.271vw, 30px) 80px;
}

.top_interview_item_title {
  position: relative;
  color: #0058BB;
  font-weight: 700;
  line-height: 190%;
  letter-spacing: 0.05em;
  text-align: center;
}

.top_interview_item_text {
  position: relative;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
  margin-top: 20px;
}

.top_interview_item_more {
  position: absolute;
  display: block;
  max-width: 230px;
  width: 100%;
  padding: 20px 24px 21px;
  border-radius: 20px 0 20px 0;
  background: #26F371;
  background: -webkit-gradient(linear, left top, right top, from(rgb(38, 243, 113)), to(rgb(0, 200, 172)));
  background: linear-gradient(90deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
  right: 0;
  bottom: 0;
}

.top_interview_item_more p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}

.top_interview_item_more p::after {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .top_interview_item a:hover .top_interview_item_more p::after {
    right: -5px;
  }
}

/* top - top_benefit
------------------------------ */
.top_benefit {
  position: relative;
  padding-bottom: 120px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .top_benefit {
    padding-bottom: 60px;
  }
}

.top_benefit_inner {
  position: relative;
  margin-top: -95px;
}
@media (max-width: 768px) {
  .top_benefit_inner {
    margin-top: 0;
    padding-top: 60px;
  }
}

.top_benefit_title_en {
  color: #FFF;
  top: -50px;
  right: 12%;
  opacity: 0.6;
}
@media (max-width: 768px) {
  .top_benefit_title_en {
    top: -30px;
    right: 0;
  }
}

.top_benefit_outline {
  position: relative;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top_benefit_outline {
    line-height: 190%;
    margin-top: 20px;
  }
}

.top_benefit_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_benefit_cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 30px;
  }
}

.top_benefit_card {
  position: relative;
  padding: 30px 25px;
  border-radius: 20px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .top_benefit_card {
    padding: 8% 5%;
    border-radius: 10px;
  }
}

.top_benefit_card_title {
  position: relative;
  max-width: 320px;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 auto;
  padding-bottom: 16px;
  border-bottom: 1px solid #0058BB;
}
@media (max-width: 768px) {
  .top_benefit_card_title {
    max-width: 90%;
    font-size: clamp(14px, 12.373px + 0.508vw, 20px);
    padding-bottom: 10px;
  }
}

.top_benefit_card_img {
  position: relative;
  max-width: 339px;
  width: 100%;
  margin: 25px auto 0;
}
@media (max-width: 768px) {
  .top_benefit_card_img {
    margin: 10px auto 0;
  }
}

/* top - top_news
------------------------------ */
.top_news {
  position: relative;
  padding: 120px 0;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
}
@media (max-width: 768px) {
  .top_news {
    padding: 60px 0;
  }
}

.top_news_title_ja {
  color: #FFF;
  -webkit-text-fill-color: unset;
}

.top_news_title_en {
  color: #0058BB;
  top: -50px;
  left: 24%;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .top_news_title_en {
    top: -30px;
    left: 0;
  }
}

.top_news_items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
  margin-top: 80px;
}
@media (max-width: 1300px) {
  .top_news_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .top_news_items {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }
}

.top_news_item a {
  position: relative;
  display: block;
  border-radius: 20px;
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  background-color: #FFF;
  overflow: hidden;
  top: 0;
}
@media (max-width: 768px) {
  .top_news_item a {
    border-radius: 10px;
  }
}

@media (min-width: 768px) {
  .top_news_item a:hover {
    top: 4px;
    -webkit-box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
            box-shadow: 0 0 7px rgba(0, 0, 0, 0.3);
  }
}

.top_news_item_img {
  position: relative;
  display: block;
  max-height: 200px;
  overflow: hidden;
}

.top_news_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top_news_item_contents {
  position: relative;
  padding: 18px 25px 24px;
}

.top_news_item_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}

.top_news_item_time {
  position: relative;
  color: #0058BB;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.top_news_item_cat {
  position: relative;
  min-width: 112px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 8px 0;
  background-color: #0058BB;
  border-radius: 30px;
}

.top_news_item_title {
  position: relative;
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.05em;
  margin-top: 13px;
}

.top_news_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .top_news_btn {
    max-width: 250px;
    margin: 30px auto 0;
  }
}

/* top - top_flow
------------------------------ */
.top_flow {
  position: relative;
  padding: 120px 0;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .top_flow {
    padding: 60px 0;
  }
}

.top_flow_title_en {
  color: #FFF;
  top: -50px;
  right: 24%;
}
@media (max-width: 768px) {
  .top_flow_title_en {
    top: -30px;
    right: 0;
  }
}

.top_flow_cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_flow_cards {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 50px;
  }
}

.top_flow_card {
  position: relative;
  padding: 53px clamp(15px, 10.119px + 1.525vw, 33px) 27px;
  border-radius: 20px;
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  background-color: #FFF;
}
@media (max-width: 768px) {
  .top_flow_card {
    max-width: 250px;
    margin: 0 auto;
    padding: 30px 5% 20px;
  }
}

.top_flow_card_num {
  position: absolute;
  font-size: clamp(50px, 36.441px + 4.237vw, 100px);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 500;
  line-height: 80%;
  letter-spacing: 0;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: -35px;
  left: clamp(10px, 3.22px + 2.119vw, 35px);
}
@media (max-width: 768px) {
  .top_flow_card_num {
    font-size: 50px;
    top: -20px;
    left: 10%;
  }
}

.top_flow_card_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
}

.top_flow_card_img {
  position: relative;
  max-width: 124px;
  width: 100%;
  margin: 30px auto 0;
}
@media (max-width: 768px) {
  .top_flow_card_img {
    max-width: 80px;
    margin-top: 10px;
  }
}

.top_flow_card_text {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0.05em;
  margin-top: 27px;
}
@media (max-width: 768px) {
  .top_flow_card_text {
    line-height: 145%;
    margin-top: 20px;
  }
}

.top_flow_outline {
  position: relative;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top_flow_outline {
    line-height: 190%;
    margin-top: 30px;
  }
}

/* top - top_faq
------------------------------ */
.top_faq {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .top_faq {
    padding-top: 60px;
  }
}

.top_faq_title_en {
  color: #E7E7E7;
  top: -50px;
  right: 24%;
}
@media (max-width: 768px) {
  .top_faq_title_en {
    top: -30px;
    right: 0;
  }
}

.top_faq_lists {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_faq_lists {
    margin-top: 30px;
  }
}

.top_faq_list + .top_faq_list {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top_faq_list + .top_faq_list {
    margin-top: 10px;
  }
}

.top_faq_list_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px clamp(25px, 18.22px + 2.119vw, 50px);
  gap: clamp(20px, 15.932px + 1.271vw, 35px);
  border-radius: 20px;
  background-color: #0058BB;
  cursor: pointer;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .top_faq_list_inner {
    font-size: 14px;
    line-height: 145%;
    padding: 20px 50px 20px 20px;
    gap: 10px;
  }
}

.is_open .top_faq_list_inner {
  border-radius: 20px 20px 0 0;
}

.top_faq_list_inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 37px;
  height: 30px;
  background: url(../images/common/arrow_rightGreen.svg) no-repeat center center/contain;
  top: 0;
  right: clamp(20px, 15.661px + 1.356vw, 36px);
  bottom: 0;
  margin: auto 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .top_faq_list_inner::after {
    width: 19px;
    height: 15px;
    right: 20px;
  }
}

.is_open .top_faq_list_inner::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.top_faq_list_en {
  position: relative;
  display: block;
  color: #83FF6A;
  font-size: clamp(32px, 29.831px + 0.678vw, 40px);
  line-height: 100%;
  top: -5px;
}
@media (max-width: 768px) {
  .top_faq_list_en {
    font-size: clamp(24px, 21.831px + 0.678vw, 32px);
    top: -3px;
  }
}

.top_faq_a {
  position: relative;
  display: none;
  border-radius: 0 0 20px 20px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}

.top_faq_a_inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 27px clamp(55px, 37.373px + 5.508vw, 120px) 40px clamp(25px, 16.864px + 2.542vw, 55px);
  gap: clamp(20px, 15.932px + 1.271vw, 35px);
}
@media (max-width: 768px) {
  .top_faq_a_inner {
    padding: 20px;
    gap: 20px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.top_faq_a_inner p {
  font-weight: 500;
  line-height: 220%;
  letter-spacing: 0.05em;
}

.top_faq_a_inner .top_faq_a_en {
  font-weight: 700;
}

/* top - top_jobs
------------------------------ */
.top_jobs {
  position: relative;
  margin-top: 120px;
  padding: 115px 0 120px;
  background: url(../images/top/top_jobs_bgPC.jpg) no-repeat center top/cover;
}
@media (max-width: 768px) {
  .top_jobs {
    margin-top: 60px;
    padding: 60px 0;
  }
}

.top_jobs_title_ja {
  color: #FFF;
  -webkit-text-fill-color: unset;
}

.top_jobs_title_en {
  color: #0058BB;
  top: -50px;
  left: 25%;
  opacity: 0.4;
}
@media (max-width: 768px) {
  .top_jobs_title_en {
    top: -30px;
    left: 0;
  }
}

.top_jobinfo_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .top_jobinfo_items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.top_jobinfo_items .jobinfo_archive_item {
  max-width: 390px;
}
@media (max-width: 768px) {
  .top_jobinfo_items .jobinfo_archive_item {
    margin: 0 auto;
  }
}

.top_jobinfo_items .jobinfo_archive_item_img {
  max-height: 240px;
}
@media (max-width: 768px) {
  .top_jobinfo_items .jobinfo_archive_item_img {
    max-height: unset;
  }
}

.top_jobinfo_items .jobinfo_archive_item_content {
  padding: 23px clamp(15px, 10.932px + 1.271vw, 30px) 0;
}

.top_jobinfo_items .jobinfo_archive_item_title {
  min-height: 70px;
}
@media (max-width: 768px) {
  .top_jobinfo_items .jobinfo_archive_item_title {
    min-height: unset;
  }
}

.top_jobinfo_items .jobinfo_archive_item_title_ja {
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  line-height: 145%;
}

.top_jobinfo_items .jobinfo_archive_item_text p {
  font-size: 16px;
}

.top_jobinfo_items .jobinfo_archive_item_link p {
  max-width: 230px;
  font-size: 16px;
  padding: 18px clamp(12px, 10.373px + 0.508vw, 18px) 19px;
}

.top_jobs_item_none {
  position: relative;
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin-top: 80px;
}

/* top - top_entry
------------------------------ */
.top_entry {
  position: relative;
  padding: 120px 0;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .top_entry {
    padding: 60px 0;
  }
}

.top_entry_title_en {
  color: #FFF;
  top: -50px;
  right: 12vw;
}
@media (max-width: 768px) {
  .top_entry_title_en {
    top: -30px;
    right: 0;
  }
}

.top_entry_outline {
  position: relative;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top_entry_outline {
    line-height: 145%;
    margin-top: 20px;
  }
}

.contact_form_figure {
  position: relative;
  display: block;
  margin-top: 70px;
}
@media (max-width: 768px) {
  .contact_form_figure {
    margin-top: 16px;
  }
}

.contact_form_figure dl {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 1px solid #C5E1FD;
}
@media (max-width: 1300px) {
  .contact_form_figure dl {
    grid-template-columns: 250px 1fr;
  }
}
@media (max-width: 768px) {
  .contact_form_figure dl {
    grid-template-columns: 1fr;
  }
}

.contact_form_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #474747;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 20px clamp(15px, 10.932px + 1.271vw, 30px);
  border-top: 1px solid #0058BB;
  background-color: #D6E5F6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .contact_form_title {
    padding: 5%;
    border-bottom: 1px solid #0058BB;
  }
}

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

.contact_form_title_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-top: 30px;
}

.contact_form_title_must {
  color: #0058BB;
}

.contact_form_input {
  padding: 15px 28px;
  border-top: 1px solid #0058BB;
}
@media (max-width: 768px) {
  .contact_form_input {
    padding: 16px;
    border: 0;
    padding: 5%;
  }
}

.contact_form_input.form_radio,
.contact_form_input.form_checkbox {
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .contact_form_input.form_radio,
  .contact_form_input.form_checkbox {
    padding: 5%;
  }
}

.form_radio_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form_radio_button label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8px;
  line-height: 100%;
  letter-spacing: 0.08em;
}

.form_radio_button input[type=radio] {
  position: relative;
  display: inline-block;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  max-width: 100%;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  cursor: pointer;
  outline: none;
  border-radius: 50%;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .form_radio_button input[type=radio] {
    width: 20px;
    height: 20px;
  }
}

.form_radio_button input[type=radio]:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0) translate(-50%, -50%);
          transform: scale(0) translate(-50%, -50%);
  -webkit-transition: all ease-out 250ms;
  transition: all ease-out 250ms;
}
@media (max-width: 768px) {
  .form_radio_button input[type=radio]:before {
    width: 10px;
    height: 10px;
  }
}

.form_radio_button input[type=radio]:checked:before {
  -webkit-transform: scale(1) translate(-50%, -50%);
          transform: scale(1) translate(-50%, -50%);
  background-color: #0058BB;
}

.form_checkbox_label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 500;
  gap: 0 8px;
  line-height: 100%;
  letter-spacing: 0.08em;
}
@media (max-width: 1300px) {
  .form_checkbox_label {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

textarea {
  max-width: 100%;
  min-width: 100%;
  width: 100%;
  min-height: 230px;
  background-color: #FFF !important;
  padding: 15px;
}
@media (max-width: 768px) {
  textarea {
    min-height: 180px;
    margin-top: 10px;
  }
}

.contact_form_input input {
  max-width: 536px;
  width: 100%;
  height: 46px;
  background-color: #FFF !important;
  padding: 0 10px;
}

.contact_form_input input[type=date] {
  max-width: 180px;
}

.form_privacy {
  position: relative;
  margin-top: 40px;
  padding: 36px clamp(20px, 14.576px + 1.695vw, 40px);
  background-color: #FFF;
}
@media (max-width: 768px) {
  .form_privacy {
    margin-top: 20px;
  }
}

.form_privacy_content {
  position: relative;
  display: block;
  max-height: 190px;
  overflow: hidden scroll;
}

.form_privacy_title {
  position: relative;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 180%;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.form_privacy_title br {
  display: none;
}

.form_privacy_text {
  font-weight: 400;
  line-height: 180%;
  letter-spacing: 0.08em;
}

.form_privacy_text:nth-of-type(2),
.form_privacy_text:nth-of-type(5) {
  margin-top: 20px;
}
@media (max-width: 768px) {
  .form_privacy_text:nth-of-type(2),
  .form_privacy_text:nth-of-type(5) {
    margin-top: 0;
  }
}

.form_privacy_subtitle {
  position: relative;
  margin-top: 20px;
}

.form_check_text {
  position: relative;
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.08em;
  text-align: center;
  margin-top: 40px;
}

.form_checkbox_label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 17px;
  cursor: pointer;
}

.form_checkbox .form_checkbox_label input {
  width: 30px;
  height: 30px;
  padding: 0;
}

.form_confirmation {
  position: relative;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .form_confirmation {
    margin-top: 30px;
    text-align: left;
  }
}

.form_confirmation input,
.form_checkbox_wrapper input {
  display: none;
}

.form_confirmation input + span,
.form_checkbox_wrapper input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 40px;
  position: relative;
  line-height: 140%;
}

.form_confirmation input + span::before,
.form_checkbox_wrapper input + span::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background-color: #FFF;
}

.form_confirmation input + span::after,
.form_checkbox_wrapper input + span::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 4px;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: block;
  width: 20px;
  height: 10px;
  border-bottom: 3px solid #0058BB;
  border-left: 3px solid #0058BB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.form_confirmation input:checked ~ span::after,
.form_checkbox_wrapper input:checked ~ span::after {
  opacity: 1;
}

.form_btn {
  position: relative;
  margin-top: 64px;
}
@media (max-width: 768px) {
  .form_btn {
    margin-top: 32px;
  }
}

.form_btn .btn {
  background: transparent;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 768px) {
  .form_btn .btn {
    max-width: 300px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.form_btn .btn::before {
  display: none;
}

.form_btn .btn::after {
  position: absolute;
  z-index: 1;
  top: 30px;
  right: 30px;
}
@media (max-width: 768px) {
  .form_btn .btn::after {
    top: 20px;
    right: 50px;
  }
}

.form_btn .btn .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}

.form_btn input {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 370px;
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 100%;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
  padding: 30px clamp(25px, 18.22px + 2.119vw, 50px) 31px;
  border-radius: 50px;
  background: #26F371;
  background: -webkit-gradient(linear, left top, right top, from(rgb(38, 243, 113)), to(rgb(0, 200, 172)));
  background: linear-gradient(90deg, rgb(38, 243, 113) 0%, rgb(0, 200, 172) 100%);
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
  top: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}
@media (max-width: 768px) {
  .form_btn input {
    width: 250px;
    font-size: 14px;
    padding: 20px 15px;
  }
}

.form_btn input.wpcf7-previous {
  color: #474747;
  background: #E6E6E6;
}

/* sub common
------------------------------ */
.section_subtitle {
  position: relative;
  display: block;
  color: #0058BB;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.05em;
  padding-bottom: 15px;
  border-bottom: 1px solid #0058BB;
}

/* entry - confirm
------------------------------ */
.entry_confirm {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .entry_confirm {
    padding: 60px 0;
  }
}

.entry_confirm_form {
  position: relative;
  padding: clamp(25px, 18.22px + 2.119vw, 50px);
  border-radius: 20px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .entry_confirm_form {
    padding: 8% 5%;
  }
}

.entry_confirm_form_figure {
  position: relative;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .entry_confirm_form_figure {
    margin-top: 30px;
  }
}

.form_main dl {
  display: grid;
  grid-template-columns: 300px 1fr;
  border-bottom: 1px solid #0058BB;
}
@media (max-width: 768px) {
  .form_main dl {
    grid-template-columns: 1fr;
  }
}

.form_main .contact_form_title_start {
  padding-top: 20px;
}

.form_btn_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
  margin-top: 50px;
}
@media (max-width: 768px) {
  .form_btn_wrapper {
    gap: 20px;
    margin-top: 30px;
  }
}

.form_btn_wrapper .form_btn {
  margin-top: 0;
}

/* entry - thanks
------------------------------ */
.entry_thanks_main_text {
  position: relative;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  line-height: 190%;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .entry_thanks_main_text {
    font-size: 14px;
  }
}

.rent_thanks_main_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .rent_thanks_main_btn {
    max-width: 250px;
    margin: 30px auto 0;
  }
}

/* cta
------------------------------ */
.cta {
  position: relative;
  display: block;
  margin-top: 130px;
}
@media (max-width: 768px) {
  .cta {
    margin-top: 60px;
  }
}

.cta_inner .inner {
  border-radius: 30px;
  background: url(../images/common/cta_bgPC.jpg) no-repeat center center/cover;
  overflow: hidden;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cta_title_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(50px, 34.542px + 4.831vw, 107px);
}
@media (max-width: 1300px) {
  .cta_title_wrapper {
    gap: clamp(20px, 11.864px + 2.542vw, 50px);
  }
}
@media (max-width: 768px) {
  .cta_title_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.cta_title_ja {
  position: relative;
  display: block;
  color: #0058BB;
  font-size: clamp(24px, 20.746px + 1.017vw, 36px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  margin-left: -25px;
  padding: 47px clamp(32px, 25.492px + 2.034vw, 56px);
  background-color: #83FF6A;
  border-radius: 30px 0 30px 0;
  -webkit-box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 4px 4px 7px rgba(0, 0, 0, 0.3);
}
@media (max-width: 1300px) {
  .cta_title_ja {
    font-size: clamp(16px, 13.831px + 0.678vw, 24px);
    padding: 30px clamp(16px, 11.661px + 1.356vw, 32px);
  }
}
@media (max-width: 768px) {
  .cta_title_ja {
    font-size: clamp(24px, 21.831px + 0.678vw, 32px);
    border-radius: 0 0 20px 20px;
  }
}

.cta_title_en {
  position: absolute;
  color: #FFF;
  font-size: clamp(80px, 61.017px + 5.932vw, 150px);
  font-family: "Barlow Condensed", sans-serif;
  line-height: 100%;
  letter-spacing: 0;
  opacity: 0.3;
  top: 114px;
  right: 30px;
}
@media (max-width: 1300px) {
  .cta_title_en {
    padding-left: 0;
  }
}
@media (max-width: 768px) {
  .cta_title_en {
    font-size: clamp(60px, 49.153px + 3.39vw, 100px);
    top: 60px;
    right: 0;
  }
}

.cta_title_subtitle {
  position: relative;
  color: #FFF;
  font-size: clamp(20px, 17.831px + 0.678vw, 28px);
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.05em;
  padding-top: 35px;
}
@media (max-width: 1300px) {
  .cta_title_subtitle {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .cta_title_subtitle {
    font-size: clamp(16px, 13.831px + 0.678vw, 24px);
    padding-top: 0;
  }
}

.cta_outer_text {
  position: relative;
  color: #FFF;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 1300px) {
  .cta_outer_text {
    line-height: 160%;
    margin-top: 20px;
  }
}

@media (max-width: 1300px) {
  .cta_outer_text br.pc_none {
    display: block;
  }
}

.cta_outer_btns {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
  margin-top: 55px;
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  .cta_outer_btns {
    margin-top: 30px;
    padding-bottom: 40px;
  }
}

.cta_outer_btn {
  position: relative;
  max-width: clamp(260px, 230.169px + 9.322vw, 370px);
  width: 100%;
}

.cta_outer_btn .btn {
  color: #474747;
  background: #FFF;
}

.cta_outer_btn .btn::before {
  display: none;
}

.cta_outer_btn .btn::after {
  background-image: url(../images/common/arrow_rightGreen.svg);
}

@media (min-width: 768px) {
  .cta_outer_btn .btn:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

@media (min-width: 768px) {
  .cta_outer_btn .btn:hover::after {
    background-image: url(../images/common/arrow_rightWhite.svg);
  }
}

@media (min-width: 768px) {
  .front_cta01 {
    top: -215px;
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .interview_cta, .news_cta {
    margin-top: -195px;
  }
}

/* sub
------------------------------ */
.section_maintitle {
  position: relative;
  height: 500px;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
}
@media (max-width: 1300px) {
  .section_maintitle {
    height: auto;
    padding: 9% 0;
  }
}
@media (max-width: 768px) {
  .section_maintitle {
    height: 250px;
    padding: 60px 0 0;
  }
}

@media (max-width: 768px) {
  .section_maintitle_inner {
    position: relative;
    height: 100%;
  }
}

.section_maintitle_bg {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .section_maintitle_bg {
    max-height: unset;
    height: 250px;
  }
}

.section_maintitle_bg::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  top: 0;
  left: 0;
  opacity: 0.85;
}

.section_maintitle_bg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: left;
     object-position: left;
}
@media (max-width: 768px) {
  .section_maintitle_bg img {
    width: auto;
    height: 100%;
  }
}

.section_maintitle_inner .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 500px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1300px) {
  .section_maintitle_inner .inner {
    height: 100%;
  }
}

.section_maintitle_inner_ja {
  position: relative;
  display: block;
  color: #FFF;
  font-size: clamp(32px, 29.831px + 0.678vw, 40px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  z-index: 1;
  padding-top: 10vh;
}
@media (max-width: 768px) {
  .section_maintitle_inner_ja {
    font-size: 24px;
    padding: 83px 0;
  }
}

.section_maintitle_inner_en {
  position: absolute;
  color: #FFF;
  font-size: clamp(80px, 61.017px + 5.932vw, 150px);
  font-weight: 400;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 80%;
  letter-spacing: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.25;
}
@media (max-width: 768px) {
  .section_maintitle_inner_en {
    font-size: clamp(50px, 41.864px + 2.542vw, 80px);
  }
}

/* bread crumb
------------------------------ */
.bread_crumb {
  background-color: #C5E1FD;
}

.breadcrumb_inner {
  position: relative;
  color: #474747;
  font-size: 12px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 35px 0;
}
@media (max-width: 768px) {
  .breadcrumb_inner {
    line-height: 150%;
    padding: 20px 5%;
  }
}

.breadcrumb_inner br {
  display: none;
}

.breadcrumb_inner > span:not(:last-child)::after {
  content: "＞";
  position: relative;
  color: #0058BB;
  padding: 0 clamp(15px, 10.932px + 1.271vw, 30px);
}

.breadcrumb_inner a,
.breadcrumb_inner .home {
  color: #0058BB;
  font-weight: 700;
}

/* interview - archive
------------------------------ */
.interview_archive {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .interview_archive {
    padding: 60px 0 100px;
  }
}

.interview_archive_item {
  position: relative;
  padding-bottom: 30px;
  border-radius: 20px;
  background-color: #FFF;
}

.interview_archive_item + .interview_archive_item {
  margin-top: 70px;
}

.interview_archive_item_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 clamp(20px, 11.864px + 2.542vw, 50px);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 14.576px + 1.695vw, 40px);
  margin-top: 50px;
}
@media (max-width: 768px) {
  .interview_archive_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
}

.interview_archive_item_left {
  position: relative;
  max-width: 720px;
  width: 100%;
}
@media (max-width: 768px) {
  .interview_archive_item_left {
    display: contents;
  }
}

.interview_archive_item_title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.interview_archive_item_title_ja {
  position: relative;
  max-width: 770px;
  width: 100%;
  color: #FFF;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 22px clamp(20px, 11.864px + 2.542vw, 50px);
  border-radius: 20px 0 20px 0;
  background-color: #0058BB;
}
@media (max-width: 768px) {
  .interview_archive_item_title_ja {
    font-size: 20px;
    line-height: 140%;
    padding: 15px 5%;
  }
}

.interview_message {
  position: relative;
  font-size: clamp(22px, 19.831px + 0.678vw, 30px);
  font-weight: 700;
  line-height: 145%;
  letter-spacing: 0.05em;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 50px;
  padding: 0 clamp(20px, 11.864px + 2.542vw, 50px);
}
@media (max-width: 768px) {
  .interview_message {
    font-size: 16px;
    margin-top: 25px;
    padding: 0 5%;
  }
}

.interview_archive_item_group {
  position: relative;
}
@media (max-width: 768px) {
  .interview_archive_item_group {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.interview_archive_item_group + .interview_archive_item_group {
  margin-top: 50px;
}
@media (max-width: 768px) {
  .interview_archive_item_group + .interview_archive_item_group {
    margin-top: 0;
  }
}

.interview_archive_item_group_subtitle {
  position: relative;
  color: #0058BB;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
  padding-bottom: 10px;
  border-bottom: 1px solid #0058BB;
}

.interview_archive_item_group_text {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  margin-top: 20px;
}

.interview_archive_item_right {
  position: relative;
  max-width: 390px;
  width: 100%;
}
@media (max-width: 768px) {
  .interview_archive_item_right {
    display: contents;
  }
}

.interview_archive_img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .interview_archive_img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.interview_archive_img img {
  height: auto;
}

.interview_archive_item_timeschedule {
  position: relative;
  margin-top: 40px;
  padding: clamp(15px, 10.932px + 1.271vw, 30px);
  background-color: #D6E5F6;
  border-radius: 20px;
}
@media (max-width: 1300px) {
  .interview_archive_item_timeschedule {
    padding-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .interview_archive_item_timeschedule {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-top: 0;
  }
}

.interview_archive_item_timeschedule_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 140%;
  letter-spacing: 0.05em;
}

.interview_archive_item_timelines {
  position: relative;
  margin-top: 25px;
}

.interview_archive_item_timeline {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: clamp(10px, 6.746px + 1.017vw, 22px);
}

.interview_archive_item_timeline + .interview_archive_item_timeline {
  padding-top: 35px;
}

.interview_archive_item_timeline_hour {
  position: relative;
  display: block;
  width: 95px;
  color: #FFF;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  border-radius: 30px;
  background-color: #0058BB;
  padding: 10px 0;
}

.interview_archive_item_timeline:not(:first-child) .interview_archive_item_timeline_hour::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 150%;
  background-color: #0058BB;
  top: -150%;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.interview_archive_item_timeline_text {
  position: relative;
  max-width: 213px;
  width: 100%;
  font-weight: 500;
  line-height: 155%;
  letter-spacing: 0;
}
@media (max-width: 1300px) {
  .interview_archive_item_timeline_text {
    line-height: 120%;
  }
}

.interview_archive_item_btn {
  position: relative;
  margin-top: 80px;
}
@media (max-width: 768px) {
  .interview_archive_item_btn {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
    max-width: 220px;
    width: 100%;
    margin: 0 auto;
  }
}

.interview_archive_item_btn .btn {
  margin: 0 auto;
}

/* jobinfo - single
------------------------------ */
.jobinfo_single {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .jobinfo_single {
    padding: 60px 0;
  }
}

/* works - single
------------------------------ */
.works_single_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 80px;
  padding-bottom: 152px;
}
@media (max-width: 1300px) {
  .works_single_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .works_single_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
    margin-top: 40px;
    padding-bottom: 80px;
  }
}

.works_single_wrapper_inner {
  position: relative;
  max-width: clamp(650px, 594.136px + 17.458vw, 856px);
  width: 100%;
}

.works_single_title_ja {
  position: relative;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .works_single_title_ja {
    font-size: 18px;
  }
}

.works_single_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(8px, 5.831px + 0.678vw, 16px);
  margin-top: 16px;
}
@media (max-width: 768px) {
  .works_single_unit {
    gap: 5px;
    margin-top: 5px;
  }
}

.works_single_tag {
  position: relative;
  color: #0058BB;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0.02em;
  padding: 4px clamp(7px, 5.102px + 0.593vw, 14px);
  border-radius: 4px;
  border: 1px solid #0058BB;
}

.works_single_area {
  position: relative;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.works_single_date {
  position: relative;
  color: #868686;
  font-size: 15px;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 130%;
  letter-spacing: 0.05em;
}

.works_single_contents {
  position: relative;
  margin-top: 56px;
}
@media (max-width: 768px) {
  .works_single_contents {
    margin-top: 24px;
  }
}

.works_single_contents_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.works_single_contents_before,
.works_single_contents_after {
  position: relative;
  max-width: clamp(280px, 247.458px + 10.169vw, 400px);
  width: 100%;
}

.works_single_contents_before::after {
  content: "";
  position: absolute;
  display: block;
  width: 18px;
  height: 36px;
  right: -37px;
  top: 55%;
  background-color: #2A2A2A;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
@media (max-width: 768px) {
  .works_single_contents_before::after {
    width: 12px;
    height: 22px;
    right: -23px;
  }
}

.works_single_contents_before_title {
  position: relative;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.works_single_contents_before_pict,
.works_single_contents_after_pict {
  position: relative;
  margin-top: 8px;
}

.works_single_contents_after_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  font-family: "Barlow Condensed", sans-serif;
  line-height: 150%;
  letter-spacing: 0.02em;
}

.works_single_figure {
  position: relative;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .works_single_figure {
    margin-top: 20px;
  }
}

.works_single_figure dl {
  display: grid;
  grid-template-columns: 150px 1fr;
  border-top: 1px solid #474747;
}
@media (max-width: 768px) {
  .works_single_figure dl {
    grid-template-columns: 1fr;
  }
}

.works_single_figure dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 200%;
  letter-spacing: 0.04em;
  padding: 24px 0;
  border-bottom: 1px solid #474747;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .works_single_figure dl dt {
    line-height: 170%;
    padding: 10px 0 2px;
    border-bottom: 0;
  }
}

.works_single_figure dl dd {
  width: 100%;
  line-height: 200%;
  letter-spacing: 0.04em;
  padding: 24px 40px 24px 0;
  border-bottom: 1px solid #474747;
}
@media (max-width: 768px) {
  .works_single_figure dl dd {
    line-height: 170%;
    padding: 0 0 10px;
  }
}

.works_single_details {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .works_single_details {
    margin-top: 30px;
  }
}

.works_single_details_title_ja {
  position: relative;
  color: #FFF;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08em;
  padding: clamp(8px, 5.831px + 0.678vw, 16px);
  background-color: #0058BB;
}
@media (max-width: 768px) {
  .works_single_details_title_ja {
    font-size: 18px;
    padding: 5px 10px;
  }
}

.works_single_details_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px 23px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .works_single_details_items {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
  }
}

.works_single_details_item_pict figcaption {
  position: relative;
  line-height: 150%;
  letter-spacing: 0.05em;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .works_single_details_item_pict figcaption {
    margin-top: 3px;
  }
}

.single_works_btn {
  position: relative;
  margin-top: 120px;
}
@media (max-width: 768px) {
  .single_works_btn {
    margin-top: 24px;
  }
}

.single_works_btn .btn {
  margin: 0 auto;
}

/* news - archive
------------------------------ */
.news_archive {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .news_archive {
    padding: 60px 0;
  }
}

.news_archive_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media (max-width: 1300px) {
  .news_archive_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
@media (max-width: 768px) {
  .news_archive_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}

.news_archive_item + .news_archive_item {
  margin-top: 40px;
}

.news_archive_item_wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(20px, 11.864px + 2.542vw, 50px);
  padding: clamp(24px, 19.661px + 1.356vw, 40px);
  background-color: #FFF;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .news_archive_item_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.news_archive_item_img {
  position: relative;
  display: block;
  max-width: 260px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .news_archive_item_img {
    max-width: unset;
    margin: 0 auto;
  }
}

.news_archive_item_img img {
  width: 100%;
  height: auto;
}

.news_archive_unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}

.news_archive_date {
  position: relative;
  color: #0058BB;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
}

.news_archive_cat {
  position: relative;
  min-width: 100px;
  color: #FFF;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding: 6px 0 7px;
  border-radius: 50px;
  background-color: #0058BB;
}

.news_archive_item_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(16px, 13.831px + 0.678vw, 24px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0;
  border-bottom: 1px solid #008AD4;
  margin-top: 16px;
  padding-bottom: 15px;
}
@media (max-width: 768px) {
  .news_archive_item_title {
    line-height: 145%;
    letter-spacing: 0.05em;
    padding-bottom: 8px;
  }
}

.news_archive_text {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
  margin-top: 17px;
}

.news_archive_btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .news_archive_btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 20px;
  }
}

.news_archive_btn .btn {
  max-width: 220px;
  font-size: 14px;
  padding: 17px clamp(10px, 7.288px + 0.847vw, 20px);
}

/* pagenavi */
.pagenavi, .wp-pagenavi {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-top: 80px;
}

.wp-pagenavi .pages {
  display: none;
}

.pagenavi span,
.news_archive_page_navigation .wp-pagenavi span,
.works_archive_page_navigation .wp-pagenavi span {
  position: relative;
  width: 35px;
  height: 35px;
  color: #FFF;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  padding-top: 8px;
  background-color: #0058BB;
  border-radius: 5px;
  border: 0 !important;
  margin: 0;
}

.pagenavi a,
.news_archive_page_navigation .wp-pagenavi a,
.works_archive_page_navigation .wp-pagenavi a {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  padding-top: 8px;
  border: 1px solid #0058BB;
  background-color: #FFF;
  border-radius: 5px;
}

@media (min-width: 768px) {
  .pagenavi a:hover,
  .news_archive_page_navigation .wp-pagenavi a:hover,
  .works_archive_page_navigation .wp-pagenavi a:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

.news_cta01 {
  position: relative;
  margin-top: 130px;
}

/* news - single
------------------------------ */
.news_single {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .news_single {
    padding: 60px 0;
  }
}

.news_single_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: clamp(25px, 18.22px + 2.119vw, 50px);
}
@media (max-width: 768px) {
  .news_single_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.news_single_main {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: clamp(20px, 11.864px + 2.542vw, 50px) clamp(20px, 11.864px + 2.542vw, 50px) clamp(35px, 25.508px + 2.966vw, 70px);
  border-radius: 20px;
  background-color: #FFF;
}

.news_single_item_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
  margin-top: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #0058BB;
}
@media (max-width: 768px) {
  .news_single_item_title {
    font-size: 18px;
    line-height: 145%;
  }
}

.news_archive_img {
  position: relative;
  display: block;
  max-width: 600px;
  margin: 56px 0 0;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .news_archive_img {
    margin-top: 24px;
  }
}

.news_archive_img img {
  max-width: 100%;
  width: auto;
  height: auto;
  margin: 0 auto;
}

.news_single_content {
  position: relative;
  margin-top: 25px;
}

.news_single_content h3 {
  position: relative;
  font-size: clamp(18px, 16.373px + 0.508vw, 24px);
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 0.05em;
}

.news_single_content p {
  position: relative;
  font-weight: 500;
  line-height: 190%;
  letter-spacing: 0;
}

.news_archive_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  gap: clamp(8px, 5.831px + 0.678vw, 16px);
}
@media (max-width: 768px) {
  .news_archive_buttons {
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 30px;
  }
}

.news_archive_button {
  position: relative;
  max-width: 220px;
  width: 100%;
}

.news_archive_button a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  color: #0058BB;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.02em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 18px clamp(10px, 7.288px + 0.847vw, 20px);
  border: 2px solid #0058BB;
  background-color: #FFF;
  border-radius: 50px;
}
@media (max-width: 768px) {
  .news_archive_button a {
    padding: 12px 16px;
  }
}

@media (min-width: 768px) {
  .news_archive_button a:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

.news_archive_button_previous a {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.news_archive_button a::after {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightBlue.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .news_archive_button a:hover::before {
    opacity: 1;
  }
}

.news_archive_button_previous a::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  right: auto;
  left: 0;
}

.news_archive_button_all a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news_archive_button_all a::after {
  display: none;
}

@media (min-width: 768px) {
  .news_archive_button a:hover::after {
    background-image: url(../images/common/arrow_rightWhite.svg);
    right: -5px;
  }
}

.news_archive_button_previous a:hover::after {
  left: -5px;
  right: auto;
}

.news_archive_button a span {
  position: relative;
  z-index: 1;
}

/* jobinfo - archive
------------------------------ */
.jobinfo_article {
  position: relative;
  padding: 120px 0 313px;
  background: #F8F8F8;
  background: linear-gradient(145deg, rgb(248, 248, 248) 0%, rgb(230, 230, 230) 100%);
}
@media (max-width: 768px) {
  .jobinfo_article {
    padding: 60px 0;
  }
}

.jobinfo_article_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
@media (max-width: 768px) {
  .jobinfo_article_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 50px;
  }
}

.jobinfo_article_contents {
  position: relative;
  max-width: 900px;
  width: 100%;
}

.jobinfo_article_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
}
@media (max-width: 768px) {
  .jobinfo_article_items {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.jobinfo_archive_item {
  position: relative;
  max-width: 280px;
  width: 100%;
}
@media (max-width: 768px) {
  .jobinfo_archive_item {
    max-width: unset;
    margin: 0 auto;
  }
}

.jobinfo_archive_item_wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
  background-color: #FFF;
  -webkit-box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
          box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
  top: 0;
}

.jobinfo_archive_item_wrapper:hover {
  opacity: 0.8;
  top: 3px;
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.jobinfo_archive_item_img {
  position: relative;
  width: 100%;
  max-height: 175px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
}

.jobinfo_archive_item_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.jobinfo_archive_item_content {
  position: relative;
  padding: 16px clamp(10px, 7.017px + 0.932vw, 21px) 0;
}

.jobinfo_archive_item_title {
  position: relative;
  min-height: 60px;
}
@media (max-width: 768px) {
  .jobinfo_archive_item_title {
    min-height: unset;
  }
}

.jobinfo_archive_item_title_ja {
  position: relative;
  color: #0058BB;
  font-size: clamp(14px, 12.915px + 0.339vw, 18px);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 165%;
}

.jobinfo_article_terms {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  margin-top: 10px;
}
@media (max-width: 1300px) {
  .jobinfo_article_terms {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.jobinfo_article_term {
  position: relative;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px 16px 11px;
  border-radius: 50px;
  background-color: #0058BB;
}
@media (max-width: 1300px) {
  .jobinfo_article_term {
    font-size: clamp(10px, 8.915px + 0.339vw, 14px);
  }
}
@media (max-width: 768px) {
  .jobinfo_article_term {
    font-size: 14px;
  }
}

.jobinfo_archive_item_text {
  position: relative;
  margin-top: 15px;
}

.jobinfo_archive_item_text p {
  font-size: 14px;
  font-weight: 500;
  line-height: 180%;
  letter-spacing: 0.05em;
}

.jobinfo_archive_item_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 14px;
}

.jobinfo_archive_item_link p {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 166px;
  width: 100%;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  padding: 10px clamp(12px, 10.373px + 0.508vw, 18px);
  border-radius: 20px 0 20px 0;
  background: #26F371;
  background: linear-gradient(145deg, rgb(38, 243, 113) 0%, rgb(0, 170, 159) 100%);
}

.jobinfo_archive_item_link p::after {
  content: "";
  position: relative;
  display: block;
  width: 17px;
  height: 13px;
  background: url(../images/common/arrow_rightWhite.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

/* jobinfo - single
------------------------------ */
.jobinfo_single_main {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px clamp(25px, 18.22px + 2.119vw, 50px) 70px;
  border-radius: 20px;
  background-color: #FFF;
}
@media (max-width: 768px) {
  .jobinfo_single_main {
    padding: 8% 5%;
  }
}

.jobinfo_single_title {
  position: relative;
  margin-top: 40px;
  padding-bottom: 15px;
  border-bottom: 1px solid #0058BB;
}
@media (max-width: 768px) {
  .jobinfo_single_title {
    margin-top: 20px;
    padding-bottom: 10px;
  }
}

.jobinfo_single_title_ja {
  position: relative;
  color: #0058BB;
  font-size: clamp(18px, 15.831px + 0.678vw, 26px);
  font-weight: 700;
  line-height: 160%;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .jobinfo_single_title_ja {
    line-height: 145%;
  }
}

.jobinfo_thumbnail_img {
  position: relative;
  max-width: 575px;
  width: 100%;
  margin-top: 50px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .jobinfo_thumbnail_img {
    margin: 20px auto 0;
  }
}

.jobinfo_thumbnail_img img {
  height: auto;
}

.jobinfo_single_figure dl {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-top: 1px solid #0058BB;
  margin-top: 50px;
}
@media (max-width: 1300px) {
  .jobinfo_single_figure dl {
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 768px) {
  .jobinfo_single_figure dl {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
}

.jobinfo_single_figure dl dt {
  line-height: 170%;
  letter-spacing: 0.05em;
  background-color: #D6E5F6;
  padding: clamp(10px, 8.102px + 0.593vw, 17px) clamp(15px, 10.932px + 1.271vw, 30px);
  border-bottom: 1px solid #0058BB;
}

@media (max-width: 768px) {
  .jobinfo_single_figure dl dt:not(:first-child) {
    margin-top: 20px;
    border-top: 1px solid #0058BB;
  }
}

.jobinfo_single_figure dl dd {
  position: relative;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
  padding: clamp(10px, 8.102px + 0.593vw, 17px) clamp(15px, 10.932px + 1.271vw, 30px);
  border-bottom: 1px solid #0058BB;
}

.jobinfo_single_btn {
  position: relative;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .jobinfo_single_btn {
    max-width: 250px;
    margin: 30px auto 0;
  }
}

.jobinfo_single_btn .btn {
  margin: 0 auto;
}

/* aside
------------------------------ */
.section_side {
  position: relative;
  max-width: clamp(200px, 172.881px + 8.475vw, 300px);
  width: 100%;
  padding-bottom: 40px;
  background-color: #FFF;
  border-radius: 20px;
}
@media (max-width: 1300px) {
  .section_side {
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .section_side {
    max-width: 280px;
  }
}

.section_side_main_title_ja {
  position: relative;
  display: block;
  color: #FFF;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 25px clamp(15px, 10.932px + 1.271vw, 30px);
  border-radius: 20px 20px 0 0;
  background-color: #0058BB;
}

.section_side_group {
  position: relative;
  padding: 0 clamp(10px, 7.288px + 0.847vw, 20px);
}

.section_side_group + .section_side_group {
  margin-top: 10px;
}

.section_side_title {
  position: relative;
  color: #0058BB;
  font-size: clamp(14px, 12.373px + 0.508vw, 20px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: clamp(20px, 17.288px + 0.847vw, 30px) 10px 15px;
  border-bottom: 1px solid #0058BB;
}

.list_jobinfo_area_takasaki,
.list_jobinfo_area_nagara,
.list_jobinfo_type_general {
  display: none;
}

.section_side_list_link {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 20px 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid #0058BB;
}

.section_side_list_link::after {
  content: "";
  position: relative;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightBlue.svg) no-repeat center center/contain;
  right: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .section_side_list_link:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

@media (min-width: 768px) {
  .section_side_list_link:hover::after {
    background-image: url(../images/common/arrow_rightWhite.svg);
    right: -5px;
  }
}

.news_section_side .section_side_group {
  margin-top: clamp(10px, 7.288px + 0.847vw, 20px);
}

/* thanks
------------------------------ */
.contact_tel {
  position: relative;
  margin-top: 80px;
}

.sub_section_title_ja {
  position: relative;
  font-size: clamp(24px, 21.831px + 0.678vw, 32px);
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.08em;
  text-align: center;
}

.contact_thanks_contents p {
  position: relative;
  display: block;
  line-height: 200%;
  letter-spacing: 0.05em;
  margin-top: 40px;
}

.contact_thanks_contents .cta_method_tel .cta_method_inner .cta_method_img img {
  opacity: 0;
}

.contact_thanks_contents .cta_method_contents p {
  line-height: 100%;
  margin-top: 0;
}

.contact_thanks_contents .cta_method_contents p.cta_method_tel_hour {
  margin-top: 5px;
}

.contact_thanks_btn {
  position: relative;
  margin-top: 50px;
}

.contact_thanks_btn .btn {
  margin: 0 auto;
}

/* 404
------------------------------ */
@media (max-width: 768px) {
  .yonmaruyon_maintitle_inner_ja {
    padding: 71px 0;
  }
}

.not_found {
  position: relative;
  padding-top: 130px;
}
@media (max-width: 768px) {
  .not_found {
    padding-top: 60px;
  }
}

.notfound_tel_title_ja {
  text-align: center;
}
@media (max-width: 768px) {
  .notfound_tel_title_ja {
    font-size: 18px;
    line-height: 145%;
  }
}

.not_found_text {
  position: relative;
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.1em;
  text-align: center;
  margin-top: 50px;
}
@media (max-width: 768px) {
  .not_found_text {
    font-size: 14px;
    line-height: 175%;
    margin-top: 30px;
  }
}

.not_found_btn {
  margin-top: 30px;
}

/* footer
------------------------------ */
.footer {
  position: relative;
  padding-top: 120px;
}
@media (max-width: 768px) {
  .footer {
    padding-top: 60px;
  }
}

.footer_logo {
  position: relative;
  display: block;
}

.footer_logo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 490px;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 15px;
}
@media (max-width: 768px) {
  .footer_logo a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.footer_logo a::after {
  content: "採用サイト";
  position: relative;
  display: block;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding: 13px 10px;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
  white-space: nowrap;
  top: 5px;
}

.footer_info {
  position: relative;
  margin-top: 30px;
}
@media (max-width: 1300px) {
  .footer_info {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .footer_info {
    text-align: left;
    margin-top: 24px;
  }
}

.footer_location + .footer_location {
  margin-top: 20px;
}

.footer_location_title {
  position: relative;
  color: #0058BB;
  font-weight: 700;
  line-height: 155%;
  letter-spacing: 0;
}

.footer_location_address {
  position: relative;
  line-height: 155%;
  letter-spacing: 0;
}

@media (max-width: 768px) {
  .footer_nav {
    display: none;
  }
}

.footer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(10px, 4.576px + 1.695vw, 30px);
  margin-top: 50px;
}

.footer_list a {
  position: relative;
  color: #474747;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.05em;
  padding-bottom: 4px;
}
@media (max-width: 1300px) {
  .footer_list a {
    font-size: 14px;
    white-space: normal;
  }
}

.footer_list a::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 1px;
  background-color: #0058BB;
  left: 0;
  bottom: 0;
  -webkit-transition: 0.35s;
  transition: 0.35s;
}

@media (min-width: 768px) {
  .footer_list a:hover {
    color: #0058BB;
  }
}

@media (min-width: 768px) {
  .footer_list a:hover::after {
    width: 100%;
  }
}

.footer_large_btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 75px;
  gap: clamp(15px, 10.932px + 1.271vw, 30px);
}
@media (max-width: 768px) {
  .footer_large_btns {
    margin-top: 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer_large_btn {
  position: relative;
  max-width: 415px;
  width: 100%;
}

.footer_large_btn .btn {
  max-width: unset;
  color: #0058BB;
  border: 2px solid #0058BB;
  background: #FFF;
}

.footer_large_btn .btn::before {
  display: none;
}

.footer_large_btn .btn::after {
  background-image: url(../images/common/arrow_rightBlue.svg);
}

@media (min-width: 768px) {
  .footer_large_btn .btn:hover {
    color: #FFF;
    background-color: #0058BB;
  }
}

@media (min-width: 768px) {
  .footer_large_btn .btn:hover::after {
    background-image: url(../images/common/arrow_rightWhite.svg);
  }
}

/* foot_menu
------------------------------ */
.foot_menu {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
          box-shadow: -5px 0 8px rgba(0, 0, 0, 0.5);
  margin: 0 auto;
  z-index: 10;
}
@media (min-width: 768px) {
  .foot_menu {
    display: none;
  }
}
@media (max-width: 768px) {
  .foot_menu {
    display: block;
  }
}

.foot_menu_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.foot_menu_jobinfo {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.foot_menu_jobinfo a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  color: #0058BB;
  font-size: 14px;
  font-weight: 700;
  background-color: #D6E5F6;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

.foot_menu_entry {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.foot_menu_jobinfo_icon {
  position: relative;
  max-height: 25px;
}

.foot_menu_jobinfo_icon img {
  width: auto;
  height: 30px;
}

.foot_menu_entry a {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  background: #26F371;
  background: linear-gradient(145deg, rgb(38, 243, 113) 0%, rgb(0, 170, 159) 100%);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
}

@media (min-width: 768px) {
  .foot_menu_entry a::before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 60px;
    top: 0;
    left: 0;
    background: #005CB1;
    background: linear-gradient(225deg, rgb(0, 92, 177) 0%, rgb(0, 138, 212) 100%);
    opacity: 0;
    -webkit-transition: 0.35s;
    transition: 0.35s;
  }
}

.foot_menu_entry_icon {
  position: relative;
  display: block;
  max-width: 25px;
  width: 100%;
  z-index: 1;
}

.foot_menu_entry a span {
  position: relative;
  display: block;
  text-align: center;
  z-index: 1;
}

.footer_copyright {
  position: relative;
  color: #FFF;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 100%;
  text-align: center;
  margin-top: 100px;
  padding: 35px 0;
  background: #1CC2FF;
  background: linear-gradient(145deg, rgb(28, 194, 255) 0%, rgb(0, 88, 187) 100%);
}
@media (max-width: 768px) {
  .footer_copyright {
    margin-top: 40px;
    padding-bottom: 120px;
  }
}

/* page_top
------------------------------ */
.page_top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 60px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  background-color: #FFF;
  border: 2px solid #0058BB;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 50;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 768px) {
  .page_top {
    right: 5%;
    bottom: 105px;
  }
}
@media (max-width: 768px) {
  .page_top {
    bottom: 80px;
  }
}

.page_top::before {
  content: "";
  position: absolute;
  display: block;
  width: 23px;
  height: 19px;
  background: url(../images/common/arrow_rightBlue.svg) no-repeat center center/contain;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.35s;
  transition: 0.35s;
  opacity: 1;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media (min-width: 768px) {
  .page_top:hover {
    background-color: #0058BB;
  }
}

@media (min-width: 768px) {
  .page_top:hover::before {
    background-image: url(../images/common/arrow_rightWhite.svg);
  }
}

.toppage_animation {
  position: relative;
  opacity: 0;
}

.toppage_animation.animated {
  -webkit-animation: 0.4s fadeintext 0.3s forwards;
          animation: 0.4s fadeintext 0.3s forwards;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

@-webkit-keyframes fadeintext {
  0% {
    top: 10px;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}

@keyframes fadeintext {
  0% {
    top: 10px;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.toppage_animation_slideL,
.toppage_animation_slideR {
  position: relative;
  opacity: 0;
}

.toppage_animation_slideL.animated {
  -webkit-animation: 0.5s slideinLefttext 0.3s forwards;
          animation: 0.5s slideinLefttext 0.3s forwards;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

@-webkit-keyframes slideinLefttext {
  0% {
    left: -20%;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}

@keyframes slideinLefttext {
  0% {
    left: -20%;
  }
  100% {
    left: 0;
    opacity: 1;
  }
}
.toppage_animation_slideR.animated {
  -webkit-animation: 0.5s slideinRighttext 0.3s forwards;
          animation: 0.5s slideinRighttext 0.3s forwards;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

@-webkit-keyframes slideinRighttext {
  0% {
    right: -20%;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes slideinRighttext {
  0% {
    right: -20%;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}
/* loading
----------------------------------------------- */
@-webkit-keyframes scale-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes scale-zoom {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 500;
  width: 100%;
  height: 100vh;
  background: #FFF;
}

.loading figure {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.loading img {
  width: 15rem;
  -webkit-animation: scale-zoom 3s 0s forwards;
          animation: scale-zoom 3s 0s forwards;
}

/* scroll
----------------------------------------------- */
.header.is-loaded_top,
.header_hamburger.is-loaded_top,
.header_entry_btn.is-loaded_top {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.is-scroll .header.is-loaded_top {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.is-scroll .header_hamburger.is-loaded_top {
  -webkit-transform: translateY(-150%);
          transform: translateY(-150%);
}
@media (max-width: 768px) {
  .is-scroll .header_hamburger.is-loaded_top {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}

.is-scroll .header_entry_btn.is-loaded_top {
  -webkit-transform: translateY(180%);
          transform: translateY(180%);
}
@media (max-width: 768px) {
  .is-scroll .header_entry_btn.is-loaded_top {
    -webkit-transform: translateY(-200%);
            transform: translateY(-200%);
  }
}

.is-nav_opened .header_entry_btn.is-loaded_top {
  opacity: 0;
  pointer-events: none;
}

.is-loaded_top.is-nav_opened.is-scroll .header,
.is-loaded_top.is-nav_opened.is-scroll .header_hamburger {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}