@charset "UTF-8";
/*=======================================
	breakpoint
=======================================*/
/*=======================================
	hover
=======================================*/
/*=======================================
	中央配置
=======================================*/
/*=======================================
	可変レスポンシブ
=======================================*/
/* PC */
/* TB */
/* SP */
/*=======================================
	ブラウザ別
=======================================*/
/* Safari */
/* Firefox */
/* ----------------------
- base :アンカーリンク/コンテンツ幅　他
- bottom_spacing :コンテンツ最下部の共通余白
- color :色変数
- fadein :フェードイン
- header :ヘッダー
- footer :フッター
- breadcrumbs :パンくずリスト
- cmn_btn :共通ボタン
- リスト
- txt :フォント設定
- mb :汎用_下マージン調整
- cookie_consent :Cookie同意ポップアップ
---------------------- */
/*=======================================
　base
=======================================*/
* {
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

html {
  scrollbar-gutter: stable;
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 95px;
  }
}

body {
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "Hiragino Maru Gothic W4 JIS2004", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #333;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

main {
  padding-top: min(13.125vw, 150px);
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 82px;
  }
}
@media screen and (max-width: 768px) {
  main[class]:not(.recruit) {
    padding-top: 0;
    margin-top: 60px;
  }
}

a {
  -webkit-transition: none;
  transition: none;
  border-style: none;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 1;
  }
  a:hover .cmn_btn.in-link::after {
    -webkit-animation: arrowMove 0.8s ease forwards;
            animation: arrowMove 0.8s ease forwards;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  a:hover {
    opacity: 1;
  }
  a:hover .cmn_btn.in-link::after {
    -webkit-animation: arrowMove 0.8s ease forwards;
            animation: arrowMove 0.8s ease forwards;
  }
}

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

picture {
  display: block;
}

/* 折り返したくない文字を囲う */
span.nowrap {
  white-space: nowrap;
}

/*アンカーリンク*/
.anchor {
  padding-top: 170px;
  margin-top: -170px;
  display: block;
}
@media screen and (max-width: 768px) {
  .anchor {
    padding-top: 100px;
    margin-top: -100px;
  }
}

/*コンテンツ幅*/
.inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.w1400 {
  max-width: 1400px;
}

.w1200 {
  max-width: 1200px;
}

.w1000 {
  max-width: 1000px;
}

.w900 {
  max-width: 900px;
}

/* PCではTELのリンク無効 */
@media only screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.poppins {
  font-family: "Poppins", sans-serif;
}

.jost {
  font-family: "jost", sans-serif;
}

.yugothic {
  font-family: "游ゴシック", YuGothic, sans-serif;
}

/*=======================================
　bottom_spacing
=======================================*/
.bottom_spacing {
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .bottom_spacing {
    margin-bottom: 50px;
  }
}

/*=======================================
　color
=======================================*/
:root {
  --main_black: #333;
  --main_white: #fff;
  --main_blue: #2A65A9;
}

