@charset "UTF-8";
/******************************************************************
カスタムテンプレート－詳細ページ以外専用
*****************************************************************/
/*****************************************************************
セッティングファイル
*****************************************************************/
/******************************************************************
  ■common-base
*****************************************************************/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
}

html {
  font-size: 62.5%;
  font-weight: normal;
}

body {
  width: 100%;
  min-width: 300px;
  background-color: #fff;
  color: #333;
  line-height: 1.5;
  letter-spacing: 1px;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  font-kerning: auto;
}
@media (max-width: 791px) {
  body {
    font-size: 1.4rem;
  }
  body.fixed {
    overflow-y: hidden;
    position: fixed;
  }
}
@media (min-width: 792px) {
  body {
    font-size: 1.6rem;
  }
}

#wrap {
  overflow: hidden;
}

.data-for-aidemlog { /* 独自ログ計測用 */ }

/* フォント */
.font-min {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.font-bold {
  font-weight: bold;
}

dl, ol, ul {
  margin-bottom: 0;
}

@media (max-width: 791px) {
  select, input[type=text] {
    font-size: 1.6rem;
    transform: scale(0.875);
  }
}

@media (max-width: 791px) {
  .text-sp-center {
    text-align: center;
  }
}

/* 画像 */
img {
  width: 100%;
  height: auto;
}

.cent-img {
  height: 200px;
  text-align: center;
  margin: 0 0 20px;
}
.cent-img img {
  position: relative;
  top: 50%;
  max-width: 100%;
  max-height: 100%;
  transform: translateY(-50%);
}

.img-hover {
  overflow: hidden;
}
.img-hover img {
  transition: 1s linear;
}
.img-hover:hover img {
  transform: scale(1.05) rotate(0.1deg);
}

.main {
  padding-top: 60px;
  min-height: 700px;
}

.float-left {
  float: left;
}

.f-end {
  justify-content: flex-end;
}

/* paddingの追加
----------------------------------------------- */
.pb-6 {
  padding-bottom: 3.5rem;
}

.pb-7 {
  padding-bottom: 4rem;
}

.pb-8 {
  padding-bottom: 4.5rem;
}

.pb-9 {
  padding-bottom: 5rem;
}

/* = Selected Text
----------------------------------------------- */
::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}
::selection {
  background: rgba(175, 1, 122, 0.1); /* Safari */
}

::-moz-selection {
  background: rgba(175, 1, 122, 0.1); /* Firefox */
}

/******************************************************************
  ■bootstrapリセット
*****************************************************************/
@media (min-width: 576px) {
  .container, .contents-inn {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .container, .contents-inn {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .container, .contents-inn {
    max-width: 970px;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  .container, .contents-inn {
    max-width: 1100px;
    margin: 0 auto;
  }
}
/******************************************************************
  ■common
*****************************************************************/
a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease-out;
}
a:link, a:visited, a:active, a:hover:hover {
  display: block;
  color: #333;
  text-decoration: none;
}
a:link.inline, a:visited.inline, a:active.inline, a:hover:hover.inline {
  display: inline;
  text-decoration: underline;
}
a.hov_scale:hover > img {
  transform: scale(1.05);
}
a > img {
  width: 100%;
  transition: transform 0.7s ease-out;
}
@media (min-width: 792px) {
  a:hover {
    opacity: 0.8;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* パンくずリスト
------------------------------*/
@media (max-width: 791px) {
  #breadcrumbs {
    background: #eee;
    margin: 0 calc(50% - 50vw);
    padding: 0 20px;
  }
}
#breadcrumbs ol {
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 791px) {
  #breadcrumbs ol {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
    white-space: nowrap;
  }
  #breadcrumbs ol::-webkit-scrollbar {
    display: none;
  }
}
@media (min-width: 792px) {
  #breadcrumbs ol {
    padding: 7px 0;
  }
}
#breadcrumbs ol li {
  position: relative;
  display: inline-block;
  font-size: 1.2rem;
  padding: 0;
}
@media (min-width: 792px) {
  #breadcrumbs ol li {
    height: auto;
  }
}
#breadcrumbs ol li:not(:last-child)::after {
  display: inline-block;
  content: ">";
  margin-left: 5px;
}
@media (max-width: 791px) {
  #breadcrumbs ol li:not(:last-child)::after {
    padding: 10px 0;
  }
}
#breadcrumbs ol li a {
  display: inline-block;
  color: #000;
  border-bottom: 1px solid #888888;
  overflow: visible;
}
@media (max-width: 791px) {
  #breadcrumbs ol li a {
    border-bottom: none;
  }
}

/* ネガティブマージン
------------------------------*/
.full-width {
  margin: 0 calc(50% - 50vw);
}
.full-width .contents-inn {
  padding: 30px 15px;
}
@media (min-width: 792px) {
  .full-width .contents-inn {
    padding: 60px 0;
  }
}

@media (max-width: 791px) {
  .full-sp-width {
    margin: 0 calc(50% - 50vw);
  }
}
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* SVG
------------------------------*/
svg.svg-icon {
  margin: 2px 5px 0 0;
  height: 20px;
  width: 20px;
  fill: #00A1E2;
}
@media (min-width: 792px) {
  svg.svg-icon {
    width: 27px;
    height: 27px;
    margin-right: 10px;
    margin-top: -2px;
  }
}

#index svg.svg-icon {
  margin: -2px 5px 0 0;
}

/* ボタン
------------------------------*/
.submitBtn {
  font-size: 1.6rem;
  /* font-weight: bold;*/
  padding: 0 10px 10px;
  letter-spacing: 0;
  line-height: 1;
}
.submitBtn li {
  padding: 0 5px 10px !important;
}
.submitBtn li a {
  position: relative;
  background: #00A1E2;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 0 1px #ccc;
  border-radius: 3px;
}
@media (min-width: 792px) {
  .submitBtn li a {
    padding: 22px 0;
  }
}
.submitBtn li a:hover {
  color: #fff;
}
.submitBtn li.oubo a {
  background: #FF5D5D;
}
.submitBtn li.oubo a::before {
  border: 0;
}
.submitBtn li.oubo a span {
  position: relative;
  padding-left: 35px;
}
.submitBtn li.oubo a span::after {
  content: "";
  display: block;
  position: absolute;
  top: -2px;
  left: 0;
  background: url("../img/common/icon-oubo-web.png") center/contain no-repeat;
  width: 25px;
  height: 25px;
  border: 0;
}
@media (min-width: 792px) {
  .submitBtn li.oubo a span::after {
    width: 29px;
    height: 29px;
    top: 0;
  }
}
@media (min-width: 792px) {
  .submitBtn li.oubo a span {
    padding-left: 39px;
  }
}
.submitBtn li.oubo.tel a span::after {
  background: url("../img/common/icon-oubo-tel.png") center/contain no-repeat;
}
.submitBtn li.oubo.map {
  padding: 10px 5px !important;
  font-size: 1.4rem;
}
@media (min-width: 792px) {
  .submitBtn li.oubo.map {
    font-size: 1.6rem;
    padding: 15px 30px 0 0 !important;
  }
}
.submitBtn li.oubo.map a {
  background: #00A1E2;
  padding: 15px 20px;
}
.submitBtn li.oubo.map a span::after {
  background: url("../img/common/icon-link-map.png") center/contain no-repeat;
  top: -4px;
  width: 25px;
  height: 25px;
}
@media (min-width: 792px) {
  .submitBtn li.oubo.map a span::after {
    top: -2px;
  }
}
@media (min-width: 792px) {
  .submitBtn li {
    padding: 0 10px !important;
  }
}
@media (min-width: 792px) {
  .submitBtn {
    font-size: 2.4rem;
    padding: 0 30px 30px 30px;
    letter-spacing: 2px;
  }
}
.submitBtn.button {
  padding: 20px 0;
}
@media (min-width: 792px) {
  .submitBtn.button {
    padding: 40px 0;
  }
}
.submitBtn.map-link {
  padding: 0;
}
.submitBtn .blank {
  position: relative;
}
.submitBtn .blank::before {
  content: "";
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  transform: rotate(0deg);
  border: none;
  background: url(../img/common/icon-blank-w_pc.png) center/10px no-repeat;
}

.contents {
  padding: 30px 0;
}
@media (min-width: 792px) {
  .contents {
    padding: 60px 0;
  }
}

@media (max-width: 791px) {
  .contents-sp-15 {
    padding: 15px 0;
  }
}
.contents-inn {
  padding: 30px 0;
}
@media (min-width: 792px) {
  .contents-inn {
    padding: 60px 0;
  }
}

/******************************************************************
  ■ タイトルタイプ
*****************************************************************/
/* タイトル2段
------------------------------*/
.tit_type_2nd {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
  font-weight: normal;
}
.tit_type_2nd .ttl-en {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
  color: #555555;
}
@media (min-width: 792px) {
  .tit_type_2nd .ttl-en {
    font-size: 1.4rem;
  }
}
.tit_type_2nd .ttl-jp {
  font-size: 1.6rem;
}
@media (min-width: 792px) {
  .tit_type_2nd .ttl-jp {
    font-size: 2.6rem;
  }
}

/* タイトル横並び
------------------------------*/
.tit_type_side {
  line-height: 1.2;
  margin: 0 0 30px;
  display: flex;
  align-items: center;
}
@media (max-width: 791px) {
  .tit_type_side {
    flex-wrap: wrap;
  }
}
.tit_type_side .ttl-en {
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 2px;
  color: #555555;
  margin-right: 10px;
  white-space: nowrap;
}
@media (max-width: 791px) {
  .tit_type_side .ttl-en {
    width: 100%;
    margin-bottom: 13px;
  }
}
@media (min-width: 792px) {
  .tit_type_side .ttl-en {
    font-size: 1.6rem;
  }
}
.tit_type_side .ttl-jp {
  font-size: 1.8rem;
}
@media (min-width: 792px) {
  .tit_type_side .ttl-jp {
    font-size: 3.6rem;
  }
}

/* タイトル(タイプA)
------------------------------*/
.tit_type_a {
  position: relative;
  text-align: center;
  margin-bottom: 43px;
  font-size: 1.8rem;
}
@media (min-width: 792px) {
  .tit_type_a {
    margin-bottom: 60px;
    font-size: 2.4rem;
  }
}
.tit_type_a::before {
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  content: "";
  width: 30px;
  height: 2px;
  transform: translate3d(-50%, 0, 0);
  background: #00A1E2;
}
@media (min-width: 792px) {
  .tit_type_a::before {
    width: 50px;
    height: 4px;
  }
}

/* タイトル(タイプB)
------------------------------*/
.tit_type_b {
  position: relative;
  font-size: 1.6rem;
  padding: 0 10px 0.5em;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  line-height: 1.5;
}
@media (min-width: 792px) {
  .tit_type_b {
    margin-bottom: 40px;
    font-size: 2.2rem;
  }
}
.tit_type_b::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 2;
  content: "";
  width: 30%;
  height: 1px;
  background-color: #555555;
}

/* タイトル(タイプC)
------------------------------*/
.tit_type_c {
  overflow: hidden;
  margin-bottom: 20px;
  font-size: 1.8rem;
  padding-left: 15px;
  position: relative;
}
@media (max-width: 791px) {
  .tit_type_c {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 792px) {
  .tit_type_c {
    background: none;
  }
}
.tit_type_c::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  width: 4px;
  height: 100%;
  border-radius: 3px;
  background-color: #555555;
}
@media (min-width: 792px) {
  .tit_type_c::before {
    width: 6px;
  }
}
@media (min-width: 792px) {
  .tit_type_c .tit_type_c_txt {
    padding: 5px 10px;
    position: relative;
  }
  .tit_type_c .tit_type_c_txt::after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 100%;
    margin: auto;
    content: "";
    min-width: 1000px;
    height: 1px;
    background: #ccc;
  }
}

/* タイトル(タイプD)
------------------------------*/
.tit_type_d {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-bottom: 20px;
}
@media (min-width: 792px) {
  .tit_type_d {
    font-size: 2.4rem;
  }
}
.tit_type_d span {
  background: linear-gradient(#fff 60%, rgba(0, 161, 226, 0.5) 40%);
}

/* タイトル(タイプE)
------------------------------*/
.tit_type_e {
  font-size: 1.4rem;
  padding-bottom: 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid;
  border-bottom-color: #555555;
}
@media (min-width: 792px) {
  .tit_type_e {
    font-size: 1.6rem;
  }
}

/* タイトル(タイプF)
------------------------------*/
.tit_type_f {
  position: relative;
  margin-bottom: 10px;
  padding-left: 13px;
  font-size: 1.2rem;
}
@media (min-width: 792px) {
  .tit_type_f {
    margin-bottom: 20px;
    font-size: 1.4rem;
  }
}
.tit_type_f::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  height: 100%;
  margin: auto;
  border-radius: 3px;
  content: "";
  background-color: #00A1E2;
}

/* タイトル(タイプG)
------------------------------*/
.tit_type_g {
  color: #00A1E2;
  border-bottom: 1px solid #00A1E2;
  text-align: center;
  font-size: 1.5rem;
  padding-bottom: 20px;
  margin-bottom: 14px;
}
@media (min-width: 792px) {
  .tit_type_g {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }
}

/* タイトル(タイプH)
------------------------------*/
.tit_type_h {
  color: #fff;
  background: #00A1E2;
  font-size: 1.5rem;
  padding: 10px;
}
@media (min-width: 792px) {
  .tit_type_h {
    font-size: 1.8rem;
    padding: 10px 20px;
  }
}

.card-img {
  max-width: 100%;
  max-height: 100%;
}
@media (min-width: 792px) {
  .card-img {
    height: 300px;
  }
}

.object-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
  font-family: "object-fit: contain;";
}

.link-list li {
  font-size: 1.4rem;
  font-weight: bold;
}
@media (min-width: 792px) {
  .link-list li {
    border-left: 1px solid #ccc;
  }
  .link-list li:nth-child(4n), .link-list li:last-child {
    border-right: 1px solid #ccc;
  }
}
@media (max-width: 791px) {
  .link-list li {
    border-bottom: 1px solid #ccc;
  }
  .link-list li:nth-child(odd) {
    border-right: 1px solid #ccc;
  }
}
.link-list li a {
  position: relative;
  padding: 17px 30px 17px 17px;
}
.link-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
  transform: rotate(135deg);
  right: 20px;
}
@media (min-width: 792px) {
  .link-list li a::before {
    border-color: #333;
  }
}

.block {
  border: 1px solid #00A1E2;
  margin-bottom: 30px;
}
@media (min-width: 792px) {
  .block {
    border: 2px solid #00A1E2;
  }
}

.detail-title {
  font-size: 12px;
  margin-bottom: 5px;
}

.note-block .note-block-l {
  width: 50%;
  padding-right: 3px;
}
@media (min-width: 792px) {
  .note-block .note-block-l {
    margin-right: 15px;
  }
}
.note-block .note-block-r {
  width: 50%;
  padding-left: 3px;
}
@media (min-width: 792px) {
  .note-block .note-block-r {
    margin-left: 15px;
  }
}

.cts-copy {
  color: #00A1E2;
  font-weight: bold;
  font-size: 16px;
  margin: 15px 0;
}
@media (min-width: 792px) {
  .cts-copy {
    font-size: 20px;
  }
}

.ic {
  font-size: 0;
  display: inline-block;
}
@media (min-width: 792px) {
  .ic {
    margin-bottom: 9px;
  }
}
.ic li {
  display: inline-block;
  color: #333;
  line-height: 1;
  font-size: 11px;
  padding: 5px 10px;
  margin: 0 10px 10px 0;
  text-align: center;
  white-space: nowrap;
  background: #ccc;
}
.ic li.ic-arbeit {
  background: #A12626;
  color: #fff;
}
.ic li.ic-parttimer {
  background: #773E7E;
  color: #fff;
}
.ic li.ic-career {
  background: #2D557B;
  color: #fff;
}
.ic li.ic-contract {
  background: #4c8341;
  color: #fff;
}
.ic li.ic-scd {
  background: #fff;
  border: 1px solid #00A1E2;
  color: #00A1E2;
}
.ic li.ic-style {
  background: #fff;
  border: 1px solid #888;
  color: #333;
}
@media (min-width: 792px) {
  .ic li {
    padding: 5px 10px;
    margin: 0 5px 5px 0;
  }
}

.carous-box {
  font-size: 1.3rem;
  margin-top: -5px;
}
@media (min-width: 792px) {
  .carous-box {
    margin-top: 30px;
    display: flex;
  }
}
@media (max-width: 791px) {
  .carous-box .carous-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 5px;
  }
  .carous-box .carous-item a {
    display: table;
  }
  .carous-box .carous-item a .listItem-img {
    display: table-cell;
    width: 100px;
    height: 75px;
    vertical-align: middle;
    text-align: center;
    position: relative;
  }
  .carous-box .carous-item a .listItem-tit {
    display: table-cell;
    width: auto;
    padding-left: 10px;
    vertical-align: middle;
  }
}
@media (min-width: 792px) {
  .carous-box .carous-item {
    width: calc(20% - 8px);
  }
  .carous-box .carous-item:not(:last-child) {
    margin-right: 15px;
  }
  .carous-box .carous-item .listItem-img {
    border: 1px solid #ccc;
    padding: 5px;
    margin-bottom: 10px;
  }
  .carous-box .carous-item .checked-listItem .listItem-img {
    position: relative;
    overflow: hidden;
  }
  .carous-box .carous-item .checked-listItem .listItem-img::before {
    position: relative;
    display: block;
    content: "";
    padding-top: 75%;
  }
  .carous-box .carous-item .checked-listItem img {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    /*                    max-width: 100%;
                        max-height: 100%;
                        width: auto;
                        height: auto;*/
  }
}

#load-recommend .contents {
  padding-bottom: 0;
}
@media (min-width: 792px) {
  #load-recommend .contents {
    padding-bottom: 30px;
  }
}

