@charset "UTF-8";
@font-face {
  font-family: YuGothicM;
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular");
  /* Windows8.1ではMediumがないのでRegularを指定 */
}
@font-face {
  font-family: YuGothicM;
  font-weight: bold;
  src: local("YoGothic-Bold"), local("Yu Gothic");
  /* Chrome用 */
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* IE10以上はメイリオ */
@media all and (-ms-high-contrast: none) {
  body {
    font-family: "Segoe UI", Meiryo, sans-serif;
  }
}
button,
input,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  border-radius: 0;
}

html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  color: #333;
  line-height: 24.5px;
  min-width: 1200px;
}

img {
  max-width: 100%;
}

.sp_img {
  display: none;
}

.pc_img {
  display: block;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tl_c {
  text-align: center;
}

.white {
  color: #fff;
}

/*メニュー*/
.link_new_window {
  position: relative;
  padding-right: 22px;
  text-decoration: none;
}

.link_new_window::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/top/icon_new_window.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
}

/*ヘッダー*/
/* PCヘッダー */
.pc_header {
  display: block;
}

.bg_header {
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  align-items: center;
  justify-content: space-between;
}

.header-logo img {
  height: 40px;
}

.header-link ul li {
  margin-left: 20px;
}

.header-link a {
  color: #333;
  font-weight: bold;
  text-decoration: none;
}

.btn_header {
  padding: 8px 16px;
  background: #f5c400;
  border-radius: 4px;
  color: #000;
}

/* SPでは非表示 */
@media screen and (max-width: 768px) {
  .pc_header {
    display: none;
  }
}
.title_color h2 {
  color: #0c40b4;
  font-weight: bold;
  font-size: 28px;
}

.title_color h2 .select_ttl {
  font-size: 20px;
  margin: 25px 0px;
  position: relative;
}

.ttl {
  padding: 280px 0 0 0;
  display: flex;
  justify-content: center;
  height: 100%;
  align-items: center;
}

.ttl h1 {
  background: rgba(255, 255, 255, 0.9);
  border-top: solid 4px #fd6625;
  border-bottom: solid 4px #fd6625;
  font-size: 48px;
  font-weight: bold;
  padding: 40px;
}

.title_color h2 span:before {
  content: "";
  width: 10px;
  height: 27px;
  border-right: 2px solid #feb228;
  display: inline-block;
  transform: rotate(-45deg);
  position: absolute;
  left: -35px;
  top: 4px;
}

.title_color h2 span::after {
  content: "";
  width: 10px;
  height: 27px;
  border-right: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: -25px;
  top: -3px;
}

.title_position {
  position: relative;
  top: -14px;
}

.title_position h2 {
  letter-spacing: 0.1em;
}

.visual-text {
  background: url(../img/top/img_mainvisual.jpg);
  background-size: cover;
  min-width: 1200px;
  height: 530px;
}

.content-wrapper {
  max-width: 1200px;
  padding: 0 80px;
  margin: 0 auto;
}

.content-wrapper2 {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0;
}

.visual-menu {
  border-radius: 5px;
  background: #fff;
  box-shadow: 0px 10px 35px 0px rgba(130, 130, 130, 0.6);
  padding: 25px 40px;
  margin-top: -25px;
}

.visual-menu .button {
  display: flex;
  justify-content: space-between;
}

.el_search_select {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  position: relative;
}

.btn_ttl select option::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 6px;
  top: 7px;
}

.btn_ttl {
  background: #0c40b4;
  color: white;
  width: 84px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0px 5px #a3aec7;
}

.btn_small_yellow {
  background: #fffb48;
  color: #000000;
  width: 206px;
  text-align: center;
  font-size: 18px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 5px #b3af15;
  font-weight: bold;
  border: none;
}

.recruit_details .submitButton:hover,
.formItem .submitButton:hover {
  cursor: pointer;
}

.formItem .correctionButton:hover {
  cursor: pointer;
}

.btn_small_yellow:hover,
.btn_large_yellow:hover,
.btn_small_blue:hover,
.recruit_details form:hover {
  box-shadow: none;
  position: relative;
  top: 10px;
  cursor: pointer;
}

.el_search_select select {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex: 1 1 auto;
  padding: 10px 50px 10px 25px;
  font-size: 18px;
  font-weight: bold;
  border-color: #fff;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  box-shadow: 0px 5px #a3aec7;
  cursor: pointer;
}

.el_search_select::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 20px;
}

.visual-menu .btn_location {
  display: flex;
  width: 35%;
}

.visual-menu .btn_location select {
  text-align: center;
}

.visual-menu .btn_location2 {
  display: flex;
}

.visual-menu .btn_location2 select {
  text-align: center;
  width: 74%;
}

.visual-menu h2 {
  text-align: center;
}

