@charset 'utf-8';
.header h1 {
  display: block;
  overflow: hidden;
  margin: 0;
  padding-top: 80px;
  height: 0 !important;
  line-height: 250%;
  width: 100px;
  background: url(../img/layout/logo.png) center center no-repeat;
  background-size: 100%;
}
@media (max-width: 640px) {
  .header h1 {
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 60px;
    height: 0 !important;
    line-height: 250%;
    width: 80px;
    background: url(../img/layout/logo.png) center center no-repeat;
    background-size: 100%;
  }
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

スマホとPC共通のパーツ群

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*リンクボタン*/
/*角丸、背景水色のリンクボタン*/
.link_btn {
  position: relative;
  display: inline-block;
  margin: 10px 0 10px 0;
  padding: 8px 25px 8px 45px;
  background-color: #bbe4ee;
  border-radius: 9999px;
  font-size: 1.8rem;
  font-weight: bold;
}
.link_btn::before {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
}
.link_btn::after {
  content: '';
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  left: 15px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #2eadcc;
  border-right: 2px solid #2eadcc;
  transform: rotate(45deg);
}
a.link_btn {
  color: #2e499a;
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
a.link_btn:hover {
  transform: translate(4px, 0);
}
a.link_btn:link,
a.link_btn:visited {
  color: #2e499a;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/*リスト*/
.ul_list_table {
  margin: 0;
  padding: 0;
  list-style: none;
}
.ul_list_table li {
  margin: 0;
  padding: 10px 0;
  display: grid;
  grid-template-columns: 8em 1fr;
  border-bottom: 1px solid #000;
}
.ul_list_table li > span {
  font-weight: bold;
}
.fade_anime55555 {
  height: 1px;
  border: 1px solid #ff3300;
  overflow: hidden;
  -webkit-animation: business_area_anime 2s forwards ease;
  animation: business_area_anime 2s forwards ease;
}
@keyframes business_area_anime {
  100% {
    height: 400px;
  }
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

フォームで使う

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
.inquiry {
  margin: 0;
  padding: 0 0 30px 0;
}
.inquiry dl {
  margin: 0;
  padding: 0 0 30px 0;
  display: grid;
  grid-template-columns: 0.3fr 1fr;
}
.inquiry dt {
  margin: 0;
  padding: 10px;
  background-color: #e8e9ec;
  font-weight: bold;
  border-bottom: 1px solid #8a8b8d;
}
.inquiry dd {
  margin: 0;
  padding: 5px;
  border-bottom: 1px solid #8a8b8d;
}
.inquiry input[type="text"],
.inquiry input[type="email"],
.inquiry textarea {
  box-sizing: border-box;
  margin: 0;
  padding: 5px;
  width: 100%;
  border: 1px solid #c0c1c4;
}
.inquiry input[type="submit"] {
  box-sizing: border-box;
  margin: 0;
  padding: 10px 35px;
  font-size: 1.3em;
  font-weight: bold;
  color: #ffffff;
  background-color: #2e499a;
  border: 2px solid #ffffff;
  border-radius: 6px;
  box-shadow: 0px 1px 6px 0px #e1dbdb;
}
/*スマホ調整*/
@media (max-width: 600px) {
  .inquiry dl {
    grid-template-columns: 1fr;
  }
  .inquiry dt {
    border-bottom: 0px solid #8a8b8d;
  }
  .inquiry dd {
    padding-bottom: 20px;
  }
}
/*contact-form-7用の調整css*/
/*未記入警告*/
.wpcf7-not-valid-tip[aria-hidden="true"] {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 2px 10px;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 0.8em;
  border-radius: 5px;
}
.wpcf7-not-valid-tip[aria-hidden="true"]::after {
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 12px solid #ff0000;
  border-top: 0;
}
/*エラーメッセージ　色で警告の種類があるので枠の色自体は変えない*/
.wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  font-weight: bold;
  border-radius: 10px;
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

共通

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
html,
body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  word-break: break-all;
  font-size: 62.5%;
}
body {
  width: 100%;
  height: 100%;
  font-size: 1.6em;
  line-height: 180%;
  color: #2e2e2b;
  font-family: "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
  /*font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;*/
  /*"IBM Plex Sans JP",*/
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
  background-color: #ffffff;
}
a:link,
a:visited {
  text-decoration: none;
  color: #686f5f;
}
a:hover {
  text-decoration: none;
  color: #7e7e5a;
}
.ibm-plex-sans-jp-regular {
  font-family: "IBM Plex Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

CSSアニメーション

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
.op_start {
  opacity: 0;
}
.kv_message_h1_anime {
  -webkit-animation: kv_message_h1_anime 1s forwards ease;
  animation: kv_message_h1_anime 1s forwards ease;
}
@keyframes kv_message_h1_anime {
  0% {
    transform: translate(0px, 40px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.kv_message_message_anime {
  -webkit-animation: kv_message_message_anime 1s forwards ease 0.3s;
  animation: kv_message_message_anime 1s forwards ease 0.3s;
}
@keyframes kv_message_message_anime {
  0% {
    transform: translate(0px, -40px);
    opacity: 0;
  }
  100% {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.corporate_profile_anm {
  -webkit-animation: corporate_profile_anm 1s forwards ease;
  animation: corporate_profile_anm 1s forwards ease;
}
@keyframes corporate_profile_anm {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 640px) {
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

レイアウト（派遣事業部）

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*ロゴ上書き*/
  .header h1 {
    padding-top: 60px;
    margin-top: 10px;
    margin-left: 20px;
    width: 90px;
  }
  .header {
    position: fixed;
    top: 0px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0px 1px 10px 0px #a3afd1;
  }
  .page_container * {
    position: relative;
    box-sizing: border-box;
  }
  .page_container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .page_container img {
    width: 100%;
  }
  .business_area {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .site_contents {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #f0f9fb;
  }
  /*フッタの半月を水色に*/
  .bluefooter .footer::before {
    background: url(../img/layout/footer_bg_moon_blue.webp) top center no-repeat !important;
    background-size: 100% 40px !important;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

トップページ　KV箇所

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*高さ600の時、2519px*/
  .kv_message {
    margin: 100px 0 0 0;
    padding: 0;
    width: 100%;
    height: 600px;
    background: url(../img/dispatch/kv_message.jpg) center center repeat-x;
    background-size: auto 100%;
    -webkit-animation: kv_message_anime linear 100s infinite;
    animation: kv_message_anime linear 100s infinite;
  }
  @keyframes kv_message_anime {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -2519px 0;
    }
  }
  .kv_message h1 {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    overflow: hidden;
    margin: 0 0 0 -400px;
    padding-top: 570px;
    height: 0 !important;
    line-height: 250%;
    width: 240px;
    background: url(../img/dispatch/kv_text.svg) center center no-repeat;
    background-size: 100%;
  }
  .kv_message h2 {
    display: none;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

ヘッダ内メニュー

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .header #pagemenu {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 450px;
  }
  .header #pagemenu ul {
    margin: 0;
    padding: 0 20px;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
  }
  .header #pagemenu ul li {
    margin: 0;
    padding: 0;
  }
  .header #pagemenu ul a {
    display: block;
    margin: 0;
    padding: 15px 0;
    font-weight: bold;
    text-align: center;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .header #pagemenu ul a:hover {
    opacity: 0.8;
  }
  .header #pagemenu .sp_menu,
  .header #pagemenu .sp_menu_close {
    display: none;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

中ページのタイトルヘッダ

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .content_header {
    position: relative;
    margin: 100px 0 0 0;
    padding: 0;
  }
  .content_header::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 257px;
    background-color: #2e499a;
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0% 100%);
  }
  .content_header .contents_img {
    position: absolute;
    top: 0;
    left: 297px;
    height: 100px;
    overflow: hidden;
    width: calc(100% - 297px);
  }
  .content_header .contents_img img {
    width: auto;
    height: 100%;
  }
  .content_header h2 {
    margin: 0;
    padding: 130px 0 0 410px;
    color: #2e499a;
    font-size: clamp(20px, 3vw, 30px);
    line-height: 1.6;
  }
  .content_header p {
    position: absolute;
    top: 100px;
    right: 90px;
    font-size: 80%;
  }
  .content_header h1.recruitment {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0 0 0 40px;
    padding-top: 500px;
    height: 0 !important;
    line-height: 250%;
    width: 150px;
    background: url(../img/dispatch/title_recruitment.svg) top 45px center no-repeat;
    background-size: auto 500px;
  }
  .content_header h1.voice {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0 0 0 40px;
    padding-top: 500px;
    height: 0 !important;
    line-height: 250%;
    width: 150px;
    background: url(../img/dispatch/title_voice.svg) top 45px center no-repeat;
    background-size: auto 500px;
  }
  .content_header h1.faq {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0 0 0 40px;
    padding-top: 500px;
    height: 0 !important;
    line-height: 250%;
    width: 150px;
    background: url(../img/dispatch/title_faq.svg) top 45px center no-repeat;
    background-size: auto 500px;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

トップ　事業内容の説明

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .business_content {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 400px;
  }
  .business_content h2 {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 370px;
    height: 0 !important;
    line-height: 250%;
    width: 400px;
    background: url(../img/dispatch/business_content.svg) top 100px center no-repeat;
    background-size: 100px;
  }
  .business_content h3 {
    margin: 0;
    padding: 100px 0 0 430px;
    line-height: 1.8;
    font-size: clamp(1.5em, 2vw, 2em);
    color: #2e499a;
  }
  .business_content::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 400px;
    height: 257px;
    background-color: #2e499a;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

事業内容の説明箇所

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .business_area::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 20%;
    background-color: #f0f9fb;
  }
  .business_area_info {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .business_area_info h4 {
    margin: 0;
    padding: 0 0 20px 0;
    color: #2e499a;
    font-size: 150%;
  }
  .business_area_info .text {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    box-sizing: border-box;
    margin: 0;
    padding: 20px 0 20px 20px;
    width: 60%;
    /*max-width: 600px;*/
    /*max-height: 350px;*/
    font-size: 90%;
    line-height: 1.6;
    background-color: #ffffff;
  }
  .business_area_info .text::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  .business_area_info .text p {
    margin: 0;
    padding: 0;
    max-height: 280px;
    /*height: 280px;*/
    overflow: scroll;
  }
  .business_area_info .top_text_bg_img {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 80px 0 0 20%;
  }
  .business_area_info .top_text_bg_img img {
    width: 100%;
    clip-path: polygon(11% 0%, 100% 0, 100% 100%, 0% 100%);
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

リンクやお知らせなど

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .site_contents .inner {
    max-width: 1000px;
    width: calc(100% - 20px);
    margin: 0 auto 0 auto;
    padding: 100px 0 0 0;
  }
  .site_contents .inner h4 {
    color: #2e499a;
  }
  /*リンク箇所*/
  .site_contents .dispatch_page_link {
    margin: 0;
    padding: 100px 0 50px 0;
  }
  .site_contents .dispatch_page_link img {
    width: 100%;
  }
  .site_contents .dispatch_page_link .contents {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
  }
  .site_contents .dispatch_page_link .recruitment .text {
    position: relative;
    margin-bottom: 40px;
  }
  .site_contents .dispatch_page_link .recruitment .text h2 {
    position: absolute;
    top: 0;
    margin: 0;
    padding: 10px 0 10px 10px;
    border-left: 4px solid #2e499a;
    color: #2e499a;
  }
  .site_contents .dispatch_page_link .recruitment p {
    margin: 0;
    padding: 0 0 0 200px;
  }
  .site_contents .dispatch_page_link .contents span {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 50%;
    margin: 0;
    padding: 10px 0 10px 40px;
    font-weight: bold;
    color: #2e499a;
    background: url(../img/common_css/linkimg.svg) left 10px center no-repeat;
    background-size: 20px;
    background-color: #ffffff;
  }
  .site_contents .dispatch_page_link .contents a span {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .site_contents .dispatch_page_link .contents a:hover span {
    width: 55%;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

媒体別設定

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

中ページ用のレイアウト

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*中ページの本文*/
  .dispatch_content {
    margin: 0 auto 0 auto;
    padding: 100px 0 0 0;
    max-width: 1200px;
    width: calc(100% - 20px);
  }
  .dispatch_content.faq {
    max-width: 900px;
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*求人紹介*/
  .in_dispatch {
    text-align: center;
  }
  .in_dispatch i {
    display: inline-block;
    margin: 0 auto 30px auto;
    padding: 20px 30px;
    border: 1px solid #2e499a;
    color: #2e499a;
    font-style: normal;
  }
  /* 求人一覧のボックス */
  .dispatch_box {
    margin: 0 10px;
    padding: 20px 0 60px 0;
    border-top: 2px solid #2e499a;
  }
  .dispatch_box::after {
    content: '';
    top: 0;
    right: 0;
    display: block;
    position: absolute;
    top: -17px;
    right: 10px;
    width: 35px;
    height: 40px;
    background: url(../img/dispatch/clip.svg) top center no-repeat;
    background-size: 100%;
  }
  .dispatch_box h2 {
    margin: 0;
    padding: 10px 0 40px 0;
    color: #2e499a;
  }
  .dispatch_box h3 {
    margin-top: 80px;
    padding: 20px 0 40px 0;
    color: #2e499a;
    border-top: 10px solid #c6ddf3;
  }
  .dispatch_box .datas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
  }
  .dispatch_box dl {
    margin: 0;
    padding: 0;
  }
  .dispatch_box dl dt,
  .dispatch_box dl dd {
    margin: 0;
    padding: 0;
  }
  .dispatch_box dl dt {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 110%;
  }
  .dispatch_box dl dd {
    margin: 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #2e499a;
  }
  /*ページ下部共通*/
  .note_memo {
    margin: 0;
    padding: 50px 0;
    background-color: #f0f9fb;
  }
  .note_memo .text_box h4 {
    color: #2e499a;
  }
  .note_memo .text_box {
    margin: 0 auto;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 1px 10px 0 #59a5c6;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

利用者の声

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .voice_item {
    margin: 0;
    padding: 20px 0 70px 200px;
    font-size: 120%;
    font-weight: bold;
    color: #2e499a;
  }
  .voice_interview {
    margin: 0 10px;
    padding: 20px 0 60px 0;
    border-top: 2px solid #2e499a;
  }
  .voice_interview::after {
    content: '';
    top: 0;
    right: 0;
    display: block;
    position: absolute;
    top: -17px;
    right: 10px;
    width: 35px;
    height: 40px;
    background: url(../img/dispatch/clip.svg) top center no-repeat;
    background-size: 100%;
  }
  .voice_interview h2 {
    margin: 0;
    padding: 10px 0 40px 0;
    color: #2e499a;
  }
  .voice_interview h2 span {
    margin-left: 40px;
  }
  .voice_interview h2 span i {
    font-size: 70%;
    font-style: normal;
    margin-right: 10px;
  }
  .voice_interview ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .voice_interview ol li {
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 0 20px 10px;
    background: url(../img/common_css/dot_line.png) bottom left repeat-x;
    background-size: 5px;
  }
  .voice_interview ol li:nth-of-type(1)::before {
    content: '1';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(2)::before {
    content: '2';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(3)::before {
    content: '3';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(4)::before {
    content: '4';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

よくある質問

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .dispatch_content.faq dl {
    margin: 60px 0 0 0;
    padding: 0;
  }
  .dispatch_content.faq dt {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 50px;
    font-weight: bold;
    color: #2e499a;
    font-size: 120%;
  }
  .dispatch_content.faq dt::before {
    content: 'Q';
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #2e499a;
    border-radius: 50%;
  }
  .dispatch_content.faq dd {
    position: relative;
    margin: 0 0 30px 0;
    padding: 10px 0 20px 100px;
    background: url(../img/common_css/dot_line.png) bottom left repeat-x;
    background-size: 5px;
  }
  .dispatch_content.faq dd::before {
    content: 'A';
    position: absolute;
    top: 5px;
    left: 50px;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #f48624;
    border-radius: 50%;
  }
}
@media (min-width: 640px) and (max-width: 1600px) {
  .dispatch_content {
    margin: 0 0 0 0;
    padding-left: 200px;
    max-width: 1400px;
  }
}
@media (max-width: 640px) {
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

レイアウト（派遣事業部）

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*ロゴ上書き*/
  .header h1 {
    padding-top: 60px;
    margin-top: 10px;
    margin-left: 20px;
    width: 70px;
  }
  .header {
    position: fixed;
    top: 0px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100px;
    z-index: 100;
    background-color: #ffffff;
    box-shadow: 0px 1px 10px 0px #a3afd1;
  }
  .page_container * {
    position: relative;
    box-sizing: border-box;
  }
  .page_container {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .page_container img {
    width: 100%;
  }
  .business_area {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
  }
  .site_contents {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #f0f9fb;
  }
  /*フッタの半月を水色に*/
  .footer::before {
    background: url(../img/layout/footer_bg_moon_blue.webp) top center no-repeat !important;
    background-size: 100% 40px;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

トップページ　KV箇所

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .kv_message {
    margin: 100px 0 0 0;
    padding: 0;
    width: 100%;
    height: 400px;
    background: url(../img/dispatch/kv_message.jpg) center center repeat-x;
    background-size: auto 100%;
    -webkit-animation: kv_message_anime linear 100s infinite;
    animation: kv_message_anime linear 100s infinite;
  }
  @keyframes kv_message_anime {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -1679px 0;
    }
  }
  .kv_message h1 {
    display: block;
    overflow: hidden;
    margin: 0 0 0 10px;
    padding-top: 380px;
    height: 0 !important;
    line-height: 250%;
    width: 200px;
    background: url(../img/dispatch/kv_text.svg) center center no-repeat;
    background-size: auto 100%;
  }
  .kv_message h2 {
    display: none;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

ヘッダ内メニュー

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .header #pagemenu {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto;
  }
  .header #pagemenu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .header #pagemenu ul li {
    margin: 0;
    padding: 0;
  }
  .header #pagemenu ul a {
    display: block;
    margin: 0;
    padding: 4px 10px;
    font-weight: bold;
    text-align: center;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .header #pagemenu ul a:hover {
    opacity: 0.8;
  }
  .header #pagemenu .sp_menu,
  .header #pagemenu .sp_menu_close {
    display: none;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

中ページのタイトルヘッダ

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .content_header {
    position: relative;
    margin: 100px 0 0 0;
    padding: 0;
  }
  .content_header::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 175px;
    background-color: #2e499a;
    clip-path: polygon(0 0, 100% 0, 75% 100%, 0% 100%);
  }
  .content_header .contents_img {
    position: absolute;
    top: 0;
    left: 135px;
    height: 70px;
    overflow: hidden;
    width: calc(100% - 135px);
  }
  .content_header .contents_img img {
    width: auto;
    height: 100%;
  }
  .content_header h2 {
    margin: 0;
    padding: 100px 10px 0 140px;
    color: #2e499a;
    font-size: clamp(15px, 3vw, 30px);
    /* font-size: 90%; */
    line-height: 1.6;
  }
  .content_header p {
    display: none;
  }
  .content_header h1.recruitment {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 300px;
    height: 0 !important;
    line-height: 250%;
    width: 120px;
    background: url(../img/dispatch/title_recruitment.svg) top 45px center no-repeat;
    background-size: auto 300px;
  }
  .content_header h1.voice {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 300px;
    height: 0 !important;
    line-height: 250%;
    width: 120px;
    background: url(../img/dispatch/title_voice.svg) top 45px center no-repeat;
    background-size: auto 300px;
  }
  .content_header h1.faq {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 350px;
    height: 0 !important;
    line-height: 250%;
    width: 120px;
    background: url(../img/dispatch/title_faq.svg) top 48px center no-repeat;
    background-size: auto 300px;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

トップ　事業内容の説明

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .business_content {
    position: relative;
    margin: 0;
    padding: 0;
    min-height: 200px;
  }
  .business_content h2 {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    margin: 0;
    padding-top: 270px;
    height: 0 !important;
    line-height: 250%;
    width: 100px;
    background: url(../img/dispatch/business_content.svg) top 30px center no-repeat;
    background-size: 70px;
  }
  .business_content h3 {
    margin: 0;
    padding: 170px 0 0 110px;
    line-height: 1.5;
    font-size: clamp(1.3em, 2vw, 2em);
    color: #2e499a;
  }
  .business_content::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 143px;
    background-color: #2e499a;
    clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

事業内容の説明箇所

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .business_area::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    height: 10%;
    background-color: #f0f9fb;
  }
  .business_area_info {
    position: relative;
    margin: 0;
    padding: 0;
    margin-top: 50px;
  }
  .business_area_info h4 {
    margin: 0;
    padding: 0 0 20px 0;
    color: #2e499a;
    font-size: 120%;
  }
  .business_area_info .text {
    margin: 0px 20px 0px 20px;
    font-size: 90%;
  }
  .business_area_info2 .text::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -50px;
    width: 50px;
    height: 100%;
    background-color: #ffffff;
    clip-path: polygon(100% 0, 0 0, 0 100%);
  }
  .business_area_info .text p {
    margin: 0;
    padding: 0;
  }
  .business_area_info .top_text_bg_img {
    box-sizing: border-box;
    width: 100%;
    margin: 0;
    padding: 0 0 0 20%;
  }
  .business_area_info .top_text_bg_img img {
    width: 100%;
    clip-path: polygon(11% 0%, 100% 0, 100% 100%, 0% 100%);
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

リンクやお知らせなど

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .site_contents .inner {
    max-width: 1000px;
    width: calc(100% - 20px);
    margin: 0 auto 0 auto;
    padding: 100px 0 0 0;
  }
  .site_contents .inner h4 {
    color: #2e499a;
  }
  /*リンク箇所*/
  .site_contents .dispatch_page_link {
    margin: 0;
    padding: 100px 0 50px 0;
  }
  .site_contents .dispatch_page_link img {
    width: 100%;
  }
  .site_contents .dispatch_page_link .recruitment .text {
    position: relative;
    margin-bottom: 40px;
  }
  .site_contents .dispatch_page_link .recruitment .text h2 {
    padding: 10px 0 10px 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border-left: 4px solid #2e499a;
    color: #2e499a;
  }
  .site_contents .dispatch_page_link .recruitment p {
    margin: 0;
    padding: 0;
  }
  .site_contents .dispatch_page_link .contents span {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 70%;
    margin: 0;
    padding: 10px 0 10px 40px;
    font-weight: bold;
    color: #2e499a;
    background: url(../img/common_css/linkimg.svg) left 10px center no-repeat;
    background-size: 20px;
    background-color: #ffffff;
  }
  .site_contents .dispatch_page_link .contents a span {
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .site_contents .dispatch_page_link .contents a:hover span {
    width: 75%;
  }
  .sp_photo_box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

媒体別設定

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

中ページ用のレイアウト

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  /*中ページの本文*/
  .dispatch_content {
    margin: 0 auto 0 auto;
    padding: 100px 0 0 30px;
    max-width: 1200px;
    width: calc(100% - 20px);
  }
  /*ーーーーーーーーーーーーーーーーーーーーーーーーーーーーー*/
  /*求人紹介*/
  .in_dispatch {
    text-align: center;
  }
  .in_dispatch i {
    display: inline-block;
    margin: 0 auto 30px auto;
    padding: 20px 30px;
    border: 1px solid #2e499a;
    color: #2e499a;
    font-style: normal;
  }
  /* 求人一覧のボックス */
  .dispatch_box {
    margin: 0 10px;
    padding: 20px 0 60px 0;
    border-top: 2px solid #2e499a;
  }
  .dispatch_box::after {
    content: '';
    top: 0;
    right: 0;
    display: block;
    position: absolute;
    top: -17px;
    right: 10px;
    width: 35px;
    height: 40px;
    background: url(../img/dispatch/clip.svg) top center no-repeat;
    background-size: 100%;
  }
  .dispatch_box h2 {
    margin: 0;
    padding: 10px 0 40px 0;
    color: #2e499a;
    font-size: 130%;
    line-height: 1.5;
  }
  .dispatch_box h3 {
    margin-top: 80px;
    padding: 20px 0 40px 0;
    color: #2e499a;
    border-top: 10px solid #c6ddf3;
  }
  .dispatch_box .datas {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .dispatch_box dl {
    margin: 0;
    padding: 0;
  }
  .dispatch_box dl dt,
  .dispatch_box dl dd {
    margin: 0;
    padding: 0;
  }
  .dispatch_box dl dt {
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 110%;
  }
  .dispatch_box dl dd {
    margin: 0;
    padding: 0 0 10px 0;
    border-bottom: 1px solid #2e499a;
  }
  /*ページ下部共通*/
  .note_memo {
    margin: 0;
    padding: 50px 0;
    background-color: #f0f9fb;
  }
  .note_memo .text_box h4 {
    color: #2e499a;
  }
  .note_memo .text_box {
    margin: 0 auto;
    padding: 20px;
    width: calc(100% - 40px);
    max-width: 800px;
    background-color: #ffffff;
    box-shadow: 0 1px 10px 0 #59a5c6;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

利用者の声

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .voice_item {
    margin: 0;
    padding: 20px 0 70px 100px;
    font-size: 120%;
    font-weight: bold;
    color: #2e499a;
  }
  .voice_interview {
    margin: 0 10px;
    padding: 20px 0 60px 0;
    border-top: 2px solid #2e499a;
  }
  .voice_interview::after {
    content: '';
    top: 0;
    right: 0;
    display: block;
    position: absolute;
    top: -17px;
    right: 10px;
    width: 35px;
    height: 40px;
    background: url(../img/dispatch/clip.svg) top center no-repeat;
    background-size: 100%;
  }
  .voice_interview h2 {
    margin: 0;
    padding: 10px 0 40px 0;
    color: #2e499a;
  }
  .voice_interview h2 span {
    display: block;
    font-size: 70%;
    line-height: 2;
  }
  .voice_interview h2 span i {
    font-size: 70%;
    font-style: normal;
    margin-right: 10px;
  }
  .voice_interview ol {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .voice_interview ol li {
    position: relative;
    margin: 0 0 20px 0;
    padding: 0 0 20px 10px;
    background: url(../img/common_css/dot_line.png) bottom left repeat-x;
    background-size: 5px;
  }
  .voice_interview ol li:nth-of-type(1)::before {
    content: '1';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(2)::before {
    content: '2';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(3)::before {
    content: '3';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  .voice_interview ol li:nth-of-type(4)::before {
    content: '4';
    display: inline-block;
    width: 25px;
    height: 25px;
    margin-top: 20px;
    margin-right: 10px;
    text-align: center;
    line-height: 1.8;
    font-weight: bold;
    font-size: 1.5rem;
    color: #2e499a;
    border: 1px solid #2e499a;
    border-radius: 50%;
  }
  /*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

よくある質問

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
  .dispatch_content.faq dl {
    margin: 160px 0 0 0;
    padding: 0;
  }
  .dispatch_content.faq dt {
    position: relative;
    margin: 0;
    padding: 10px 0 10px 50px;
    font-weight: bold;
    color: #2e499a;
    font-size: 120%;
  }
  .dispatch_content.faq dt::before {
    content: 'Q';
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #2e499a;
    border-radius: 50%;
  }
  .dispatch_content.faq dd {
    position: relative;
    margin: 0px 0px 30px 0px;
    padding: 10px 0px 20px 100px;
    background: url(../img/common_css/dot_line.png) bottom left repeat-x;
    background-size: 5px;
  }
  .dispatch_content.faq dd::before {
    content: 'A';
    position: absolute;
    top: 5px;
    left: 50px;
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 2.5;
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff;
    background-color: #f48624;
    border-radius: 50%;
  }
}
/*フッタ*/
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

レイアウト

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
.footer {
  margin: 0;
  padding: 0;
  width: 100%;
  background-color: #2eadcc;
}
.copy {
  margin: 0;
  padding: 20px 0;
  width: 100%;
  font-size: 80%;
  background-color: #e4f4f8;
}
/*
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー

媒体別設定

ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
*/
@media (min-width: 640px) {
  .footer {
    background: url(../img/layout/footer_earth_bg.webp) center bottom no-repeat;
    background-size: 1500px;
    background-color: #2eadcc;
  }
  .footer::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../img/layout/footer_bg_moon.webp) top center no-repeat;
    background-size: 100% 40px;
  }
  .footer .inner {
    position: relative;
    margin: 0 auto;
    padding: 100px 0 40px 0;
    width: calc(100% - 40px);
    max-width: 1000px;
    color: #ffffff;
  }
  .footer .inquiry {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 0.3fr 1fr 0.8fr;
    grid-gap: 10px;
  }
  .footer .inquiry h3 {
    margin-top: 20px;
  }
  .footer .inquiry .small {
    margin-right: 10px;
  }
  .footer .inquiry a:first-of-type {
    margin-right: 50px;
  }
  .footer dl {
    margin: 0;
    padding: 0;
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1.2fr 1fr;
    grid-gap: 10px;
  }
  .footer dt,
  .footer dd {
    margin: 0;
    padding: 0;
  }
  .footer dt {
    font-weight: bold;
    font-size: 2.5rem;
  }
  .footer ul {
    margin: 0;
    padding: 0;
    margin-left: 10px;
    list-style: none;
    font-size: 90%;
  }
  .footer li {
    margin: 0;
    padding: 0;
  }
  .footer ul a {
    display: block;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
  }
  .footer ul a:hover {
    opacity: 0.8;
  }
  .footer ul a:link,
  .footer ul a:visited {
    color: #ffffff;
  }
  .copy {
    text-align: center;
  }
}
@media (max-width: 640px) {
  .footer {
    background: url(../img/layout/footer_earth_bg.webp) center bottom no-repeat;
    background-size: 1500px;
    background-color: #2eadcc;
  }
  .footer::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: url(../img/layout/footer_bg_moon.webp) top center no-repeat;
    background-size: 100% 40px;
  }
  .footer .inner {
    position: relative;
    margin: 0 auto;
    padding: 100px 0 40px 0;
    width: calc(100% - 40px);
    max-width: 1000px;
    color: #ffffff;
  }
  .footer .inquiry {
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
  }
  .footer .inquiry .small {
    margin-right: 20px;
  }
  .footer dl {
    display: none;
  }
  .copy {
    text-align: center;
  }
}
