@charset "utf-8";
/* CSS Document */
/*==========================================
共通の設定
===========================================*/
@font-face {
font-family: 'BebasNeue';
src: url(../font/BebasNeue-Bold.ttf) format("truetype"),
url(../font/BebasNeue-Bold.otf) format("opentype"),
url(../font/BebasNeue-Regular.ttf) format("truetype"),
url(../font/BebasNeue-Regular.otf) format("opentype")
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
body {
  min-width: inherit;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
  font-weight: normal;
}
img {
  max-width: 100%;
  height: auto;
}
input[type="button"], input[type="text"], input[type="submit"] {
  -webkit-appearance: none;
}
.flex00 {
  display: flex;
  flex-wrap: wrap;
}
.flex01 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.flex02 {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.maw {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
}
.fwb {
  font-weight: bold;
}
/* デバイス*/
.pc_none {
  display: none;
}
.sp_none {
  display: block;
}
.sp_none960 {
  display: inline-block;
}
.pc_none480 {
  display: none;
}

@media screen and (max-width:960px) {
.sp_none960 {
  display: none;
}
}

@media screen and (max-width:767px) {
.pc_none {
  display: block;
}
.sp_none {
  display: none;
}
}
.pc_none640 {
  display: none;
}
.sp_none640 {
  display: block;
}

@media screen and (max-width:640px) {
.pc_none640 {
  display: block;
}
.sp_none640 {
  display: none;
}
}

@media screen and (max-width:480px) {
.pc_none480 {
  display: block;
}
.sp_none480 {
  display: none;
}
}
/*==========================================
ヘッダー
===========================================*/
#header_wrap {
}
#gnav_wrap {
  background: #1F2C5C;
  height: 90px;
  width: 100%;
  position: fixed;
  top: 0px;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 9;
}
#gnav_wrap.fixed {
  height: auto;
  top: 0;
  line-height: 50px;
}
#gnav_wrap.fixed .gnav_ul .gnav_li a {
  /*font-size: 14px;*/
  line-height: 1.4;
}
.recruit_nav {
  position: relative;
  /*height: 45px;*/
  z-index: 10;
}
.drop {
  overflow: auto;
}
.recruit_nav .gnav_ul {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
  display: flex;
  align-items: center;
}
.recruit_nav .gnav_li {
  text-align: center;
  height: 90px;
 flex-basis: calc(100% * 1/7);
  border-left: 1px solid #fff;
}
.recruit_nav .gnav_li:last-of-type {
  border-right: 1px solid #fff;
}
.recruit_nav .gnav_li a {
  z-index: 2;
  color: #FFF;
  background: #1F2C5C;
  font-size: 16px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 1%;
  font-weight: bold;
  transition: .1s all;
}
.recruit_nav .gnav_li.close a {
color: #8c8c8c;
}
.recruit_nav .gnav_li a:hover {
  background: #0425A2;
}
.recruit_nav .gnav_li.close a:hover {
  background: #1F2C5C;
}
.fixed .recruit_nav .gnav_li {
  height: 60px;
}

@media screen and (max-width: 1393px) {
.recruit_nav .gnav_ul {
  max-width: inherit;
  padding: 0 150px;
}
}
@media screen and (max-width: 1140px) {
#gnav_wrap.fixed .gnav_ul .gnav_li a {
  font-size: 14px;
}
}
@media screen and (max-width: 960px) {
.recruit_nav .gnav_ul {
  padding: 0 130px;
}
.recruit_nav .gnav_li a {
  font-size: 12px;
}

}

@media screen and (max-width: 767px) {
.recruit_nav .gnav_li a {
}
}

/*==========================================
メインエリア【NEW】
===========================================*/
.mainNew_area-head{
	background: #1B2C5F;
	padding:10px;
	text-align:center;
	border-top:1px solid #fff;
}
.mainNew_area-logo{
	max-width:409px;
	width: 100%;
	margin:0 auto;
}
@media screen and (min-width: 768px) {
  .mainNew_area-head.pc-none{
	display:none;
  }
}
@media screen and (max-width: 767px) {
  .mainNew_area-head{
	border-top:none;
  }
  .mainNew_area-head.sp-none{
	display:none;
  }
  .mainNew_area-logo{
	width:70%;
  }
}

