@charset "UTF-8";
/*---------------------------------------
コンポーネント関連
---------------------------------------*/
/*自動でベンダープレフィックスをつける*/
/*		基本設定
-----------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--base-sans-serif);
  color: var(--color-black);
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 0 auto;
  padding: 0;
  background-color: var(--color-gray);
  font-weight: bold;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
a[target=_blank].is-external::after {
  content: "";
  background: url("../img/common/icon_external.svg") no-repeat center center/contain;
  display: inline-block;
  height: 1.2rem;
  width: 1.2rem;
  vertical-align: middle;
  margin-left: 0.3em;
}

@media screen and (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .is-tb {
    display: none !important;
  }
}
.is-sp-only {
  display: none;
}
@media screen and (max-width: 600px) {
  .is-sp-only {
    display: block !important;
  }
}

input {
  font-size: 1.6rem; /*iOSズームアップ対策サイズ*/
}

textarea {
  font-size: 1.6rem; /*iOSズームアップ対策サイズ*/
  resize: vertical; /* 縦方向のリサイズを許可 */
}

/* フォーカスが当たった時の青枠を表示しない */
*:focus {
  outline: none;
}

::-moz-selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

::selection {
  /*ハイライトカラー指定*/
  color: #fff;
  background: cyan;
  background: var(--color-base);
}

@media screen and (min-width: 601px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
figure {
  will-change: transform; /*safariのoverflow不具合対策*/
}

/* Padding Classes */
.p-0 {
  padding: 0;
}

.p-10 {
  padding: 10px;
}

.p-15 {
  padding: 15px;
}

.p-20 {
  padding: 20px;
}

.p-30 {
  padding: 30px;
}

.p-40 {
  padding: 40px;
}

.p-50 {
  padding: 50px;
}

.p-80 {
  padding: 80px;
}

.p-100 {
  padding: 100px;
}

.pt-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-100 {
  padding-bottom: 100px;
}

/* Margin Classes */
.m-0 {
  margin: 0;
}

.m-10 {
  margin: 10px;
}

.m-15 {
  margin: 15px;
}

.m-20 {
  margin: 20px;
}

.m-30 {
  margin: 30px;
}

.m-40 {
  margin: 40px;
}

.m-50 {
  margin: 50px;
}

.m-80 {
  margin: 80px;
}

.m-100 {
  margin: 100px;
}

.mt-0 {
  margin-top: 0;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-100 {
  margin-bottom: 100px;
}

/*==========フェードイン==========*/
.js-scroll-up {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
  -webkit-transition: all 1s;
  transition: all 1s;
}

.js-scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/*		ヘッダー
-----------------------------------------------------*/
#header {
  font-family: Garamond, "Times New Roman", 游明朝, "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, 游明朝体, YuMincho, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
  position: fixed;
  top: 0;
  z-index: 999;
  /* END &.l-header */
}
#header.l-header {
  width: var(--w-liquid);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header.l-header .l-container,
#header.l-header .l-container_wide {
  max-width: var(--w-solid-base);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#header.l-header .l-header_logo {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-right: auto;
}
#header.l-header .l-header_logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
#header.l-header .l-header_btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  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: 12px 3%;
}
#header.l-header .l-header_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  background-color: #000;
  background-color: var(--color-base);
  padding: 8px 30px;
  border: 3px solid transparent;
  border-radius: 100px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#header.l-header .l-header_btn a:hover {
  color: #000;
  color: var(--color-base);
  background-color: #fff;
  border-color: currentColor;
}