/******************************************************************
  ■ コンテンツ関連
*****************************************************************/
/* ページ内リンク(タイプA)
------------------------------*/
.guide-link-type-a {
  flex-wrap: wrap;
  border: 1px solid #00A1E2;
  border-bottom: none;
  margin-top: 15px;
  background: #fff;
}
.guide-link-type-a li a {
  padding: 15px 0;
  color: #00A1E2;
}
@media (min-width: 792px) {
  .guide-link-type-a li a {
    padding: 15px 45px 15px 25px;
  }
}
.guide-link-type-a li span {
  position: relative;
}
.guide-link-type-a li span::after {
  position: relative;
  top: -2px;
  left: 5px;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #00A1E2;
}
@media (min-width: 792px) {
  .guide-link-type-a li span::after {
    left: 15px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #00A1E2;
  }
}
@media (max-width: 791px) {
  .guide-link-type-a li {
    text-align: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #00A1E2;
  }
  .guide-link-type-a li.w-sp-50 {
    width: 50%;
  }
  .guide-link-type-a li.w-sp-100 {
    width: 100%;
  }
  .guide-link-type-a li:nth-child(odd) {
    border-right: 1px solid #00A1E2;
  }
  .guide-link-type-a li:last-child {
    border-right: none;
  }
}
@media (min-width: 792px) {
  .guide-link-type-a {
    border: 2px solid #00A1E2;
    border-right: none;
    border-left: none;
  }
}

/* ページ内リンク(タイプB)
------------------------------*/
.guide-link-type-b {
  padding-bottom: 30px;
}
@media (min-width: 792px) {
  .guide-link-type-b {
    padding: 60px;
  }
}
.guide-link-type-b .link-list {
  justify-content: flex-start;
}
@media (min-width: 792px) {
  .guide-link-type-b .link-list {
    justify-content: center;
  }
}
.guide-link-type-b .link-list li {
  position: relative;
  display: flex;
  align-items: center;
}
.guide-link-type-b .link-list li a {
  width: 100%;
}

/* 4カラム:リンク(求人詳細：関連求人で使用)
------------------------------*/
.flex-link-type_b {
  font-size: 1.2rem;
  width: 100%;
  margin-bottom: 20px;
  background: #fff;
}
@media (min-width: 792px) {
  .flex-link-type_b {
    font-size: 1.4rem;
  }
}
.flex-link-type_b .flex-center-img {
  position: relative;
  border: 1px solid #ccc;
  margin-bottom: 0;
  overflow: hidden;
}
.flex-link-type_b .flex-center-img::before {
  content: "";
  display: block;
  padding-top: 66.666%;
}
@media (min-width: 792px) {
  .flex-link-type_b .flex-center-img {
    padding-top: 75%;
  }
  .flex-link-type_b .flex-center-img::before {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0 35px 35px;
    border-color: transparent transparent #00A1E2 transparent;
    z-index: 99;
  }
  .flex-link-type_b .flex-center-img::after {
    position: absolute;
    content: "";
    top: auto;
    bottom: 8px;
    right: 10px;
    bottom: 7px;
    width: 6px;
    height: 6px;
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
    z-index: 700;
  }
}
.flex-link-type_b .flex-center-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.flex-link-type_b .flex-link-type_b-txt {
  padding: 20px 0;
  white-space: normal;
}
@media (max-width: 791px) {
  .flex-link-type_b .flex-link-type_b-txt {
    border: 1px solid #ccc;
    border-top: none;
    padding: 20px 10px;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
  font-size: 1.5rem;
  padding: 0 0 15px;
  margin: 0 0 15px;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 792px) {
  .flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-ttl {
    font-size: 1.8rem;
  }
}
.flex-link-type_b .flex-link-type_b-txt .flex-link-type_b-job {
  color: #333;
}

@media (min-width: 792px) {
  .float-md-right {
    margin: 0 0 20px 30px;
    max-width: 50%;
  }
  .float-md-left {
    margin: 0 30px 20px 0;
    max-width: 50%;
  }
  .pcHdn {
    display: none !important;
  }
  .flex-2-item li {
    width: calc(50% - 10px);
  }
  .flex-2-item li:not(:nth-child(2n)) {
    margin-right: 20px;
  }
  .flex-2-item li:last-child {
    margin-right: 0;
  }
  .flex-3-item li {
    width: calc(33.3% - 14px);
  }
  .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 20px;
  }
  .flex-3-item li:last-child {
    margin-right: 0;
  }
  .flex-4-item li {
    width: calc(25% - 16px);
  }
  .flex-4-item li:not(:nth-child(4n)) {
    margin-right: 20px;
  }
  .flex-4-item li:last-child {
    margin-right: 0;
  }
  .flex-5-item li {
    width: calc(20% - 16px);
  }
  .flex-5-item li:not(:nth-child(5n)) {
    margin-right: 20px;
  }
  .flex-5-item li:last-child {
    margin-right: 0;
  }
}
@media (max-width: 791px) {
  .spHdn {
    display: none !important;
  }
  .float-sp-left {
    float: left;
  }
  .overflow-x-scroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .overflow-x-scroll li {
    width: 250px;
    margin-right: 20px;
  }
  .flex-2-sp-item li {
    width: calc(50% - 8px);
  }
  .flex-2-sp-item li:not(:nth-child(2n)) {
    margin-right: 16px;
  }
  .flex-2-sp-item li:last-child {
    margin-right: 0;
  }
}
/******************************************************************
  ■ 背景色を変更
*****************************************************************/
/* トップページ交互に背景色を変更
------------------------------*/
/*#index .container>.contents:nth-child(odd) {
    background: #E9F1F3;
}*/
/* トップページSEOリンク
------------------------------*/
.index-seolink {
  padding: 40px 0 50px;
}
.index-seolink.full-width .contents-inn {
  padding: 0;
}

/* 共通フッターコンテンツ背景色
------------------------------*/
.html-bottom {
  background: #ccc;
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
/* 新着求人
------------------------------*/
.list-block-ttl, .detail-block-ttl {
  position: relative;
  background: #00A1E2;
  color: #fff;
  padding: 15px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.5;
}
@media (min-width: 792px) {
  .list-block-ttl, .detail-block-ttl {
    font-size: 24px;
    padding: 20px;
  }
}
.list-block-ttl .new, .detail-block-ttl .new {
  background: #efe24e;
  padding: 0 10px;
  color: #333;
  margin-right: 10px;
  font-size: 1.5rem;
}
@media (min-width: 792px) {
  .list-block-ttl .new, .detail-block-ttl .new {
    position: relative;
    top: -3px;
    padding: 2px 20px;
  }
}

.list-block-txt {
  overflow: hidden;
}
@media (max-width: 791px) {
  .list-block-txt {
    width: 100%;
  }
}
.list-block-txt .list-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 792px) {
  .list-block-txt .list-ttl {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.list-block-cts {
  position: relative;
  padding: 10px 10px 20px;
  background: #fff;
}
@media (min-width: 792px) {
  .list-block-cts {
    padding: 30px;
  }
  .list-block-cts .list-block-ic {
    padding-left: 190px;
  }
  .list-block-cts .list-block-txt {
    padding-left: 190px;
  }
}

.list-block-img {
  min-width: 120px;
  max-width: 160px;
  width: 33%;
  padding-right: 15px;
}
@media (min-width: 792px) {
  .list-block-img {
    min-width: 180px;
    max-width: 180px;
    width: 180px;
  }
  .list-block-img.float-left {
    float: none !important;
    position: absolute;
    top: 30px;
    left: 30px;
  }
  .list-block-img figure {
    margin-bottom: 0;
  }
}

.list-block-ic {
  overflow: auto;
}

.index-list .block {
  border: 1px solid #555555;
}
.index-list .index-list-ttl {
  font-size: 1.6rem;
  color: #555555;
}
@media (min-width: 792px) {
  .index-list .index-list-ttl {
    font-size: 2.4rem;
  }
}
@media (max-width: 791px) {
  .index-list .note-block {
    flex-wrap: wrap;
  }
  .index-list .note-block .note-block-l, .index-list .note-block .note-block-r {
    width: 100%;
    padding-left: 0;
  }
  .index-list .note-block .note-block-r {
    padding-top: 5px;
  }
}
@media (min-width: 792px) {
  .index-list .list-block-cts {
    padding: 20px;
  }
  .index-list .float-left {
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
  }
}

/******************************************************************
  ■ common-other（詳細ページ以外で共通するスタイル）
*****************************************************************/
/******************************************************************
  ■パーツ設定
*****************************************************************/
/* キービジュアル
------------------------------*/
.mainimg {
  width: 100%;
  overflow: hidden;
}
.mainimg .slick-slide img {
  width: 100%;
}

/* 雇用形態
------------------------------*/
.ic li {
  min-width: 95px;
  width: calc((100% - 12px) / 2);
}
@media (max-width: 791px) {
  .ic li:nth-child(even) {
    margin-right: 0;
  }
}
@media (min-width: 792px) {
  .ic li {
    width: 95px;
  }
}

/* ボタン
------------------------------*/
.submitBtn {
  font-size: 1.6rem;
}
.submitBtn li a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  margin-top: -5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  right: 15px;
}
@media (min-width: 792px) {
  .submitBtn li.oubo a span::after {
    width: 25px;
    height: 25px;
    top: -1px;
  }
}
@media (min-width: 792px) {
  .submitBtn li.oubo a span {
    padding-left: 35px;
  }
}
.submitBtn li.form {
  width: 250px;
}
.submitBtn li.form a::before {
  border: 0;
}
@media (min-width: 792px) {
  .submitBtn li.form {
    width: 300px;
  }
}
@media (min-width: 792px) {
  .submitBtn {
    font-size: 1.8rem;
  }
}
.submitBtn.search {
  padding: 30px 0;
  background: #eee;
}

/* ページネーション
------------------------------*/
.pageNavi {
  position: relative;
}
@media (min-width: 792px) {
  .pageNavi .paging-count {
    padding-top: 5px;
  }
  .pageNavi .paging-count .a-count {
    font-size: 2rem;
  }
}
.pageNavi .inner {
  max-width: calc(100% - 30px);
  margin: 0 auto;
  overflow: hidden;
}
@media (min-width: 576px) {
  .pageNavi .inner {
    max-width: 520px;
  }
}
@media (min-width: 768px) {
  .pageNavi .inner {
    max-width: 100%;
  }
}
.pageNavi .inner a, .pageNavi .inner .prev a, .pageNavi .inner .next a {
  display: block;
  padding: 4px 10px;
  border: 1px solid #888;
  margin-left: 10px;
  letter-spacing: 0;
}
.pageNavi .inner .prev a, .pageNavi .inner .next a {
  position: relative;
  color: transparent !important;
  padding: 4px 12px;
}
@media (min-width: 792px) {
  .pageNavi .inner .prev a, .pageNavi .inner .next a {
    padding: 4px 14px;
  }
}
.pageNavi .inner .prev a::before, .pageNavi .inner .next a::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #00A1E2;
  border-right: 1px solid #00A1E2;
}
.pageNavi .inner .prev a.d-hdn, .pageNavi .inner .next a.d-hdn {
  opacity: 0;
}
@media (min-width: 792px) {
  .pageNavi .inner .prev a.d-hdn, .pageNavi .inner .next a.d-hdn {
    display: none;
  }
}
.pageNavi .inner .prev a::before {
  transform: rotate(-135deg);
  left: 13px;
}
.pageNavi .inner .next a::before {
  transform: rotate(45deg);
  right: 13px;
}
.pageNavi .inner .prev.first a, .pageNavi .inner .next.last a {
  padding: 4px 8px;
}
@media (min-width: 792px) {
  .pageNavi .inner .prev.first a, .pageNavi .inner .next.last a {
    padding: 4px 10px;
  }
}
.pageNavi .inner .prev.first a::after, .pageNavi .inner .next.last a::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: 1px solid #00A1E2;
  border-right: 1px solid #00A1E2;
}
.pageNavi .inner .prev.first a {
  margin-left: 0;
  left: 0;
}
.pageNavi .inner .prev.first a::before {
  left: 7px;
}
@media (min-width: 792px) {
  .pageNavi .inner .prev.first a::before {
    left: 10px;
  }
}
.pageNavi .inner .prev.first a::after {
  transform: rotate(-135deg);
  left: 14px;
}
@media (min-width: 792px) {
  .pageNavi .inner .prev.first a::after {
    left: 17px;
  }
}
@media (min-width: 792px) {
  .pageNavi .inner .prev.page a {
    margin-right: 30px;
  }
}
.pageNavi .inner .next.last a {
  margin-right: 0;
}
.pageNavi .inner .next.last a::before {
  right: 7px;
}
@media (min-width: 792px) {
  .pageNavi .inner .next.last a::before {
    right: 10px;
  }
}
.pageNavi .inner .next.last a::after {
  transform: rotate(45deg);
  right: 14px;
}
@media (min-width: 792px) {
  .pageNavi .inner .next.last a::after {
    right: 17px;
  }
}
@media (min-width: 792px) {
  .pageNavi .inner .next.page a {
    margin-left: 20px;
  }
}
.pageNavi .inner .current {
  background: #555555;
  border-color: #555555;
  color: #fff;
}
.pageNavi.pagenavi-no-num .inner {
  max-width: 100%;
}
.pageNavi.pagenavi-no-num .inner .d-flex {
  min-width: 68px;
}
@media (min-width: 792px) {
  .pageNavi.pagenavi-no-num .inner .d-flex {
    min-width: 108px;
  }
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(1) {
  margin-left: 0;
  margin-right: auto;
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(2) {
  margin-left: auto;
  margin-right: auto;
}
.pageNavi.pagenavi-no-num .inner .d-flex:nth-child(3) {
  margin-left: auto;
  margin-right: 0;
}

/* ページ内リンク
------------------------------*/
a.inline-link {
  text-decoration: underline;
  display: inline-block;
  vertical-align: bottom;
}
a.inline-link:hover {
  display: inline-block;
}

/******************************************************************
  ■ コンテンツタイトル
*****************************************************************/
/* コンテンツタイトルタイプA
------------------------------*/
.main-type-a {
  position: relative;
  z-index: 1;
}
.main-type-a figure {
  margin-bottom: 0;
}
.main-type-a .main-ttl-BOX {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 1px solid #eeeeee;
}
@media (min-width: 792px) {
  .main-type-a .main-ttl-BOX {
    top: 20px;
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
}
.main-type-a .main-ttl-BOX .main-ttl-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 25px 65px;
  font-size: 2rem;
  font-weight: bold;
  background: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transform: translate3d(-50%, -50%, 0);
}
@media (min-width: 792px) {
  .main-type-a .main-ttl-BOX .main-ttl-txt {
    font-size: 3.2rem;
  }
}

/* コンテンツタイトルタイプB
------------------------------*/
.main-type-b {
  position: relative;
}
@media (max-width: 791px) {
  .main-type-b {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 792px) {
  .main-type-b {
    margin: 0 -50px 80px;
  }
}
.main-type-b .main-type-b-img {
  height: auto;
  margin: 0 -15px;
}
@media (min-width: 792px) {
  .main-type-b .main-type-b-img {
    position: absolute;
    width: calc(50% + 20px);
    height: 400px;
    margin: 0;
    overflow: hidden;
  }
}
.main-type-b .main-ttl-BOX {
  position: relative;
  font-size: 1.2rem;
  top: -20px;
  background: #fff;
  border-top: 2px solid #00A1E2;
  padding: 20px 20px 30px;
}
@media (max-width: 791px) {
  .main-type-b .main-ttl-BOX {
    width: calc(100% - 40px);
    margin: auto;
  }
}
@media (min-width: 792px) {
  .main-type-b .main-ttl-BOX {
    top: 20px;
    border-top: none;
    border-left: 3px solid #00A1E2;
    margin-left: 50%;
    padding: 40px;
    min-height: 400px;
  }
  .main-type-b .main-ttl-BOX .name {
    font-size: 1.6rem;
  }
}
.main-type-b .main-ttl-BOX .main-ttl-txt {
  font-size: 1.6rem;
  line-height: 1.9;
  margin-bottom: 1.5em;
}
@media (min-width: 792px) {
  .main-type-b .main-ttl-BOX .main-ttl-txt {
    font-size: 2.2rem;
  }
}
.main-type-b .main-ttl-BOX .main-ttl-tit {
  font-size: 1.2rem;
  margin-bottom: 0.8em;
  line-height: 1.5;
}
@media (min-width: 792px) {
  .main-type-b .main-ttl-BOX .main-ttl-tit {
    font-size: 1.6rem;
  }
}

/******************************************************************
  ■ コンテンツ関連
*****************************************************************/
/* コンテンツ タイプA
------------------------------*/
.cts_type_a {
  background-size: cover;
  padding: 60px 0;
}
.cts_type_a.bgimg_set {
  background-image: url(../img/demo/contents-idea-bg.jpg);
}
.cts_type_a__txt {
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 792px) {
  .cts_type_a__txt {
    width: calc(100% - 80px);
    max-width: 980px;
    padding: 60px;
    line-height: 2;
  }
}

/* コンテンツ タイプB
------------------------------*/
.cts_type_b {
  position: relative;
}
@media (max-width: 791px) {
  .cts_type_b {
    border-bottom: 1px solid #ccc;
  }
}
@media (min-width: 792px) {
  .cts_type_b {
    margin: 0 0 80px;
  }
}
.cts_type_b .cts-type-b-img {
  height: auto;
  margin: 0 -15px;
}
@media (min-width: 792px) {
  .cts_type_b .cts-type-b-img {
    position: absolute;
    width: calc(50% + 20px);
    height: 400px;
    margin: 0;
    overflow: hidden;
  }
}
.cts_type_b .txt-BOX {
  position: relative;
  top: -20px;
  background: #fff;
  border: 2px solid #00A1E2;
  padding: 20px 20px 30px;
}
@media (max-width: 791px) {
  .cts_type_b .txt-BOX {
    width: calc(100% - 40px);
    margin: auto;
  }
}
@media (min-width: 792px) {
  .cts_type_b .txt-BOX {
    top: 20px;
    border: 3px solid #00A1E2;
    margin-left: 50%;
    padding: 40px;
    min-height: 400px;
  }
  .cts_type_b .txt-BOX .txt-item {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% - 80px);
  }
}
@media (min-width: 792px) {
  .cts_type_b.reverse .cts-type-b-img {
    right: 0;
  }
}
@media (min-width: 792px) {
  .cts_type_b.reverse .txt-BOX {
    margin: 0 50% 0 0;
  }
}

/* コンテンツ タイプD
------------------------------*/
.cts_type_d_ttl {
  width: 100%;
  border-bottom: 1px solid #ccc;
}
@media (min-width: 792px) {
  .cts_type_d_ttl {
    width: 200px;
  }
}

@media (min-width: 792px) {
  .cts_type_d_txt {
    border-bottom: 1px solid #ccc;
  }
}

/******************************************************************
  ■ Youtube
*****************************************************************/
.short-aspect {
  aspect-ratio: 9/16;
  width: 100%;
}

/******************************************************************
  ■ カラム表示
*****************************************************************/
/* カラム表示 タイプA
------------------------------*/
.col_type_a figure {
  margin-bottom: 0;
}
.col_type_a .col_type_a_li {
  background: #eee;
  margin-bottom: 15px;
}
@media (min-width: 792px) {
  .col_type_a .col_type_a_li {
    margin-bottom: 20px;
  }
}
@media (min-width: 792px) {
  .col_type_a .col_type_a_figure {
    padding: 20px 30px;
  }
}
.col_type_a .col_type_a_img {
  position: relative;
}
.col_type_a .figure_circle {
  border-radius: 50%;
}
.col_type_a .figure_frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.col_type_a .figure_frame svg {
  width: 100%;
  height: 100%;
  fill: #eee;
}
.col_type_a .col_type_a_item {
  padding: 15px;
}
@media (min-width: 792px) {
  .col_type_a .col_type_a_item {
    padding: 0 20px 20px;
  }
}
.col_type_a .col_type_a_ttl {
  font-size: 1.6rem;
}
@media (min-width: 792px) {
  .col_type_a .col_type_a_ttl {
    font-size: 1.8rem;
  }
}
.col_type_a .col_type_a_edge {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  border: 1px solid #a0a0a0;
  padding: 3px 10px;
  margin-right: 7px;
  margin-bottom: 3px;
  white-space: nowrap;
}

/* カラム表示 タイプB
------------------------------*/
.col_type_b_item {
  position: relative;
  margin-bottom: 40px;
}
@media (min-width: 792px) {
  .col_type_b_item:not(:last-child) {
    margin-bottom: 60px;
  }
}
.col_type_b_item:not(:last-child)::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 15px;
  border-color: #00A1E2 transparent transparent transparent;
  position: absolute;
  margin: 0 auto;
  bottom: -27.5px;
  right: 0;
  left: 0;
}
@media (min-width: 792px) {
  .col_type_b_item:not(:last-child)::after {
    bottom: -37.5px;
  }
}
.col_type_b_item .col_type_b_item_inner {
  height: 100%;
  background: #eee;
}
.col_type_b_item dt {
  background: #00A1E2;
  color: #fff;
}

/* カラム表示 タイプB その3*/
@media (min-width: 792px) {
  .ratio .col_type_b_item dt {
    width: 50%;
  }
  .ratio .col_type_b_item dd {
    width: 50%;
  }
  .ratio .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(25% - 15px);
  }
  .ratio__3_7 .col_type_b_item dt {
    width: 30%;
  }
  .ratio__3_7 .col_type_b_item dd {
    width: 70%;
  }
  .ratio__3_7 .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(15% - 15px);
  }
  .ratio__4_6 .col_type_b_item dt {
    width: 40%;
  }
  .ratio__4_6 .col_type_b_item dd {
    width: 60%;
  }
  .ratio__4_6 .col_type_b_item:not(:last-child)::after {
    margin: 0 auto 0 calc(20% - 15px);
  }
}