.mainNew_photo-loop .mainNew_photo{
	display: flex;
}
.mainNew_photo-loop .mainNew_photo li{
	width:calc(100vw * 1/8);
	font-size:0;
}
.mainNew_photo-loop .mainNew_photo li img{
	width:100%;
}
@media screen and (min-width: 768px) {
 .mainNew_photo-loop{
	display: flex;
	overflow: hidden;
  }
  .mainNew_photo-loop.loop-left .mainNew_photo{
	animation: loop-left 50s linear infinite;
  }
  .mainNew_photo-loop.loop-right .mainNew_photo{
	animation: loop-right 50s linear infinite;
  }
}
@media screen and (max-width: 1500px) {
  .mainNew_photo-loop .mainNew_photo li{
	width:calc(100vw * 1/6);
  }
}
@media screen and (max-width: 1200px) {
  .mainNew_photo-loop .mainNew_photo li{
	width:calc(100vw * 1/4);
  }
}
@media screen and (max-width: 767px) {
  .mainNew_photo-loop .mainNew_photo{
	flex-wrap: wrap;
  }
  .mainNew_photo-loop .mainNew_photo:nth-of-type(2){
	display:none;
  }
  .mainNew_photo-loop .mainNew_photo li{
	width:calc(100% * 1/4);
  }
}
@keyframes loop-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
@keyframes loop-right {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0%);
  }
}

