@charset "UTF-8";
/* ---------- setting ---------- ---------- */
body {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  -webkit-font-smoothing: antialiased;
  color: #333;
}

main {
  display: block;
}
@media screen and (min-width: 768px) {
  main {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  main {
    font-size: 14px;
  }
  main img {
    max-width: 100%;
  }
}

/* ----------------------------------------------------------
.btn-pagetop
---------------------------------------------------------- */
.btn-pagetop {
  position: fixed;
  display: block;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: #333;
  color: #fff;
  text-align: center;
  cursor: pointer;
  border-radius: 50%;
  opacity: 0;
  transition-duration: 0.2s;
  transition-property: opacity;
  visibility: hidden;
}
.btn-pagetop:after {
  content: "";
  position: absolute;
  top: 18px;
  left: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(-45deg);
}
.btn-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  right: 10px;
  width: 12px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
}
.btn-pagetop.js-show {
  opacity: 1;
  visibility: visible;
}
.btn-pagetop.js-show:hover {
  opacity: 0.6;
}
.btn-pagetop.js-fixed {
  top: -60px;
  bottom: auto;
  position: absolute;
}

/* ----------------------------------------------------------
.area-modal
---------------------------------------------------------- */
.area-modal {
  visibility: hidden;
  opacity: 0;
  transition-duration: 0.2s;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
}
.area-modal.js-show {
  visibility: visible;
  opacity: 1;
}
.area-modal ._modal-bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  background: rgba(0, 0, 0, 0.85);
}
.area-modal ._modal-btn-close {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition-duration: 0.2s;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close {
    top: -50px;
    right: 0px;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close {
    top: 5px;
    right: 5px;
    width: 40px;
    height: 40px;
  }
}
.area-modal ._modal-btn-close:hover {
  opacity: 0.8;
}
.area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 8px;
  width: 25px;
  height: 4px;
  transform: rotate(-45deg);
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-btn-close:after, .area-modal ._modal-btn-close:before {
    background: #333;
  }
}
.area-modal ._modal-btn-close:before {
  transform: rotate(45deg);
}
.area-modal ._modal-box {
  position: absolute;
  background: #fff;
  box-sizing: border-box;
  border-radius: 5px;
}
@media print, screen and (min-width: 768px) {
  .area-modal ._modal-box {
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin: -300px 0 0 -300px;
  }
}
@media screen and (max-width: 767px) {
  .area-modal ._modal-box {
    top: 10px;
    left: 10px;
    bottom: 10px;
    right: 10px;
    width: auto;
    height: auto;
    margin: 0;
  }
}
.area-modal ._modal-box ._modal-head {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  padding: 15px 0 0 20px;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-body {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0px;
  right: 0px;
  padding: 20px;
  background: #ccc;
  box-sizing: border-box;
  overflow-y: scroll;
}
.area-modal ._modal-box ._modal-body ._t1 {
  font-size: 18px;
  line-height: 1.2;
  font-weight: bold;
}
.area-modal ._modal-box ._modal-body ._t2 {
  font-size: 14px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-body ._t3 {
  font-size: 12px;
  line-height: 1.8;
}
.area-modal ._modal-box ._modal-foot {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  padding: 7px 0 0 0;
  height: 50px;
  background: #eee;
  box-sizing: border-box;
}
.area-modal ._modal-box ._modal-foot ._btn-do {
  display: block;
  box-sizing: border-box;
  text-align: center;
  cursor: pointer;
  width: 200px;
  margin: 0 auto;
  padding: 5px 0;
  font-size: 14px;
  background: #666;
  color: #fff;
}
.area-modal ._modal-box ._modal-foot ._btn-do:hover {
  background: #333;
}

/* リセットCSS */
html, body {
  width: 100%;
  height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, blockquote, pre, a, div {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: inherit;
  box-sizing: border-box;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th, td {
  vertical-align: top;
  text-align: left;
  font-weight: normal;
}

img {
  border: 0;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media print, screen and (min-width: 768px) {
  /* ----------------------------------------------------------
  block-index-fotter
  ---------------------------------------------------------- */
  .block-index-fotter {
    position: relative;
    padding: 120px 0px 200px 0px;
    background: #FFD59D;
  }
  body.page-new .block-index-fotter {
    background: #BED4FC;
  }
  body.page-new .block-index-fotter ._deco {
    background: linear-gradient(#0364FF 0%, #fff 100%);
  }
  body.page-career .block-index-fotter {
    background: #B3EDE4;
  }
  body.page-career .block-index-fotter ._deco {
    background: linear-gradient(#02B59A 0%, #fff 100%);
  }
  .block-index-fotter img {
    width: 100%;
  }
  .block-index-fotter .block-inner {
    position: relative;
  }
  .block-index-fotter ._deco {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 100px;
    bottom: 0px;
    background: linear-gradient(#ffa326 0%, #fff 100%);
    transform: skew(-28deg);
  }
  .block-index-fotter ._title {
    padding: 0 0 0 50px;
  }
  .block-index-fotter ._title ._en {
    font-size: 32px;
    line-height: 1.56;
    letter-spacing: -0.01em;
    font-weight: 400;
  }
  .block-index-fotter ._title ._en {
    font-style: italic;
  }
  .block-index-fotter ._title ._ja {
    margin-top: 7px;
    font-size: 12px;
  }
  .block-index-fotter ._links {
    width: 777px;
    margin: 0 auto;
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .block-index-fotter ._links ul {
    display: flex;
    gap: 0px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.16);
  }
  .block-index-fotter ._links ul li {
    flex: 1;
  }
  .block-index-fotter ._links2 {
    position: absolute;
    left: 20px;
    bottom: 20px;
  }
  .block-index-fotter ._links2 a {
    font-size: 10px;
    text-align: right;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #333;
  }
  .block-index-fotter small {
    position: absolute;
    right: 20px;
    bottom: 20px;
    font-weight: 500;
    font-style: italic;
    font-size: 10px;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: right;
  }
  .mod-footer-btn-entry {
    font-size: 18px;
    line-height: 1.66;
    font-weight: bold;
    color: #fff;
    background: #333;
    width: 389px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.16);
    cursor: pointer;
    transition-duration: 0.2s;
    position: relative;
  }
  .mod-footer-btn-entry.is-wide {
    width: 100%;
  }
  .mod-footer-btn-entry.is-under {
    opacity: 0.5;
    pointer-events: none;
    position: relative;
  }
  .mod-footer-btn-entry.is-under:before {
    position: absolute;
    top: 10px;
    right: 10px;
    content: "Coming Soon";
    font-size: 11px;
    color: #888;
  }
  .mod-footer-btn-entry:hover {
    background-color: #666666;
  }
  .mod-footer-btn-entry:hover:after {
    background-color: rgba(255, 255, 255, 0.2);
  }
  .mod-footer-btn-entry.is-line {
    border-left: 1px solid #666;
  }
  .mod-footer-btn-entry.is-wh {
    color: #333;
    background: #fff;
  }
  .mod-footer-btn-entry.is-wh.is-line {
    border-left: 1px solid #eee;
  }
  .mod-footer-btn-entry.is-wh:after {
    background-image: url(/recruit/info/common/images/icon/arrow_a2.png);
    background-color: white;
  }
  .mod-footer-btn-entry.is-wh:hover {
    background: #F4F4F4;
  }
  .mod-footer-btn-entry:after {
    content: "";
    transition-duration: 0.2s;
    display: block;
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translate(0, -50%);
    background: url(/recruit/info/common/images/icon/arrow_a2_wh.png) left top no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    border-radius: 50%;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header-wap {
    height: 95px;
  }
  .area-header {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    height: 95px;
    z-index: 100;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  body.js-gmenu-active .area-header {
    background: transparent;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 33px;
    left: 30px;
    width: 140px;
  }
  .area-header ._sitename {
    position: absolute;
    top: 38px;
    left: 195px;
    display: flex;
    gap: 10px;
  }
  .area-header ._sitename a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-header ._sitename a:hover {
    opacity: 0.8;
  }
  .area-header ._sitename a span {
    display: inline-block;
    margin-left: 10px;
    font-weight: 500;
    font-style: italic;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.29;
    text-align: left;
    color: #999;
  }
  .area-header ._area-right {
    position: absolute;
    top: 0px;
    right: 0px;
    display: flex;
    gap: 35px;
    padding: 20px;
  }
  .area-header ._gmenu {
    padding: 5px 0;
  }
  .mod-head-gmenu {
    text-align: right;
  }
  .mod-head-gmenu ul {
    display: flex;
    gap: 15px;
  }
  .mod-head-gmenu-item {
    display: block;
    border-radius: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-head-gmenu-item:hover {
    opacity: 0.8;
    background-color: #fff;
  }
  .mod-head-gmenu-item span {
    display: block;
    font-size: 16px;
    text-align: right;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.16em;
    color: #333;
    position: relative;
    padding: 10px 20px 10px 40px;
  }
  .mod-head-gmenu-item span:after {
    content: "";
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    background: url(/recruit/info/common/images/header/arrow.png) left top no-repeat;
    background-size: contain;
    width: 18px;
    height: 18px;
  }
  .mod-modal-menu-btn {
    position: relative;
    width: 50px;
    height: 50px;
    background: #333333;
    border-radius: 50%;
  }
  .mod-modal-menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 2px;
    left: 17px;
    right: 17px;
  }
  .mod-modal-menu-btn span:nth-child(1) {
    top: 18px;
  }
  .mod-modal-menu-btn span:nth-child(2) {
    top: 24px;
  }
  .mod-modal-menu-btn span:nth-child(3) {
    top: 30px;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(1) {
    position: absolute;
    top: 24px;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(3) {
    position: absolute;
    top: 24px;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -200px);
    inset: 0 0 0 0;
    background: linear-gradient(#fff -30%, #ffa326 100%);
    padding: 120px 0 40px 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu .area-inner {
    display: flex;
    justify-content: space-between;
  }
  .area-modal-menu .area-inner ._copy {
    width: 420px;
  }
  .area-modal-menu .area-inner ._links {
    flex: 1;
  }
  .area-modal-menu ._copy {
    position: relative;
  }
  .area-modal-menu ._copy ._ja {
    position: relative;
    font-size: 12px;
    line-height: 2.33;
    letter-spacing: 0.2em;
  }
  .area-modal-menu ._copy ._en {
    position: relative;
    margin-top: 2px;
    font-size: 27px;
    line-height: 1.33;
    font-style: italic;
  }
  .area-modal-menu a {
    color: #333;
    transition-duration: 0.4s;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .area-modal-menu ._deco {
    position: absolute;
    top: -60px;
    left: 200px;
    width: 50px;
    height: 313.75px;
    background: linear-gradient(#ffa326 0%, rgba(255, 165, 38, 0) 100%);
    transform: skew(-28deg);
  }
  .mod-sitelinks-set ._cols {
    display: flex;
    justify-content: space-between;
  }
  .mod-sitelinks-set ._cols ._col-row {
    flex: 1;
  }
  .mod-sitelinks-title {
    font-size: 24px;
    font-weight: bold;
  }
  .mod-sitelinks-title span {
    display: inline-block;
    margin: 0 0 0 10px;
    transform: translate(0, -5px);
    padding: 0 0 10px0;
    font-size: 11px;
    letter-spacing: -0.01em;
    font-style: italic;
    font-weight: 400;
  }
  .mod-sitelinks-list {
    margin: 20px 0 30px 0;
    display: flex;
    gap: 2px;
    flex-direction: column;
  }
  .mod-sitelinks-list li {
    line-height: 1.4;
  }
  .mod-sitelinks-list a {
    display: inline-block;
    position: relative;
    padding: 5px 20px 5px 35px;
    border-radius: 50px;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .mod-sitelinks-list a:hover {
    background-color: #fff;
  }
  .mod-sitelinks-list a:hover:after {
    left: 20px;
  }
  .mod-sitelinks-list a:after {
    transition-duration: 0.2s;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translate(-50%, -50%);
    background: url(/recruit/info/common/images/header/arrow_b.png) left top no-repeat;
    background-size: contain;
    width: 10px;
    height: 10px;
  }
  .mod-head-gmenu-sp {
    display: none;
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    position: relative;
    overflow: hidden;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .area-wrapper {
    min-width: 1120px;
  }
}
@media print, screen and (min-width: 768px) {
  .area-inner {
    position: relative;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .area-inner {
    margin: 0 auto;
    width: 1080px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .area-inner {
    margin: 0 20px;
  }
}
@media print, screen and (min-width: 768px) and (min-width: 768px) {
  .block-inner {
    margin: 0 auto;
    width: 1080px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) and (max-width: 1120px) {
  .block-inner {
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  /* ----------------------------------------------------------
  block-index-fotter
  ---------------------------------------------------------- */
  .block-index-fotter {
    position: relative;
    padding: 15.3846153846vw 0 25.641025641vw 0;
    background: #FFD59D;
  }
  body.page-new .block-index-fotter {
    background: #BED4FC;
  }
  body.page-new .block-index-fotter ._deco {
    background: linear-gradient(#0364FF 0%, #fff 100%);
  }
  body.page-career .block-index-fotter {
    background: #B3EDE4;
  }
  body.page-career .block-index-fotter ._deco {
    background: linear-gradient(#02B59A 0%, #fff 100%);
  }
  .block-index-fotter img {
    width: 100%;
  }
  .block-index-fotter .block-inner {
    position: relative;
  }
  .block-index-fotter ._title {
    display: none;
  }
  .block-index-fotter ._links {
    display: none;
  }
  .block-index-fotter ._links2 {
    text-align: center;
  }
  .block-index-fotter ._links2 a {
    font-size: 2.5641025641vw;
    text-align: right;
    line-height: 1.4;
    letter-spacing: 0.1em;
    color: #333;
    font-weight: normal;
  }
  .block-index-fotter small {
    margin-top: 2.5641025641vw;
    display: block;
    text-align: center;
    font-weight: 500;
    font-style: italic;
    font-size: 2.5641025641vw;
    letter-spacing: 0.1em;
    line-height: 1;
    font-weight: normal;
  }
  /* ----------------------------------------------------------
  .area-header
  ---------------------------------------------------------- */
  .area-header-wap {
    height: 14.1025641026vw;
  }
  .area-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 14.1025641026vw;
    z-index: 100;
    background: #fff;
  }
  .area-header img {
    width: 100%;
  }
  body.js-gmenu-active .area-header {
    background: transparent;
  }
  .area-header img {
    width: 100%;
  }
  .area-header ._logo {
    position: absolute;
    top: 4.2307692308vw;
    left: 3.5897435897vw;
    width: 25.641025641vw;
  }
  .area-header ._sitename {
    position: absolute;
    top: 5.3846153846vw;
    left: 32.6923076923vw;
    display: flex;
    gap: 1.2820512821vw;
  }
  .area-header ._sitename a {
    display: block;
    font-size: 2.3076923077vw;
    font-weight: 500;
    line-height: 1;
    color: #333;
    cursor: pointer;
    transition-duration: 0.2s;
  }
  .area-header ._sitename a:hover {
    opacity: 0.8;
  }
  .area-header ._sitename a span {
    display: inline-block;
    margin-left: 1.2820512821vw;
    font-weight: 500;
    font-style: italic;
    font-size: 1.7948717949vw;
    letter-spacing: 0.1em;
    line-height: 1.29;
    text-align: left;
    color: #999;
  }
  .area-header ._area-right {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    gap: 4.4871794872vw;
    padding: 1.2820512821vw 1.2820512821vw 2.5641025641vw 2.5641025641vw;
  }
  .area-header ._gmenu {
    display: none;
  }
  .mod-modal-menu-btn {
    position: relative;
    width: 11.5384615385vw;
    height: 11.5384615385vw;
    background: #333333;
  }
  .mod-modal-menu-btn span {
    transition-duration: 0.2s;
    position: absolute;
    background: #fff;
    height: 0.2564102564vw;
    left: 2.4358974359vw;
    right: 2.4358974359vw;
  }
  .mod-modal-menu-btn span:nth-child(1) {
    top: 3.8461538462vw;
  }
  .mod-modal-menu-btn span:nth-child(2) {
    top: 5.3846153846vw;
  }
  .mod-modal-menu-btn span:nth-child(3) {
    top: 6.7948717949vw;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(1) {
    position: absolute;
    top: 5.3846153846vw;
    transform: rotate(45deg);
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(2) {
    display: none;
  }
  body.js-gmenu-active .mod-modal-menu-btn span:nth-child(3) {
    position: absolute;
    top: 5.3846153846vw;
    transform: rotate(-45deg);
  }
  /* ----------------------------------------------------------
  area-mega-menu
  ---------------------------------------------------------- */
  .area-modal-menu {
    position: fixed;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition-duration: 0.4s;
    transform: translate(0, -25.641025641vw);
    inset: 0 0 0 0;
    background: linear-gradient(#fff -30%, #ffa326 100%);
    padding: 20.5128205128vw 5.1282051282vw 17.9487179487vw 10.2564102564vw;
    overflow: auto;
  }
  body.js-gmenu-active .area-modal-menu {
    visibility: visible;
    z-index: 50;
    opacity: 1;
    transform: translate(0, 0);
  }
  .area-modal-menu ._copy {
    display: none;
  }
  .area-modal-menu a {
    color: #333;
    transition-duration: 0.4s;
  }
  .area-modal-menu a.is-under {
    color: #ccc;
  }
  .area-modal-menu a.is-under:before {
    background: #ccc;
  }
  .area-modal-menu ._deco {
    display: none;
  }
  .mod-sitelinks-set {
    width: 75.641025641vw;
  }
  .mod-sitelinks-set ._col {
    margin-bottom: 40px;
  }
  .mod-sitelinks-title {
    font-size: 4.6153846154vw;
    font-weight: bold;
  }
  .mod-sitelinks-title span {
    display: inline-block;
    margin: 0 0 0 1.2820512821vw;
    transform: translate(0, -0.641025641vw);
    font-size: 3.0769230769vw;
    letter-spacing: -0.01em;
    font-style: italic;
    font-weight: 400;
  }
  .mod-sitelinks-list {
    margin: 5.1282051282vw 0;
    display: flex;
    gap: 0.2564102564vw;
    flex-direction: column;
  }
  .mod-sitelinks-list li {
    line-height: 1.4;
  }
  .mod-sitelinks-list a {
    display: inline-block;
    position: relative;
    padding: 0.641025641vw 2.5641025641vw 0.641025641vw 4.4871794872vw;
    border-radius: 6.4102564103vw;
  }
  .mod-sitelinks-list a:after {
    transition-duration: 0.2s;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 1.2820512821vw;
    transform: translate(-50%, -50%);
    background: url(/recruit/info/common/images/header/arrow_b.png) left top no-repeat;
    background-size: contain;
    width: 2.5641025641vw;
    height: 2.5641025641vw;
  }
  .mod-head-gmenu-sp {
    position: fixed;
    z-index: 200;
    left: 2.5641025641vw;
    right: 2.5641025641vw;
    bottom: 2.5641025641vw;
  }
  .mod-head-gmenu-sp ul {
    display: flex;
    justify-content: space-between;
    border-radius: 1.2820512821vw;
    overflow: hidden;
    box-shadow: 0px 2px 0 rgba(0, 0, 0, 0.15);
  }
  .mod-head-gmenu-sp ul li {
    flex: 1;
  }
  .mod-head-gmenu-sp a {
    text-align: center;
    padding: 20px;
    display: block;
    background-color: #333;
    font-weight: 500;
    font-size: 3.5897435897vw;
    letter-spacing: 0.05em;
    line-height: 1.43;
    color: #fff;
    position: relative;
    cursor: pointer;
  }
  .mod-head-gmenu-sp a:before {
    position: absolute;
    top: 50%;
    left: 6.4102564103vw;
    display: block;
    content: "";
    height: 5px;
    width: 5px;
    border: 1px solid #fff;
    border-left-width: 0;
    border-top-width: 0;
    transform: translate(0, -50%) rotate(-45deg);
  }
  /* ----------------------------------------------------------
  .area-wrapper
  ---------------------------------------------------------- */
  .area-wrapper {
    overflow: hidden;
    position: relative;
  }
  /* ----------------------------------------------------------
  .area-inner
  ---------------------------------------------------------- */
  .area-inner {
    position: relative;
  }
  /* ----------------------------------------------------------
  .block-inner
  ---------------------------------------------------------- */
  .block-inner-sp {
    padding-right: 15px;
    padding-left: 15px;
  }
}