@media (min-width: 792px) {
  .pc-horizontal .col_type_b_item {
    margin-bottom: 60px;
  }
  .pc-horizontal .col_type_b_item:not(:last-child)::after {
    transform: rotate(-90deg);
    margin: auto;
    top: 50%;
    left: auto;
    right: -26px;
    bottom: auto;
  }
}

/* コンテンツ タイプE
------------------------------*/
.cts_type_e_item {
  position: relative;
  min-height: 40px;
  padding: 9px 10px 0 50px;
}
@media (min-width: 792px) {
  .cts_type_e_item {
    min-height: 50px;
    padding: 12px 10px 0 70px;
    font-size: 1.8rem;
  }
}
.cts_type_e_item::before {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  font-size: 2rem;
  line-height: 40px;
  text-align: center;
  color: #fff;
}
@media (min-width: 792px) {
  .cts_type_e_item::before {
    width: 50px;
    height: 50px;
    font-size: 2.4rem;
    line-height: 50px;
  }
}
.cts_type_e_item01::before {
  content: "Q";
  background: #333;
}
.cts_type_e_item02::before {
  content: "A";
  background: #00A1E2;
}
.cts_type_e_item03::before {
  content: "E";
  background: #555555;
}

/* コンテンツ タイプF
------------------------------*/
.cts_type_f_item {
  margin-bottom: 10px;
  padding: 0 10px 0;
  background: #fff;
  border: solid 1px #ccc;
}
@media (min-width: 792px) {
  .cts_type_f_item {
    padding: 0 20px 0;
  }
}
.cts_type_f_item dt {
  padding: 15px 40px 15px 10px;
}
@media (min-width: 792px) {
  .cts_type_f_item dt {
    padding: 25px 40px 25px 20px;
  }
}
.cts_type_f_item dd {
  border-top: solid 1px #eee;
  padding: 20px 10px;
}
@media (min-width: 792px) {
  .cts_type_f_item dd {
    padding: 30px 20px;
  }
}

.cts_type_f_tit, .cts_type_f_cts {
  position: relative;
}
.cts_type_f_tit::before, .cts_type_f_cts::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #00A1E2;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 792px) {
  .cts_type_f_tit {
    font-size: 1.8rem;
  }
}
.cts_type_f_tit::before {
  content: "Q";
}

.cts_type_f_cts::before {
  content: "A";
}

/* コンテンツ タイプG
------------------------------*/
.cts_type_g {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}
.cts_type_g .box-line {
  background: #00A1E2;
  left: 20px;
  position: absolute;
  top: 10px;
  display: block;
  content: "";
  width: 2px;
  height: 2000px;
}
@media (min-width: 792px) {
  .cts_type_g .box-line {
    left: 150px;
  }
}
.cts_type_g dl {
  padding: 0 0 15px 35px;
}
@media (min-width: 792px) {
  .cts_type_g dl {
    padding: 0 0 35px 35px;
  }
}
.cts_type_g dl dt {
  position: relative;
  margin-bottom: 0.5em;
}
@media (min-width: 792px) {
  .cts_type_g dl dt {
    width: 190px;
    float: left;
  }
}
.cts_type_g dl dt::before, .cts_type_g dl dt:after {
  position: absolute;
  top: 0;
  left: -34px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (min-width: 792px) {
  .cts_type_g dl dt::before, .cts_type_g dl dt:after {
    top: 2px;
    left: 96px;
  }
}
.cts_type_g dl dt::before {
  background: #00A1E2;
}
.cts_type_g dl dt:after {
  top: 4px;
  left: -30px;
  display: block;
  content: "";
  clear: both;
  width: 12px;
  height: 12px;
  background: #fff;
}
@media (min-width: 792px) {
  .cts_type_g dl dt:after {
    top: 6px;
    left: 100px;
  }
}
.cts_type_g dl dt .workstyle-time {
  font-size: 1.6rem;
  padding-right: 15px;
  position: relative;
  width: 180px;
  text-align: right;
}
@media (min-width: 792px) {
  .cts_type_g dl dt .workstyle-time::after {
    position: absolute;
    top: 8px;
    left: 125px;
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #00A1E2;
  }
}
@media (min-width: 792px) {
  .cts_type_g dl dd {
    margin: 0 0 0 190px;
  }
  .cts_type_g dl .tit_type_d {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

/* アコーディオンのプラスマーク */
.icon-plus {
  position: relative;
}
.icon-plus::before, .icon-plus::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  width: 16px;
  height: 1px;
  background: #00A1E2;
  transition: all 0.3s ease-out 0s;
}
.icon-plus::before {
  transform: rotate(90deg);
}
.icon-plus.open:before {
  transition: all 0.3s ease-out 0s;
  transform: rotate(0deg);
}

.tgl-cts {
  display: none;
}

/******************************************************************
  ■ カラムリンク
*****************************************************************/
/* カラムリンク タイプA
------------------------------*/
.flex-link-type_a {
  position: relative;
  font-size: 1.2rem;
  margin-bottom: 20px;
  border: 2px solid #00A1E2;
}
@media (min-width: 792px) {
  .flex-link-type_a {
    font-size: 1.4rem;
    margin-bottom: 60px;
  }
}
.flex-link-type_a::before {
  content: "";
  display: block;
  padding-top: 66.666%;
  position: absolute;
  top: auto;
  bottom: -1px;
  right: -1px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent #00A1E2 transparent;
  z-index: 99;
}
.flex-link-type_a::after {
  position: absolute;
  content: "";
  top: auto;
  bottom: 8px;
  right: 10px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  z-index: 700;
}
.flex-link-type_a .flex-link-ttl {
  padding: 10px 15px 15px;
  color: #00A1E2;
  font-size: 1.5rem;
}
@media (min-width: 792px) {
  .flex-link-type_a .flex-link-ttl {
    font-size: 1.8rem;
  }
}

/******************************************************************
  ■ リスト表示
*****************************************************************/
/* ラインリンクリスト
------------------------------*/
.line-link-list .line-link-item {
  /*background: $bgColor;*/
}
.line-link-list .line-link-item:first-child {
  border-top: 1px solid #eee;
  border-top: 1px solid #555555;
}
.line-link-list .line-link-item:last-child {
  margin-bottom: 30px;
}
.line-link-list a {
  display: block;
  padding: 15px 30px 15px 10px;
  border-bottom: 1px solid #eee;
  border-bottom: 1px solid #555555;
  position: relative;
}
.line-link-list a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 10px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #00A1E2;
  border-bottom: 1px solid #00A1E2;
  transform: rotate(-45deg);
}
.line-link-list a .ic {
  margin-bottom: 0;
}
.line-link-list a .ic li {
  margin-bottom: 0;
}
.line-link-list .showdate {
  font-size: 1.2rem;
}
@media (min-width: 792px) {
  .line-link-list .line-link-tit {
    flex: 1 0 0%;
  }
}
@media (max-width: 791px) {
  .line-link-list .line-link-tit {
    margin-top: 10px;
  }
}
.line-link-list .line-link-cts {
  margin-top: 10px;
  margin-bottom: 0;
}

/* コンテンツリンクリスト
------------------------------*/
.cts-link-list {
  background: #eee;
}
.cts-link-list .cts-link-list-item:not(:last-child) {
  margin-bottom: 20px;
}
.cts-link-list .tit_type_f {
  margin-bottom: 15px;
}

/* 番号付きリスト
------------------------------*/
.no-li {
  counter-reset: my-counter;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.no-li li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.no-li li:before {
  content: counter(my-counter);
  counter-increment: my-counter;
  background-color: #a1d7ff;
  color: #333;
  display: block;
  float: left;
  line-height: 22px;
  margin-left: -30px;
  text-align: center;
  height: 26px;
  width: 26px;
  border-radius: 50%;
  padding-top: 2px;
}

/******************************************************************
  お問い合わせ
*****************************************************************/
.contact {
  padding: 0 10px;
  background: url(../img/common/contact-bg.jpg) center/cover no-repeat;
}

a.ic-contact {
  position: relative;
  width: 250px;
  margin: 0 auto;
  padding: 11px 0;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  background: #00A1E2;
  box-shadow: 0 1px 0 1px #ccc;
  font-size: 1.2rem;
}
@media (min-width: 792px) {
  a.ic-contact {
    padding: 33px 0;
    width: 300px;
    font-size: 1.6rem;
  }
}
a.ic-contact::before {
  content: "";
  background: url(../img/common/icon-contact.png) 0px center/20px 14px no-repeat;
  padding-left: 30px;
}
a.ic-contact:hover {
  color: #fff;
}

@media (max-width: 791px) {
  .contact-tel {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
@media (min-width: 792px) {
  .contact-tel {
    font-size: 2.8rem;
  }
}

.contact-address {
  font-size: 1.4rem;
}
@media (max-width: 791px) {
  .contact-address {
    margin-bottom: 30px;
  }
}

/******************************************************************
  ■ タイムスケジュール
*****************************************************************/
.workstyle-block {
  position: relative;
  padding: 0 10px;
  overflow: hidden;
}
.workstyle-block .box-line {
  background: #00A1E2;
  left: 20px;
  position: absolute;
  top: 10px;
  display: block;
  content: "";
  width: 2px;
  height: 2000px;
}
@media (min-width: 792px) {
  .workstyle-block .box-line {
    left: 150px;
  }
}
.workstyle-block dl {
  padding: 0 0 15px 35px;
}
@media (min-width: 792px) {
  .workstyle-block dl {
    padding: 0 0 35px 35px;
  }
}
.workstyle-block dl dt {
  position: relative;
  margin-bottom: 0.5em;
}
@media (min-width: 792px) {
  .workstyle-block dl dt {
    width: 190px;
    float: left;
  }
}
.workstyle-block dl dt::before, .workstyle-block dl dt:after {
  position: absolute;
  top: 0;
  left: -34px;
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (min-width: 792px) {
  .workstyle-block dl dt::before, .workstyle-block dl dt:after {
    top: 2px;
    left: 96px;
  }
}
.workstyle-block dl dt::before {
  background: #00A1E2;
}
.workstyle-block dl dt:after {
  top: 4px;
  left: -30px;
  display: block;
  content: "";
  clear: both;
  width: 12px;
  height: 12px;
  background: #fff;
}
@media (min-width: 792px) {
  .workstyle-block dl dt:after {
    top: 6px;
    left: 100px;
  }
}
.workstyle-block dl dt .workstyle-time {
  font-size: 1.6rem;
  padding-right: 15px;
  position: relative;
  width: 180px;
  text-align: right;
}
@media (min-width: 792px) {
  .workstyle-block dl dt .workstyle-time::after {
    position: absolute;
    top: 8px;
    left: 125px;
    display: inline-block;
    content: "";
    width: 37px;
    height: 1px;
    border-top: 2px dashed #00A1E2;
  }
}
@media (min-width: 792px) {
  .workstyle-block dl dd {
    margin: 0 0 0 190px;
  }
  .workstyle-block dl .tit_type_d {
    font-size: 1.8rem;
    margin-bottom: 0;
  }
}

/******************************************************************
  ■ 追従ガイドボタン
*****************************************************************/
.menu-tab-item .menu-tab-txt {
  font-size: 1.4rem;
  margin-bottom: 30px;
}

@media (max-width: 791px) {
  .menu-tab-item .menu-tab-tit {
    position: relative;
    text-align: center;
    margin-bottom: 43px;
    font-size: 1.8rem;
  }
  .menu-tab-item .menu-tab-tit::before {
    position: absolute;
    bottom: -15px;
    left: 50%;
    display: block;
    content: "";
    width: 30px;
    height: 2px;
    transform: translate3d(-50%, 0, 0);
    background: #00A1E2;
  }
  .menu-tab-tit-a, .menu-tab-tit-b {
    position: fixed;
    top: 0;
    right: 0;
    cursor: pointer;
    transition: all 0.3s ease-out;
    z-index: 1000;
    background: #00A1E2;
    opacity: 0.8;
    background: #a1d7ff;
    border-right: 1px solid #fff;
    height: 50px;
    width: 50px;
    color: #00A1E2;
    z-index: 998;
  }
  .menu-tab-tit-a {
    right: 50px;
  }
  .menu-tab-tit-b {
    right: 100px;
  }
  .menu-tab-tit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .menu-tab-a-item, .menu-tab-b-item {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 40px 15px;
    background: #ffffff;
    top: 0;
    visibility: hidden;
    transition: all 1s;
    opacity: 0;
  }
  .open-tab-a .menu-tab-a-item {
    transition: all 1s;
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  .open-tab-b .menu-tab-b-item {
    transition: all 1s;
    opacity: 1;
    z-index: 999;
    visibility: visible;
  }
  .open .menu-tab-tit-a, .open .menu-tab-tit-b, .open-tab-a .menu-tab-tit-a, .open-tab-a .menu-tab-tit-b, .open-tab-b .menu-tab-tit-a, .open-tab-b .menu-tab-tit-b {
    display: none;
    visibility: hidden;
    opacity: 0;
  }
}
@media (min-width: 792px) {
  .menu-tab {
    position: fixed;
    right: -480px;
    bottom: 0;
    z-index: 888;
    transition: all 0.3s ease-out;
  }
  .menu-tab .menu-tab-ttl {
    position: absolute;
    top: 0;
    left: -140px;
    font-size: 1.5rem;
  }
  .menu-tab .menu-tab-a-item, .menu-tab .menu-tab-b-item {
    width: 240px;
    padding: 20px;
    border: 5px solid #a1d7ff;
    background: #fff;
  }
  .menu-tab .submitBtn {
    padding: 0;
  }
  .menu-tab-item .menu-tab-tit {
    margin-bottom: 15px;
  }
  .menu-tab-tit-a, .menu-tab-tit-b {
    width: 140px;
    padding: 15px 20px;
    background: #a1d7ff;
    color: #00A1E2;
    cursor: pointer;
    cursor: hand;
    z-index: 998;
  }
  .menu-tab-tit-a:hover, .menu-tab-tit-b:hover {
    opacity: 0.8;
  }
  .menu-tab-tit-a {
    -moz-border-top-left-radius: 6px;
    border-top-left-radius: 6px;
  }
  .menu-tab-tit-b {
    border-top: 2px solid #6b98b9;
    -moz-border-bottom-left-radius: 6px;
    border-bottom-left-radius: 6px;
  }
  .open-tab-a .menu-tab, .open-tab-b .menu-tab {
    right: -240px;
  }
  .open-tab-a .menu-tab-tit-b {
    background: #81accc;
  }
  .open-tab-b .menu-tab-tit-a {
    background: #81accc;
  }
}
/******************************************************************
  ■ トップページ
*****************************************************************/
#index .index-ttl {
  text-align: center;
  line-height: 1;
  margin: 0 0 30px;
}
#index .index-ttl .ttl-jp {
  color: #555555;
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
  margin: 0 0 10px;
  letter-spacing: 2px;
}
@media (min-width: 792px) {
  #index .index-ttl .ttl-jp {
    font-size: 1.4rem;
  }
}
#index .index-ttl .index-ttl .ttl-en {
  font-size: 2.6rem;
}
#index .mainimg.bg-100vh {
  position: relative;
  min-height: 100vh;
  width: auto;
  height: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
#index .mainimg.bg-100vh #video-background {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  z-index: -10;
}
#index .mainimg.bg-100vh .mainimg-text {
  position: absolute;
  top: calc(50% - 60px);
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
}
#index .mainimg .vimeo {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}

/******************************************************************
  ■ 求人一覧
*****************************************************************/
@media (max-width: 791px) {
  .paging-count {
    background: #888;
    color: #fff;
    padding: 15px 0;
    font-size: 1.5rem;
  }
}