.title_new {
  width: 70%;
  font-size: 16px;
}

.title_new dl {
  border-bottom: 1px dotted #c2cce1;
}

.title_new span dl {
  border-top: 1px dotted #c2cce1;
}

.wrapper_under_ttl {
  width: auto;
  display: inline-block;
  font-size: 14px;
  padding: 40px 0px 20px 0px;
  color: #afbbd7;
  position: relative;
}

.under_ttl_kyuzin:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #feb228;
  position: absolute;
  bottom: 0;
}

.under_ttl_contents:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #feb228;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.under_ttl_faq:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #feb228;
  position: absolute;
  bottom: 0;
  left: -2px;
}

.wrapper_title2 h2 {
  font-size: 28px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.wrapper_title2 {
  text-align: center;
}

.kyuzin {
  width: 30%;
}

.slide {
  display: flex;
  justify-content: space-between;
  margin-top: -80px;
  padding-bottom: 120px;
}

.slide_2column {
  display: flex;
  justify-content: space-between;
  padding-bottom: 120px;
}

.bg_bule {
  background-color: #0c40b4;
  padding: 121px 0px;
}

/*job-card*/
.job-card {
  background-color: #f5f5f5;
  padding: 80px 0;
  display: flex;
  justify-content: center;
}
.job-card .job-card-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 60px;
  width: 860px;
}
.job-card .job-card-list .job-card-item {
  width: 400px;
  display: flex; /* 追加 */
}
.job-card .job-card-list .job-card-item .job-date {
  text-align: right;
  color: #999;
  font-size: 12px;
}
.job-card .job-card-list .job-card-item .job-card-item-content {
  border-top: solid 2px #fd6625;
  background-color: #fff;
  padding: 20px;
  display: flex;        /* 追加 */
  flex-direction: column; /* 追加 */
  width: 100%;           /* 追加 */
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-title {
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  margin: 0px 0 10px;
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-img {
  display: block;
  margin: 0 auto;
  height: 120px;
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-subtitle {
  font-size: 16px;
  font-weight: bold;
}
/* 仕事内容(h3)の直前に可変の余白を入れる */
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-subtitle:first-of-type {
  margin-top: auto; /* これにより、これより上の要素と下の要素が押し広げられます */
  padding-top: 20px; /* 必要に応じて最低限の余白を確保 */
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-text {
  font-size: 16px;
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-text:first-of-type {
  border-bottom: solid 1px #999;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-button {
  position: relative;
  display: flex; /* ← ここ */
  align-items: center;
  justify-content: center; /* ← 中央揃え */
  border: solid 2px #999;
  padding: 10px 10px 10px 10px; /* 右だけ余白 */
  margin: 10px 0;
  color: #333;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.job-card .job-card-list .job-card-item .job-card-item-content {
  /* 矢印 */
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  transform: translateY(-50%) rotate(45deg);
}
.job-card .job-card-list .job-card-item .job-card-item-content {
  /* hover */
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-button:hover {
  background-color: #fd6625;
  border-color: #fd6625;
  color: #fff;
}
.job-card .job-card-list .job-card-item .job-card-item-content .job-card-item-button:hover::after {
  border-color: #fff;
}

.information {
  max-width: 1200px;
  margin: 0 auto;
  margin-top: 134px;
  height: 730px;
  position: relative;
  margin-bottom: 120px;
}

.information:after {
  content: "";
  background-color: #fff;
  background-image: repeating-linear-gradient(45deg, #e1f2ff 0, #e1f2ff 2px, #fff 2px, #fff 4px);
  display: inline-block;
  width: 1040px;
  height: 730px;
  margin-top: -670px;
  position: absolute;
  left: 80px;
  z-index: -1;
}

.position_img {
  position: relative;
  top: -520px;
}

.content_menu {
  display: inline-block;
  width: 86%;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 240px;
  left: 40px;
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
}

.content_menu h3 {
  color: #0c40b4;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.content_menu h3::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 6px;
  top: 7px;
}

.content_menu p {
  color: #4c5467;
}

.information_ttl {
  position: relative;
  margin-right: 15px;
}

.information_ttl:last-child {
  margin-right: 0px;
}

.information_ttl a:hover img {
  transform: scale(1.05);
}

.information_ttl a img {
  transition-duration: 0.5s;
  width: 100%;
}

.img_wrap {
  width: 560px;
  overflow: hidden;
  border-radius: 10px;
}

.bg_footer {
  background-color: #0c40b4;
}

.white a {
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-wrapper {
  max-width: 1360px;
  padding: 60px 40px;
  margin: 0 auto;
}

.footer-logo {
  flex: 0 1 auto;
  position: relative;
  padding-right: 40px;
  margin-right: 40px;
}

.footer-link {
  flex: 1 1 auto;
  font-size: 0.85em;
  margin-bottom: 8px;
}

.footer-logo::after {
  content: "";
  height: 40px;
  border-right: 2px solid #feb228;
  display: inline-block;
  position: absolute;
  right: 0;
}

.bottomlink a {
  color: #0c40b4;
  margin-right: 20px;
  font-size: 12px;
}

.bottomlink a {
  text-decoration: underline;
}

.copyright {
  color: #fff;
  background: #fd6625;
  font-size: 10px;
  text-align: center;
  padding: 30px;
}

sekect :focus {
  outline: none;
}

.hover_img {
  margin-right: 15px;
}

.hover_img:last-child {
  margin-right: 0px;
}

.hover_img a {
  display: inline-block;
  height: 247px;
}

.hover_img a:hover img {
  box-shadow: 10px 10px #feb228;
  transition: 0.3s;
  transform: translate(-10px, -10px);
}

.bg_footer li {
  font-weight: bold;
}

.pagetop {
  display: inline-block;
  background: #fff;
  border: solid 1px #fd6625;
  width: 35px;
  height: 35px;
  border-radius: 20px;
  position: fixed;
  bottom: 20px;
  right: 20px;
}

.pagetop::after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 2px solid #fd6625;
  border-top: 2px solid #fd6625;
  display: inline-block;
  transform: rotate(-45deg);
  position: absolute;
  right: calc(50% - 2.5px);
  top: calc(50% - 2.5px);
}

.wrapper_title h2 {
  letter-spacing: 0.1em;
}

.ico_office_sp,
.ico_it_sp,
.ico_service_sp,
.ico_call_sp,
.ico_other_sp {
  display: none;
}

.recruit_tag {
  display: flex;
  margin-top: 20px;
}

.recruit_tag li {
  margin-right: 5px;
  display: inline;
}

.recruit_tag li:last-child {
  margin-right: 0px;
}

.recruit_tag li img {
  max-height: 24px;
}

.footer-wrapper_sp {
  display: none;
}

.bottomlink_inner {
  display: flex;
}

.oyakudati {
  margin-bottom: 60px;
}

.header_wrapper {
  display: flex;
  justify-content: space-between;
  max-width: 1360px;
  padding: 20px 80px;
  margin: 0 auto;
}

.header_logo_area_pc {
  display: flex;
  align-items: center;
}

.header_logo_area_sp {
  display: none;
}

.header_menu_top {
  justify-content: flex-end;
  margin-bottom: 35px;
  margin-right: -10px;
}

.header_menu_top li {
  padding: 0px 10px;
  line-height: 14px;
}

.header_menu_top li:first-child {
  border-right: 1px solid #4c5467;
}

.header_menu_top li a {
  font-size: 14px;
  font-weight: bold;
}

.header_menu_area {
  min-width: 700px;
}

.header_wrapper .header_menu_under li a {
  margin-left: 40px;
  color: #0c40b4;
  font-size: 16px;
  font-weight: bold;
}

.header_menu_under .active {
  position: relative;
}

.header_menu_under .active:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #feb228;
  position: absolute;
  bottom: 0;
  top: 35px;
  left: 50%;
}

.topic_path {
  background-color: #fafafa;
}

.topic_path ul {
  display: flex;
  font-size: 13px;
  width: 1200px;
  margin: 0 auto;
  padding: 15px 20px;
  position: relative;
}

.topic_path li {
  margin-right: 50px;
  font-weight: bold;
}

.topic_path li:last-child:after {
  display: none;
}

.topic_path li:after {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 2px solid #afbbd7;
  border-top: 2px solid #afbbd7;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  top: 24px;
  margin-left: 20px;
}

.topic_path a {
  color: #0c40b4;
}

.main_inner {
  width: 1040px;
  margin: 0 auto;
  margin-bottom: 100px;
}

form.modal_form h2 {
  text-align: center;
}

.modal_check {
  flex-wrap: wrap;
  display: flex;
  position: relative;
}

.modal_form .btn_medium_yellow {
  margin-top: 40px;
  background: #fffb48;
  color: #000000;
  width: 300px;
  font-size: 18px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 5px #b3af15;
  font-weight: bold;
  margin: 60px auto 10px auto;
  border: none;
}

.modal_form .btn_medium_yellow:hover {
  box-shadow: none;
  position: relative;
  top: 10px;
  cursor: pointer;
}

.modal_close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-weight: bold;
  color: #0c40b4;
  font-size: 16px;
}

.modal_close:hover {
  cursor: pointer;
}

.modal_close:before {
  content: "✕";
  position: absolute;
  top: 0px;
  right: 60px;
  color: #feb228;
  font-size: 22px;
}

.job_search {
  width: 1040px;
  margin: 0 auto;
  padding-top: 60px;
  margin-bottom: 60px;
}

.job_search p {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}

.btn_small_blue {
  background: #0c40b4;
  color: #fff;
  width: 200px;
  text-align: center;
  font-size: 14px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 5px #052c84;
  font-weight: bold;
  position: relative;
}

.btn_small_blue:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 12px;
  top: 20px;
}

.result_box {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #eff1f7;
  border-radius: 5px;
}

.result_box_inner {
  width: 70%;
}

.result_box_inner li span.item {
  color: #0c40b4;
  font-weight: bold;
  text-align: left;
  width: 100px;
  display: inline-block;
}

.result_box_inner li.items {
  color: black;
}

.result_box_inner li.items:after {
  content: "、";
  padding: 5px;
}

.result_box_inner li.items:last-child:after {
  content: none;
}

.result_box .flex_bet {
  justify-content: flex-start;
  padding: 5px 0;
}

.result_box .flex_item {
  display: flex;
  flex-wrap: wrap;
}

.job_result {
  border-top: 1px solid #afbbd7;
  padding: 70px 0px;
  text-align: center;
  font-size: 20px;
  color: #2251bb;
  font-weight: bold;
}

.job_result span {
  font-size: 35px;
  display: inline-block;
  margin: 0px 10px;
}

.pagination {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 13px 0px;
}

.pagination li {
  color: #2251bb;
  font-weight: bold;
}

.pagination li span {
  display: inline-block;
  width: 42px;
  height: 32px;
  text-align: center;
  margin: 0px 20px;
  color: #fff;
  background-color: #2251bb;
  font-weight: normal;
  padding-top: 5px;
}

.pagination ul {
  position: relative;
  margin-left: 15px;
  display: flex;
}

.pagination .wp-pagenavi ul:before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(-135deg);
  position: absolute;
  left: -18px;
  top: 18px;
}

.pagination .wp-pagenavi ul:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: -18px;
  top: 18px;
}

.wp-pagenavi a {
  color: #2251bb;
  font-weight: bold;
}

.wp-pagenavi .page.larger,
.wp-pagenavi .page.smaller,
.wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  text-align: center;
  margin: 0px 6px;
  color: #2251bb;
  background-color: #ffffff;
  font-weight: normal;
  border: 1px solid #2251bb;
}

.wp-pagenavi .previouspostslink {
  margin-right: 20px;
  padding-left: 20px;
}

.wp-pagenavi .nextpostslink {
  margin-left: 20px;
  padding-right: 20px;
}

.wp-pagenavi .current {
  color: #fff;
  background-color: #2251bb;
}

.wp-pagenavi {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 6px;
}

.wp-pagenavi .nextpostslink:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.wp-pagenavi .previouspostslink:before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(-135deg);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_point .flex {
  padding-top: 6px;
}

.result_sort_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.result_sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #eff1f7;
  border-radius: 5px;
  padding: 8px 5px;
}