/* END #header */
@media screen and (max-width: 1023px) {
  #header.l-header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 60px;
    /* END #header */
  }
  #header.l-header .l-container,
  #header.l-header .l-container_wide {
    gap: 10px;
    padding: 0 70px 0 10px;
  }
  #header.l-header .l-header_logo {
    max-width: 150px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-size: 5vw;
  }
  #header.l-header .l-header_logo * {
    font-size: 3vw;
  }
}
/*		グローバルナビゲーション
-----------------------------------------------------*/
#global-nav.l-nav {
  overflow-y: auto;
  gap: 30px;
  /* END & ul */
}
#global-nav.l-nav .l-nav_logo {
  display: none;
  color: var(--color-black);
}
#global-nav.l-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 43px;
}
#global-nav.l-nav ul li {
  font-family: var(--mplus-font);
  -webkit-transform: var(--Jaggy-clear);
          transform: var(--Jaggy-clear);
  text-align: center;
  color: var(--color-black);
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-weight: bold;
}
#global-nav.l-nav ul li span {
  display: block;
}
#global-nav.l-nav ul li a {
  display: block;
  color: var(--color-black);
  line-height: 1.3;
}
#global-nav.l-nav ul li a:hover {
  color: var(--color-base);
}
#global-nav.l-nav .l-nav_contact_tel {
  display: none;
  color: #fff;
  margin-bottom: 15px;
}
#global-nav.l-nav .l-nav_contact_tel span {
  display: block;
  font-size: 4.4rem;
  font-size: clamp(3rem, -0.266rem + 11.667vw, 4.4rem);
  letter-spacing: 0.05em;
  line-height: 1;
}
#global-nav.l-nav .l-nav_contact_tel span::before {
  content: "";
  display: inline-block;
  width: 25px;
  width: clamp(16px, -7.333px + 8.333vw, 26px);
  aspect-ratio: 100/138;
  margin-right: 0.3em;
  background-color: currentColor;
  -webkit-mask-image: url("../img/common/icon_tel.svg");
  mask-image: url("../img/common/icon_tel.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}
#global-nav.l-nav .l-nav_contact_tel small {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding-top: 7px;
  margin-top: 15px;
  border-top: 1px solid #fff;
}
#global-nav.l-nav .l-header_btn {
  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;
  padding: 10px 20px;
  color: #fff;
  background-color: #333;
  background-color: var(--color-base);
  border: 2px solid transparent;
  border-radius: 100px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
#global-nav.l-nav .l-header_btn:hover {
  color: #333;
  color: var(--color-base);
  border-color: currentColor;
  background-color: #fff;
}
#global-nav.l-nav .l-header_btn:hover::after {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}

/* END .l-nav */
@media screen and (max-width: 1023px) {
  #global-nav.l-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    position: absolute;
    top: 60px;
    left: 100%;
    z-index: 900;
    width: 100%;
    width: 100%;
    width: 100dvw;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
    padding: 20px 0 50px;
    opacity: 0;
    background-color: var(--color-blue);
    -webkit-transition: all 0.1s linear;
    transition: all 0.1s linear;
  }
  #global-nav.l-nav.is-show {
    left: 0;
    opacity: 1;
  }
  #global-nav.l-nav.is-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #global-nav.l-nav.is-flex ul {
    width: 100%;
    margin: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  #global-nav.l-nav.is-flex ul li {
    text-align: left;
    max-width: 600px;
    width: 90%;
    padding: 30px 0;
    border-bottom: 1px solid #fff;
  }
  #global-nav.l-nav.is-flex ul li a {
    position: relative;
    color: #fff;
    letter-spacing: 0.08em;
    padding: 0 20px;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #global-nav.l-nav.is-flex ul li a::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 16.5px;
    position: absolute;
    top: calc(50% - 8.25px);
    right: 3%;
    background: url(../img/common/global-nav_arrow.svg) no-repeat center center/100% auto;
    -webkit-transition: all 0.2s linear;
    transition: all 0.2s linear;
  }
  #global-nav.l-nav.is-flex ul li a:hover {
    color: var(--color-gold);
  }
  #global-nav.l-nav.is-flex ul li a:hover::after {
    right: 2%;
  }
  #global-nav.l-nav.is-flex ul li span {
    display: inline-block;
  }
  #global-nav.l-nav.is-flex .l-header_btn {
    width: 100%;
    max-width: 245px;
    margin: 20px 0;
    color: var(--color-black);
    background-color: #fff;
  }
}
/*  END Break Point  */
/*		メニューボタン
-----------------------------------------------------*/
.l-header_toggle {
  display: none;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  background-color: #333;
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 999;
  padding: 10px 5px 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  cursor: pointer;
}
.l-header_toggle > span {
  display: block;
  position: relative;
  width: 24px;
  height: 2px;
  padding: 0;
  line-height: 1;
  margin: 10px auto;
  background-color: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}