@media (min-width: 792px) {
  .list-block-ttl {
    font-size: 18px;
    padding: 15px 20px;
  }
}

.block a {
  position: relative;
}
.block a .list-detail-btn {
  position: absolute;
  right: 40px;
  bottom: 50px;
  background: #00A1E2;
  padding: 10px;
  text-align: center;
  color: #fff;
  box-shadow: 0 1px 0 1px #ccc;
}

/******************************************************************
  ■ お知らせ
*****************************************************************/
/* news
------------------------------*/
#news .ic li,
.index-box .ic li {
  width: 130px;
}

#news .showdate {
  order: 1;
}
#news .list-block-ic {
  order: 2;
  display: grid;
  place-content: center;
}
#news .line-link-tit {
  order: 3;
  width: 100%;
  font-size: 1.3rem;
  margin-top: 10px;
  font-weight: bold;
}
@media (min-width: 792px) {
  #news .line-link-tit {
    font-size: 1.8rem;
    margin-top: 0;
  }
}
@media (min-width: 792px) {
  #news .line-link-list a {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.index-box.line-link-list .showdate {
  order: 2;
}
.index-box.line-link-list .list-block-ic {
  order: 1;
  display: grid;
  place-content: center;
}
.index-box.line-link-list .line-link-tit {
  order: 3;
  width: 100%;
}
/* news-d
------------------------------*/
@media (min-width: 792px) {
  .news-d-box {
    margin-top: -30px;
    padding: 40px 40px 20px;
    border: 2px solid #eeeeee;
  }
}
.news-d-box section {
  margin-bottom: 60px;
}
.news-d-box .ic li {
  width: 130px;
}

.news-d-img {
  margin: 0 auto;
  max-width: 500px;
}

.news-d-slick-item:only-child {
  margin: 0 auto;
}

/******************************************************************
  ■ インタビュー
*****************************************************************/
#interview-box {
  line-height: 2;
}

/******************************************************************
  ■ 検索フォーム
*****************************************************************/
/* チェックボックス */
.checkbox {
  position: relative;
  display: block;
  padding: 0 0 0 2.5rem;
}
@media (max-width: 791px) {
  .checkbox {
    margin-bottom: 0;
    padding: 0 0 0 42px;
    background: #eee;
    z-index: 1;
  }
}
.checkbox::before, .checkbox::after {
  content: "";
  position: absolute;
  display: block;
  cursor: pointer;
}
.checkbox::before {
  top: 10px;
  left: 16px;
  z-index: 1;
  width: 0.8rem;
  height: 1.6rem;
  transform: rotate(40deg);
  border-bottom: 0.3rem solid #fff;
  border-right: 0.3rem solid #fff;
  opacity: 0;
}
@media (min-width: 792px) {
  .checkbox::before {
    top: 0;
    left: 0.6rem;
  }
}
.checkbox::after {
  top: 10px;
  left: 10px;
  width: 2rem;
  height: 2rem;
  border-radius: 6px;
  border: 2px solid #d2d2d2;
  background: #fff;
  opacity: 1;
}
@media (min-width: 792px) {
  .checkbox::after {
    top: 0;
    left: 0;
  }
}
@media (max-width: 791px) {
  .checkbox a {
    display: block;
    padding: 10px 8px;
    background: #fff;
    text-decoration: none;
  }
}
@media (min-width: 792px) {
  .checkbox a {
    text-decoration: underline;
  }
  .checkbox a:hover {
    text-decoration: underline;
  }
}

input[type=checkbox] {
  display: none;
}
input[type=checkbox]:checked + .checkbox::before {
  opacity: 1;
}
input[type=checkbox]:checked + .checkbox::after {
  background: #00A1E2;
  border: none;
}

@media (min-width: 792px) {
  .checkbox-wrap {
    padding: 20px 0 0;
  }
}
.checkbox-wrap li {
  vertical-align: middle;
  font-size: 1.4rem;
  letter-spacing: 1px;
}
@media (min-width: 792px) {
  .checkbox-wrap li {
    margin: 0 10px 10px;
    display: inline-block;
  }
}
@media (max-width: 791px) {
  .checkbox-wrap li {
    border-top: 1px solid #ccc;
  }
}
@media (min-width: 792px) {
  .pref-name + .checkbox-wrap {
    padding-top: 10px;
  }
}
@media (max-width: 791px) {
  .pref-name + .checkbox-wrap {
    padding: 0 0 10px 10px;
  }
}

.checkbox-pref .checkbox {
  border-bottom: 1px solid #ccc;
}
@media (min-width: 792px) {
  .checkbox-pref .checkbox {
    display: inline-block;
    margin-right: 20px;
    border-bottom: none;
    font-size: 1.4rem;
  }
}

/* プルダウン */
@media (min-width: 792px) {
  .pull-wrap {
    width: calc(33.333333% - 10px);
  }
}
@media (max-width: 791px) {
  .pull-wrap {
    margin: 20px 10px;
  }
}

.select-kcd,
.select-kkcd,
.select-scd,
.pram-free {
  width: 112%;
  margin: 0 0 0 -6.5%;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
  background: url(../img/common/selectbox-arrow.png) right center/12px auto no-repeat #fff;
  background-position: right 15px center;
}
@media (min-width: 792px) {
  .select-kcd,
  .select-kkcd,
  .select-scd,
  .pram-free {
    width: 100%;
    margin: 0 auto;
  }
}

/* キーワード */
.search-form-fw {
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  margin: 20px 10px;
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  box-shadow: 0 1px 0 0 #ccc;
  background: #fff;
}
@media (min-width: 792px) {
  .search-form-fw {
    margin: 20px 15px;
    background: #eee;
  }
}
.search-form-fw .kwText {
  width: 100%;
}
@media (max-width: 791px) {
  .search-form-fw .kwText {
    margin-left: -1.5em;
  }
}

.search-box {
  margin: 0;
}
@media (min-width: 792px) {
  .search-box {
    margin: 0 15px 30px !important;
    display: block !important;
    height: 100% !important;
  }
}

/* 検索タイトル */
.search-tit {
  position: relative;
}
@media (min-width: 792px) {
  .search-tit {
    padding: 0 0 0 25px;
    font-size: 1.8rem;
    margin-bottom: 20px;
    overflow: hidden;
    border-bottom: none;
    pointer-events: none;
  }
}
@media (max-width: 791px) {
  .search-tit {
    padding: 15px 10px;
    background: #00A1E2;
    font-size: 13px;
    border-bottom: 1px solid #eee;
    font-weight: bold;
    color: #fff;
  }
}
@media (min-width: 792px) {
  .search-tit::before {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 4px;
    content: "";
    border-radius: 3px;
    background-color: #555555;
  }
}
.search-tit::after {
  position: absolute;
  top: 0;
  bottom: 0;
  content: "";
  margin: auto;
}
@media (min-width: 792px) {
  .search-tit::after {
    left: auto;
    min-width: 1000px;
    height: 1px;
    background: #ccc;
  }
}

.search-ttl-add {
  font-size: 1.4rem;
  margin: 0 0 0 10px;
}

.search-form {
  background: #fff;
  padding: 0 0 30px;
}
@media (min-width: 792px) {
  .search-form {
    border: 2px solid #cccccc;
    padding: 30px;
  }
}

/* 勤務地 */
@media (max-width: 791px) {
  .search-form-kinmuchi {
    margin: 20px 0;
  }
  .search-form-kinmuchi.check-style {
    margin: 0;
  }
  .search-form-kinmuchi.pull-check-style .checkbox-wrap {
    margin-bottom: -20px;
  }
  .search-form-kinmuchi li {
    padding: 0;
  }
  .search-form-kinmuchi li:not(:first-child) .wrap-pref, .search-form-kinmuchi li:not(:first-child) .wrap-city {
    margin-top: 10px;
  }
  .search-form-kinmuchi .select-kcd {
    margin: 0 0 0 -3.5%;
    width: 106%;
  }
}
@media (min-width: 792px) {
  .search-form-kinmuchi {
    margin: 0 0 30px;
  }
  .search-form-kinmuchi.tab-style.active {
    border-right: none;
    border-left: none;
    border-bottom: 1px solid #00A1E2;
  }
  .search-form-kinmuchi li:only-child .wrap-city {
    padding-left: 0;
  }
  .search-form-kinmuchi.check-style > li:first-child {
    padding-left: 0;
    padding-right: 0;
  }
}

/* エリアのタブスタイル */
.select-area-tab {
  display: none;
}
@media (min-width: 792px) {
  .select-area-tab {
    display: flex;
    border-left: 1px solid #00A1E2;
  }
  .select-area-tab li {
    letter-spacing: 1px;
    border: 1px solid;
    border-left: 0;
    border-color: #00A1E2;
    text-align: center;
    padding: 8px 4px;
    cursor: pointer;
  }
}
@media (min-width: 792px) and (min-width: 792px) {
  .select-area-tab li {
    font-size: 1.3rem;
  }
}
@media (min-width: 792px) and (min-width: 1200px) {
  .select-area-tab li {
    font-size: 1.4rem;
  }
}
@media (min-width: 792px) {
  .select-area-tab li:hover, .select-area-tab li.current {
    background: #00A1E2;
    color: #fff;
  }
}

/* プルダウンの組み合わせスタイル */
@media (min-width: 792px) {
  .pull-style > li:nth-child(1) {
    padding-right: 10px;
    padding-left: 0;
  }
  .pull-style > li:nth-child(2) {
    padding-right: 10px;
    padding-left: 10px;
  }
  .pull-style > li:nth-child(3) {
    padding-left: 0;
    padding-right: 0;
  }
}

/* タブの組み合わせスタイル */
@media (min-width: 792px) {
  .search-form-kinmuchi.active .tab-style {
    border-left: 1px solid #00A1E2;
    border-right: 1px solid #00A1E2;
  }
}

/* 都道府県名スタイル */
.pref-name {
  margin: auto 8px 10px;
  padding: 8px;
  line-height: 1;
  background-color: #eee;
}

.tab-style .wrap-pref-pull {
  padding-top: 10px;
}

/* 市区町村 */
@media (min-width: 792px) {
  .wrap-city {
    padding-left: 10px;
  }
}

@media (min-width: 792px) {
  .wrap-city-checkbox {
    padding-top: 10px;
  }
}

.tab-style .wrap-city-pull {
  padding-top: 10px;
}

/* 検索フォームボタン */
.search-form-btn {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.search-form-btn input[type=button] {
  font-size: 1.5rem;
  width: 100%;
  margin: 20px 0;
  padding: 12px 0;
  text-align: center;
  letter-spacing: 4px;
  color: #fff;
  border-radius: 4px;
  background: #00A1E2;
  box-shadow: 0 1px 0 1px #ccc;
}
.search-form-btn input[type=button].disabled {
  background: #ccc;
}

.sticky-bottom-wrap.btn-fixed {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 97;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 1s ease;
}
.sticky-bottom-wrap.btn-fixed.is-hdn {
  bottom: -1000px;
}
@media (min-width: 792px) {
  .sticky-bottom-wrap .search-form-btn {
    margin: 20px auto;
  }
}
@media (max-width: 791px) {
  .sticky-bottom-wrap .search-form-btn {
    margin: 10px auto;
  }
}

/* アコーディオンのプラスマーク */
@media (max-width: 791px) {
  .search-icon-plus {
    position: relative;
  }
  .search-icon-plus::before, .search-icon-plus::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    width: 16px;
    height: 1px;
    background: #ffffff;
    transition: all 0.3s ease-out 0s;
  }
  .search-icon-plus::before {
    transform: rotate(90deg);
  }
  .search-icon-plus.open:before {
    transition: all 0.3s ease-out 0s;
    transform: rotate(0deg);
  }
}
.kinmuchi-link table {
  margin-left: 0;
}
@media (max-width: 791px) {
  .kinmuchi-link table {
    width: 100%;
  }
  .kinmuchi-link table tr {
    padding: 0 10px;
  }
}
@media (min-width: 792px) {
  .kinmuchi-link table {
    margin-left: auto;
  }
}
.kinmuchi-link th, .kinmuchi-link td {
  padding: 5px;
}
@media (max-width: 791px) {
  .kinmuchi-link th, .kinmuchi-link td {
    display: block;
  }
}
.kinmuchi-link th {
  border-bottom: solid 1px #888;
  font-size: 1.2rem;
}
.kinmuchi-link td {
  border-bottom: solid 1px #eee;
  font-size: 1rem;
}
@media (max-width: 791px) {
  .kinmuchi-link td {
    line-height: 2;
  }
}
.kinmuchi-link a {
  padding: 0 5px;
  text-decoration: underline;
  display: inline-block;
  vertical-align: middle;
}
.kinmuchi-link a:hover {
  display: inline-block;
  text-decoration: underline;
}

@media (max-width: 791px) {
  .w-sp-50 {
    width: 50% !important;
  }
  .w-sp-100 {
    width: 100% !important;
  }
}
@media (min-width: 792px) {
  .w-md-50 {
    width: 50% !important;
  }
  .w-md-100 {
    width: 100% !important;
  }
}
/******************************************************************
  ■header
*****************************************************************/
header {
  z-index: 1000;
  width: 100%;
  height: 50px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 3px 6px -4px rgba(0, 0, 0, 0.3); /*横方向　下方向　ぼかし　広がり　色 */
}
@media (min-width: 792px) {
  header {
    height: 70px;
  }
}

.header {
  display: flex;
  padding-left: 12px;
}
@media (min-width: 792px) {
  .header {
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.header-logo {
  margin: 0;
  display: flex;
  align-items: center;
  height: 50px;
  font-size: 0;
}
@media (min-width: 792px) {
  .header-logo {
    height: 70px;
  }
}
.header-logo .logo {
  width: 148px;
  display: grid;
  place-items: center;
}
@media (min-width: 792px) {
  .header-logo .logo {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .header-logo .logo {
    width: 260px;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo {
    width: 280px;
  }
}
.header-logo .logo-text {
  margin-top: 0;
  margin-left: 12px;
  color: #00A1E2;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
@media (min-width: 792px) {
  .header-logo .logo-text {
    margin-left: 16px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .header-logo .logo-text {
    font-size: 1.4rem;
  }
}
@media (min-width: 1200px) {
  .header-logo .logo-text {
    font-size: 1.6rem;
  }
}

/* PC用 menu
----------------------------------------------- */
.main-menu-wrap {
  display: none;
}
@media (min-width: 792px) {
  .main-menu-wrap {
    display: block;
  }
  .main-menu-wrap .main-menu {
    display: flex;
    height: 70px;
  }
  .main-menu-wrap .main-menu-cts {
    padding-left: 10px;
  }
}
@media (min-width: 792px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 20px;
  }
}
@media (min-width: 792px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 30px;
  }
}
@media (min-width: 792px) and (min-width: 1400px) {
  .main-menu-wrap .main-menu-cts {
    padding-left: 30px;
  }
}
@media (min-width: 792px) {
  .main-menu-wrap .main-menu-cts.main-menu-btn {
    flex: 1 0 auto;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a {
    position: relative;
    width: 150px;
    padding: 10px 0;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span {
    display: grid;
    place-items: center;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    text-align: center;
    line-height: 1.25;
  }
  .main-menu-wrap .main-menu-cts.main-menu-btn a span::after {
    display: none;
  }
  .main-menu-wrap .main-menu-cts a {
    height: 100%;
  }
  .main-menu-wrap .main-menu-cts a span {
    position: relative;
    display: flex;
    height: 100%;
    align-items: center;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.25;
    letter-spacing: 0.075em;
  }
}
@media (min-width: 792px) and (min-width: 792px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.4rem;
  }
}
@media (min-width: 792px) and (min-width: 992px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.6rem;
  }
}
@media (min-width: 792px) and (min-width: 1200px) {
  .main-menu-wrap .main-menu-cts a span {
    font-size: 1.8rem;
  }
}
@media (min-width: 792px) {
  .main-menu-wrap .main-menu-cts a span::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    content: "";
    transition: all 0.3s ease;
    transform: scaleX(0);
    background-color: #00A1E2;
  }
  .main-menu-wrap .main-menu-cts.current-hover a span::after, .main-menu-wrap .main-menu-cts.current a span::after {
    transform: scaleX(1);
  }
}

/* SP用 menu
----------------------------------------------- */
.menu-btn {
  position: fixed;
  width: 50px;
  height: 50px;
  top: 0;
  right: 0;
  cursor: pointer;
  transition: all 0.3s ease-out;
  z-index: 1000;
  background: #00A1E2;
  opacity: 0.8;
}
.menu-btn span {
  position: absolute;
  right: 10px;
  margin: 0 auto;
  width: 30px;
  height: 2px;
  display: block;
  background-color: #fff;
}
.menu-btn span:nth-of-type(1) {
  top: 15px;
}
.menu-btn span:nth-of-type(2) {
  top: 24px;
}
.menu-btn span:nth-of-type(3) {
  top: 33px;
  bottom: -16px;
}

.open .menu-btn, .open-tab-a .menu-btn, .open-tab-b .menu-btn {
  background: transparent;
}
.open .menu-btn span, .open-tab-a .menu-btn span, .open-tab-b .menu-btn span {
  background-color: #00A1E2;
  transition: all 0.4s;
}
.open .menu-btn span:nth-of-type(1), .open-tab-a .menu-btn span:nth-of-type(1), .open-tab-b .menu-btn span:nth-of-type(1) {
  top: 17px;
  transform: translateY(5px) rotate(-45deg);
}
.open .menu-btn span:nth-of-type(2), .open-tab-a .menu-btn span:nth-of-type(2), .open-tab-b .menu-btn span:nth-of-type(2) {
  opacity: 0;
}
.open .menu-btn span:nth-of-type(3), .open-tab-a .menu-btn span:nth-of-type(3), .open-tab-b .menu-btn span:nth-of-type(3) {
  bottom: -21px;
  transform: translateY(-11px) rotate(45deg);
}

.menu-box {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 40px 15px;
  background: #ffffff;
  top: 0;
  visibility: hidden;
  transition: all 1s;
  opacity: 0;
}
.menu-box .menu-link li {
  margin: 10px 0;
}
.menu-box .menu-link li a {
  border: 1px solid #cccccc;
  line-height: 1;
  padding: 15px;
  display: block;
  margin-bottom: -1px;
  position: relative;
}
.menu-box .menu-link li a::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 5px;
  height: 5px;
  margin: auto;
  content: "";
  transition: all 0.3s ease-out 0s;
  transform: rotate(-45deg);
  border-right: 1px solid #00A1E2;
  border-bottom: 1px solid #00A1E2;
}
.menu-box .menu-ttl-2 {
  background: #00A1E2;
  color: #fff;
  padding: 8px;
}
.menu-box .menu-contact {
  margin-top: 20px;
}
.menu-box .menu-contact .menu-contact-inner {
  padding: 20px 10px;
  border: 1px solid #eee;
}
.menu-box .menu-contact .menu-contact-tel {
  font-size: 1.5rem;
}
.menu-box .menu-contact .menu-contact-tel a {
  display: inline-block;
}
.menu-box .menu-contact .menu-contact-tel span {
  text-decoration: underline;
}
.menu-box .menu-contact .menu-contact-btn {
  margin: 20px auto 0;
}

.close-txt {
  border: 1px solid #333333;
  padding: 10px;
  display: block;
  width: 100px;
  margin: 20px auto;
  text-align: center;
}

.open .menu-box {
  transition: all 1s;
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/* 印刷時にヘッダーが複数回出るのを避ける
----------------------------------------------- */
@media print {
  header {
    position: absolute;
  }
}
/******************************************************************
  ■footer
*****************************************************************/
/* PAGETOP
------------------------------*/
#page_top {
  border-top: 1px solid #CCCCCC;
  background: #fff;
  text-align: center;
}
#page_top a {
  position: relative;
  padding: 24px 0 8px;
  font-weight: bold;
  color: #FF5D5D;
  white-space: nowrap;
  display: block;
  width: 100%;
}
@media (min-width: 792px) {
  #page_top a {
    display: inline-block;
    width: 7em;
    padding-bottom: 4px;
  }
}
#page_top a:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: -10px auto 0;
  width: 12px;
  height: 12px;
  transform: rotate(-45deg);
  border-top: 2px solid #FF5D5D;
  border-right: 2px solid #FF5D5D;
  display: block;
}