.result_sort li button:hover {
  cursor: pointer;
}

.result_sort li {
  list-style-type: none;
  text-align: center;
  flex-grow: 1;
  font-weight: bold;
  color: #777d8b;
}

.result_sort button {
  list-style-type: none;
  text-align: center;
  flex-grow: 1;
  padding: 0px 15px;
  font-weight: bold;
  color: #777d8b;
  border-radius: 5px;
  border: none;
  background-color: #eff1f7;
}

.result_sort button:disabled {
  color: #2251bb;
}

.result_sort li + li {
  border-left: 1px solid #4c5467;
}

.recruit_ttl {
  background-color: #ffe0b0;
  display: block;
  z-index: -1;
  padding: 30px;
}

.recruit_ttl h2 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.5em;
  color: black;
}

.recruit_content span {
  background-color: #2251bb;
  position: absolute;
  padding: 7px 15px;
  border-radius: 5px;
  color: #fff;
  font-size: 13px;
  left: 40px;
  top: -1px;
  line-height: 1em;
}

.recruit_content span:before {
  border-style: solid;
  border-width: 7px 0px 7px 12px;
  border-color: transparent transparent transparent #2251bb;
  content: "";
  position: absolute;
  top: 55%;
  right: -8px;
  margin-top: -9px;
  display: block;
  width: 0px;
  height: 0px;
  z-index: 0;
}