.mainNew_txtBlock{
	padding:45px 25px;
	max-width:1200px;
	width:100%;
	margin: 0 auto;
	color:#202C5C;
}
.mainNew_catch{
	text-align:center;
	font-weight:bold;
	font-size: clamp(36px,5.4vw,54px);
	line-height:1.4;
}
.mainNew_catch span{
	display:inline-block;
}
.mainNew_txt{
	margin-top:25px;
	letter-spacing: 0.05em;
	text-align:center;
	line-height:1.6;
}
.mainNew_txt p{
	font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .mainNew_txtBlock{
	padding:45px 2.5%;
  }
  .mainNew_txt{
  }
}
@media screen and (max-width: 576px) {
  .mainNew_txtBlock{
	padding:45px 4%;
  }
}
@media screen and (max-width: 410px) {
  .mainNew_txtBlock{
	padding:35px 25px;
  }
  .mainNew_catch{
	font-size: 32px;
  }
  .mainNew_txt{
	letter-spacing: normal;
	font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .mainNew_catch{
	font-size: 30px;
  }
  .mainNew_txt{
	font-size: 12px;
  }
}
/*==========================================
メインエリア
===========================================*/

#container_wrap {
  padding-top: 90px;
}
.recruit_sec {
}
.main_ttl_area {
  background: url(../../img/recruit/recruit_img01.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
}
.main_ttl_txt_area {
  max-width: 480px;
  width: 100%;
  margin: 0 0 0 auto;
/*  padding: 100px 0;*/
  padding: 50px 0;
}
.logo_area {
  margin-bottom: 30px;
}
.main_catch {
  font-weight: bold;
  line-height: 1.5;
  color: #1F2C5C;
  margin-bottom: 30px;
}
.main_catch_span {
  display: inline-block;
  width: 100%;
  bottom: 30px;
  font-size: 65px;
}
.main_catch_span02 {
  display: inline-block;
  width: 100%;
  text-align: right;
  bottom: 30px;
  font-size: 65px;
}
.main_catch_txt {
  font-weight: bold;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
#container_wrap {
  padding-top: 60px;
}
.main_ttl_area {
  background: none;
}
.main_ttl_txt_area {
  max-width: inherit;
  padding: 0;
}
.logo_area {
  margin-bottom: 10px;
}
.logo_area img {
  width: 40vw;
}
.main_catch {
  margin-bottom: 0px;
}
.sp_bg {
  display: block;
  background: url(../../img/recruit/recruit_img11.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
}
.sp_inner {
  display: block;
  margin: 0 0 0 auto;
  width: 60%;
  padding: 30px 0;
}
.main_catch_span {
  font-size: 8vw;
}
.main_catch_span02 {
  font-size: 8vw;
}
.main_catch_txt {
  padding: 2% 4%;
  line-height: 1.8;
  font-weight: 500;
}
}
/*==========================================
私たちの仕事
===========================================*/
.our_job_bg {
  background: #F7F8F8;
  padding: 75px 0;
}
.our_job_area {
  padding: 0 5%;
}
.our_job_main_ttl {
  background: #DFF2FC;
  color: #1F2C5C;
  max-width: 350px;
  width: 100%;
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.2em;
  position: relative;
  left: -6%;
  line-height: 1;
  padding: 25px 1%;
}
.our_job_inner_bg {
  background: #fff;
  padding: 40px 6%;
  margin-top: -50px;
}
.our_job_logo {
  text-align: right;
  margin-bottom: 50px;
}
.content_ttl {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 14px;
  line-height: 1.4;
  color: #1F2C5C;
  letter-spacing: 0.3em;
}
.our_job_area .content_ttl {
  letter-spacing: 0;
}
.our_job_txt {
  font-weight: bold;
  line-height: 2.25;
}

@media screen and (max-width: 767px) {
.our_job_bg {
  padding: 30px 0;
}
.our_job_main_ttl {
  font-size: 30px;
  padding: 20px 1%;
}
.our_job_inner_bg {
  margin-top: -30px;
}
.our_job_logo {
  margin-bottom: 25px;
}
.our_job_logo img {
  max-width: 200px;
}
.content_ttl {
  text-align: center;
}
.our_job_area .content_ttl {
  font-size: 4.5vw;
}
.our_job_txt {
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}
}

@media screen and (max-width: 480px) {
.our_job_area .content_ttl {
  font-size: 5.4vw;
}
}
/*ボタンの設定*/
.more_btn {
  text-align: center;
}
.more_btn a {
  display: inline-block;
  max-width: 180px;
  width: 100%;
  text-align: center;
  background: #1F2C5C;
  color: #fff;
  line-height: 1;
  padding: 20px 1%;
  letter-spacing: 0.05em;
  font-weight: bold;
}
.more_btn a:hover {
  opacity: 0.7;
}
.our_job_area .more_btn {
  text-align: right;
  margin-top: -56px;
}
.our_job_area .more_btn a {
  position: relative;
  right: -12%;
}

@media screen and (max-width: 767px) {
.our_job_area .more_btn {
  text-align: center;
  margin-top: 0px;
}
.our_job_area .more_btn a {
  right: 0%;
}
}
/*==========================================
社員紹介
===========================================*/
.staff_area {
  margin-bottom: 100px;
}
.staff_img_area {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.staff_img_ul {
  line-height: 1;
}
.staff_img_ul.ul02 {
margin-left: calc(-100% * 1/12);
width: calc(100% * 14/12 );
  margin-top: -2px;
}
.staff_img_li {
  text-align: center;
  line-height: 1;
 flex-basis: calc(100% * 1/6);
  min-width: 200px;
}
.staff_img_li_span {
  display: inline-block;
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 122%;
  overflow: hidden;
}
.staff_img_li_span img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1.1);
  transform: translate(-50%, -50%) scale(1.03);
  width: auto;
  height: 100%;
  max-width: inherit;
}
.ul02 .staff_img_li {
 flex-basis: calc(100% * 1/7);
}
.staff_info_area {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
  background: rgba(187,220,244,0.8);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.staff_info_inner {
  padding: 2%;
}
.staff_info_area .content_ttl {
  margin-bottom: 30px;
}
.staff_info_txt {
  font-weight: bold;
  letter-spacing: -0.03em;
  line-height: 2.25;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
.staff_area {
  margin-bottom: 50px;
}
.staff_info_area {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 70%;
  width: 100%;
  margin: auto;
}
.staff_info_txt {
  letter-spacing: 0;
  line-height: 1.8;
}
}
/*==========================================
数字で知る
===========================================*/
.by_number_area {
  margin-bottom: 100px;
  padding: 0 2%;
}
.by_number_flex {
  justify-content: center;
  align-items: center;
  max-width: 1250px;
}
.by_number_blc {
  flex-basis: 46%;
  margin: 0 2%;
  text-align: center;
}
.by_number_blc.blc01 {
  order: 3;
  padding: 65px 0;
}
.by_number_blc.blc02 {
  order: 1;
}
.by_number_blc img {
  width: 100%;
}
.by_number_area .content_ttl {
}
.by_number_txt {
  font-weight: bold;
  line-height: 2.25;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
.by_number_area {
  margin-bottom: 50px;
  padding: 0 2%;
}
.by_number_flex {
  display: block;
}
.by_number_blc {
  margin: 0 0%;
}
.by_number_blc.blc01 {
  padding: 0px 0;
  margin-bottom: 30px;
}
.by_number_blc.blc02 {
  padding: 0 10%;
}
.by_number_area .content_ttl {
}
.by_number_txt {
  line-height: 1.8;
  font-weight: 500;
}
}
/*==========================================
キャリアを描く リンクエリア
===========================================*/
.single_link_area {
  margin-bottom: 30px;
}
.single_link_ul {
  max-width: 1600px;
}
.single_link_li {
 flex-basis: calc(94% * 1/3);
  margin: 0 1%;
}
.single_link_li a {
  display: inline-block;
  width: 100%;
  position: relative;
  background: #000;
  height: 0;
  padding-bottom: 66.7%;
  z-index: 0;
  border: 1px solid #eee;
}
.single_link_li.link01 a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/recruit/recruit_img05.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 0;
  transition: .5s all;
}
.single_link_li.link02 a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/recruit/recruit_img06.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 0;
  transition: .5s all;
}
.single_link_li.link03 a::before {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: url(../../img/recruit/recruit_img07.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
  z-index: 0;
  transition: .5s all;
}
.single_link_li a:hover::before {
  opacity: 0.7;
}
.single_link_li.close a::after {
  content: "Coming soon...";
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  position: absolute;
  top: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  background: rgba(0,0,0,0.7);
  z-index: 100;
  width: 95%;
  height: 98%;
  padding-bottom: 1.5%;
  padding-right: 5%;
/*  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;*/
  letter-spacing: 0.05em;
}
.single_link_li_span {
  max-width: 285px;
  width: 100%;
  text-align: center;
  background: #1F2C5C;
  z-index: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 80px;
  padding: 20px 0px;
  left: 0;
  right: 0;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: .5s all;
}
.single_link_li a:hover .single_link_li_span {
  background: rgba(255,255,255,0.8);
  color: #1F2C5C;
}
.single_link_li_span02 {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 1em;
  color: #898989;
  font-size: 24px;
}
.single_link_li_span02 i {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 767px) {

/*  .single_link_li a {
    padding-bottom: 80%;
}*/
  .single_link_li_span {
    height: 50px;
    padding: 10px 0px;
    font-size: 16px;
}
  .single_link_li_span02 {
    font-size: 18px;
}
}
@media screen and (max-width: 640px) {
  .single_link_area {
padding: 0 4%;
}
  .single_link_ul {
display: block;
}
.single_link_li {
  margin: 0 0%;
}
/*    .single_link_li a {
    padding-bottom: 60%;
}*/
}
/*==========================================
私たちの求める人材像
===========================================*/
.human_resource_area {
  /*  background: url(../../img/recruit/recruit_img08.jpg) no-repeat top left;
  -webkit-background-size: cover;
  background-size: cover;*/
  position: relative;
}
.human_resource_area.tp2{
  flex-direction: row-reverse;
}
.human_resource_bg_area {
  flex-basis: 50%;
  position: relative;
}
.human_resource_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.human_resource_bg_span {
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../../img/recruit/recruit_img08.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
}
.human_resource_bg_span.tp2 {
  background: url(../../img/recruit/recruit_img08_a.jpg) no-repeat top center;
  -webkit-background-size: cover;
  background-size: cover;
}
.human_resource_bg img {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.human_resource_inner {
  /*width: 50%;*/
  flex-basis: 50%;
  margin: 0 0 0 auto;
  height: 100%;
  background: rgba(187,220,244,0.8);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.human_resource_cnt {
  padding: 90px 4%;
}
.human_resource_area .content_ttl {
}
.human_resource_txt {
  font-weight: bold;
  line-height: 2.25;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
.human_resource_area {
  background: none;
  display: block;
}
.human_resource_bg {
  text-align: center;
  position: static;
}
.human_resource_bg_span {
}
.human_resource_bg img {
  position: static;
  -webkit-transform: none;
  transform: none;
}
.human_resource_inner {
  width: 100%;
  margin: 0 auto;
}
.human_resource_cnt {
  padding: 45px 2%;
}
.human_resource_txt {
  line-height: 1.8;
  margin-bottom: 14px;
}
}

@media screen and (max-width: 480px) {
.human_resource_area .content_ttl {
  font-size: 6.7vw;
  letter-spacing: 0.1em;
}
.human_resource_txt {
  font-size: 14px;
}
}
/*==========================================
フッター
===========================================*/
.footer_logo {
padding-top: 30px;
}
.footer_logo a{
  display: inline-block;
  margin: 0 auto;
}
.footer_logo::before, .footer_logo::after{
  content: normal;
}
.footer_content {
    margin-top: 30px;
    padding: 0 2%;
  flex-wrap: wrap;
justify-content: space-around;

}
.footer_content_li{
  margin-bottom: 10px;
}
.footer_content a{
  color: #1F2C5C;
  padding: 10px 1em;
  font-weight: bold;
  letter-spacing: 0.002em;
}
.footer_content a:hover {
    color: rgba(220,152,49,1.00);
  text-decoration: underline;
}
.footer_content_li.close a{
  color: #8c8c8c;
}
.footer_content_li.close a:hover {
  color: #8c8c8c;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .sp-bottom-menu .recruit_bt_menu {
    overflow: hidden;
}
 .sp-bottom-menu .recruit_bt01{
    
  }
  .sp-bottom-menu  .recruit_bt01 a{
    display: inline-block;
      font-size: 12px;
      font-weight: bold;
      line-height: 1.6;
    background: #B8AB83;
  }
 .sp-bottom-menu .recruit_bt01_span{
    display: block;
    
    font-size: 16px;
  }
  .sp-bottom-menu li:nth-child(4) span {
    margin: 0px 0 0 0;
  }
.sp-bottom-menu li:nth-child(4) i {
    font-size: 20px;
}
}
@media screen and (max-width: 767px) {
 .sp-bottom-menu .recruit_bt01_span{
    display: block;
    
    font-size: 14px;
  }
  .sp-bottom-menu li:nth-child(4) i {
    font-size: 16px;
}
}

.footer-recruitLink{
	display:flex;
	justify-content: center;
	max-width:1200px;
	width:95%;
	margin: 0 auto 100px;
}
.footer-recruitLink li{
	max-width:171px;
	width:100%;
	text-align:center;
}

.footer-recruitLink li a{
	background: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 125px;
	box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.3);
	padding: 0 2%;
}
@media screen and (min-width: 768px) {
  .footer-recruitLink li:first-child{
	display:none;
  }
  .footer-recruitLink li:not(:last-child){
	margin-right: 35px;
  }
}
@media screen and (max-width: 767px) {
  .footer-recruitLink{
	width:92%;
	flex-wrap: wrap;
  }
  .footer-recruitLink li{
	width: 48%;
	max-width: none;
  }
  .footer-recruitLink li:first-child{
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: clamp(18px,2.4vw,24px);
	line-height: 1.4;
	background: #273861;
	color: #fff;
	font-weight: bold;
	box-shadow: 3px 3px 3px 0px rgba(0,0,0,0.3);
	border-radius: 10px 0 0 0;
  }
  .footer-recruitLink li:nth-of-type(2n+1){
	margin-right: 4%;
  }
  .footer-recruitLink li:nth-of-type(n+3){
	margin-top:4%;
  }
}
/*==========================================
三点リーダ
===========================================*/
.js-text-overflow {
  overflow: hidden;
  width: 100%;
  height: 3.4em;
}