#list #page_top {
  border-top: 1px solid #CCCCCC;
}

/* footer
------------------------------*/
footer {
  background: #F8F8F8;
}
@media (max-width: 791px) {
  footer .container {
    max-width: none;
    padding: 0;
  }
}
@media (min-width: 792px) {
  footer .container {
    padding: 50px 10px;
    font-size: 1.3rem;
  }
}
footer .contents-inn {
  padding: 0;
}
@media (max-width: 791px) {
  footer .contents-inn {
    max-width: none;
  }
}
footer a {
  position: relative;
  display: block;
  padding: 10px;
}
@media (max-width: 791px) {
  footer a {
    font-size: 1.2rem;
    border-top: 1px solid #d2d2d2;
  }
}
@media (min-width: 792px) {
  footer a {
    padding-left: 20px;
    font-size: 1.3rem;
  }
}
footer a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  margin-top: -3px;
  transform: rotate(45deg);
  border-top: 1px solid #00A1E2;
  border-right: 1px solid #00A1E2;
}
@media (min-width: 792px) {
  footer a::before {
    width: 5px;
    height: 5px;
    left: 0;
  }
}
@media (min-width: 792px) {
  footer .home {
    font-weight: bold;
    font-size: 1.4rem;
    margin-bottom: 25px;
  }
}
@media (min-width: 792px) {
  footer .home a {
    display: inline;
    padding: 0 20px 0 0;
  }
  footer .home a:hover {
    display: inline;
  }
  footer .home a:before {
    margin-top: -5px;
    border-top: 1px solid #333;
    border-right: 1px solid #333;
    width: 7px;
    height: 7px;
    left: auto;
    right: 0;
  }
}
@media (min-width: 792px) {
  footer nav {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 792px) {
  footer .footer-contents {
    margin-bottom: 20px;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media (min-width: 792px) {
  footer .footer-contents a[target=_blank] {
    margin-right: 10px;
  }
}
@media (max-width: 791px) {
  footer .footer-contents a[target=_blank]::before {
    content: "";
    border: none;
    background: url(../img/common/icon-blank_sp.png) center/cover no-repeat;
    width: 13px;
    height: 11px;
    transform: rotate(0);
  }
}
@media (min-width: 792px) {
  footer .footer-contents a[target=_blank]::after {
    content: "";
    display: inline-block;
    background: url(../img/common/icon-blank_pc.png) center/10px no-repeat;
    width: 20px;
    height: 10px;
    transform: rotate(0);
  }
}
footer .footer-inner {
  background: #00A1E2;
  font-family: Verdana;
  /* Android端末で©が黒く表示されることへの対応 */
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
  padding: 15px;
}
footer .footer-inner .ga-pdf {
  margin-top: 5px;
}
footer .footer-inner .ga-pdf a {
  color: #ffffff;
  font-size: 1.2rem;
  padding: 0;
  border: 0;
}
footer .footer-inner .ga-pdf a::before {
  border: 0;
}

/******************************************************************
  ■ 案件別専用スタイル
*****************************************************************/
/************** 共通 **************/
.aspect-ratio-kv {
  --aspect-ratio-sp: 250 / 169;
  --aspect-ratio-pc: 80 / 21;
}
.aspect-ratio-h1kv {
  --aspect-ratio-sp: 750 / 507;
  --aspect-ratio-pc: 1920 / 504;
}
@media (min-width: 768px) and (max-width: 791px) {
  .aspect-ratio-h1kv img {
    aspect-ratio: var(--aspect-ratio-pc) !important;
  }
}
.aspect-ratio-1x1 {
  --aspect-ratio-sp: 1 / 1;
  --aspect-ratio-pc: 1 / 1;
}
.aspect-ratio-2x1 {
  --aspect-ratio-sp: 2 / 1;
  --aspect-ratio-pc: 2 / 1;
}
.aspect-ratio-4x3 {
  --aspect-ratio-sp: 4 / 3;
  --aspect-ratio-pc: 4 / 3;
}
.aspect-ratio-23x17 {
  --aspect-ratio-sp: 23 / 17;
  --aspect-ratio-pc: 23 / 17;
}
.aspect-ratio-84x73 {
  --aspect-ratio-sp: 84 / 73;
  --aspect-ratio-pc: 84 / 73;
}
.aspect-ratio-16x9 {
  --aspect-ratio-sp: 16 / 9;
  --aspect-ratio-pc: 16 / 9;
}
.aspect-ratio-20x11 {
  --aspect-ratio-sp: 20 / 11;
  --aspect-ratio-pc: 20 / 11;
}
.aspect-ratio img {
  aspect-ratio: var(--aspect-ratio-sp);
}
@media (min-width: 792px) {
  .aspect-ratio img {
    aspect-ratio: var(--aspect-ratio-pc);
  }
}

@media (max-width: 791px) {
  .mt-sm-24 {
    margin-top: 24px;
  }
}
@media (min-width: 792px) {
  .mt-md-40 {
    margin-top: 40px;
  }
}

@media (max-width: 791px) {
  .mb-sm-8 {
    margin-bottom: 8px;
  }
}
@media (max-width: 791px) {
  .mb-sm-24 {
    margin-bottom: 24px;
  }
}
@media (max-width: 791px) {
  .mb-sm-32 {
    margin-bottom: 32px;
  }
}
@media (min-width: 792px) {
  .mb-md-8 {
    margin-bottom: 8px;
  }
}
@media (min-width: 792px) {
  .mb-md-48 {
    margin-bottom: 48px;
  }
}
@media (min-width: 792px) {
  .mb-md-64 {
    margin-bottom: 64px;
  }
}
@media (min-width: 992px) {
  .mb-lg-8 {
    margin-bottom: 8px;
  }
}
@media (min-width: 1200px) {
  .mb-xl-8 {
    margin-bottom: 8px;
  }
}

.font-size-10 {
  font-size: 1rem;
}
@media (max-width: 791px) {
  .font-size-sm-10 {
    font-size: 1rem;
  }
}
@media (min-width: 792px) {
  .font-size-md-10 {
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .font-size-lg-10 {
    font-size: 1rem;
  }
}
@media (min-width: 1200px) {
  .font-size-xl-10 {
    font-size: 1rem;
  }
}

.image-box .image-box-area {
  width: 100%;
  height: 330px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0);
}
@media (max-width: 791px) {
  .image-box .image-box-area {
    height: 200px;
    background-attachment: scroll;
  }
}
.image-box .image-box-area.n-01 {
  background-image: url(../img/common/bg-ph-001.jpg);
}

/* スクロールアニメーション
--------------*/
.fadein01 {
  opacity: 0;
  transition: all 1s 0.5s ease;
  transform: translate(0, 50px);
}

.fadein01.active {
  opacity: 1;
  transform: translate(0, 0);
}

/************** TOP **************/
#index .tit_type_2nd {
  position: relative;
  margin-bottom: 105px;
}
@media (max-width: 791px) {
  #index .tit_type_2nd {
    margin-bottom: 55px;
  }
}
#index .tit_type_2nd::before {
  content: "";
  position: absolute;
  bottom: -27px;
  width: 150px;
  height: 5px;
  background: linear-gradient(90deg, #75C5FF 0%, #75C5FF 33.3%, #00A1E2 33.3%, #00A1E2 66.6%, #FF5D5D 66.6%, #FF5D5D 100%);
  background-repeat: no-repeat;
}
@media (max-width: 791px) {
  #index .tit_type_2nd::before {
    bottom: -12px;
  }
}
#index .tit_type_2nd .ttl-en {
  display: block;
  margin-bottom: 0;
}
#index .tit_type_2nd .ttl-en img {
  width: auto;
}
#index .tit_type_2nd .ttl-jp {
  position: absolute;
  bottom: 0;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
@media (max-width: 791px) {
  #index .tit_type_2nd .ttl-jp {
    font-size: 2rem;
  }
}

/* メッセージ
------------------------------*/
#index .index-message {
  position: relative;
  padding: 130px 0 48px;
  background: url(../img/top/bg-message.jpg) no-repeat;
  background-position: bottom;
  background-size: cover;
}
@media (max-width: 791px) {
  #index .index-message {
    padding: 60px 0 24px;
  }
}
#index .index-message:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 120px 50vw 0 0;
  border-color: #00A1E2 transparent transparent transparent;
  position: absolute;
  left: 0;
  top: 0px;
}
@media (max-width: 791px) {
  #index .index-message:before {
    border-width: 36px 50vw 0 0;
  }
}
@media (min-width: 792px) {
  #index .index-message:before {
    border-width: 55px 50vw 0 0;
  }
}
@media (min-width: 992px) {
  #index .index-message:before {
    border-width: 120px 50vw 0 0;
  }
}
#index .index-message .ttl {
  margin-bottom: 44px;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-message .ttl {
    margin-bottom: 20px;
  }
}
#index .index-message .ttl .ttl-en {
  display: block;
}
#index .index-message .ttl .ttl-en img {
  width: 574px;
  height: auto;
  aspect-ratio: 287/50;
}
@media (max-width: 791px) {
  #index .index-message .ttl .ttl-en img {
    width: 322px;
  }
}
#index .index-message .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-message .contents-inn {
    padding: 0 0;
  }
}
#index .index-message .contents-inn .text {
  margin-bottom: 60px;
  font-size: 2rem;
  line-height: 2;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .text {
    margin-bottom: 28px;
    font-size: 1.6rem;
  }
}
#index .index-message .contents-inn .button {
  margin-bottom: 48px;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .button {
    margin-bottom: 24px;
  }
}
#index .index-message .contents-inn .button a {
  display: block;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  padding: 24px 24px;
  border: 1px solid #FF5D5D;
  background-color: #fff;
  color: #FF5D5D;
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.075em;
  font-weight: bold;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .button a {
    max-width: 200px;
    padding: 16px 12px;
    font-size: 1.5rem;
    line-height: 1.25;
  }
}
#index .index-message .contents-inn .button a .outer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#index .index-message .contents-inn .button a .label {
  flex-grow: 1;
  padding-left: 25px;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .button a .label {
    padding-left: 19px;
  }
}
#index .index-message .contents-inn .button a .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50px;
  background-color: #FF5D5D;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .button a .inner {
    width: 18px;
    height: 18px;
  }
}
#index .index-message .contents-inn .button a .chevron-round-bottom {
  display: inline-block;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.5em;
  height: 0.5em;
  transform: translateX(0) translateY(-20%) rotate(135deg);
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .button a .chevron-round-bottom {
    transform: translateX(0) translateY(-30%) rotate(135deg);
  }
}
#index .index-message .contents-inn .button a .chevron-round-bottom::before, #index .index-message .contents-inn .button a .chevron-round-bottom::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}
#index .index-message .contents-inn .button a .chevron-round-bottom::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1em;
}
#index .index-message .contents-inn .button a .chevron-round-bottom::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1em;
}
@keyframes scrollPrompt {
  0% {
    top: 0;
    height: 0;
  }
  30% {
    top: 0;
    height: 100%;
  }
  70% {
    top: 0;
    height: 100%;
  }
  100% {
    top: 100%;
    height: 0;
  }
}
@keyframes animOpacityTranslateY {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
#index .index-message .contents-inn .border {
  position: relative;
  display: block;
  width: 1px;
  height: 173px;
  margin: 15px auto 0;
  border: unset !important;
  animation: animOpacityTranslateY 1s cubic-bezier(0.215, 0.61, 0.355, 1) 3.15s 1 forwards;
}
@media (max-width: 791px) {
  #index .index-message .contents-inn .border {
    height: 84px;
  }
}
#index .index-message .contents-inn .border span {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 0;
  animation: scrollPrompt 1.5s cubic-bezier(0.645, 0.045, 0.355, 1) 0s infinite;
  background: #333;
}

/* お仕事を探す
------------------------------*/
#index .index-findjob {
  padding: 0 0 120px;
}
@media (max-width: 791px) {
  #index .index-findjob {
    padding: 0 0 80px;
  }
}
#index .index-findjob .tit_type_2nd {
  position: relative;
  padding-top: 36px;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-findjob .tit_type_2nd {
    padding-top: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-findjob .tit_type_2nd {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  #index .index-findjob .tit_type_2nd {
    padding-top: 66px;
  }
}
@media (min-width: 1400px) {
  #index .index-findjob .tit_type_2nd {
    padding-top: 72px;
  }
}
@media (min-width: 1600px) {
  #index .index-findjob .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-findjob .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
#index .index-findjob .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#index .index-findjob .tit_type_2nd .ttl-en img {
  height: auto;
  aspect-ratio: 391/114;
}
@media (max-width: 791px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 196px;
    height: 57px;
  }
}
@media (min-width: 792px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 256px;
  }
}
@media (min-width: 992px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 293px;
  }
}
@media (min-width: 1200px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 325px;
  }
}
@media (min-width: 1400px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 356px;
  }
}
@media (min-width: 1600px) {
  #index .index-findjob .tit_type_2nd .ttl-en img {
    width: 391px;
  }
}
#index .index-findjob .tit_type_2nd .ttl-jp {
  position: unset;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-findjob .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-findjob .contents-inn {
    padding: 0 0;
  }
}
#index .index-findjob .area-box {
  display: grid;
  place-content: center;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 20px;
}
@media (max-width: 791px) {
  #index .index-findjob .area-box {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 15px;
  }
}
@media (min-width: 992px) {
  #index .index-findjob .area-box {
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  }
}
@media (min-width: 1200px) {
  #index .index-findjob .area-box {
    grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  }
}
#index .index-findjob .wrapper {
  padding: 35px 24px 32px;
  background-image: linear-gradient(135deg, #EFFAFF, #D6EEF9);
  border-radius: 10px;
}
@media (max-width: 791px) {
  #index .index-findjob .wrapper {
    padding: 24px 15px;
  }
}
#index .index-findjob .wrapper.box {
  margin-bottom: 24px;
}
@media (max-width: 791px) {
  #index .index-findjob .wrapper.box {
    margin-bottom: 16px;
  }
}
#index .index-findjob .subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
@media (max-width: 791px) {
  #index .index-findjob .subtitle {
    gap: 8px;
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
}
#index .index-findjob .subtitle span {
  font-size: 2.4rem;
  line-height: 1.25;
}
@media (max-width: 791px) {
  #index .index-findjob .subtitle span {
    font-size: 2rem;
  }
}
#index .index-findjob .subtitle::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  border-radius: 50vw;
  background-color: #FF5D5D;
}
#index .index-findjob .area-box .area-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  border-radius: 4px;
  border: 2px solid #fff;
  background-color: #fff;
  box-shadow: 3px 3px 7px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-out;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-findjob .area-box .area-item {
    height: 62px;
    padding: 0 8px;
    font-size: 1.5rem;
  }
}
@media (min-width: 792px) {
  #index .index-findjob .area-box .area-item {
    font-size: 1.8rem;
  }
}
#index .index-findjob .area-box .area-item:hover {
  border: 2px solid #00A1E2;
  box-shadow: unset;
  opacity: 1;
}
#index .index-findjob .area-box .pref-item .area-item {
  height: 67px;
}
@media (max-width: 791px) {
  #index .index-findjob .area-box .pref-item .area-item {
    height: 62px;
  }
}
#index .index-findjob .modal-item {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}
#index .index-findjob .modal-item .modal-item-inner {
  position: relative;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100svh;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-findjob .modal-item .modal-item-inner {
    padding-block: 80px 50px;
  }
}
#index .index-findjob .modal-item .modal-unit {
  padding: 40px 24px;
  background-image: linear-gradient(135deg, rgb(229, 251, 252), rgb(209, 233, 255));
  border-radius: 10px;
}
@media (max-width: 791px) {
  #index .index-findjob .modal-item .modal-unit {
    padding: 28px 15px;
  }
}
#index .index-findjob .modal-item .modal-tit {
  margin-bottom: 24px;
  color: #333;
  font-size: 2.8rem;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-align: center;
  font-weight: bold;
}
@media (max-width: 791px) {
  #index .index-findjob .modal-item .modal-tit {
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
#index .index-findjob .modal-item .modal-close {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  background: url(../img/top/icon-close.png) no-repeat;
  background-size: 100%;
  width: 45px;
  aspect-ratio: 1/1;
  font-size: 0;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-findjob .modal-item .modal-close {
    top: 56px;
    right: 20px;
    width: 20px;
  }
}
#index .index-findjob .area-box.pref-box {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 791px) {
  #index .index-findjob .area-box.pref-box {
    gap: 12px 15px;
  }
}
@media (min-width: 792px) {
  #index .index-findjob .area-box.pref-box {
    justify-content: left;
  }
}
@media (max-width: 791px) {
  #index .index-findjob .area-box.pref-box li {
    width: calc(50% - 7.5px);
  }
  #index .index-findjob .area-box.pref-box li a {
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: 0.075em;
  }
}
@media (min-width: 792px) {
  #index .index-findjob .area-box.pref-box li {
    width: calc(25% - 15px);
  }
  #index .index-findjob .area-box.pref-box li a {
    font-size: 1.8rem;
    line-height: 1.25;
    letter-spacing: 0.075em;
  }
}
#index .index-findjob .button {
  margin: 80px auto 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-findjob .button {
    margin: 40px auto 0;
  }
}
#index .index-findjob .button .button-inner {
  position: relative;
  display: inline-block;
}
#index .index-findjob .button .button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1FCCF7;
  transform: translateY(-50%);
}
#index .index-findjob .button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #219EFA, #1FCCF7);
  box-shadow: 20px 40px 30px 0px rgba(43, 136, 181, 0.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.075em;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-findjob .button a {
    font-size: 1.6rem;
  }
}
#index .index-findjob .button a .button-text {
  position: relative;
  width: 420px;
  padding: 26px 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-findjob .button a .button-text {
    width: 285px;
    padding: 18px 0;
  }
}
#index .index-findjob .button a .button-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-findjob .button a .button-text::before {
    width: 30px;
  }
}
#index .index-findjob .button a .button-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-findjob .button a .button-text::after {
    right: 30px;
  }
}
#index .index-findjob .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #1FCCF7, #219EFA);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  clip-path: inset(0 100% 0 0);
}
#index .index-findjob .button a:hover::before {
  clip-path: inset(0);
}
#index .index-findjob .button a:hover {
  opacity: 1;
}