.recruit_content {
  padding: 0;
  position: relative;
}

.col2 {
  display: flex;
  margin-top: 20px;
}

.job_result_lpanel {
  width: 40%;
}

.job_result_rpanel {
  width: 55%;
  margin-left: 40px;
}

.job_result_tbl {
  width: 100%;
  border: solid 1px #ffe0b0;
}

.job_result_tbl tr:last-child td,
.job_result_tbl tr:last-child th {
  border-bottom: none;
}

.job_result_tbl td,
.job_result_tbl th {
  border-bottom: 1px dotted #ffe0b0;
}

.job_result_tbl th {
  width: 20%;
  background-color: #fff2df;
  padding: 20px;
  font-weight: bold;
  text-align: left;
}

.job_result_tbl td {
  width: 80%;
  padding: 20px;
}

.btn_large_yellow {
  margin: 20px 0px 40px 0px;
  background: #fffb48;
  color: #000000;
  width: 100%;
  text-align: center;
  font-size: 16px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 5px #b3af15;
  font-weight: bold;
  position: relative;
}

.btn_large_yellow:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #535353;
  border-top: 2px solid #535353;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 20px;
  top: 20px;
}

.job_result_under_text {
  font-size: 12px;
  margin-top: 40px;
}

.recruit_details {
  margin-bottom: 40px;
  border-top: solid 2px #fd6625;
}