/*=======================================
　fadein
=======================================*/
/*その場で出現*/
.fadeIn {
  opacity: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.fadeIn.is-show {
  opacity: 1;
}

/* ぼやっと出てくる */
.filter_blur {
  -webkit-filter: blur(30px);
          filter: blur(30px);
}
.filter_blur.is-show {
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
  transition: 1.2s cubic-bezier(0.61, 1, 0.88, 1);
}

/*=======================================
　header
=======================================*/
:where(header) {
  width: 100%;
  height: 13.125vw;
  max-height: 150px;
  background: #fff;
  container-type: inline-size;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
:where(header).is-hide {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 768px) {
  :where(header) {
    height: 60px;
    min-height: auto;
  }
}
:where(header) {
  /* PCナビ */
}
:where(header) .pc {
  height: 100%;
}
:where(header) .pc .flex_area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-top: 12px;
  padding-bottom: 5px;
  gap: 30px;
}
:where(header) .pc .flex_area .hd_logo {
  position: absolute;
  left: 0;
  width: 46.2468vw;
  max-width: 739.95px;
  margin-top: 10px;
  margin-left: 5.75vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
:where(header) .pc .flex_area .hd_logo > a {
  max-width: 740px;
}
:where(header) .pc .flex_area .hd_logo > img {
  max-width: 110px;
}
:where(header) .pc .flex_area nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  margin-right: min(6.25vw, 100px);
}
:where(header) .pc .flex_area nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 2cqi;
     -moz-column-gap: 2cqi;
          column-gap: 2cqi;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
:where(header) .pc .flex_area nav ul li {
  width: 100%;
  height: 100%;
}
:where(header) .pc .flex_area nav ul li a {
  font-size: clamp(11px, 1.125vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  display: block grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 4px;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
:where(header) .pc .flex_area nav ul li a span {
  position: relative;
}
:where(header) .pc .flex_area nav ul li a span::before {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  background: var(--main_blue);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  :where(header) .pc .flex_area nav ul li a:hover {
    color: var(--main_blue);
    opacity: 1;
  }
  :where(header) .pc .flex_area nav ul li a:hover span::before {
    width: 100%;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  :where(header) .pc .flex_area nav ul li a:hover {
    color: var(--main_blue);
    opacity: 1;
  }
  :where(header) .pc .flex_area nav ul li a:hover span::before {
    width: 100%;
  }
}
:where(header) .pc .flex_area nav ul:first-of-type {
  color: var(--main_white);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 9.38px;
  margin-top: min(0.4375vw, 7px);
  margin-bottom: min(1vw, 16px);
}
:where(header) .pc .flex_area nav ul:first-of-type li {
  width: 14.6875vw;
  max-width: 237px;
  min-width: 138.75px;
  height: 3.75vw;
  min-height: 45px;
  max-height: 56px;
  aspect-ratio: 185/44;
  border-radius: 3px;
  -webkit-transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
:where(header) .pc .flex_area nav ul:first-of-type li a {
  font-size: clamp(11px, 1.25vw, 20px);
  padding-bottom: 0;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
:where(header) .pc .flex_area nav ul:first-of-type li a::before {
  display: none;
}
:where(header) .pc .flex_area nav ul:first-of-type li span {
  position: relative;
}
:where(header) .pc .flex_area nav ul:first-of-type li span::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
:where(header) .pc .flex_area nav ul:first-of-type li:first-of-type {
  background-color: #4AADFD;
  background-image: -webkit-gradient(linear, left top, right top, from(#4AADFD), color-stop(40%, #4AADFD), color-stop(60%, #6FBBF8), to(#6FBBF8));
  background-image: linear-gradient(to right, #4AADFD 0%, #4AADFD 40%, #6FBBF8 60%, #6FBBF8 100%);
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #4AADFD;
            box-shadow: inset 0 0 0 1px #4AADFD;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover a {
    color: #4AADFD;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover span::before {
    background-color: #4AADFD;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #4AADFD;
            box-shadow: inset 0 0 0 1px #4AADFD;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover a {
    color: #4AADFD;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type:hover span::before {
    background-color: #4AADFD;
  }
}
:where(header) .pc .flex_area nav ul:first-of-type li:first-of-type span {
  letter-spacing: 0.08em;
  padding-left: min(1.875vw, 30px);
}
:where(header) .pc .flex_area nav ul:first-of-type li:first-of-type span::before {
  width: clamp(10.5px, 1.625vw, 26px);
  height: clamp(6.75px, 1.5vw, 24px);
  top: 50%;
  background-color: var(--main_white);
  -webkit-mask: center/100% 100% url(../img/common/inquiry_icon.svg) no-repeat;
          mask: center/100% 100% url(../img/common/inquiry_icon.svg) no-repeat;
  translate: -75% -50%;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
:where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2) {
  background-color: var(--main_blue);
  background-image: -webkit-gradient(linear, left top, right top, from(var(--main_blue)), to(#69A9F0));
  background-image: linear-gradient(to right, var(--main_blue) 0%, #69A9F0 100%);
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px var(--main_blue);
            box-shadow: inset 0 0 0 1px var(--main_blue);
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover a {
    color: var(--main_blue);
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover span::before {
    background-color: var(--main_blue);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px var(--main_blue);
            box-shadow: inset 0 0 0 1px var(--main_blue);
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover a {
    color: var(--main_blue);
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2):hover span::before {
    background-color: var(--main_blue);
  }
}
:where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2) span {
  letter-spacing: 0.08em;
  padding-left: min(1.875vw, 30px);
}
:where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2) span::before {
  width: clamp(7.5px, 1.125vw, 18px);
  height: clamp(7.825px, 1.1875vw, 19px);
  top: 50%;
  background-color: var(--main_white);
  -webkit-mask: center/100% 100% url(../img/common/recruit_icon.svg) no-repeat;
          mask: center/100% 100% url(../img/common/recruit_icon.svg) no-repeat;
  translate: -40% -50%;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
:where(header) .pc .flex_area nav ul:nth-of-type(2) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
:where(header) .pc .flex_area nav ul:nth-of-type(2) li {
  width: auto;
  height: auto;
}
:where(header) {
  /* SPナビ */
}
@media screen and (max-width: 768px) {
  :where(header) .sp {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  :where(header) .sp .flex_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  :where(header) .sp .hd_logo {
    width: 295px;
    position: relative;
    margin-left: 4%;
    -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
    z-index: 300;
  }
  :where(header) .sp .hd_logo a img {
    height: auto;
  }
  :where(header) .sp {
    /* ハンバーガーメニューボタン */
  }
  :where(header) .sp .openbtn {
    background: -webkit-gradient(linear, left top, right top, from(var(--main_blue)), to(#69A9F0));
    background: linear-gradient(to right, var(--main_blue) 0%, #69A9F0 100%);
    width: 38px;
    height: 38px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    border-radius: 3px;
    z-index: 500;
    -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
    margin-right: 4%;
    position: relative;
  }
  :where(header) .sp .openbtn span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 22px;
    height: 1px;
    background: #fff;
  }
  :where(header) .sp .openbtn span:nth-of-type(1) {
    top: 11px;
  }
  :where(header) .sp .openbtn span:nth-of-type(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  :where(header) .sp .openbtn span:nth-of-type(3) {
    bottom: 11px;
  }
  :where(header) .sp .openbtn.active {
    background: #fff;
    border: 1px solid #2A65A9;
  }
  :where(header) .sp .openbtn.active span {
    background: #2A65A9;
  }
  :where(header) .sp .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 7px;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  :where(header) .sp .openbtn.active span:nth-of-type(2) {
    display: none;
  }
  :where(header) .sp .openbtn.active span:nth-of-type(3) {
    top: 18px;
    left: 7px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  :where(header) .sp {
    /* ハンバーガーメニュー中身 */
  }
  :where(header) .sp .g_nav {
    width: 100%;
    height: 100vh;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    top: -20px;
    left: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-transform: translateZ(1px);
            transform: translateZ(1px);
    -webkit-transition: all 0.6s cubic-bezier(0.3, 0.84, 0.68, 1);
    transition: all 0.6s cubic-bezier(0.3, 0.84, 0.68, 1);
    z-index: 400;
  }
  :where(header) .sp .g_nav::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 275px;
    height: 100%;
    background: var(--main_white);
    border-top-left-radius: 5px;
    z-index: -1;
  }
  :where(header) .sp .g_nav.panelactive {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 0;
    background: rgba(0, 0, 0, 0.2);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  :where(header) .sp .g_nav .g_nav_inn {
    width: 275px;
    height: 100%;
    overflow-y: scroll;
    padding-top: 70px;
    padding-right: 29px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
    padding-left: 29px;
    scroll-padding-bottom: calc(96px + env(safe-area-inset-bottom));
    margin-right: 0;
    margin-left: auto;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank {
    margin-bottom: 35px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li a {
    color: var(--main_white);
    height: 54px;
    display: block flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    border-radius: 4px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li a span {
    line-height: 1;
    letter-spacing: 0.1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
    position: relative;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li a span::before {
    content: "";
    display: block;
    translate: 0 1px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li:first-of-type {
    margin-bottom: 10px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li:first-of-type a {
    background: -webkit-gradient(linear, left top, right top, from(#4aadfe), to(#6fbbf7));
    background: linear-gradient(to right, #4aadfe 0%, #6fbbf7 100%);
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li:first-of-type a span::before {
    width: 14px;
    height: 9px;
    background: center/contain url(../img/common/inquiry_icon.svg) no-repeat;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li:nth-of-type(2) a {
    background: -webkit-gradient(linear, left top, right top, from(var(--main_blue)), to(#69a9f0));
    background: linear-gradient(to right, var(--main_blue) 0%, #69a9f0 100%);
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_blank li:nth-of-type(2) a span::before {
    width: 10px;
    height: 12px;
    background: center/contain url(../img/common/recruit_icon.svg) no-repeat;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_page {
    margin-bottom: 25px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_page li:not(:last-of-type) {
    margin-bottom: 18px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_page li a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: block flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-bottom: 19px;
    border-bottom: 1px solid #94b2d4;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_page li a .cmn_btn.in-link {
    width: 24px;
    height: 18px;
    border-radius: 100%;
    background: var(--main_blue);
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_page li a .cmn_btn.in-link::after {
    width: 12px;
    height: 6px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_other {
    color: var(--main_blue);
    font-size: 14px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_other li:first-of-type {
    margin-bottom: 10px;
  }
  :where(header) .sp .g_nav .g_nav_inn nav .links_other li a {
    line-height: 1.5384615385;
  }
}

body:has(main.recruit) header {
  min-height: auto;
  border-bottom: 0;
  background: none;
  margin-bottom: 25px;
}
body:has(main.recruit) header .pc {
  background: #fff;
}
body:has(main.recruit) header .pc .flex_area {
  width: 90%;
  max-width: 1400px;
  margin-inline: auto;
}
body:has(main.recruit) header .pc .hd_logo {
  width: 53.8125vw;
  max-width: 861px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 0;
}
@media screen and (max-width: 860px) {
  body:has(main.recruit) header .pc .hd_logo {
    width: 50vw;
  }
}
body:has(main.recruit) header .pc .hd_logo a {
  width: 46.25vw;
  max-width: 740px;
}
body:has(main.recruit) header .pc .hd_logo a span {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
body:has(main.recruit) header .pc .hd_logo a span::before {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--main_blue);
  position: absolute;
  left: 0;
  bottom: -5px;
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  body:has(main.recruit) header .pc .hd_logo a:hover span::before {
    width: 100%;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  body:has(main.recruit) header .pc .hd_logo a:hover span::before {
    width: 100%;
  }
}
body:has(main.recruit) header .pc .hd_logo > img {
  width: 6.8125vw;
  translate: 0 min(8px, 0.5vw);
}
body:has(main.recruit) header .pc nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  margin-right: 0;
}
body:has(main.recruit) header .pc nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-column-gap: 2cqi;
     -moz-column-gap: 2cqi;
          column-gap: 2cqi;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
body:has(main.recruit) header .pc nav ul li {
  width: 100%;
  height: 100%;
}
body:has(main.recruit) header .pc nav ul li a {
  font-size: clamp(11px, 1.125vw, 18px);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: block grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding-bottom: 4px;
}
body:has(main.recruit) header .pc nav ul:first-of-type {
  color: var(--main_white);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 9.38px;
  margin-top: min(0.4375vw, 7px);
  margin-bottom: min(0.4375vw, 7px);
}
body:has(main.recruit) header .pc nav ul:first-of-type li {
  width: 14.6875vw;
  max-width: 237px;
  min-width: 138.75px;
  height: auto;
  min-height: 0;
  max-height: none;
  aspect-ratio: 185/44;
  border-radius: 3px;
  -webkit-transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, -webkit-box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  transition: background-color 0.4s ease, box-shadow 0.4s ease, -webkit-box-shadow 0.4s ease;
}
body:has(main.recruit) header .pc nav ul:first-of-type li a {
  font-size: clamp(11px, 1.25vw, 20px);
  padding-bottom: 0;
  -webkit-transition: color 0.4s ease;
  transition: color 0.4s ease;
}
body:has(main.recruit) header .pc nav ul:first-of-type li a::before {
  display: none;
}
body:has(main.recruit) header .pc nav ul:first-of-type li span {
  letter-spacing: 0.08em;
  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: min(1.25vw, 20px);
  position: relative;
  padding-left: 0;
}
body:has(main.recruit) header .pc nav ul:first-of-type li span::before {
  position: static;
  top: auto;
  left: auto;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  content: "";
  translate: none;
  -webkit-transition: background-color 0.4s ease;
  transition: background-color 0.4s ease;
}
body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type {
  background-color: #3C92D4;
  background: -webkit-gradient(linear, right top, left top, from(#85C0F1), to(#3C92D4));
  background: linear-gradient(to left, #85C0F1 0%, #3C92D4 100%);
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #3C92D4;
            box-shadow: inset 0 0 0 1px #3C92D4;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover a {
    color: #3C92D4;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover span::before {
    background-color: #3C92D4;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #3C92D4;
            box-shadow: inset 0 0 0 1px #3C92D4;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover a {
    color: #3C92D4;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type:hover span::before {
    background-color: #3C92D4;
  }
}
body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type span {
  padding-left: 0;
}
body:has(main.recruit) header .pc nav ul:first-of-type li:first-of-type span::before {
  width: clamp(16px, 2vw, 32px);
  height: auto;
  aspect-ratio: 1/1;
  top: auto;
  left: auto;
  background-color: var(--main_white);
  -webkit-mask: center/100% 100% url(../img/recruit/link_icon_bus.svg) no-repeat;
          mask: center/100% 100% url(../img/recruit/link_icon_bus.svg) no-repeat;
  translate: none;
}
body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2) {
  background-color: #EB7A0A;
  background: -webkit-gradient(linear, left top, right top, from(#EB7A0A), to(#F89A3D));
  background: linear-gradient(to right, #EB7A0A 0%, #F89A3D 100%);
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #EB7A0A;
            box-shadow: inset 0 0 0 1px #EB7A0A;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover a {
    color: #EB7A0A;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover span::before {
    background-color: #EB7A0A;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover {
    background-color: #fff;
    background-image: none;
    -webkit-box-shadow: inset 0 0 0 1px #EB7A0A;
            box-shadow: inset 0 0 0 1px #EB7A0A;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover a {
    color: #EB7A0A;
  }
  body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2):hover span::before {
    background-color: #EB7A0A;
  }
}
body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2) span {
  gap: min(0.9375vw, 15px);
  padding-left: 0;
}
body:has(main.recruit) header .pc nav ul:first-of-type li:nth-of-type(2) span::before {
  width: clamp(7.5px, 1.125vw, 18px);
  height: clamp(7.825px, 1.1875vw, 19px);
  top: auto;
  left: auto;
  background-color: var(--main_white);
  -webkit-mask: center/100% 100% url(../img/recruit/link_icon_search.svg) no-repeat;
          mask: center/100% 100% url(../img/recruit/link_icon_search.svg) no-repeat;
  translate: none;
}
body:has(main.recruit) header .sp {
  height: 62px;
  background: #fff;
}
body:has(main.recruit) header .sp .hd_logo {
  width: 275px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body:has(main.recruit) header .sp .hd_logo > a {
  display: block;
  width: 180px;
}
body:has(main.recruit) header .sp .hd_logo > img {
  width: 75px;
}
body:has(main.recruit) header .sp .g_nav .links_blank li:first-child a {
  background: -webkit-gradient(linear, right top, left top, from(#85C0F1), to(#3C92D4));
  background: linear-gradient(to left, #85C0F1 0%, #3C92D4 100%);
}
body:has(main.recruit) header .sp .g_nav .links_blank li:first-child a span::before {
  width: 20px;
  height: 20px;
  background: center/100% 100% url(../img/recruit/link_icon_bus.svg) no-repeat;
}
body:has(main.recruit) header .sp .g_nav .links_blank li:last-child a {
  background: -webkit-gradient(linear, left top, right top, from(#EB7A0A), to(#F89A3D));
  background: linear-gradient(to right, #EB7A0A 0%, #F89A3D 100%);
}
body:has(main.recruit) header .sp .g_nav .links_blank li:last-child a span::before {
  width: 15px;
  height: 15px;
  background: center/100% 100% url(../img/recruit/link_icon_search.svg) no-repeat;
}

body:has(main.recruit.biz) .header .pc .flex_area nav ul:last-of-type li:first-of-type a span::before {
  width: 100%;
}
body:has(main.recruit.biz).is-interview .header .pc .flex_area nav ul:last-of-type li:first-of-type a span::before {
  width: 0;
}
body:has(main.recruit.biz).is-interview .header .pc .flex_area nav ul:last-of-type li:nth-of-type(2) a span::before {
  width: 100%;
}

body:has(main.recruit.decided) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(3) a span::before {
  width: 100%;
}

body:has(main.recruit.recruit_top).is-faq .header .pc .flex_area nav ul:last-of-type li:nth-of-type(4) a span::before {
  width: 100%;
}

body:has(main.service:not(.features)) .header .pc .flex_area nav ul:last-of-type li:first-of-type a span::before {
  width: 100%;
}

body:has(main.features) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(2) a span::before {
  width: 100%;
}

body:has(main.flow) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(3) a span::before {
  width: 100%;
}

body:has(main.profile) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(4) a span::before {
  width: 100%;
}

body:has(main.group) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(5) a span::before {
  width: 100%;
}

body:has(main.safetymanagement) .header .pc .flex_area nav ul:last-of-type li:nth-of-type(6) a span::before {
  width: 100%;
}

/*=======================================
　footer
=======================================*/
footer {
  position: relative;
}
footer .inquiry_area,
footer .search_area {
  width: 77.5%;
  max-width: 1100px;
  position: relative;
  z-index: 10;
  border-radius: 15px;
  border: 1px solid var(--main_blue);
  background: var(--main_white);
  margin-inline: auto;
  margin-bottom: -7.9875vw;
  -webkit-transition: border-color 0.6s ease;
  transition: border-color 0.6s ease;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area,
  footer .search_area {
    width: 90%;
    border-radius: 10px;
    margin-bottom: -110px;
  }
}
footer .inquiry_area a,
footer .search_area a {
  display: block grid;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 57.2727272727%;
  gap: 4.6363636364%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area a,
  footer .search_area a {
    grid-template-columns: 1fr 59%;
    gap: 4%;
  }
}
footer .inquiry_area .inquiry_left,
footer .inquiry_area .search_left,
footer .search_area .inquiry_left,
footer .search_area .search_left {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 397.26/251.56;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_left,
  footer .inquiry_area .search_left,
  footer .search_area .inquiry_left,
  footer .search_area .search_left {
    aspect-ratio: 113/145;
    border-radius: 5px;
    max-width: 200px;
  }
}
footer .inquiry_area .inquiry_right,
footer .search_area .inquiry_right {
  color: var(--main_blue);
}
footer .inquiry_area .search_right,
footer .search_area .search_right {
  max-width: 480px;
  padding-right: 40px;
  color: #368FD7;
}
footer .inquiry_area .inquiry_right,
footer .inquiry_area .search_right,
footer .search_area .inquiry_right,
footer .search_area .search_right {
  padding: 1.3125vw 0;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_right,
  footer .inquiry_area .search_right,
  footer .search_area .inquiry_right,
  footer .search_area .search_right {
    padding-top: 7px;
    padding-bottom: 5px;
  }
}
footer .inquiry_area .inquiry_right hgroup,
footer .inquiry_area .search_right hgroup,
footer .search_area .inquiry_right hgroup,
footer .search_area .search_right hgroup {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_right hgroup,
  footer .inquiry_area .search_right hgroup,
  footer .search_area .inquiry_right hgroup,
  footer .search_area .search_right hgroup {
    margin-bottom: 6px;
  }
}
footer .inquiry_area .inquiry_right hgroup h2,
footer .inquiry_area .search_right hgroup h2,
footer .search_area .inquiry_right hgroup h2,
footer .search_area .search_right hgroup h2 {
  font-size: clamp(32px, 3.59375vw, 46px);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  color: inherit;
  margin-bottom: 16px;
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_right hgroup h2,
  footer .inquiry_area .search_right hgroup h2,
  footer .search_area .inquiry_right hgroup h2,
  footer .search_area .search_right hgroup h2 {
    font-size: 23px;
    margin-bottom: 6px;
  }
}
footer .inquiry_area .inquiry_right hgroup .en,
footer .inquiry_area .search_right hgroup .en,
footer .search_area .inquiry_right hgroup .en,
footer .search_area .search_right hgroup .en {
  font-size: clamp(11px, 1vw, 16px);
  letter-spacing: 0.08em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_right hgroup .en,
  footer .inquiry_area .search_right hgroup .en,
  footer .search_area .inquiry_right hgroup .en,
  footer .search_area .search_right hgroup .en {
    font-size: 11px;
  }
}
footer .inquiry_area .inquiry_right .inquiry_txt,
footer .inquiry_area .inquiry_right .search_txt,
footer .inquiry_area .search_right .inquiry_txt,
footer .inquiry_area .search_right .search_txt,
footer .search_area .inquiry_right .inquiry_txt,
footer .search_area .inquiry_right .search_txt,
footer .search_area .search_right .inquiry_txt,
footer .search_area .search_right .search_txt {
  font-size: clamp(11px, 1.125vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.6666666667;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .inquiry_right .inquiry_txt,
  footer .inquiry_area .inquiry_right .search_txt,
  footer .inquiry_area .search_right .inquiry_txt,
  footer .inquiry_area .search_right .search_txt,
  footer .search_area .inquiry_right .inquiry_txt,
  footer .search_area .inquiry_right .search_txt,
  footer .search_area .search_right .inquiry_txt,
  footer .search_area .search_right .search_txt {
    font-size: 12px;
    letter-spacing: 0.03em;
    padding-right: 28px;
  }
}
footer .inquiry_area .cmn_btn,
footer .search_area .cmn_btn {
  width: 4.16875vw;
  max-width: 66.7px;
  aspect-ratio: 66.7/44.81;
  position: absolute;
  right: 1.8375vw;
  bottom: 1.64375vw;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .cmn_btn,
  footer .search_area .cmn_btn {
    width: 33.3px;
    right: 9px;
    bottom: 15px;
    aspect-ratio: 1.32722/1;
  }
}
footer .inquiry_area .cmn_btn::after,
footer .search_area .cmn_btn::after {
  width: 18px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area .cmn_btn::after,
  footer .search_area .cmn_btn::after {
    width: 10px;
    height: 6px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .inquiry_area:hover {
    border-color: #4AADFD;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .inquiry_area:hover {
    border-color: #4AADFD;
  }
}
footer .inquiry_area a {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  footer .inquiry_area a {
    padding: 13px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .inquiry_area a:hover {
    opacity: 1;
  }
  footer .inquiry_area a:hover .inquiry_right {
    color: #4AADFD;
  }
  footer .inquiry_area a:hover .inquiry_right h2 {
    color: #4AADFD;
  }
  _::-webkit-full-page-media, _:future, :root footer .inquiry_area a:hover .inquiry_right h2 {
    color: inherit;
  }
  footer .inquiry_area a:hover .cmn_btn {
    background: #4AADFD;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .inquiry_area a:hover {
    opacity: 1;
  }
  footer .inquiry_area a:hover .inquiry_right {
    color: #4AADFD;
  }
  footer .inquiry_area a:hover .inquiry_right h2 {
    color: #4AADFD;
  }
  _::-webkit-full-page-media, _:future, :root footer .inquiry_area a:hover .inquiry_right h2 {
    color: inherit;
  }
  footer .inquiry_area a:hover .cmn_btn {
    background: #4AADFD;
  }
}
footer .inquiry_area .inquiry_right {
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
_::-webkit-full-page-media, _:future, :root footer .inquiry_area .inquiry_right hgroup h2 {
  -webkit-transition: none;
  transition: none;
}

@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .search_area:hover {
    border-color: #F89A3D;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .search_area:hover {
    border-color: #F89A3D;
  }
}
footer .search_area a {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  footer .search_area a {
    padding: 13px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .search_area a:hover {
    opacity: 1;
  }
  footer .search_area a:hover .search_right {
    color: #F89A3D;
  }
  footer .search_area a:hover .search_right h2 {
    color: #F89A3D;
  }
  _::-webkit-full-page-media, _:future, :root footer .search_area a:hover .search_right h2 {
    color: inherit;
  }
  footer .search_area a:hover .cmn_btn {
    background: #F89A3D;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .search_area a:hover {
    opacity: 1;
  }
  footer .search_area a:hover .search_right {
    color: #F89A3D;
  }
  footer .search_area a:hover .search_right h2 {
    color: #F89A3D;
  }
  _::-webkit-full-page-media, _:future, :root footer .search_area a:hover .search_right h2 {
    color: inherit;
  }
  footer .search_area a:hover .cmn_btn {
    background: #F89A3D;
  }
}
footer .search_area .search_right {
  -webkit-transition: color 0.6s ease;
  transition: color 0.6s ease;
}
footer:has(.inquiry_area) .inquiry_area .cmn_btn {
  background: var(--main_blue);
}
footer:has(.inquiry_area) .footer_content {
  background: center/cover url(../img/common/footer_bg.jpg) no-repeat;
}
footer:has(.search_area) .search_area .cmn_btn {
  background: #368FD7;
}
footer:has(.search_area) .footer_content {
  background: center/cover url(../img/recruit/footer_bg.jpg) no-repeat;
}
footer .footer_content {
  border-radius: 5px 5px 0 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer_content {
    border-radius: 0;
  }
}
footer .footer_content .page_top_trigger {
  width: 5.25vw;
  max-width: 84px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 2.85vw;
  right: 16px;
  visibility: hidden;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  footer .footer_content .page_top_trigger {
    width: 50.68px;
    top: unset;
    right: 5.152vw;
    bottom: 104px;
  }
}
footer .footer_content .page_top {
  width: 5.25vw;
  max-width: 84px;
  aspect-ratio: 1/1;
  position: fixed;
  right: 16px;
  bottom: 50px;
  overflow: hidden;
  opacity: 0;
  border-radius: 100%;
  border: 1px solid transparent;
  -webkit-transition: opacity 0.3s ease, border-color 0.3s ease;
  transition: opacity 0.3s ease, border-color 0.3s ease;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  footer .footer_content .page_top {
    width: 50.68px;
    right: 5.152vw;
    bottom: 30px;
  }
}
footer .footer_content .page_top.is-fixed {
  opacity: 1;
  pointer-events: auto;
  border-color: var(--main_blue);
}
footer .footer_content .page_top.is-bottom {
  position: absolute;
  top: 2.85vw;
  bottom: unset;
  opacity: 1;
  pointer-events: auto;
}
@media screen and (max-width: 768px) {
  footer .footer_content .page_top.is-bottom {
    top: unset;
    bottom: 104px;
  }
}
footer .footer_content .page_top a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background: var(--main_white);
  border-radius: 100%;
}
footer .footer_content .page_top a::after {
  content: "";
  width: 14.28%;
  height: 40.47%;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: center/contain url(../img/common/arrow-blue-up.svg) no-repeat;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .footer_content .page_top a:hover::after {
    -webkit-animation: arrowMoveUp 0.8s ease forwards;
            animation: arrowMoveUp 0.8s ease forwards;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .footer_content .page_top a:hover::after {
    -webkit-animation: arrowMoveUp 0.8s ease forwards;
            animation: arrowMoveUp 0.8s ease forwards;
  }
}
footer .footer_content .inner {
  position: relative;
}
footer .footer_content .inner .flex_area {
  color: var(--main_white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 12.7375vw;
  margin-bottom: 138px;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
    padding-top: 170px;
  }
}
footer .footer_content .inner .flex_area .info_area {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .info_area {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
footer .footer_content .inner .flex_area .info_area .ft_logo {
  margin-bottom: 12px;
}
footer .footer_content .inner .flex_area .info_area .ft_logo a {
  display: block;
}
footer .footer_content .inner .flex_area .info_area .ft_logo a span {
  font-weight: 700;
  font-size: clamp(12px, 1.625vw, 26px);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .info_area .ft_logo a span {
    font-size: 13.4px;
  }
}
footer .footer_content .inner .flex_area .info_area .address {
  font-size: clamp(11px, 1.125vw, 18px);
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .info_area .address {
    font-size: 15px;
    line-height: 1.4666666667;
    margin-bottom: 13px;
  }
}
footer .footer_content .inner .flex_area .info_area .tel {
  font-size: clamp(15px, 1.5625vw, 25px);
  font-weight: 600;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .info_area .tel {
    font-size: 23px;
    letter-spacing: 0;
  }
}
footer .footer_content .inner .flex_area .info_area .tel span {
  font-size: clamp(10px, 1.25vw, 20px);
  font-weight: 400;
  letter-spacing: 0.08em;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  padding: 4px 8px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .info_area .tel span {
    font-size: 15px;
    margin-right: 8px;
    padding-inline: 10px;
  }
}
footer .footer_content .inner .flex_area .nav_area {
  width: 53.5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 30px 4%;
}
@media screen and (max-width: 1024px) {
  footer .footer_content .inner .flex_area .nav_area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
footer .footer_content .inner .flex_area .nav_area ul {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px 0;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area ul {
    display: contents;
  }
}
footer .footer_content .inner .flex_area .nav_area ul li.main a {
  display: inline-block;
  font-size: clamp(13px, 1.25vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
  padding-left: calc(8px + 0.5em);
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area ul li.main a {
    font-size: 16px;
    letter-spacing: 0.08em;
  }
  footer .footer_content .inner .flex_area .nav_area ul li.main a br {
    display: none;
  }
}
footer .footer_content .inner .flex_area .nav_area ul li.main a::before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  background: var(--main_white);
  position: absolute;
  left: 0;
  top: 0.75em;
}
footer .footer_content .inner .flex_area .nav_area ul li.main a::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: calc(8px + 0.5em);
  bottom: -2px;
  background: var(--main_white);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .footer_content .inner .flex_area .nav_area ul li.main a:hover::after {
    width: calc(100% - 8px - 0.5em);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .footer_content .inner .flex_area .nav_area ul li.main a:hover::after {
    width: calc(100% - 8px - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area ul li.sub {
    margin-top: -8px;
  }
  footer .footer_content .inner .flex_area .nav_area ul li.sub:nth-of-type(2) {
    margin-top: -3px;
  }
}
footer .footer_content .inner .flex_area .nav_area ul li.sub a {
  font-size: clamp(11px, 1.125vw, 18px);
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.9;
  display: inline-block;
  position: relative;
  padding-left: calc(8px + 0.5em);
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area ul li.sub a {
    font-size: 16px;
  }
}
footer .footer_content .inner .flex_area .nav_area ul li.sub a::before {
  content: "";
  width: 8px;
  height: 1px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1em;
  background: var(--main_white);
}
@media screen and (max-width: 768px) {
  footer .footer_content .inner .flex_area .nav_area ul li.sub a::before {
    font-size: 16px;
  }
}
footer .footer_content .inner .flex_area .nav_area ul li.sub a::after {
  content: "";
  width: 0;
  height: 1px;
  display: block;
  position: absolute;
  left: calc(8px + 0.5em);
  bottom: -2px;
  background: var(--main_white);
  -webkit-transition: width 0.4s ease;
  transition: width 0.4s ease;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .footer_content .inner .flex_area .nav_area ul li.sub a:hover::after {
    width: calc(100% - 8px - 0.5em);
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .footer_content .inner .flex_area .nav_area ul li.sub a:hover::after {
    width: calc(100% - 8px - 0.5em);
  }
}
footer .footer_content .ft_bottom_area {
  color: var(--main_blue);
  background: #F5F7F8;
  padding: 13.5px 0;
}
footer .footer_content .ft_bottom_area .inner {
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .footer_content .ft_bottom_area .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
footer .footer_content .ft_bottom_area .inner .copyright {
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  footer .footer_content .ft_bottom_area .inner .copyright {
    font-size: 10px;
    line-height: 1.6;
    letter-spacing: 0.02em;
    text-align: center;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
footer .footer_content .ft_bottom_area .inner .privacy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer_content .ft_bottom_area .inner .privacy {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
footer .footer_content .ft_bottom_area .inner .privacy li a {
  font-size: clamp(10px, 0.875vw, 14px);
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s ease !important;
  transition: opacity 0.3s ease !important;
}
@media screen and (max-width: 768px) {
  footer .footer_content .ft_bottom_area .inner .privacy li a {
    font-size: 12px;
  }
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  footer .footer_content .ft_bottom_area .inner .privacy li a:hover {
    opacity: 0.8 !important;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  footer .footer_content .ft_bottom_area .inner .privacy li a:hover {
    opacity: 0.8 !important;
  }
}

_::-webkit-full-page-media, _:future, :root body:has(main.recruit) footer .search_area a .search_right hgroup h2 {
  -webkit-transition: none;
  transition: none;
}

body:has(main.recruit) footer .search_area a .search_right .search_txt {
  padding-right: 20px;
}
body:has(main.recruit) footer .footer_content .page_top.is-fixed {
  border-color: #368FD7;
}
body:has(main.recruit) footer .footer_content .page_top a::after {
  background-image: url(../img/common/arrow_recruit.svg);
}
body:has(main.recruit) footer .footer_content .inner .flex_area {
  padding-top: 13.5375vw;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area {
    padding-top: 157px;
    gap: 40px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .ft_logo {
  margin-bottom: 12px;
}
body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .ft_logo a span {
  font-weight: 700;
  font-size: clamp(12px, 1.0625vw, 17px);
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .ft_logo a span {
    font-size: 13.4px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .address {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .address {
    font-size: 15px;
    line-height: 1.4666666667;
    margin-bottom: 13px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .tel {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .tel {
    font-size: 23px;
    letter-spacing: 0;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .tel span {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.08em;
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid;
  padding: 4px 8px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .info_area .tel span {
    font-size: 15px;
    margin-right: 8px;
    padding-inline: 10px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area {
  width: 51%;
  margin-right: 4vw;
  gap: 25px 13%;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area {
    width: calc(100% - 70px);
    gap: 15px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .main a {
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .main a {
    font-size: 16px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .main a:before {
  width: 5px;
  height: 5px;
}
body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .sub a {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .sub a {
    font-size: 16px;
  }
}
body:has(main.recruit) footer .footer_content .inner .flex_area .nav_area ul .sub a::before {
  width: 6px;
  height: 1px;
  top: 1em;
  left: 0;
}

/*=======================================
　breadcrumbs
=======================================*/
.breadcrumbs {
  margin-bottom: 152px;
}
.breadcrumbs a {
  -webkit-transition: opacity 0.3s ease !important;
  transition: opacity 0.3s ease !important;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .breadcrumbs a:hover {
    opacity: 0.8 !important;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .breadcrumbs a:hover {
    opacity: 0.8 !important;
  }
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs nav ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumbs nav ol li {
  font-weight: 600;
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li {
    font-size: 12px;
  }
}
.breadcrumbs nav ol li:not(:last-child) {
  padding-right: 20px;
  margin-right: 10px;
  color: #6D6D6D;
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li:not(:last-child) {
    padding-right: 15px;
    margin-right: 8px;
  }
}
.breadcrumbs nav ol li:not(:last-child)::before {
  content: ">";
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .breadcrumbs nav ol li:not(:last-child)::before {
    font-size: 12px;
    top: 45%;
  }
}

/*=======================================
　keyframes
=======================================*/
@-webkit-keyframes arrowMove {
  49% {
    -webkit-transform: translate3d(150%, 0, 0);
            transform: translate3d(150%, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(-150%, 0, 0);
            transform: translate3d(-150%, 0, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes arrowMove {
  49% {
    -webkit-transform: translate3d(150%, 0, 0);
            transform: translate3d(150%, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(-150%, 0, 0);
            transform: translate3d(-150%, 0, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes arrowMoveX {
  49% {
    -webkit-transform: translate3d(150%, 0, 0);
            transform: translate3d(150%, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(-150%, 0, 0);
            transform: translate3d(-150%, 0, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes arrowMoveX {
  49% {
    -webkit-transform: translate3d(150%, 0, 0);
            transform: translate3d(150%, 0, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(-150%, 0, 0);
            transform: translate3d(-150%, 0, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes arrowMoveUp {
  49% {
    -webkit-transform: translate3d(0, -200%, 0);
            transform: translate3d(0, -200%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes arrowMoveUp {
  49% {
    -webkit-transform: translate3d(0, -200%, 0);
            transform: translate3d(0, -200%, 0);
  }
  50% {
    opacity: 0;
    -webkit-transform: translate3d(0, 200%, 0);
            transform: translate3d(0, 200%, 0);
  }
  51% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
/*=======================================
　cmn_btn
=======================================*/
.cmn_btn {
  border-radius: 100%;
  overflow: hidden;
}
.cmn_btn a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cmn_btn a:hover {
    opacity: 1;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cmn_btn a:hover {
    opacity: 1;
  }
}
.cmn_btn a::after {
  content: "";
  display: block;
  background: center/contain url(../img/common/arrow-white.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.cmn_btn.in-link {
  position: relative;
  overflow: hidden;
}
.cmn_btn.in-link::after {
  content: "";
  display: block;
  background: center/contain url(../img/common/arrow-white.svg) no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

/*=======================================
　リスト
=======================================*/
/* リスト_点付き list_dot */
.list_dot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .list_dot {
    gap: 10px 20px;
  }
}
.list_dot li {
  position: relative;
  padding-left: 18px;
}
.list_dot li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  background-color: #977D6F;
  position: absolute;
  left: 0;
  top: 0.4em;
}
@media screen and (max-width: 768px) {
  .list_dot li::before {
    width: 6px;
    height: 6px;
  }
}

/*=======================================
　txt
=======================================*/
.txt_vertical {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
          text-orientation: upright;
  -webkit-font-feature-settings: "pkna";
          font-feature-settings: "pkna";
}

.font_16 {
  font-size: clamp(14px, 1vw, 16px);
}

.font_18 {
  font-size: clamp(16px, 1.125vw, 18px);
}

.font_20 {
  font-size: clamp(18px, 1.25vw, 20px);
}

.font_22 {
  letter-spacing: 0.05em;
  line-height: 1.9;
  font-size: clamp(20px, 1.375vw, 22px);
}

.font_24 {
  font-size: clamp(22px, 1.5vw, 24px);
}

.notes_01 {
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: clamp(10px, 0.75vw, 12px);
}
@media screen and (max-width: 768px) {
  .notes_01 {
    line-height: 1.6;
  }
}

/*=======================================
　整列
=======================================*/
.align_L {
  text-align: left;
  margin-left: 0 !important;
}

.align_C {
  text-align: center;
}

.align_R {
  text-align: right;
  margin-right: 0 !important;
}

/*=======================================
　mb
=======================================*/
.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}
@media screen and (max-width: 768px) {
  .mb30 {
    margin-bottom: 15px !important;
  }
}

.mb40 {
  margin-bottom: 40px !important;
}
@media screen and (max-width: 768px) {
  .mb40 {
    margin-bottom: 20px !important;
  }
}

.mb50 {
  margin-bottom: 50px !important;
}
@media screen and (max-width: 768px) {
  .mb50 {
    margin-bottom: 25px !important;
  }
}

.mb60 {
  margin-bottom: 60px !important;
}
@media screen and (max-width: 768px) {
  .mb60 {
    margin-bottom: 30px !important;
  }
}

.mb70 {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 768px) {
  .mb70 {
    margin-bottom: 35px !important;
  }
}

@media screen and (max-width: 768px) {
  .mb80 {
    margin-bottom: 40px !important;
  }
}

.mb90 {
  margin-bottom: 90px !important;
}
@media screen and (max-width: 768px) {
  .mb90 {
    margin-bottom: 45px !important;
  }
}

.mb100 {
  margin-bottom: 100px !important;
}
@media screen and (max-width: 768px) {
  .mb100 {
    margin-bottom: 50px !important;
  }
}

.mb110 {
  margin-bottom: 110px !important;
}
@media screen and (max-width: 768px) {
  .mb110 {
    margin-bottom: 55px !important;
  }
}

.mb120 {
  margin-bottom: 120px !important;
}
@media screen and (max-width: 768px) {
  .mb120 {
    margin-bottom: 60px !important;
  }
}

.mb140 {
  margin-bottom: 140px !important;
}
@media screen and (max-width: 768px) {
  .mb140 {
    margin-bottom: 70px !important;
  }
}

.mb160 {
  margin-bottom: 160px !important;
}
@media screen and (max-width: 768px) {
  .mb160 {
    margin-bottom: 80px !important;
  }
}

.mb200 {
  margin-bottom: 200px !important;
}
@media screen and (max-width: 768px) {
  .mb200 {
    margin-bottom: 100px !important;
  }
}

/*============================
cookie_consent
============================*/
.cookie_consent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1.25vw;
  background: rgba(42, 101, 169, 0.95);
  padding: 13px min(9.375vw, 150px) 13px min(6.25vw, 100px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
}
.cookie_consent.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media screen and (max-width: 768px) {
  .cookie_consent {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 15px;
    padding: 20px 5.3333333333vw 24.6px;
  }
}
.cookie_consent_left {
  color: var(--main_white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 2.0714285714;
}
@media screen and (max-width: 768px) {
  .cookie_consent_left {
    font-size: 12px;
    line-height: 1.75;
  }
}
.cookie_consent_link {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cookie_consent_link_txt {
  line-height: 1.4;
  border-bottom: 1px solid var(--main_white);
}
.cookie_consent_link_icon {
  width: 18px;
  height: 18px;
  margin-left: 9px;
}
@media screen and (max-width: 768px) {
  .cookie_consent_link {
    margin-bottom: 5px;
  }
}
.cookie_consent_btn {
  color: var(--main_blue);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.875;
  text-align: center;
  display: inline-block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 3px;
  background: var(--main_white);
  padding: 8.5px 50px 6.7px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 769px) and (hover: hover) and (pointer: fine) {
  .cookie_consent_btn:hover {
    opacity: 0.8;
  }
}
@media (min-width: 769px) and (-ms-high-contrast: none), (min-width: 769px) and (-ms-high-contrast: active) {
  .cookie_consent_btn:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .cookie_consent_btn {
    font-size: 14px;
    line-height: 34px;
    width: 168px;
    height: 34px;
    padding: 0;
    margin: 0 auto;
  }
}

body:has(main.recruit) .header .sp .hd_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 5px;
  width: 78.6666666667vw;
}
body:has(main.recruit) .header .sp .hd_logo a {
  display: block;
  width: 100%;
}
body:has(main.recruit) .header .sp .hd_logo a img {
  width: 100%;
  height: auto;
}
body:has(main.recruit) .header .sp .hd_logo > img {
  width: 12.5333333333vw;
  height: auto;
}

/*=======================================
　印刷用スタイル（印刷崩れ対策）
=======================================*/
@media print {
  header {
    position: absolute !important;
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
  html,
  body,
  main,
  section,
  div,
  article {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }
  .flex_area,
  .grid_area,
  .smile_content,
  .business_content,
  .footer_content .inner .flex_area {
    display: block !important;
    width: 100% !important;
  }
  .page_top,
  .page_top_trigger,
  .cookie_consent,
  .openbtn {
    display: none !important;
  }
  *,
  *::before,
  *::after {
    background-size: contain !important;
  }
  .cmn_btn::after {
    background-size: 14px 6px !important;
  }
  .inquiry_area .cmn_btn::after,
  .search_area .cmn_btn::after {
    background-size: 18px 8px !important;
  }
  *,
  *::before,
  *::after {
    -webkit-clip-path: none !important;
            clip-path: none !important;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:first-of-type span::before {
    background-image: url(../img/common/inquiry_icon.svg) !important;
    background-color: transparent !important;
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
    -webkit-mask: none !important;
            mask: none !important;
  }
  :where(header) .pc .flex_area nav ul:first-of-type li:nth-of-type(2) span::before {
    background-image: url(../img/common/recruit_icon.svg) !important;
    background-color: transparent !important;
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
    -webkit-mask: none !important;
            mask: none !important;
  }
  body:has(main.recruit) header .pc .flex_area nav ul:first-of-type li:first-of-type span::before {
    background-image: url(../img/recruit/link_icon_bus.svg) !important;
    background-color: transparent !important;
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
    -webkit-mask: none !important;
            mask: none !important;
  }
  body:has(main.recruit) header .pc .flex_area nav ul:first-of-type li:nth-of-type(2) span::before {
    background-image: url(../img/recruit/link_icon_search.svg) !important;
    background-color: transparent !important;
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
    -webkit-mask: none !important;
            mask: none !important;
  }
  .cmn_btn.in-link::after {
    background-image: url(../img/common/arrow-white.svg) !important;
    background-color: transparent !important;
    -webkit-filter: brightness(0) !important;
            filter: brightness(0) !important;
    -webkit-mask: none !important;
            mask: none !important;
  }
  footer,
  hgroup,
  h1, h2, h3, h4, h5, h6,
  p,
  picture,
  img,
  .footer_content .inner .flex_area .info_area,
  .footer_content .inner .flex_area .nav_area ul,
  .service_option .option_content,
  .features_link-area li,
  .link_sec .link_item,
  .recruit_link_wrapper,
  .mv_intro,
  .inquiry_area,
  .search_area,
  .recruit_copy,
  .recruit_requirements,
  .business_content,
  .smile_content {
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    page-break-inside: avoid;
  }
  .mv .ttl {
    margin-left: 5% !important;
    width: 50% !important;
    opacity: 1 !important;
  }
  .mv .ttl .ttl_images .ttl_black {
    display: block !important;
  }
  .mv .ttl .ttl_images .ttl_black source {
    display: none !important;
  }
  .mv .ttl .ttl_images .ttl_color {
    display: none !important;
  }
  .recruit_sec,
  .mv::before {
    background-size: cover !important;
  }
  main.recruit .mv_ttl,
  main .mv_ttl,
  .mv_ttl {
    height: 25.625vw !important;
    min-height: 200px !important;
    background-size: cover !important;
  }
  footer:has(.inquiry_area) .footer_content,
  footer:has(.search_area) .footer_content,
  footer .footer_content,
  .footer_content {
    background-color: #0b264a !important;
    background-size: cover !important;
    -webkit-column-break-inside: auto !important;
       -moz-column-break-inside: auto !important;
            break-inside: auto !important;
    page-break-inside: auto !important;
  }
  footer,
  .footer {
    -webkit-column-break-inside: auto !important;
       -moz-column-break-inside: auto !important;
            break-inside: auto !important;
    page-break-inside: auto !important;
  }
  body:has(main.recruit) header .pc .flex_area {
    padding-top: 12px !important;
    padding-bottom: 5px !important;
  }
  body:has(main.recruit) header .pc .flex_area .hd_logo {
    width: 380px !important;
    position: absolute !important;
    left: 0 !important;
    gap: 10px !important;
    margin-top: 10px !important;
    margin-left: 20px !important;
  }
  body:has(main.recruit) header .pc .flex_area .hd_logo > a {
    max-width: 300px !important;
  }
  body:has(main.recruit) header .pc .flex_area .hd_logo > img {
    max-width: 60px !important;
  }
  body:has(main.recruit) header .pc .flex_area nav {
    margin-right: 20px !important;
  }
  body:has(main.recruit) header .pc .flex_area nav ul {
    -webkit-column-gap: 15px !important;
       -moz-column-gap: 15px !important;
            column-gap: 15px !important;
  }
  body:has(main.recruit) header .pc .flex_area nav ul li a {
    font-size: 12px !important;
  }
}
/*=======================================
　下層ページ共通余白調整
=======================================*/
.breadcrumbs {
  margin-bottom: 70px !important;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    display: block !important;
    margin-top: 0 !important;
    padding-top: 28px !important;
    margin-bottom: 35px !important;
  }
}

.service_ttl,
.page_ttl,
.sttl {
  margin-bottom: 80px !important;
}
@media screen and (max-width: 768px) {
  .service_ttl,
  .page_ttl,
  .sttl {
    padding-top: 0 !important;
    margin-bottom: 20px !important;
  }
}/*# sourceMappingURL=common.css.map */