/* 採用動画
------------------------------*/
#index .index-specialmovie {
  padding: 0 0 225px;
  background: url(../img/top/bg-pic-pc-001.png) no-repeat;
}
@media (min-width: 792px) {
  #index .index-specialmovie {
    background-position: center 5em;
    background-size: 100% 90%;
  }
}
@media (min-width: 1400px) {
  #index .index-specialmovie {
    background-position: center 9em;
    background-size: contain;
  }
}
@media (min-width: 1921px) {
  #index .index-specialmovie {
    background-position: center;
    background-size: 100% 90%;
  }
}
@media (max-width: 791px) {
  #index .index-specialmovie {
    padding: 0 0 82px;
    background: url(../img/top/bg-pic-sp-001.png) no-repeat;
    background-position: center 6em;
    background-size: 100% 90%;
  }
}
#index .index-specialmovie .tit_type_2nd {
  position: relative;
  padding-top: 36px;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-specialmovie .tit_type_2nd {
    padding-top: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-specialmovie .tit_type_2nd {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  #index .index-specialmovie .tit_type_2nd {
    padding-top: 66px;
  }
}
@media (min-width: 1400px) {
  #index .index-specialmovie .tit_type_2nd {
    padding-top: 72px;
  }
}
@media (min-width: 1600px) {
  #index .index-specialmovie .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-specialmovie .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
#index .index-specialmovie .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#index .index-specialmovie .tit_type_2nd .ttl-en img {
  height: auto;
  aspect-ratio: 685/114;
  z-index: -1;
}
@media (max-width: 791px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 343px;
    height: 57px;
  }
}
@media (min-width: 792px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 463px;
  }
}
@media (min-width: 992px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 528px;
  }
}
@media (min-width: 1200px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 588px;
  }
}
@media (min-width: 1400px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 645px;
  }
}
@media (min-width: 1600px) {
  #index .index-specialmovie .tit_type_2nd .ttl-en img {
    width: 685px;
  }
}
#index .index-specialmovie .tit_type_2nd .ttl-jp {
  position: unset;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-specialmovie .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-specialmovie .contents-inn {
    padding: 0 0;
  }
}
#index .index-specialmovie .wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 70px;
}
@media (max-width: 791px) {
  #index .index-specialmovie .wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}
#index .index-specialmovie .group {
  width: calc(50% - 35px);
}
@media (max-width: 791px) {
  #index .index-specialmovie .group {
    width: 100%;
  }
}
#index .index-specialmovie .movie {
  margin-bottom: 30px;
}
@media (max-width: 791px) {
  #index .index-specialmovie .movie {
    margin-bottom: 20px;
  }
}
#index .index-specialmovie .title {
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 8px;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-shadow: 1px 1px 0px rgb(255, 255, 255);
}
@media (max-width: 791px) {
  #index .index-specialmovie .title {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
}
#index .index-specialmovie .title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #AAAAAA;
  z-index: 0;
}
#index .index-specialmovie .title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #00A1E2;
  z-index: 1;
}
@media (max-width: 791px) {
  #index .index-specialmovie .title::after {
    width: 80px;
  }
}
#index .index-specialmovie .text {
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
  text-shadow: 1px 1px 0px rgb(255, 255, 255);
}
@media (max-width: 791px) {
  #index .index-specialmovie .text {
    font-size: 1.6rem;
  }
}

/* 正社員採用について
------------------------------*/
#index .index-midcareer {
  position: relative;
  padding: 0 0 150px;
}
@media (max-width: 791px) {
  #index .index-midcareer {
    padding: 0 0 130px;
  }
}
#index .index-midcareer::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 375px;
  background: url(../img/top/bg-pic-003.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 792px) {
  #index .index-midcareer::before {
    width: 375px;
    height: 375px;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer::before {
    bottom: 300px;
    left: unset;
    right: -300px;
    transform: none;
    width: 564px;
    height: 564px;
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer::before {
    bottom: 60px;
    right: -340px;
    width: 628px;
    height: 628px;
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer::before {
    bottom: -40px;
    right: -340px;
    width: 688px;
    height: 688px;
  }
}
@media (min-width: 1600px) {
  #index .index-midcareer::before {
    bottom: -180px;
    right: -400px;
    width: 750px;
    height: 750px;
  }
}
#index .index-midcareer .tit_type_2nd {
  position: relative;
  padding-top: 84px;
  text-align: center;
}
@media (min-width: 992px) {
  #index .index-midcareer .tit_type_2nd {
    margin-left: clamp(70px, 140 / 1199 * 100vw, 140px);
    margin-right: clamp(35px, 70 / 1199 * 100vw, 70px);
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer .tit_type_2nd {
    margin-left: clamp(70px, 140 / 1399 * 100vw, 140px);
    margin-right: clamp(35px, 70 / 1399 * 100vw, 70px);
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer .tit_type_2nd {
    margin-left: clamp(70px, 140 / 1599 * 100vw, 140px);
    margin-right: clamp(35px, 70 / 1599 * 100vw, 70px);
  }
}
@media (min-width: 1600px) {
  #index .index-midcareer .tit_type_2nd {
    margin-left: clamp(70px, 140 / 1919 * 100vw, 140px);
    margin-right: clamp(35px, 70 / 1919 * 100vw, 70px);
  }
}
@media (min-width: 792px) {
  #index .index-midcareer .tit_type_2nd {
    padding-top: 46px;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .tit_type_2nd {
    margin-bottom: 48px;
    padding-top: 56px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer .tit_type_2nd {
    padding-top: 64px;
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer .tit_type_2nd {
    padding-top: 72px;
  }
}
@media (min-width: 1600px) {
  #index .index-midcareer .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-midcareer .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  #index .index-midcareer .tit_type_2nd::before {
    left: 0%;
    transform: translateX(0%);
  }
}
#index .index-midcareer .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
@media (min-width: 992px) {
  #index .index-midcareer .tit_type_2nd .ttl-en {
    left: 0%;
    transform: translateX(0%);
  }
}
#index .index-midcareer .tit_type_2nd .ttl-en img {
  height: auto;
  aspect-ratio: 387/38;
  z-index: -1;
}
@media (max-width: 791px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 281px;
    height: 100px;
    aspect-ratio: 149/53;
  }
}
@media (min-width: 792px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 720px;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 846px;
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 963px;
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 1075px;
  }
}
@media (min-width: 1600px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 1161px;
  }
}
@media (min-width: 768px) and (max-width: 791px) {
  #index .index-midcareer .tit_type_2nd .ttl-en img {
    width: 581px;
    height: 57px;
    margin-bottom: -125px;
  }
}
#index .index-midcareer .tit_type_2nd .ttl-jp {
  position: unset;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-midcareer .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 15px;
}
#index .index-midcareer .wrapper .group-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  #index .index-midcareer .wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 792px) {
  #index .index-midcareer .wrapper {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .wrapper {
    grid-template-columns: clamp(70px, 140 / 1199 * 100vw, 140px) 1fr clamp(35px, 70 / 1199 * 100vw, 70px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-midcareer .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer .wrapper {
    grid-template-columns: clamp(70px, 140 / 1399 * 100vw, 140px) 1fr clamp(35px, 70 / 1399 * 100vw, 70px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-midcareer .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer .wrapper {
    grid-template-columns: clamp(70px, 140 / 1599 * 100vw, 140px) 1fr clamp(35px, 70 / 1599 * 100vw, 70px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-midcareer .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1400px) and (min-width: 1400px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1600px) {
  #index .index-midcareer .wrapper {
    grid-template-columns: clamp(70px, 140 / 1919 * 100vw, 140px) 1fr clamp(35px, 70 / 1919 * 100vw, 70px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-midcareer .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
  }
}
@media (min-width: 1600px) and (min-width: 1200px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1600px) and (min-width: 1400px) {
  #index .index-midcareer .wrapper .group-wrap {
    gap: 70px;
  }
}
#index .index-midcareer .group .text {
  margin-bottom: 84px;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (max-width: 791px) {
  #index .index-midcareer .group .text {
    margin-bottom: 28px;
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .group .text {
    margin-top: 60px;
  }
}
#index .index-midcareer .group .list {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 80px;
}
@media (max-width: 791px) {
  #index .index-midcareer .group .list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
@media (min-width: 792px) {
  #index .index-midcareer .group .list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .group .list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  #index .index-midcareer .group .list {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
}
@media (min-width: 1400px) {
  #index .index-midcareer .group .list {
    max-width: 580px;
    gap: 24px 40px;
  }
}
#index .index-midcareer .group .list li {
  position: relative;
}
#index .index-midcareer .group .list li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #AAAAAA;
  z-index: 0;
}
#index .index-midcareer .group .list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: #FF5D5D;
  z-index: 1;
}
#index .index-midcareer .group .list li a {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 20px 22px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
  overflow: unset;
  transition: all 0.1s ease-out;
}
@media (max-width: 791px) {
  #index .index-midcareer .group .list li a {
    margin: 0 20px 20px 0;
  }
}
#index .index-midcareer .group .list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
#index .index-midcareer .group .list li a .number {
  margin-right: 12px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
#index .index-midcareer .group .list li a .arrow {
  position: relative;
  right: 11px;
  display: inline-block;
  margin-left: auto;
}
#index .index-midcareer .group .list li a .arrow::before, #index .index-midcareer .group .list li a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ff5d5d;
  transform-origin: calc(100% - 1px) 50%;
}
#index .index-midcareer .group .list li a .arrow::before {
  transform: rotate(45deg);
}
#index .index-midcareer .group .list li a .arrow::after {
  transform: rotate(-45deg);
}
#index .index-midcareer .group .list li a:hover {
  color: #ff5d5d;
  opacity: 1;
}
#index .index-midcareer .group .list li a:hover .number {
  color: #FF5D5D;
}
#index .index-midcareer .button {
  margin: 0 auto 0;
  text-align: left;
}
@media (max-width: 791px) {
  #index .index-midcareer .button {
    margin: 0 auto 80px;
    text-align: center;
  }
}
@media (min-width: 792px) {
  #index .index-midcareer .button {
    margin: 0 auto 80px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #index .index-midcareer .button {
    margin: 0 auto 0;
    text-align: left;
  }
}
#index .index-midcareer .button .button-inner {
  position: relative;
  display: inline-block;
}
#index .index-midcareer .button .button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1FCCF7;
  transform: translateY(-50%);
}
#index .index-midcareer .button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #219EFA, #1FCCF7);
  box-shadow: 20px 40px 30px 0px rgba(43, 136, 181, 0.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.075em;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-midcareer .button a {
    font-size: 1.6rem;
  }
}
#index .index-midcareer .button a .button-text {
  position: relative;
  width: 420px;
  padding: 26px 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-midcareer .button a .button-text {
    width: 285px;
    padding: 18px 0;
  }
}
#index .index-midcareer .button a .button-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-midcareer .button a .button-text::before {
    width: 30px;
  }
}
#index .index-midcareer .button a .button-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-midcareer .button a .button-text::after {
    right: 30px;
  }
}
#index .index-midcareer .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #1FCCF7, #219EFA);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  clip-path: inset(0 100% 0 0);
}
#index .index-midcareer .button a:hover::before {
  clip-path: inset(0);
}
#index .index-midcareer .button a:hover {
  opacity: 1;
}

/* パート採用について
------------------------------*/
#index .index-parttime {
  position: relative;
  padding: 0 0 120px;
}
@media (max-width: 791px) {
  #index .index-parttime {
    padding: 0 0 140px;
  }
}
#index .index-parttime::before {
  content: "";
  position: absolute;
  display: block;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 375px;
  height: 375px;
  background: url(../img/top/bg-pic-003.png) no-repeat;
  background-size: cover;
  z-index: -1;
}
@media (min-width: 792px) {
  #index .index-parttime::before {
    width: 375px;
    height: 375px;
  }
}
@media (min-width: 992px) {
  #index .index-parttime::before {
    bottom: 180px;
    left: -200px;
    transform: none;
    width: 564px;
    height: 564px;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime::before {
    bottom: -120px;
    left: -200px;
    width: 628px;
    height: 628px;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime::before {
    bottom: -180px;
    width: 688px;
    height: 688px;
  }
}
@media (min-width: 1600px) {
  #index .index-parttime::before {
    width: 750px;
    height: 750px;
  }
}
#index .index-parttime .tit_type_2nd {
  position: relative;
  padding-top: 84px;
  padding-bottom: 0;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-parttime .tit_type_2nd {
    padding-top: 24px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .tit_type_2nd {
    padding-top: 34px;
    padding-bottom: 0;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime .tit_type_2nd {
    padding-top: 42px;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime .tit_type_2nd {
    padding-top: 46px;
  }
}
@media (min-width: 1600px) {
  #index .index-parttime .tit_type_2nd {
    padding-top: 76px;
  }
}
#index .index-parttime .tit_type_2nd::before {
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 792px) {
  #index .index-parttime .tit_type_2nd::before {
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 992px) {
  #index .index-parttime .tit_type_2nd::before {
    left: 0%;
    transform: translateX(0%);
  }
}
#index .index-parttime .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 992px) {
  #index .index-parttime .tit_type_2nd .ttl-en {
    left: unset;
  }
}
#index .index-parttime .tit_type_2nd .ttl-en img {
  max-width: 355px;
  width: 100%;
  height: auto;
  aspect-ratio: 375/106;
}
@media (min-width: 792px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    max-width: none;
    width: 704px;
    aspect-ratio: 713/57;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    width: 846px;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    width: 963px;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    width: 1071px;
  }
}
@media (min-width: 1600px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    width: 1426px;
  }
}
@media (min-width: 768px) and (max-width: 791px) {
  #index .index-parttime .tit_type_2nd .ttl-en img {
    width: 713px;
    max-width: none;
    height: 57px;
    margin-bottom: -135px;
    margin-left: -100px;
  }
}
#index .index-parttime .tit_type_2nd .ttl-jp {
  position: unset;
  font-size: 2rem;
}
@media (min-width: 576px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 2rem;
  }
}
@media (min-width: 792px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 2rem;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 2.4rem;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 2.8rem;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 3.4rem;
  }
}
@media (min-width: 1600px) {
  #index .index-parttime .tit_type_2nd .ttl-jp {
    font-size: 3.6rem;
  }
}
#index .index-parttime .wrapper {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0 15px;
}
#index .index-parttime .wrapper .group-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 576px) {
  #index .index-parttime .wrapper {
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 792px) {
  #index .index-parttime .wrapper {
    max-width: 750px;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .wrapper {
    grid-template-columns: clamp(35px, 70 / 1199 * 100vw, 70px) 1fr clamp(70px, 140 / 1199 * 100vw, 140px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-parttime .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    grid-template-areas: "a b" "c b";
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime .wrapper {
    grid-template-columns: clamp(35px, 70 / 1399 * 100vw, 70px) 1fr clamp(70px, 140 / 1399 * 100vw, 140px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-parttime .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    grid-template-areas: "a b" "c b";
  }
}
@media (min-width: 1200px) and (min-width: 1200px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1200px) and (min-width: 1400px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime .wrapper {
    grid-template-columns: clamp(35px, 70 / 1599 * 100vw, 70px) 1fr clamp(70px, 140 / 1599 * 100vw, 140px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-parttime .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    grid-template-areas: "a b" "c b";
  }
}
@media (min-width: 1400px) and (min-width: 1200px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1400px) and (min-width: 1400px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 1600px) {
  #index .index-parttime .wrapper {
    grid-template-columns: clamp(35px, 70 / 1919 * 100vw, 70px) 1fr clamp(70px, 140 / 1919 * 100vw, 140px);
    max-width: unset;
    margin-left: unset;
    margin-right: unset;
    padding: 0;
  }
  #index .index-parttime .wrapper .group-wrap {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    grid-template-areas: "a b" "c b";
  }
}
@media (min-width: 1600px) and (min-width: 1200px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 30px;
  }
}
@media (min-width: 1600px) and (min-width: 1400px) {
  #index .index-parttime .wrapper .group-wrap {
    gap: 70px;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .group:nth-child(1) {
    grid-area: b;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .group:nth-child(2) {
    grid-area: a;
  }
}
#index .index-parttime .group .text {
  margin-top: 105px;
  margin-bottom: 84px;
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (max-width: 791px) {
  #index .index-parttime .group .text {
    margin-top: 0;
    margin-bottom: 28px;
    font-size: 1.6rem;
  }
}
@media (min-width: 792px) {
  #index .index-parttime .group .text {
    margin-top: 0;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  #index .index-parttime .group .text {
    margin-top: clamp(105px, 105 / 1199 * 100vw, 105px);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  #index .index-parttime .group .text {
    margin-top: clamp(105px, 105 / 1399 * 100vw, 105px);
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #index .index-parttime .group .text {
    margin-top: clamp(105px, 105 / 1599 * 100vw, 105px);
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  #index .index-parttime .group .text {
    margin-top: clamp(105px, 105 / 1919 * 100vw, 105px);
  }
}
#index .index-parttime .group .list {
  grid-column: 2/3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  margin-bottom: 80px;
}
@media (max-width: 791px) {
  #index .index-parttime .group .list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 40px;
  }
}
@media (min-width: 792px) {
  #index .index-parttime .group .list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .group .list {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1200px) {
  #index .index-parttime .group .list {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
  }
}
@media (min-width: 1400px) {
  #index .index-parttime .group .list {
    max-width: 580px;
    gap: 24px 40px;
  }
}
#index .index-parttime .group .list li {
  position: relative;
}
#index .index-parttime .group .list li::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #AAAAAA;
  z-index: 0;
}
#index .index-parttime .group .list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 1px;
  background-color: #FF5D5D;
  z-index: 1;
}
#index .index-parttime .group .list li a {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 20px 22px 0;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
  overflow: unset;
  transition: all 0.1s ease-out;
}
@media (max-width: 791px) {
  #index .index-parttime .group .list li a {
    margin: 0 20px 20px 0;
  }
}
#index .index-parttime .group .list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  border: 1px solid #CCCCCC;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
#index .index-parttime .group .list li a .number {
  margin-right: 12px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.25;
  letter-spacing: 0.075em;
}
#index .index-parttime .group .list li a .arrow {
  position: relative;
  right: 11px;
  display: inline-block;
  margin-left: auto;
}
#index .index-parttime .group .list li a .arrow::before, #index .index-parttime .group .list li a .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 8px;
  height: 2px;
  border-radius: 9999px;
  background-color: #ff5d5d;
  transform-origin: calc(100% - 1px) 50%;
}
#index .index-parttime .group .list li a .arrow::before {
  transform: rotate(45deg);
}
#index .index-parttime .group .list li a .arrow::after {
  transform: rotate(-45deg);
}
#index .index-parttime .group .list li a:hover {
  color: #ff5d5d;
  opacity: 1;
}
#index .index-parttime .group .list li a:hover .number {
  color: #FF5D5D;
}
@media (min-width: 992px) and (min-width: 992px) {
  #index .index-parttime .group .image {
    margin-top: clamp(100px, 164 / 1199 * 100vw, 164px);
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  #index .index-parttime .group .image {
    margin-top: clamp(100px, 164 / 1399 * 100vw, 164px);
  }
}
@media (min-width: 992px) and (min-width: 1400px) {
  #index .index-parttime .group .image {
    margin-top: clamp(100px, 164 / 1599 * 100vw, 164px);
  }
}
@media (min-width: 992px) and (min-width: 1600px) {
  #index .index-parttime .group .image {
    margin-top: clamp(100px, 164 / 1919 * 100vw, 164px);
  }
}
#index .index-parttime .button {
  margin: 0 auto 0;
  text-align: left;
}
@media (max-width: 791px) {
  #index .index-parttime .button {
    margin: 0 auto 80px;
    text-align: center;
  }
}
@media (min-width: 792px) {
  #index .index-parttime .button {
    margin: 0 auto 80px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #index .index-parttime .button {
    margin: 0 auto 0;
    text-align: left;
  }
}
#index .index-parttime .button .button-inner {
  position: relative;
  display: inline-block;
}
#index .index-parttime .button .button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1FCCF7;
  transform: translateY(-50%);
}
#index .index-parttime .button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #219EFA, #1FCCF7);
  box-shadow: 20px 40px 30px 0px rgba(43, 136, 181, 0.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.075em;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-parttime .button a {
    font-size: 1.6rem;
  }
}
#index .index-parttime .button a .button-text {
  position: relative;
  width: 420px;
  padding: 26px 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-parttime .button a .button-text {
    width: 285px;
    padding: 18px 0;
  }
}
#index .index-parttime .button a .button-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-parttime .button a .button-text::before {
    width: 30px;
  }
}
#index .index-parttime .button a .button-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-parttime .button a .button-text::after {
    right: 30px;
  }
}
#index .index-parttime .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #1FCCF7, #219EFA);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  clip-path: inset(0 100% 0 0);
}
#index .index-parttime .button a:hover::before {
  clip-path: inset(0);
}
#index .index-parttime .button a:hover {
  opacity: 1;
}