/*page design*/
.page_title {
  padding: 80px;
}

.page_title h1 {
  font-size: 28px;
  text-align: center;
  font-weight: bold;
  position: relative;
  line-height: 1.5em;
  letter-spacing: 0.1em;
}

.page_title h1:after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #feb228;
  position: absolute;
  bottom: -30px;
  left: 425px;
}

.page_contents {
  margin: 0px;
  color: black;
}

.page_contents p {
  line-height: 1.5em;
}

.page_contents h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #4c5467;
  line-height: 1.5em;
}

.page_contents .recruit_ttl h2 {
  color: black;
  margin-bottom: 0;
}

.page_contents h3,
.mw_wp_form_complete h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.5em;
}

.contents_box {
  margin-bottom: 60px;
}

.contents_text p .mw_wp_form_complete p {
  margin-bottom: 16px;
  line-height: 1.5em;
}

.complete {
  text-align: center;
  margin-bottom: 60px;
}

.complete p {
  margin-bottom: 20px;
}

.annotation p {
  font-size: 14px;
  margin-bottom: 14px;
  margin-top: 20px;
  color: #4c5467;
  line-height: 1.5em;
}

.strong_text {
  font-weight: bold;
  color: #0c40b4;
}

.page_contents a {
  font-weight: bold;
  border-bottom: solid 1px #a9acb3;
  color: #4c5467;
}

.page_contents a:hover {
  opacity: 0.8;
}

.button_text a {
  color: #2251bb;
  border-bottom: none;
  font-size: 16px;
}

.button_text a:hover {
  cursor: pointer;
}

.button_box {
  margin-left: 30px;
  position: relative;
  margin-top: 20px;
}

.button_box:after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  top: 7px;
  margin-left: 10px;
}

.colmun {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}

.colmun_box {
  margin-bottom: 40px;
}

.colmun_box p {
  font-size: 14px;
  margin-bottom: 14px;
  color: #4c5467;
}

.colmun_02 .colmun_box {
  width: 48%;
}

.colmun_03 .colmun_box {
  width: 32%;
}

.flow_text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 3px;
  height: 100%;
  right: 20px;
  z-index: 98;
  background: white;
}

.flow_text:last-child:after {
  content: none;
}

.flow_text:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  top: 0px;
  border-width: 60px 5px 60px 25px;
  border-style: solid;
  border-color: transparent transparent transparent #fff;
  right: -10px;
  z-index: 98;
}

.flow_text_boder:after {
  content: "";
  position: relative;
}

.flow_text_boder:before {
  content: "";
  position: absolute;
  height: 0;
  width: 0;
  top: 0px;
  border-width: 60px 5px 60px 25px;
  border-style: solid;
  border-color: transparent transparent transparent #eff1f7;
  right: -6px;
  z-index: 99;
}

.flow_box p {
  display: block;
  margin: 47px auto;
}

.flow_text {
  flex: 1;
  text-align: center;
  color: #0c40b4;
  font-size: 16px;
  font-weight: bold;
  height: 120px;
  position: relative;
}

.last_text:before,
.last_text:after,
.last_text .flow_text_boder:before,
.last_text .flow_text_boder:after {
  border: none;
}

.flow_box {
  display: flex;
  background-color: #eff1f7;
  position: relative;
}

.contents_flow {
  margin: 0 auto;
  max-width: 1040px;
  width: 100%;
  margin-bottom: 30px;
}

.colmun img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 5px;
}

.colmun h3 {
  color: #0c40b4;
  margin-bottom: 10px;
}

.contents_text {
  line-height: 1.5em;
}

/*ここからモーダル用*/
form.modal_form {
  background: #fff;
  margin: 170px auto;
  padding: 60px 70px;
  position: relative;
  border-radius: 5px;
  width: 1200px;
}

.modal {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1;
}

.modal_form dl {
  display: flex;
  margin-bottom: 20px;
}