.l-header_toggle > span::before, .l-header_toggle > span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: #fff;
  border-radius: 100px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.l-header_toggle > span::before {
  top: -8px;
}
.l-header_toggle > span::after {
  top: 8px;
}
.l-header_toggle > small {
  display: block;
  text-transform: uppercase;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  line-height: 1.3;
  margin-top: 13px;
}
.l-header_toggle.is-active > span {
  background-color: transparent;
}
.l-header_toggle.is-active > span::before {
  background-color: #fff;
  top: -8.8px;
  left: 2.5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}
.l-header_toggle.is-active > span::after {
  background-color: #fff;
  top: 8.8px;
  left: 2.5px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

@media screen and (max-width: 1023px) {
  .l-header_toggle {
    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;
  }
}
/*  END Break Point  */
/*		ページタイトル
-----------------------------------------------------*/
#page-title {
  margin-top: 10px;
  padding: 60px 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#page-title > section h2 {
  font-size: 8rem;
  font-weight: normal;
  color: var(--color-font-base);
}

/*  END #page-title  */
@media screen and (max-width: 600px) {
  #page-title {
    padding: 30px 10px;
  }
  #page-title > section h2 {
    font-size: 4rem;
  }
  /*  END #page-title  */
}
/*  END Break Point  */
/*		ページトップ
-----------------------------------------------------*/
#page_top {
  position: fixed;
  bottom: 2%;
  right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
  /*  END & > a  */
}
#page_top > a {
  background: #000;
  width: auto;
  height: auto;
  padding: 12px 20px;
  color: var(--color-theme-base);
  font-weight: bold;
}
#page_top > a:hover {
  text-decoration: none;
}

/*  END #page_top  */
/*		フッター
-----------------------------------------------------*/
#footer {
  text-align: center;
  padding-top: 80px;
  background: #fff;
}
#footer .l-container {
  width: var(--w-liquid);
}
#footer .l-footer_logo {
  margin-bottom: 20px;
}
#footer .c-copyright .c-copyright__txt {
  font-size: 1.4rem;
  letter-spacing: 0.01em;
}

/*  END #footer  */
@media screen and (max-width: 600px) {
  #footer.l-footer {
    padding: 20px 0;
  }
  #footer.l-footer .c-copyright .c-copyright__txt {
    font-size: 1.4rem;
  }
  /*  END #footer  */
}
/*  END Break Point  */
/* SimpleBarカスタマイズ */
[data-simplebar] {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  height: 100%;
}

.simplebar-scrollbar::before {
  background-color: var(--scrollbar-thumb-color);
  width: var(--scrollbar-width);
  border-radius: var(--scrollbar-border-radius);
}

.simplebar-track.simplebar-vertical {
  width: var(--scrollbar-width);
  background: var(--scrollbar-track-color);
}

.simplebar-track.simplebar-horizontal {
  height: var(--scrollbar-width);
  background: var(--scrollbar-track-color);
}

.simplebar-scrollbar:hover::before {
  background-color: var(--scrollbar-thumb-hover-color);
}

/* ネイティブスクロールバーを非表示 */
html, body {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE, Edge */
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.p-entry_fixed {
  display: none;
}
@media screen and (max-width: 820px) {
  .p-entry_fixed {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--color-blue);
    color: #fff;
    text-align: center;
    z-index: 999;
  }
  .p-entry_fixed a {
    display: block;
    padding: 10px 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 820px) and (max-width: 820px) {
  .p-entry_fixed a {
    padding: 20px;
  }
}

#footer {
  font-family: Garamond, "Times New Roman", 游明朝, "Yu Mincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", HiraMinProN-W3, 游明朝体, YuMincho, HGS明朝E, "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}/*# sourceMappingURL=common-recruit.css.map */