/* インタビュー
------------------------------*/
#index .index-interview {
  padding: 0 0 204px;
  background: url(../img/top/bg-pic-pc-002.png) no-repeat;
}
@media (min-width: 792px) {
  #index .index-interview {
    background-position: center 5em;
    background-size: 100% 90%;
  }
}
@media (min-width: 1400px) {
  #index .index-interview {
    background-position: center 17.5em;
    background-size: contain;
  }
}
@media (min-width: 1921px) {
  #index .index-interview {
    background-position: center 5em;
    background-size: 100% 90%;
  }
}
@media (max-width: 791px) {
  #index .index-interview {
    padding: 0 0 92px;
    background: url(../img/top/bg-pic-sp-002.png) no-repeat;
    background-position: center 6em;
    background-size: 100% 85%;
  }
}
#index .index-interview .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-interview .contents-inn {
    padding: 0 0;
  }
}
#index .index-interview .tit_type_2nd {
  position: relative;
  padding-top: 36px;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-interview .tit_type_2nd {
    padding-top: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .tit_type_2nd {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  #index .index-interview .tit_type_2nd {
    padding-top: 66px;
  }
}
@media (min-width: 1400px) {
  #index .index-interview .tit_type_2nd {
    padding-top: 72px;
  }
}
@media (min-width: 1600px) {
  #index .index-interview .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-interview .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
#index .index-interview .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
#index .index-interview .tit_type_2nd .ttl-en img {
  height: auto;
  aspect-ratio: 159/38;
  z-index: -1;
}
@media (max-width: 791px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 239px;
    height: 57px;
  }
}
@media (min-width: 792px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 313px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 355px;
  }
}
@media (min-width: 1200px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 395px;
  }
}
@media (min-width: 1400px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 432px;
  }
}
@media (min-width: 1600px) {
  #index .index-interview .tit_type_2nd .ttl-en img {
    width: 477px;
  }
}
#index .index-interview .tit_type_2nd .ttl-jp {
  position: unset;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-interview .flex-3-item {
  padding-top: 32px;
}
@media (max-width: 791px) {
  #index .index-interview .flex-3-item {
    padding-top: 26px;
  }
}
#index .index-interview .flex-3-item li:not(:nth-child(3n)) {
  margin-right: 20px;
}
#index .index-interview .flex-3-item li:last-child {
  margin-right: 0;
}
@media (min-width: 792px) {
  #index .index-interview .flex-3-item li {
    width: calc(33.3% - 40px);
  }
  #index .index-interview .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 40px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .flex-3-item li {
    width: calc(33.3% - 60px);
  }
  #index .index-interview .flex-3-item li:not(:nth-child(3n)) {
    margin-right: 60px;
  }
}
#index .index-interview .flex-3-item li:nth-child(1) article a::after {
  content: "";
  position: absolute;
  top: -32px;
  right: 20px;
  display: block;
  width: 64px;
  height: 64px;
  background: url(../img/top/interview-icon-001.png) no-repeat;
  background-size: cover;
  z-index: 99;
  border-right: unset;
  border-bottom: unset;
  transform: unset;
}
@media (max-width: 791px) {
  #index .index-interview .flex-3-item li:nth-child(1) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 792px) {
  #index .index-interview .flex-3-item li:nth-child(1) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .flex-3-item li:nth-child(1) article a::after {
    top: -32px;
    width: 64px;
    height: 64px;
  }
}
#index .index-interview .flex-3-item li:nth-child(2) article a::after {
  content: "";
  position: absolute;
  top: -32px;
  right: 20px;
  display: block;
  width: 64px;
  height: 64px;
  background: url(../img/top/interview-icon-002.png) no-repeat;
  background-size: cover;
  z-index: 99;
  border-right: unset;
  border-bottom: unset;
  transform: unset;
}
@media (max-width: 791px) {
  #index .index-interview .flex-3-item li:nth-child(2) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 792px) {
  #index .index-interview .flex-3-item li:nth-child(2) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .flex-3-item li:nth-child(2) article a::after {
    top: -32px;
    width: 64px;
    height: 64px;
  }
}
#index .index-interview .flex-3-item li:nth-child(3) article a::after {
  content: "";
  position: absolute;
  top: -32px;
  right: 20px;
  display: block;
  width: 64px;
  height: 64px;
  background: url(../img/top/interview-icon-003.png) no-repeat;
  background-size: cover;
  z-index: 99;
  border-right: unset;
  border-bottom: unset;
  transform: unset;
}
@media (max-width: 791px) {
  #index .index-interview .flex-3-item li:nth-child(3) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 792px) {
  #index .index-interview .flex-3-item li:nth-child(3) article a::after {
    top: -26px;
    width: 52px;
    height: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-interview .flex-3-item li:nth-child(3) article a::after {
    top: -32px;
    width: 64px;
    height: 64px;
  }
}
#index .index-interview .flex-link-type_b {
  margin-bottom: 20px;
  background: none;
  font-size: 1.6rem;
  font-weight: normal;
  text-align: left;
  line-height: 1.75;
  letter-spacing: 0.075em;
}
@media (max-width: 791px) {
  #index .index-interview .flex-link-type_b {
    font-size: 1.4rem;
  }
}
@media (min-width: 792px) {
  #index .index-interview .flex-link-type_b {
    margin-bottom: 20px;
  }
}
#index .index-interview .flex-link-type_b article a {
  overflow: unset;
  position: relative;
}
#index .index-interview .flex-link-type_b .flex-center-img {
  border: none;
  border-radius: 10px;
}
#index .index-interview .flex-link-type_b .flex-center-img img {
  aspect-ratio: 163/170;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 791px) {
  #index .index-interview .flex-link-type_b .flex-center-img img {
    aspect-ratio: 1/1;
  }
}
#index .index-interview .flex-link-type_b .flex-center-img img:hover {
  transform: scale(1.05);
}
#index .index-interview .flex-center-img::before {
  content: "";
  padding-top: 100%;
  top: unset;
  bottom: unset;
  right: unset;
  width: unset;
  height: unset;
  border-style: unset;
  border-width: unset;
  border-color: unset;
}
@media (min-width: 792px) {
  #index .index-interview .flex-center-img {
    padding-top: 104.2944%;
  }
}
#index .index-interview .flex-link-type_b-ttl {
  position: relative;
  padding-bottom: 8px;
  margin-bottom: 12px;
  border-bottom: none;
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.25;
  letter-spacing: 0.075em;
  text-shadow: 1px 1px 0px rgb(255, 255, 255);
}
@media (max-width: 791px) {
  #index .index-interview .flex-link-type_b-ttl {
    margin-bottom: 4px;
    font-size: 1.6rem;
  }
}
#index .index-interview .flex-link-type_b-ttl::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #AAAAAA;
  z-index: 0;
}
#index .index-interview .flex-link-type_b-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background-color: #00A1E2;
  z-index: 1;
}
@media (max-width: 791px) {
  #index .index-interview .flex-link-type_b-ttl::after {
    width: 70px;
  }
}
#index .index-interview .flex-link-type_b-txt {
  padding: 32px 0 0;
  text-shadow: 1px 1px 0px rgb(255, 255, 255);
}
@media (max-width: 791px) {
  #index .index-interview .flex-link-type_b-txt {
    padding: 24px 0 0;
    border: none;
  }
}
#index .index-interview .button {
  margin: 0 auto 0;
  text-align: left;
}
@media (max-width: 791px) {
  #index .index-interview .button {
    margin: 40px auto 80px;
    text-align: center;
  }
}
@media (min-width: 792px) {
  #index .index-interview .button {
    margin: 58px auto 80px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #index .index-interview .button {
    margin: 58px auto 0;
    text-align: center;
  }
}
#index .index-interview .button .button-inner {
  position: relative;
  display: inline-block;
}
#index .index-interview .button .button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1FCCF7;
  transform: translateY(-50%);
}
#index .index-interview .button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #219EFA, #1FCCF7);
  box-shadow: 20px 40px 30px 0px rgba(43, 136, 181, 0.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.075em;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-interview .button a {
    font-size: 1.6rem;
  }
}
#index .index-interview .button a .button-text {
  position: relative;
  width: 420px;
  padding: 26px 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-interview .button a .button-text {
    width: 285px;
    padding: 18px 0;
  }
}
#index .index-interview .button a .button-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-interview .button a .button-text::before {
    width: 30px;
  }
}
#index .index-interview .button a .button-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-interview .button a .button-text::after {
    right: 30px;
  }
}
#index .index-interview .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #1FCCF7, #219EFA);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  clip-path: inset(0 100% 0 0);
}
#index .index-interview .button a:hover::before {
  clip-path: inset(0);
}
#index .index-interview .button a:hover {
  opacity: 1;
}
@media (min-width: 792px) {
  #index .index-interview .flex-link-type_b .flex-center-img::after {
    display: none;
  }
}

/* 詳しい条件で絞り込む
------------------------------*/
#index .index-search {
  padding: 0 0 120px;
  background: url(../img/top/bg-refine-by-detailed-conditions.jpg) no-repeat;
  background-position: bottom;
  background-size: cover;
}
@media (max-width: 791px) {
  #index .index-search {
    padding: 0 0 80px;
  }
}
#index .index-search .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-search .contents-inn {
    padding: 0 0;
  }
}
#index .index-search .tit_type_2nd {
  position: relative;
  padding-top: 84px;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-search .tit_type_2nd {
    padding-top: 32px;
  }
}
@media (min-width: 992px) {
  #index .index-search .tit_type_2nd {
    padding-top: 46px;
  }
}
@media (min-width: 1200px) {
  #index .index-search .tit_type_2nd {
    padding-top: 56px;
  }
}
@media (min-width: 1400px) {
  #index .index-search .tit_type_2nd {
    padding-top: 68px;
  }
}
@media (min-width: 1600px) {
  #index .index-search .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-search .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
#index .index-search .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#index .index-search .tit_type_2nd .ttl-en img {
  height: auto;
  z-index: -1;
}
@media (max-width: 791px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 355px;
    height: 100px;
    aspect-ratio: 375/106;
  }
}
@media (min-width: 792px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 720px;
    aspect-ratio: 473/38;
  }
}
@media (min-width: 992px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 905px;
  }
}
@media (min-width: 1200px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 1091px;
  }
}
@media (min-width: 1400px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 1269px;
  }
}
@media (min-width: 1600px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 1419px;
  }
}
@media (min-width: 768px) and (max-width: 791px) {
  #index .index-search .tit_type_2nd .ttl-en img {
    width: 710px;
    height: 57px;
    margin-bottom: -145px;
  }
}
#index .index-search .tit_type_2nd .ttl-jp {
  position: relative;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-search .search-form {
  border: unset;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

/* 新着求人情報
------------------------------*/
#index .index-list {
  padding: 120px 0 0;
  background: #EFFAFF;
}
@media (max-width: 791px) {
  #index .index-list {
    padding: 80px 0;
  }
}
#index .index-list .contents-inn {
  padding: 0 15px;
}
@media (min-width: 792px) {
  #index .index-list .contents-inn {
    padding: 0 0;
  }
}
#index .index-list .tit_type_2nd {
  position: relative;
  padding-top: 36px;
  text-align: center;
}
@media (min-width: 792px) {
  #index .index-list .tit_type_2nd {
    padding-top: 52px;
  }
}
@media (min-width: 992px) {
  #index .index-list .tit_type_2nd {
    padding-top: 60px;
  }
}
@media (min-width: 1200px) {
  #index .index-list .tit_type_2nd {
    padding-top: 66px;
  }
}
@media (min-width: 1400px) {
  #index .index-list .tit_type_2nd {
    padding-top: 72px;
  }
}
@media (min-width: 1600px) {
  #index .index-list .tit_type_2nd {
    padding-top: 80px;
  }
}
#index .index-list .tit_type_2nd::before {
  left: 50%;
  transform: translateX(-50%);
}
#index .index-list .tit_type_2nd .ttl-en {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
#index .index-list .tit_type_2nd .ttl-en img {
  height: auto;
  aspect-ratio: 617/114;
  z-index: -1;
}
@media (max-width: 791px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 309px;
    height: 57px;
  }
}
@media (min-width: 792px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 408px;
  }
}
@media (min-width: 992px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 465px;
  }
}
@media (min-width: 1200px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 516px;
  }
}
@media (min-width: 1400px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 566px;
  }
}
@media (min-width: 1600px) {
  #index .index-list .tit_type_2nd .ttl-en img {
    width: 617px;
  }
}
#index .index-list .tit_type_2nd .ttl-jp {
  position: relative;
  font-size: clamp(2rem, 1.28rem + 1.19vw, 3.6rem);
}
#index .index-list .button {
  margin: 0 auto 0;
  text-align: left;
}
@media (max-width: 791px) {
  #index .index-list .button {
    margin: 40px auto 80px;
    text-align: center;
  }
}
@media (min-width: 792px) {
  #index .index-list .button {
    margin: 58px auto 80px;
    text-align: center;
  }
}
@media (min-width: 992px) {
  #index .index-list .button {
    margin: 58px auto 0;
    text-align: center;
  }
}
#index .index-list .button .button-inner {
  position: relative;
  display: inline-block;
}
#index .index-list .button .button-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  display: block;
  width: 30px;
  height: 1px;
  background-color: #1FCCF7;
  transform: translateY(-50%);
}
#index .index-list .button a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  background-image: linear-gradient(90deg, #219EFA, #1FCCF7);
  box-shadow: 20px 40px 30px 0px rgba(43, 136, 181, 0.15);
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.25;
  letter-spacing: 0.075em;
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 791px) {
  #index .index-list .button a {
    font-size: 1.6rem;
  }
}
#index .index-list .button a .button-text {
  position: relative;
  width: 420px;
  padding: 26px 0;
  text-align: center;
}
@media (max-width: 791px) {
  #index .index-list .button a .button-text {
    width: 285px;
    padding: 18px 0;
  }
}
#index .index-list .button a .button-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-list .button a .button-text::before {
    width: 30px;
  }
}
#index .index-list .button a .button-text::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 60px;
  width: 8px;
  height: 8px;
  margin: auto;
  border-radius: 50%;
  background-color: #fff;
}
@media (max-width: 791px) {
  #index .index-list .button a .button-text::after {
    right: 30px;
  }
}
#index .index-list .button a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #1FCCF7, #219EFA);
  transition: clip-path 0.4s cubic-bezier(0.25, 1, 0.3, 1);
  clip-path: inset(0 100% 0 0);
}
#index .index-list .button a:hover::before {
  clip-path: inset(0);
}
#index .index-list .button a:hover {
  opacity: 1;
}
#index .index-list .block {
  border: unset;
}
#index .index-list .block a {
  border-radius: 10px;
}
@media (max-width: 791px) {
  #index .index-list .block a {
    border-radius: 0;
  }
}