.modal_form dt {
  display: block;
  background: #0c40b4;
  color: #fff;
  padding: 18px 20px;
  width: 240px;
  font-weight: bold;
  min-width: 240px;
  border-radius: 5px 0 0 5px;
  font-size: 16px;
}

.modal_form dd {
  padding: 5px 20px;
  color: black;
  font-weight: bold;
}

.modal_form .btn_large_yellow {
  position: absolute;
  bottom: 50px;
  width: 90%;
  margin: 0 auto;
  left: 0;
  right: 0px;
}

.check_design {
  display: block;
  position: relative;
  padding-left: 45px;
  margin: 12px 0 12px 0;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 18px;
}

.check_box {
  position: absolute;
  top: -3px;
  left: 0;
  height: 30px;
  width: 30px;
  border: solid 2px #b3b3b3;
  box-sizing: border-box;
}

input[type=checkbox] {
  display: none;
}

.check_box:after {
  content: "";
  position: absolute;
  left: 10px;
  top: -5px;
  width: 10px;
  height: 25px;
  border: solid #feb228;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
}

.check_design input:checked + .check_box {
  background-color: #fff;
}

.check_design input:checked + .check_box:after {
  opacity: 1;
}

.title_color {
  margin-bottom: 60px;
}

.annotation_12 {
  font-size: 12px;
  line-height: 1.5;
}

/*求人詳細*/
.page_contents .recruit_details {
  margin-top: 140px;
  margin-bottom: 20px;
}

.page_contents .job_result_rpanel {
  width: 100%;
  margin-left: 0px;
  padding-bottom: 60px;
}

.recruit_details form {
  margin: 0 auto;
  width: 530px;
  position: relative;
  margin-top: 60px;
  box-shadow: 0px 5px #b5790c;
  border-radius: 5px;
}

.recruit_details .submitButton,
.formItem .submitButton {
  background: #fd6625;
  color: #fff;
  width: 530px;
  text-align: center;
  font-size: 20px;
  display: block;
  align-items: center;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  border: none;
  padding: 20px;
  margin: 40px auto 0;
}

.formItem .correctionButton {
  background: #fff;
  border: solid 1px #feb228 !important;
  color: #feb228;
  width: 400px;
  text-align: center;
  font-size: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  font-weight: bold;
  position: relative;
  padding: 20px;
  border: none;
  margin: 40px auto 0;
}

.confirmationBox {
  display: flex;
  width: 900px;
  margin: 0 auto;
}

.mw_wp_form_confirm .submitButton {
  width: 400px;
}

.mw_wp_form_confirm .correctionButton_hover {
  position: relative;
  margin: 0 auto;
  width: 400px;
  margin-top: 60px;
  border-radius: 5px;
  box-shadow: 0px 5px #b5790c;
}

.mw_wp_form_confirm .formButton_hover {
  width: 400px;
}

.recruit_details form:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 3px solid #fff;
  border-top: 3px solid #fff;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 25px;
  bottom: 26px;
}

.mw_wp_form_confirm .formButton_hover:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 4%;
  top: 75px;
}

.mw_wp_form_confirm .correctionButton_hover:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 4%;
  top: 75px;
}

.backButton_box {
  margin-left: 30px;
  position: relative;
  margin-top: 20px;
}

.backButton_box a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #feb228;
  border-bottom: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  left: -25px;
  margin-left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.backButton_box a {
  color: #2251bb;
  border-bottom: none;
  font-size: 16px;
  font-weight: bold;
}

.contents_box + .button_box {
  text-align: left;
  margin-left: 30px;
}

.contents_box + .button_box:after {
  border-right: none;
  border-top: none;
}

.contents_box + .button_box a:before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid #feb228;
  border-bottom: 2px solid #feb228;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  left: -25px;
  margin-left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.page_contents .job_result_under_text {
  margin-top: 20px;
}

.page_contents .job_result_tbl th {
  width: 16%;
}

.page_contents .job_result_tbl td {
  width: 74%;
}

.recruit_inner .contents_box {
  margin-bottom: 20px;
}

.recruit_inner .button_text {
  position: relative;
}

.contents_box .btn_small_blue {
  margin: 0 auto;
  margin-top: 40px;
}

/*ここからFAQ用*/
.faq .main_inner {
  width: 100%;
  margin-bottom: 0px;
}

.question_anchor {
  width: 1040px;
  margin: 0 auto;
  margin-bottom: 60px;
}

.question_anchor ul {
  display: flex;
  justify-content: space-around;
  padding: 40px 30px;
  font-size: 16px;
  font-weight: bold;
}

.qacontent h2 {
  padding-top: 40px;
}

.list_circle {
  list-style: disc;
  margin-left: 20px;
}