/* SEO対策エリアリンク
------------------------------*/
#index .index-seolink {
  padding: 60px 0;
  background: #EFFAFF;
}
@media (max-width: 791px) {
  #index .index-seolink {
    padding: 0 0 80px;
  }
}

/************** mid-career.htm **************/
/* アンカーリンク
------------------------------*/
#mid_career .guide-link-type-origin {
  margin-top: 100px;
}
@media (max-width: 791px) {
  #mid_career .guide-link-type-origin {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
#mid_career .guide-link-type-origin .list {
  display: grid;
}
@media (max-width: 791px) {
  #mid_career .guide-link-type-origin .list {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 792px) {
  #mid_career .guide-link-type-origin .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 992px) {
  #mid_career .guide-link-type-origin .list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
#mid_career .guide-link-type-origin .list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-image: linear-gradient(90deg, #173BA9, #3DA0FB);
  color: #FFFFFF;
  font-weight: bold;
}
@media (max-width: 791px) {
  #mid_career .guide-link-type-origin .list li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 792px) {
  #mid_career .guide-link-type-origin .list li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  #mid_career .guide-link-type-origin .list li a {
    font-size: 1.8rem;
  }
}
#mid_career .tit_type_2nd {
  margin-bottom: 64px;
}
@media (max-width: 791px) {
  #mid_career .tit_type_2nd {
    margin-bottom: 32px;
  }
}
#mid_career .tit_type_2nd .ttl-jp {
  display: inline-block;
  margin-bottom: 8px;
  color: #1356A6;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 791px) {
  #mid_career .tit_type_2nd .ttl-jp {
    font-size: 2.8rem;
  }
}
#mid_career .tit_type_2nd .ttl-en {
  color: #676767;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 791px) {
  #mid_career .tit_type_2nd .ttl-en {
    font-size: 2.2rem;
  }
}
#mid_career .tit_type_e {
  margin-bottom: 40px;
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media (max-width: 791px) {
  #mid_career .tit_type_e {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }
}
#mid_career #message.contents {
  padding: 100px 0;
}
#mid_career #message.full-width .contents-inn {
  position: relative;
  padding: 0 15px;
  z-index: 1;
}
#mid_career #message .inner .image {
  margin-bottom: 24px;
}
@media (max-width: 791px) {
  #mid_career #message .inner .image {
    margin-bottom: 12px;
  }
}
#mid_career #message .title {
  margin-top: 24px;
  color: #676767;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 791px) {
  #mid_career #message .title {
    margin-top: 12px;
    font-size: 1.8rem;
  }
}
#mid_career #message .lead {
  font-size: 2.4rem;
  font-weight: bold;
}
@media (max-width: 791px) {
  #mid_career #message .lead {
    font-size: 2rem;
  }
}
#mid_career #message .text {
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 791px) {
  #mid_career #message .text {
    font-size: 1.6rem;
  }
}
#mid_career #message .label {
  margin-bottom: 0;
  color: #000000;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 791px) {
  #mid_career #message .label {
    font-size: 1.6rem;
  }
}
#mid_career #message .list {
  display: grid;
}
@media (max-width: 791px) {
  #mid_career #message .list {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 792px) {
  #mid_career #message .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (min-width: 992px) {
  #mid_career #message .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
#mid_career #message .list .image {
  margin-bottom: 20px;
}
@media (max-width: 791px) {
  #mid_career #message .list .image {
    margin-bottom: 10px;
  }
}
#mid_career #message .list .label span {
  display: flex;
  align-items: center;
  justify-content: center;
}
#mid_career #message .list .label span::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-left: 10px;
  background: url(../img/common/icon_blank_black.png) no-repeat;
  background-size: cover;
}
#mid_career #work {
  background: url(../img/mid-career/bg-work.png) no-repeat;
  background-position: center;
  background-size: cover;
}
#mid_career #work.full-width .contents-inn {
  padding: 0 15px;
}
#mid_career #work.contents {
  padding: 100px 0;
}
#mid_career #work ul li .image {
  position: relative;
  margin-bottom: 24px;
  border: 10px solid #fff;
}
@media (max-width: 791px) {
  #mid_career #work ul li .image {
    margin-bottom: 12px;
  }
}
#mid_career #work ul li .image::before {
  content: "";
  display: block;
}
#mid_career #work ul li .image::before {
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent #173CAA transparent;
  z-index: 99;
}
#mid_career #work ul li .image::after {
  position: absolute;
  content: "";
  top: auto;
  right: 10px;
  bottom: 7px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  z-index: 700;
}
#mid_career #work ul li .text {
  margin-bottom: 0;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.667;
  text-align: center;
}
@media (max-width: 791px) {
  #mid_career #work ul li .text {
    font-size: 1.6rem;
  }
}
#mid_career #work .list01 {
  display: grid;
  margin-bottom: 48px;
}
@media (max-width: 791px) {
  #mid_career #work .list01 {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 16px;
  }
}
@media (min-width: 792px) {
  #mid_career #work .list01 {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
#mid_career #work .list01 .jc-Modal_open {
  cursor: pointer;
}
#mid_career #work .list02 {
  display: grid;
}
@media (max-width: 791px) {
  #mid_career #work .list02 {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 792px) {
  #mid_career #work .list02 {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
#mid_career #system-and-effort.contents {
  padding: 100px 0;
}
#mid_career #system-and-effort.full-width .contents-inn {
  position: relative;
  padding: 0 15px;
  z-index: 1;
}
#mid_career #system-and-effort .text {
  margin-bottom: 48px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
  line-height: 1.667;
}
@media (max-width: 791px) {
  #mid_career #system-and-effort .text {
    margin-bottom: 24px;
    font-size: 1.6rem;
  }
}
#mid_career #system-and-effort .col_type_a .col_type_a_li {
  background-color: #1365C9;
}
#mid_career #system-and-effort .col_type_a .col_type_a_li.jc-Modal_open {
  cursor: pointer;
}
#mid_career #system-and-effort .col_type_a .col_type_a_li.modal-arrow {
  position: relative;
}
#mid_career #system-and-effort .col_type_a .col_type_a_li.modal-arrow::before {
  content: "";
  display: block;
}
#mid_career #system-and-effort .col_type_a .col_type_a_li.modal-arrow::before {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent rgba(255, 255, 255, 0.8) transparent;
  z-index: 99;
}
#mid_career #system-and-effort .col_type_a .col_type_a_li.modal-arrow::after {
  position: absolute;
  content: "";
  top: auto;
  right: 20px;
  bottom: 17px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #173CAA;
  border-bottom: 2px solid #173CAA;
  transform: rotate(-45deg);
  z-index: 700;
}
#mid_career #system-and-effort .col_type_a .col_type_a_ttl {
  color: #FFFFFF;
  font-size: 2rem;
}
#mid_career #system-and-effort .col_type_a .col_type_a_ttl span {
  font-size: 1.6rem;
}
@media (max-width: 791px) {
  #mid_career #system-and-effort .col_type_a .col_type_a_ttl {
    font-size: 1.8rem;
  }
  #mid_career #system-and-effort .col_type_a .col_type_a_ttl span {
    font-size: 1.4rem;
  }
}
@media (max-width: 791px) {
  #mid_career #system-and-effort .col_type_a_item {
    padding: 15px 15px 25px;
  }
}
#mid_career #faq {
  background-color: #F3F7FF;
}
#mid_career #faq.contents {
  padding: 100px 0;
}
#mid_career #faq.full-width .contents-inn {
  padding: 0 15px;
}
#mid_career #faq .cts_type_e_item01::before {
  background: #1356A6;
}
#mid_career #faq .cts_type_e_item02::before {
  background: #6EA3E2;
}
#mid_career #faq .cts_type_e .cts_type_e_item.cts_type_e_item02 .link {
  display: flex;
  align-items: center;
  margin-top: 12px;
}
#mid_career #faq .cts_type_e .cts_type_e_item.cts_type_e_item02 .link .link-label {
  display: block;
  margin-right: 20px;
  padding: 10px 32px;
  border-radius: 50px;
  background-color: #3A92D2;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 791px) {
  #mid_career #faq .cts_type_e .cts_type_e_item.cts_type_e_item02 .link .link-label {
    min-width: 130px;
    margin-right: 10px;
    padding: 10px 10px;
    font-size: 1.4rem;
  }
}
@media (max-width: 791px) {
  #mid_career #faq .cts_type_e .cts_type_e_item.cts_type_e_item02 .link .link-text {
    font-size: 1.4rem;
  }
}

/************** part-time.htm **************/
/* アンカーリンク
------------------------------*/
#part_time .guide-link-type-origin {
  margin-top: 100px;
}
@media (max-width: 791px) {
  #part_time .guide-link-type-origin {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
#part_time .guide-link-type-origin .list {
  display: grid;
}
@media (max-width: 791px) {
  #part_time .guide-link-type-origin .list {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 792px) {
  #part_time .guide-link-type-origin .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 16px;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
@media (min-width: 992px) {
  #part_time .guide-link-type-origin .list {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 0;
    -moz-column-gap: 24px;
         column-gap: 24px;
  }
}
#part_time .guide-link-type-origin .list li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  border-radius: 30px;
  background-image: linear-gradient(90deg, #4EC9FF, #0598C7);
  color: #FFFFFF;
  font-weight: bold;
}
@media (max-width: 791px) {
  #part_time .guide-link-type-origin .list li a {
    font-size: 1.4rem;
  }
}
@media (min-width: 792px) {
  #part_time .guide-link-type-origin .list li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) {
  #part_time .guide-link-type-origin .list li a {
    font-size: 1.8rem;
  }
}
#part_time .tit_type_2nd {
  margin-bottom: 64px;
}
@media (max-width: 791px) {
  #part_time .tit_type_2nd {
    margin-bottom: 32px;
  }
}
#part_time .tit_type_2nd .ttl-jp {
  display: inline-block;
  margin-bottom: 8px;
  color: #00A6EC;
  font-size: 3.2rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 791px) {
  #part_time .tit_type_2nd .ttl-jp {
    font-size: 2.8rem;
  }
}
#part_time .tit_type_2nd .ttl-en {
  color: #676767;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media (max-width: 791px) {
  #part_time .tit_type_2nd .ttl-en {
    font-size: 2rem;
  }
}
#part_time .tit_type_e {
  margin-bottom: 40px;
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media (max-width: 791px) {
  #part_time .tit_type_e {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }
}
#part_time #working-environment.contents {
  padding: 100px 0;
}
#part_time #working-environment.full-width .contents-inn {
  position: relative;
  padding: 0 15px;
  z-index: 1;
}
#part_time #working-environment .col_type_a_li {
  border-radius: 10px;
  border: solid 3px #60A4D6;
  background-color: #fff;
}
#part_time #working-environment .col_type_a .col_type_a_figure {
  padding: 0px 30px;
}
@media (max-width: 791px) {
  #part_time #working-environment .col_type_a .col_type_a_figure {
    padding: 0px;
    margin: 0.5rem 1.5rem 0 !important;
  }
}
#part_time #working-environment .list {
  display: grid;
}
@media (max-width: 791px) {
  #part_time #working-environment .list {
    grid-template-columns: 1fr;
    row-gap: 16px;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (min-width: 792px) {
  #part_time #working-environment .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 32px;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (min-width: 992px) {
  #part_time #working-environment .list {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 32px;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
#part_time #working-environment .list .image {
  margin-bottom: 16px;
}
@media (max-width: 791px) {
  #part_time #working-environment .list .image {
    margin-bottom: 8px;
  }
}
#part_time #working-environment .list .image img {
  border-radius: 10px;
}
#part_time #working-environment .list .text {
  margin-bottom: 0;
  color: #000000;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.667;
  text-align: center;
}
@media (max-width: 791px) {
  #part_time #working-environment .list .text {
    font-size: 1.6rem;
  }
}
#part_time #work {
  background: url(../img/part-time/bg-work.png) no-repeat;
  background-position: center;
  background-size: cover;
}
#part_time #work.full-width .contents-inn {
  padding: 0 15px;
}
#part_time #work.contents {
  padding: 100px 0;
}
#part_time #work .list {
  display: grid;
  margin-bottom: 80px;
}
@media (max-width: 791px) {
  #part_time #work .list {
    grid-template-columns: 1fr;
    row-gap: 32px;
    -moz-column-gap: 0;
         column-gap: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 792px) {
  #part_time #work .list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 64px;
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
#part_time #work .list .image {
  position: relative;
  margin-bottom: 16px;
  cursor: pointer;
}
@media (max-width: 791px) {
  #part_time #work .list .image {
    margin-bottom: 8px;
  }
}
#part_time #work .list .image img {
  border-radius: 10px;
}
#part_time #work .list .image::before {
  content: "";
  display: block;
}
#part_time #work .list .image::before {
  position: absolute;
  top: auto;
  bottom: 10px;
  right: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 35px;
  border-color: transparent transparent #60A4D6 transparent;
  z-index: 99;
}
#part_time #work .list .image::after {
  position: absolute;
  content: "";
  top: auto;
  bottom: 8px;
  right: 20px;
  bottom: 17px;
  width: 6px;
  height: 6px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
  z-index: 700;
}
#part_time #work .list .text {
  margin-bottom: 14px;
  color: #000000;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.667;
  letter-spacing: 0.1em;
  text-align: left;
}
#part_time #work .list .submitBtn {
  justify-content: right;
  padding: 0;
}
#part_time #work .list .submitBtn li a {
  background: #00A1E2;
}
@media (max-width: 791px) {
  #part_time #work .list .submitBtn li {
    padding: 0 15px 10px !important;
  }
}
#part_time #work .list li {
  cursor: pointer;
}
#part_time #work .tit_type_e {
  margin-bottom: 40px;
  color: #333;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.01em;
}
@media (max-width: 791px) {
  #part_time #work .tit_type_e {
    margin-bottom: 24px;
    font-size: 2.2rem;
  }
}
#part_time #work .col_type_b_item .col_type_b_item_inner {
  border-radius: 10px;
  background: #00A6EC;
}
#part_time #work .col_type_b_item .col_type_b_item_inner .image {
  margin-bottom: 0;
}
#part_time #work .col_type_b_item .col_type_b_item_inner .image img {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
#part_time #work .col_type_b_item .col_type_b_item_inner .text {
  margin-bottom: 0;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.2em;
}
#part_time #work .col_type_b_item:not(:last-child)::after {
  border-color: #676767 transparent transparent transparent;
}
@media (min-width: 792px) {
  #part_time #work .flex-4-item li {
    width: calc(25% - 32px);
  }
  #part_time #work .flex-4-item li:not(:nth-child(4n)) {
    margin-right: 42px;
  }
  #part_time #work .pc-horizontal .col_type_b_item:not(:last-child)::after {
    right: -36px;
  }
  #part_time #work .pc-horizontal .col_type_b_item:nth-child(4)::after {
    display: none;
  }
  #part_time #work .pc-horizontal .col_type_b_item:nth-child(-n+4) {
    margin-bottom: 40px;
  }
  #part_time #work .pc-horizontal .col_type_b_item:nth-last-child(-n+4) {
    margin-bottom: 0;
  }
}
#part_time #system-and-benefits.contents {
  padding: 100px 0;
}
#part_time #system-and-benefits.full-width .contents-inn {
  position: relative;
  padding: 0 15px;
  z-index: 1;
}
#part_time #system-and-benefits .col_type_a .col_type_a_li {
  border-radius: 10px;
  background: #2EA7DB;
}
#part_time #system-and-benefits .col_type_a .col_type_a_ttl {
  color: #FFFFFF;
  font-size: 2rem;
}
#part_time #system-and-benefits .col_type_a .col_type_a_ttl span {
  font-size: 1.6rem;
}
@media (max-width: 791px) {
  #part_time #system-and-benefits .col_type_a .col_type_a_ttl {
    font-size: 1.8rem;
  }
  #part_time #system-and-benefits .col_type_a .col_type_a_ttl span {
    font-size: 1.4rem;
  }
}
#part_time #faq {
  background-color: #F2FBFF;
}
#part_time #faq.contents {
  padding: 100px 0;
}
#part_time #faq.full-width .contents-inn {
  padding: 0 15px;
}
#part_time #faq .cts_type_e_item01::before {
  background: #00A6EC;
}
#part_time #faq .cts_type_e_item02::before {
  background: #87C3DC;
}
#part_time .modal-entry {
  height: auto;
}

/**
* モーダル
**/
.modal-overlay {
  width: 100vw;
  height: 100vh;
  background-color: #EFFAFF;
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

.modal-entry {
  display: none;
  position: fixed;
  top: 72px;
  left: 50%;
  z-index: 1000;
  width: min(calc(100% - 32px), 735px);
  height: 500px;
  margin: 0 auto;
  transform: translateX(-50%);
  border: 3px solid #1365C9;
  background-color: #fff;
  overflow-y: scroll;
}
@media (min-width: 792px) {
  .modal-entry {
    top: 100px;
    width: min(calc(100% - 60px), 1080px);
    height: 600px;
  }
}
@media (min-width: 992px) {
  .modal-entry {
    top: 100px;
    height: 640px;
  }
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 54px;
  aspect-ratio: 1/1;
}
@media (min-width: 792px) {
  .modal-close-btn {
    top: 32px;
    right: 32px;
    width: 64px;
  }
}
.modal-close-btn:before, .modal-close-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 27px);
  width: 54px;
  height: 2px;
  background-color: #333;
}
.modal-close-btn:before {
  transform: rotate(45deg);
}
.modal-close-btn:after {
  transform: rotate(-45deg);
}

.modal-wrapper {
  padding: 80px 24px;
}
@media (min-width: 792px) {
  .modal-wrapper {
    padding: 80px 48px;
  }
}
@media (min-width: 992px) {
  .modal-wrapper {
    padding: 100px;
  }
}

.modal-title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 791px) {
  .modal-title {
    font-size: 2rem;
  }
}

.modal-subtitle {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
@media (max-width: 791px) {
  .modal-subtitle {
    font-size: 1.8rem;
  }
}

.modal-text {
  font-size: 1.8rem;
  line-height: 1.6;
}
@media (max-width: 791px) {
  .modal-text {
    font-size: 1.6rem;
  }
}/*# sourceMappingURL=style.css.map */