.list_ordered {
  list-style-type: decimal;
  margin-left: 20px;
}

.list_ordered li {
  margin-bottom: 10px;
}

.bottom_arrow li {
  position: relative;
}

.bottom_arrow li:after {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: -20px;
  transform: rotate(135deg);
  display: inline-block;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  left: 43%;
  margin: 0 auto;
}

.qacontent {
  background-color: #eff1f7;
  padding: 40px 80px;
}

.question .qacontent {
  padding: 0px;
}

/*ここからアクセス用*/
.access .contents_box {
  display: table;
  margin: 0 auto;
}

.access .al_c {
  margin-bottom: 40px;
}

/*ここからフォーム用*/
.result_enbox {
  padding: 40px;
  background-color: #fff2df;
  margin-bottom: 60px;
  font-size: 24px;
}

.result_enbox p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
}

.result_enbox dt {
  display: flex;
  color: #0c40b4;
  font-weight: bold;
  width: 100px;
}

.result_enbox dl {
  display: flex;
}

form .formItem dl {
  display: flex;
  width: 100%;
  border-bottom: 1px dotted #c2cce1;
}

form .formItem dt {
  width: 20%;
  background-color: #fff2df;
  padding: 30px 35px;
  font-weight: bold;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  line-height: 1em;
}
form .formItem dt label{
  flex-basis: 60%;
}
form .formItem dd {
  width: 80%;
  padding: 15px 25px;
  line-height: 3em;
}

input[type=email]::-moz-placeholder, input[type=text]::-moz-placeholder {
  color: #AFADAD;
}

input[type=email]::placeholder,
input[type=text]::placeholder {
  color: #AFADAD;
}

.ico_required {
  color: #fe3728;
  border: solid 1px #fe3728;
  display: inline-block;
  padding: 2px 5px;
  font-size: 11px;
  flex-basis: 30%;
    text-align: center;
}

.mw_wp_form_confirm .ico_required {
  display: none;
}

.formItem dd input,
.formItem dd textarea {
  padding: 12px;
  border: solid 1px #b3b3b3;
  line-height: 2em;
  box-sizing: border-box;
}

.formItem dd select {
  padding: 12px 14px;
  border: solid 1px #b3b3b3;
  line-height: 1.7em;
  width: 100%;
  font-size: 16px;
}

.page_contents .mw_wp_form .error {
  font-size: 0.85em;
  color: #B70000;
  display: block;
  line-height: 1.75em;
}

.page_contents .mw_wp_form .formAgreement .error {
  margin-top: 10px;
}

.text_b {
  font-weight: bold;
  margin-right: 20px;
  margin-left: 10px;
}

.formItem dd input[type=radio] {
  display: none;
  transform: scale(2);
  border: solid 1px #b3b3b3;
  margin-top: 15px;
}

.formAgreement {
  margin: 60px 0px 40px 0px;
  text-align: center;
  line-height: 1.2em;
}

.formAgreement .inlineLink {
  font-weight: bold;
  border-bottom: solid 1px #a9acb3;
  color: #4c5467;
}

.mw_wp_form_confirm .formAgreement {
  display: none;
}

.btn_large_orange {
  margin: 20px 0px 40px 0px;
  background: #feb228;
  color: #FFFFFF;
  width: 530px;
  text-align: center;
  font-size: 16px;
  height: 60px;
  display: block;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  border: solid 1px #feb228;
  box-shadow: 0px 5px #b5790c;
  font-weight: bold;
}

.formButton_hover:after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #FFFFFF;
  border-top: 2px solid #FFFFFF;
  display: inline-block;
  transform: rotate(45deg);
  position: absolute;
  right: 4%;
  top: 75px;
}

.formButton_hover:hover .btn_large_orange {
  box-shadow: none;
}

.formButton_hover {
  position: relative;
  margin: 0 auto;
  width: 530px;
  margin-top: 62px;
  box-shadow: 0px 5px #bf3a00;
  border-radius: 5px;
}

.formButton_hover:hover,
.correctionButton_hover:hover {
  box-shadow: none;
  position: relative;
  top: 10px;
  cursor: pointer;
}

.formButton {
  text-align: center;
  position: relative;
}

.mwform-checkbox-field label,
.mwform-radio-field label {
  cursor: pointer;
}

.job-type .mwform-checkbox-field-text {
  position: relative;
  padding-left: 2.5em;
  margin-right: 10px;
  display: inline-block;
}

.formAgreement .mwform-checkbox-field-text {
  font-weight: bold;
  position: relative;
  padding-left: 2.5em;
  margin-bottom: 20px;
  display: inline-block;
}

.job-type .mwform-checkbox-field-text:before,
.formAgreement .mwform-checkbox-field-text::before {
  background: #fff;
  border: 1px solid #b3b3b3;
  content: "";
  display: inline-block;
  position: absolute;
  width: 1.7em;
  height: 1.7em;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.job-type .mwform-checkbox-field-text:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 25px;
  border: solid #feb228;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  top: 6px;
  bottom: 0;
  left: 12px;
}

.formAgreement .mwform-checkbox-field-text:after {
  content: "";
  position: absolute;
  width: 10px;
  height: 25px;
  border: solid #feb228;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
  opacity: 0;
  top: -8px;
  bottom: 0;
  left: 12px;
}

label input:checked + .mwform-checkbox-field-text:after {
  opacity: 1;
}

.formItem dl dd .textarea_wid {
  width: 100%;
  box-sizing: border-box;
}

.formItem dl dd .textarea_mwid {
  width: 17%;
}

.formItem dl dd .message_wid {
  display: inline-block;
  width: 100%;
  height: 12em;
  box-sizing: border-box;
  outline: none;
  resize: vertical;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form_birthWrap {
  display: flex;
}

.form_birthWrap > div {
  display: flex;
}

.form_birthWrap > div > div {
  width: 100%;
}

.form_birthWrap > div > div input {
  width: 100%;
}

.birtharea,
.formmonth,
.formday {
  flex: 1 1;
}

.mw_wp_form_confirm .birtharea,
.mw_wp_form_confirm .formmonth,
.mw_wp_form_confirm .formday {
  max-width: 6em;
}

.select::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: 4px;
}

.select_c::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(135deg);
  position: absolute;
  right: 20px;
  top: -5px;
  bottom: 0;
  margin: auto;
}

.mw_wp_form_confirm .select_c::after {
  display: none;
}

.form_careerWrap {
  display: flex;
}

.mw_wp_form_confirm .form_careerWrap {
  display: inline;
}

.select .Careerarea::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(135deg);
  position: absolute;
  right: 25px;
  top: 4px;
}

.text_b ::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid #feb228;
  border-top: 2px solid #feb228;
  display: inline-block;
  transform: rotate(135deg);
  position: relative;
  right: 30px;
  top: 0px;
}

.Careerarea {
  flex: 1 1 70%;
  margin-right: 20px;
}

.mw_wp_form_confirm .Careerarea,
.mw_wp_form_confirm .Careerarea_year {
  display: inline;
}

.Careerarea_year {
  flex: 1 1 30%;
  display: flex;
  align-items: center;
}

.select,
.select_c {
  position: relative;
}

.mwform-radio-field-text {
  position: relative;
  margin-right: 10px;
  padding-left: 35px;
  cursor: pointer;
}

.mwform-radio-field {
  display: inline-flex;
  margin-bottom: 5px;
}

.mwform-radio-field-text::before {
  background: #fff;
  border: 1px solid #b3b3b3;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 23px;
  width: 23px;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  margin: auto;
}

.mwform-radio-field-text::after {
  background: #0c40b4;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
  left: 5px;
  opacity: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  box-sizing: border-box;
  margin: auto;
  transition: 0.2s;
}

input[type=radio]:checked + span::after {
  opacity: 1;
}

.form_current {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #feb228 !important;
}

.form_current_list span {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #c3c7d3;
  margin-left: 25px;
}

.form_current_list {
  text-align: right;
}

.form_current_list .form_border::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #eff1f7;
  position: absolute;
  bottom: 12px;
  left: 25px;
}

.form_current_list .form_current::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ffffff;
  position: absolute;
  bottom: 6px;
  right: 6px;
}

.form_border {
  position: relative;
}

.form_current_list .form_border:last-child::after {
  display: none;
}

.form_current_list .form_current::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background-color: #ffe5b7;
  position: absolute;
  bottom: 12px;
  left: 25px;
}

.form_agree_box {
  height: 300px;
  width: 80%;
  overflow-y: scroll;
  background: #fafafa;
  padding: 20px;
  color: #585f60;
  box-sizing: border-box;
  margin: 30px auto 50px;
  text-align: left;
  font-size: 0.8em;
  border: 1px solid #f1f1f1;
}

.form_agree_box p {
  margin-bottom: 1em;
}

.form_agree_box p span {
  font-weight: bold;
}

.mylink {
  text-align: right;
  width: 280px;
  margin: 15px auto 0;
}

.mylink a {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
}

/* WPの黒いバー */
#wpadminbar {
  display: none;
}

/* フォームの小さいラジオボタン */
.small_radio .mwform-radio-field-text {
  font-size: 0.8rem;
  padding-left: 25px;
}

.small_radio .mwform-radio-field-text::before {
  height: 16px;
  width: 16px;
}

.small_radio .mwform-radio-field-text::after {
  height: 8px;
  width: 8px;
  left: 4px;
}/*# sourceMappingURL=style.css.map */