@charset "utf-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing:    border-box;
  box-sizing:         border-box;
}

html {
  font-size: 100%;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

html,
button,
input,
select,
textarea {
  font-family:,'Futura',YuGothic,'Yu Gothic','Yu Gothic',sans-serif;
}

body {
color: #1A1A1A;
font-size: 12px;
line-height: 1.4;
margin: 0px;

}

body {
background-color: #FFFFFF;
}

p {
  margin: 0px;
}

a:link {
  color: #004CCA;
}

a:visited {
  color: #6219DB;
}

a:hover {
  color: #048ADE;
  text-decoration: none;
}

a:active {
  color: #048ADE;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul {
padding: 0px;
list-style: none;
margin:0;
}
.li {
  list-style: none;
}

h1{
    margin:0;
}

h2{
    margin:0;
    font-family: 'Futura_m',sans-serif;
    font-weight: 100;
    letter-spacing: 3px;
    font-size: 28.12px;
}

.oh {
    overflow: hidden;
}

.L {
    float: left;
}

.R {
    float: right;
}

.sp {
    display: none;
}

.pr {
  position: relative;
}

#menu {
    display: none;
}

.flex{
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
}
.flex-sb{
  flex-wrap: wrap;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flexbox;
  display: -moz-flexbox;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: -moz-flex;
  display: flex;
  justify-content: space-between;
}

.wrap{
  width: 1100px;
  margin:0 auto;
}

.top {
    height: 700px;
    background-image: url(/wp-content/uploads/2020/07/mainImage.png);
    background-position: center bottom;
    background-size: cover;
}
a.btn {
  display: block;
  text-decoration: none;
  list-style: none;
}

.wrap {
  width: 1100px;
  margin: 0 auto;
}

/*----------------(common)------------*/
.common_btn {
  width: 270px;
  height: 50px;
  border-radius: 40px;
  border: 2px solid #333333;
  position: relative;
  margin: 45px auto 0 auto;
}
.common_btn a {
  text-align: center;
  color: #333333;
  margin: auto;
  line-height: 48px;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: bold;
}
.common_btn a:after {
  content: '';
  display: inline-block;
  width: 17px;
  height: 12px;
  background-image: url(/wp-content/uploads/2020/07/service_arrow.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  top: 17px;
  right: 15px;
}
.common_btn:hover {
  background: #333333;
  transition: .3s;
}
.common_btn a:hover {
  color: #ffffff;
  transition: .3s;
}
.common_btn a:hover:after {
  width: 17px;
  height: 12px;
  background-image: url(/wp-content/uploads/2020/07/service_arrow_hover.png);
  transition: .3s;
}


/*------------------------(header)--------------------*/
.top_header{
    padding: 0;
    font-family: 'futura_m';
    position: absolute;
    width: 100%;
    top: 50px;
  z-index: 100000;
}

.header_wrap {
  width: 1215px;
  margin: auto;
}

.top_header li {
  list-style: none;
}
.top_header .header_logo {
  width: 180px;
}
.top_header .header_menu li a {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
  border-bottom: 0px;
  position: relative;
  text-align: center;
}
.top_header .header_menu li a span{
  font-size: 14px;
  font-weight: 500;
  display: block;
  font-family: Futura,sans-serif;'
}
.top_header .header_menu li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #555;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.2s;
}
.top_header .header_menu li a:hover:before {
  transform: scale(1, 1);
}
.top_header .header_menu li:not(:last-child) a {
  margin-right: 60px;
}

/*------------------------(top)-------------------*/
.top_top {
    padding: 34vh 0 18vh 0;
    position: relative;
    overflow: hidden;
}
/* .top_top .top_back {
    background-image: url(/wp-content/uploads/2020/07/top_back.png);
    background-size: cover;
    width: 1584px;
    height: 332px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    animation: subTitle 15s linear infinite;
    -webkit-animation: subTitle 15s linear infinite;
    bottom: 0;
    left: 0;
    margin: auto;
} */

.top_top .top_back {
    display: flex;
    flex-wrap: wrap;
    width: 100vw;
    height: 332px;
    overflow: hidden;
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    margin: auto;
}

 .top_top .top_back  .image {
  width: auto;
  height: 100%;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

.top_top .top_back .image:first-child {
  animation: loop 50s -25s linear infinite;
}

.top_top .top_back .image:last-child {
  animation: loop2 50s linear infinite;
}

.top_top .center ul li {
  color: #000000;
  text-align: center;
  font-family: Futura,sans-serif;'
}
.top_top .center ul li:nth-child(1){
  font-size: 28.2px;
  margin-bottom: 5px;
  letter-spacing: 2px;
  font-family: 'futura_m';
}
.top_top .center ul li:nth-child(2){
  font-size: 60.53px;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: 10px;
  font-family: 'futura_b';
}
.top_top .center ul li:nth-child(3){
  font-size: 18px;
  line-height: 30px;
  font-weight: bold;
}
.top_top .scroll {
  text-align: right;
  margin: 6vw 0 0;
  font-size: 14.67px;
  font-family: Futura,sans-serif;'
}
.top_top .scroll a {
writing-mode: vertical-rl;
    text-decoration: none;
    color: #000000;
    letter-spacing: 1.7px;
    background-image: url(/wp-content/uploads/2020/07/top_scroll.png);
    background-size: 32px;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 45px 8px 0 8px;
}
/* .top_top .scroll a:before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 32px;
  background-image: url(/wp-content/uploads/2020/07/top_scroll.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin: 0 0px 10px -11px;
} */

.top_top .copy {
    writing-mode: vertical-rl;
    position: fixed;
    top: calc( 50vh - 180px );
    left: 45px;
    z-index: 5;
}
/*---------------------------(about)-----------------*/
.top_about {
  padding: 93px 0 81px 0;
  background: url(/wp-content/uploads/2020/07/about_back.jpg) no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}

.top_about .wrap{
  position: relative;
  z-index: 2;
}

.top_about:before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F2F4F5;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  opacity: .9
}

.top_about .about_contents {
  writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode:vertical-rl;
  -moz-writing-mode:vertical-rl;
  color: #333333;
  margin: 0 auto;
  line-height: 60px;
  letter-spacing: 4px;
  width: 630px;
  max-width: 100%;

}
.top_about .about_contents h2 {
  font-size: 42.66px;
  margin: 10px 0 0 50px;
  letter-spacing: 13px;
  font-weight: 600;
}
.top_about .about_contents span {
 -webkit-text-orientation: upright;
  text-orientation: upright;
}
.top_about .about_contents p {
  font-size: 22px;
}

/*-------------------------(service)------------------------*/

.top_service {
  padding: 107px 0 0 0;
}
.top_service .wrap {
   position: relative;
   padding-bottom: 40px;
}
.top_service h2 {
  font-size: 28.12px;
  margin-bottom: 23px;
  color: #333333;
  text-align: left;
  font-weight: 100;
  letter-spacing: 3px;
}

.top_service p {
  font-size: 16px;
  font-family: 'futura_b';
  font-weight: bold;
  margin-bottom: 30px;
}

.top_service .text ul li {
  font-size: 22px;
  color: #333333;
  text-align: left;
}
.top_service .text ul.bg_font li {
  font-weight: bold;
  font-size: 20px;
}
.top_service .text ul.bg_font li:nth-child(1) {
  margin-bottom: 10px;
}
.top_service .text ul.bg_font li:nth-child(2) {
  margin-bottom: 40px;
}
.top_service .text ul.sm_font li{
  font-size: 15px;
}
.top_service .text ul.sm_font li:nth-child(1) {
  margin-bottom: 10px;
}
.top_service .contents {
  margin: 54px 0 0 0;
}
.top_service .contents ul {
  justify-content: center;
}
.top_service .contents ul li {
  margin:  auto;
}
.top_service .contents ul li div {
  width: 88px;
  height: 82px;
  margin: auto;
}
.top_service .contents ul li span {
  margin-top: 10px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.top_service .back {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 485px;
  height: 397px;
  z-index: -1;
}


/*------------------------------(information)-------------*/
.information {
  padding: 170px 0 150px 0;
}
.information .s_headline {
  color: #333333;
  margin-bottom: 100px;
}
.information .s_headline h2 {
  font-size: 28.12px;
  margin-bottom: 23px;
}
.information .s_headline p {
  font-size: 16px;
  font-family: 'futura_b';
  font-weight: bold;
}
.information .contents ul li {
  width: 31%;
  color: #333333;
  transition: .3s;
}
.information .contents ul li:hover {
  opacity: .7;
}
.information .contents ul li a {
  color: #333333;
}
.information .contents ul li:not(:last-child){
  margin-right: 34px;
}

.information .contents ul li .img01 {
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 200px;
  background: #f0f0f0;
  overflow: hidden;
}

.information .contents ul li .img01 img {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
}

.information .contents ul li:hover .img01 img {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.information .contents ul li .news_text {
  font-size: 16px;
  margin: 23px 0 0 0;
  padding-left: 15px;
  font-weight: bold;
  border-left: 2px solid #333333;
  width: 290px;
}
.information .contents ul li .date {
  font-size: 14px;
  margin-top: 17px;
  font-family: 'DIN Condensed',sans-serif;
  letter-spacing: 2px;
}
.information .contents ul li .date span {
  margin-right: 15px;
  font-weight: bold;
  letter-spacing: 4px;
}

/*---------------------------(リクルート)----------------*/

.recruit {
  
}
.recruit .wrap {
  background: none;
padding: 0;
  align-items: center;
}
.recruit .left {
  width: 550px;
}
.recruit .left h2 {
  font-size: 28.12px;
  margin-bottom: 23px;
}
.recruit .left .recruit_inf {
  font-size: 20px;
  letter-spacing: 3px;
  margin-bottom: 10px;
  font-family: 'futura_m';
  font-weight: 600;
}
.title_p{
  font-size: 16px;
  font-family: 'futura_b';
  font-weight: bold;
}

.recruit .left .title_p{
  margin-bottom: 35px;
}

.recruit .left p {
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

.recruit .right {
  width: 350px;
  height: 350px;
  margin-left: 125px;
  background-color: #F2F4F5;
  padding: 100px 80px;
  background-color: 
}
.recruit .right .img {
  width: 104px;
  height: 85px;
  margin: auto;
}

.recruit .right p {
  color: #C3C5C5;
  font-size: 24.39px;
  font-weight: bold;
  text-align: center; 
  font-family: 'DIN Condensed',sans-serif;
  margin-top: 20px;
  letter-spacing: 5.5px;
}

/*---------------------(contact)------------------------*/
.contact {
  padding: 100px 0;
}
.contact .left {
  width: 59%;
  margin-right: 145px;
  font-weight: bold
}
.contact .left p {
  font-size: 15px;
  color: #333333;
  margin-top: 35px;
  line-height: 30px;
  letter-spacing: 1.2px;
}
.contact .right {
  width: 27%;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.5px;
}
.contact .right ul li:nth-child(1) {
  margin-top: 20px;
  font-size: 18px;
  letter-spacing: 3px;
}
.contact .right ul li:nth-child(2) {
  margin-top: 13px;
}
.contact .right ul li:nth-child(3) {
  margin-top: 8px;
}
.contact .right ul li:nth-child(4) {
  margin-top: 8px;
}
.contact .right ul li:nth-child(5) {
  margin-top: 8px;
}
/*-------------------------(フッター)--------------------------*/
footer{
  padding: 70px 0;
  background-color: #1A1A1A;
}

footer .logoWrap .ft_info{
  color: #fff;
  margin-left: 25px;
}

footer .logoWrap .ft_info li{
  line-height: 2;
}

footer .wrap a {
  color: #C9C9C9;
}
footer .img {
  width: 202px;
  margin: 0 auto;
  padding-top: 35px;
}

footer .ft_link h3{
  color: #fff;
  font-size: 14px;
  margin: 0;
  margin-bottom: .5em;
}

footer .ft_link li{
  line-height: 2;
}

footer .ft_link ul li a:before{
  content: "・";
}

footer .ft_link ul li a.type02{
  background-color: #fff;
  color: #1A1A1A;
  line-height: 35px;
  margin: 10px 0;
  padding: 0 30px;
  padding-right: 40px;
  position: relative;
}

footer .ft_link ul li a.type02:after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 10px;
  background-image: url(/wp-content/uploads/2020/07/service_arrow.png);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  position: absolute;
  top: 12px;
  right: 15px;
}

footer .ft_link ul li a.type02:before{
  display: none;
}

footer .footer_top ul li{
  position: relative;
}

footer .footer_top {
  margin-bottom: 32px;
}
footer .footer_top ul {
  width: 750px;
  margin: 0 auto;
}
footer .footer_top ul li a{
  font-size: 15px;
}
footer .footer_bottom ul {
  justify-content: center;
}
footer .footer_bottom ul li{
  display: flex;
}
footer .footer_bottom ul li a{
  font-size: 10px;
}
footer .footer_bottom ul li:nth-child(1)::after {
  content: '/';
  color: #E3E3E3;
  display: inline-block;
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  margin: 0 16px;
}
footer .footer_top li a:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.2s;
}
footer .footer_top li a:hover:before {
  transform: scale(1);
}

.serviceList ul li .ttl span {
    display: inline-block;
    width: 100px;
    color: #fff;
    background-color: #479fd8;
    height: 40px;
    line-height: 40px;
    text-align: center;
    font-weight: 600;
    border-radius: 10px;
    margin-right: 30px;
    font-size: 16px;
}

.serviceList .main_text{
  margin-bottom: 50px;
}

.serviceList .main_text h2{
  font-size: 25px;
  margin-bottom: .5em;
  font-weight: bold;
  letter-spacing: 1px;
}

.serviceList .main_text p{
  font-size: 15px;
  line-height: 1.8;
}

.serviceList ul li .ttl p {
    align-items: center;
    font-weight: 600;
    line-height: 1.5;
    font-size: 18px;
}

.serviceList ul li .ttl {
    margin-bottom: 50px;
    border-bottom: 2px solid #f2f2f2;
    padding-bottom: 20px;
}

.serviceList ul li .img {
    width: 450px;
    margin: 0 auto 50px auto;
    position: relative;
}

.serviceList ul li .img img {
    width: 100%;
}

.spage_ervice_company .ttl {
    border-bottom: 0 !important;
    padding-bottom: 0 !important;
    margin-bottom: 30px !important;
    background-color: #f2f2f2;
    width: 300px;
    text-align: center;
    line-height: 30px;
    font-weight: 600;
    margin: 0 auto;
}

.spage_ervice_company .imgbox {
    align-items: center;
    justify-content: center;
}

.spage_ervice_company .imgbox .img {
    margin: 0 50px 0 0;
    width: 300px;
  position:relative;
  overflow:hidden;
  height:160px;
}

.spage_ervice_company .imgbox .img img{
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top:0;
  bottom:0;
  right:0;
  left:0;
  margin:auto;
  display: block;
}

.spage_ervice_company .imgbox .text {
    font-size: 16px;
  width:51%;
}

.spage_ervice_company .imgbox .text span {
    display: block;
    text-align: center;
    font-weight: 600;
}

.spage_ervice_company {
    margin-bottom: 50px;
}

.page_service_textbox div {
    width: 47%;
}

.page_service_textbox div .text01 span {
    display: block;
}

.page_service_textbox .text01 span {
    display: block;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 5px;
}

.page_service_textbox .text02 {
    background-color: #f3f3f3;
    padding: 40px;
}

.page_service_textbox .text02 p {
    margin-bottom: 7px;
    background-image: url(/wp-content/uploads/2020/07/service_icon.png);
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: center left;
    padding-left: 30px;
}

.page_service_textbox .text02 p:last-child {
    margin-bottom: 0;
}

.page_service_textbox {
    align-items: center;
}

.spage_ervice_companyBox .spage_ervice_company {
    width: 48%;
    border: 1px solid #f2f2f2;
    padding: 20px 0;
}

.spage_ervice_companyBox .spage_ervice_company .imgbox .img {
    width: 50%;
    margin: 0 auto;
}

.spage_ervice_companyBox .spage_ervice_company .imgbox .text {
    width: 100%;
    text-align: center;
}

.spage_ervice_company .imgbox .text.jobalk {
    text-align: justify;
}

.spage_ervice_company .imgbox .text.jobalk span {
    text-align: left;
    margin-bottom: 5px;
}

.jobalk_img {
    width: 900px;
    margin: 0 auto;
}

.serviceList ul li {
    margin-bottom: 50px;
}

.serviceList ul li:last-child {
    margin-bottom: 0;
}

.jobalk_textbox .jobalk_text {
    width: 48%;
}

.jobalk_textbox .jobalk_text .ttl span {
    display: inline-block !important;
    margin-right: 10px;
    width: auto;
    padding: 0 15px;
}

.jobalk_textbox .jobalk_text .ttl {
    font-weight: 600;
    margin-bottom: 20px;
}

.jobalk_textbox {
    margin-top: 30px;
}

.jobalk_textbox .jobalk_text .text {
    font-size: 14px;
    text-align: justify;
}

section.recruit_top{
  padding: 150px 0 170px 0;
}

section.recruit_top .contactBox{
  width: 48%;
  text-align: center;
  border: 3px solid #F2F4F5;
  padding: 80px 30px 50px 30px;
  position: relative;
}

section.recruit_top .contactBox h2{
  background-color: #F2F4F5;
  color: #333333;
  font-size: 18px;
  line-height: 60px;
  width: 70%;
  position: absolute;
  left: 15%;
  top: -32px;
  margin: 0;
  font-weight: 600;
  letter-spacing: .1em;
}

section.recruit_top .contactBox p{
  margin-bottom: 15px;
  text-align: left;
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1.2px;
  line-height: 1.8;
}

/* アニメーション設定 */
.arrowWrap01 {
  position: absolute;
  right: 240px;
  top: 140px;
  height: 200px;
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.arrowWrap02 {
  position: absolute;
  left: 60px;
  top: 80px;
  height: 100px;
}

li#consul .arrowWrap02 {
  top: 50px;
}

li#consul .arrowWrap01{
  top: 130px;
}

#web .arrowWrap01{
  top: 130px;
}

#web .arrowWrap03{
  top: 60px;;
}

#web .arrowWrap04{
  top: 70px;
}

.arrowWrap03 {
  position: absolute;
  right: 50px;
  top: 80px;
  height: 100px;
}

.arrowWrap04 {
  position: absolute;
  left: 60px;
  top: 80px;
  height: 100px;
  -moz-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.arrowWrap02 .arrow,
.arrowWrap03 .arrow,
.arrowWrap04 .arrow{
  height: 100px;
}

.arrowInner p {
  font-size: 12px;
  text-align: end;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.arrow {
  width: 10px;
  height: 150px;
  position: relative;
  overflow: hidden;
}

.arrowInner{
  position: relative;
}

.arrowInner:after{
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13.0px 7.5px 0 7.5px;
  border-color: #595959 transparent transparent transparent;
  position: absolute;
  left: 2px;
  top: -1px;
  -webkit-animation: arrow02 2.5s ease 0s infinite normal;
  animation: arrow02 2.5s ease 0s infinite normal;
}

.arrow::before {
  content: '';
  width: 10px;
  height: 150px;
  margin: 50px auto 0;
  background-color: #595959;
  position: absolute;
  top: -200px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

.arrowWrap02 .arrow::before,
.arrowWrap03 .arrow::before,
.arrowWrap04 .arrow::before{
  -webkit-animation: arrow04 2.5s ease 0s infinite normal;
  animation: arrow04 2.5s ease 0s infinite normal;
}

.arrowWrap02 .arrowInner:after,
.arrowWrap03 .arrowInner:after,
.arrowWrap04 .arrowInner:after{
  -webkit-animation: arrow03 2.5s ease 0s infinite normal;
  animation: arrow03 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 150px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 150px, 0);
  }
}

@keyframes arrow04 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}


@keyframes arrow02 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 150px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 150px, 0);
  }
}

@keyframes arrow03 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 150px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}


@media (max-width: 750px) {

.pc {
  display: none;
}

.sp {
  display: block;
}

/*spmenu~*/
.sp_hd {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
    height: 50px;
    background-color: #fff;
}
.sp_pr {
    position: relative;
}
.slicknav_menu .slicknav_menutxt {
    display: none !important;
}
.slicknav_menu .slicknav_icon {
    width: 100%;
    margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
    width: 25px !important;
    height: 3px !important;
}
a.slicknav_btn {
    background: #fff;
    border-radius: 0px;
}
/*SPMENU kurukuru*/
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
    top: 5px;
    -moz-transform: rotate(405deg);
    -webkit-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
    position: absolute;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(3) {
    top: 0.4px;
    -moz-transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
    -o-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    transform: rotate(-405deg);
    position: absolute;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}
span.slicknav_icon-bar {
    transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
}
.slicknav_menu .slicknav_icon {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    position: relative;
}
/*kokomade*/
.slicknav_menu .slicknav_menutxt {
    display: none;
}
.slicknav_menu {
    background-color: #fff;
}
a.slicknav_btn {
    margin: 12px 3px 3px 0px;
    padding: 0px 0 0 0px;
    height: 25px;
    width: 25px;
}
.slicknav_menu .slicknav_icon {
    height: 16px !important;
    display: block;
}
.slicknav_menu .slicknav_icon:after {
    display: block;
    font-size: 70%;
    color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    margin: 0 auto;
}
.slicknav_nav a {
    color: #333 !important;
    display: inline-block;
    font-weight: bold;
    line-height: 2;
    width: 49%;
    text-align: left;
    margin: 0;
    letter-spacing: normal;
    font-size: 80%;
    border: solid #ccc;
    border-width: 0 0px 1px 0;
    line-height: 30px;
    background-image: url(/wp-content/uploads/2020/07/sp_yaji.png);
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-left: 25px;
}
.slicknav_nav a.last{
  width: 100%;
}
.slicknav_nav a:hover {
    background: #ffffff;
    color: #222;
}
/*~spmenu*/
.sp_hd_logo {
    position: absolute;
    width: 170px;
    top: 12.5px;
    left: 5px;
}

.sp_hd_tel {
    position: absolute;
    width: 0px;
    top: 12.5px;
    right: 5px;
}

.sp_hd_mail {
    position: absolute;
    width: 0px;
    top: 12.5px;
    right: 5px;
}
.header_wrap{
  max-width: 90%;
  margin: auto;
}
.wrap{
  max-width: 90%;
  margin: auto;
}
/*---------------------------(common)------------------*/
.common_btn {
    width: 90%;
    height: 55px;
    margin: 30px auto 0 auto;
}
.common_btn a {
    line-height: 55px;
    font-size: 15px;
}
.common_btn a:after {
    top: 20px;
}
h2 {
  font-size: 25.12px;
}

/*------------------------------(top_top)--------------------------*/
.top_top {
    padding: 15vw 0;
}
.top_top .center ul li:nth-child(1) {
    font-size: 20.2px;
    margin-bottom: 12px;
    letter-spacing: 2px;
    line-height: 30px;
}
.top_top .center ul li:nth-child(2) {
    font-size: 40.53px;
    margin-bottom: 20px;
    letter-spacing: 6px;
    line-height: 45px;

}
.top_top .center ul li:nth-child(4) {
    font-size: 14px;
    line-height: 25px;
    font-weight: bold;
}
.top_top .scroll {
    margin: 2vw 10px 0 0;
    font-size: 14.67px;
}
.top_top .scroll a:before {
    width: 25px;
    height: 25px;
    margin: 0 0px 5px -7px;
}


/*---------------------------------(about)---------------------*/
.top_about {
    padding: 15vw 0;
}

.top_about .about_contents {
    letter-spacing: 3px;
    line-height: 0;
}
.top_about .about_contents h2 {
    font-size: 30.66px;
    margin: 5px 0 0 20px;
    letter-spacing: 10px;
}
.top_about .about_contents p {
    font-size: 16px;
    line-height: 9vw;
}

/*------------------------------(service)------------------------*/
.top_service {
    padding: 15vw 0 0 0;
}
.top_service h2 {
    font-size: 25.12px;
    margin-bottom: 35px;
}
.top_service .text ul li {
    font-size: 17px;
}
.top_service .text ul.bg_font li {
    font-size: 18px;
}
.top_service .text ul.bg_font li:nth-child(1) {
    margin-bottom: 15px;
}
.top_service .text ul.bg_font li:nth-child(2) {
    margin-bottom: 20px;
}
.top_service .text ul.sm_font li {
    font-size: 13px;
}
.top_service .text ul.sm_font li:nth-child(1) {
    margin-bottom: 10px;
}
.top_service .text ul.sm_font li {
    width: 90%;
    margin: auto;
    text-align: left;
}
.top_service .contents {
    margin: 10vw 0 0 0;
}
.top_service .contents ul li {
    margin: auto;
    width: 50%;
}
.top_service .contents ul li:not(:last-child) {
    padding-bottom: 25px;
}
.top_service .contents ul li div {
    width: 55px;
    height: 52px;
}
.top_service .contents ul li span {
    margin-top: 5px;
    font-size: 14px;
    text-align: center;
}
.top_service .back {
    width: 56vw;
    height: auto;
}

/*-------------------------------(information)--------------------*/
.information {
    padding: 15vw 0;
}
.information .s_headline {
    margin-bottom: 25px;
}
.information .s_headline h2 {
    font-size: 25.12px;
    margin-bottom: 15px;
}
.information .s_headline p {
    font-size: 15px;
}
.information .contents ul li {
    width: 100%;
}
.information .contents ul li:not(:last-child) {
    margin-right: 0;
    margin-bottom: 25px;
}
.information .contents ul li a .adjustment {
    width: 55%;
    margin: auto;
}
.information .contents ul li .news_text {
    font-size: 14px;
    margin: 10px 0 0 0;
    padding-left: 10px;
    width: 100%;
}
.information .contents ul li .date {
    font-size: 12.39px;
    margin-top: 3px;
}
.information .common_btn {
    margin: 35px auto 0 auto;
}

/*--------------------------------(recruit)---------------------------*/
.recruit .wrap {
  padding: 0;
  background: none;
}
.recruit .left {
    width: 100%;
}
.recruit .left h2 {
    margin-bottom: 25px;
}
.recruit .left .recruit_inf {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}
.recruit .left p {
    font-size: 14px;
    letter-spacing: 1px;
}
.recruit .right {
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 40px 0px;
    margin-top: 5vw;
}
.recruit .right p {
    font-size: 22.39px;
    margin-top: 12px;
    letter-spacing: 4.5px;
}
/*-----------------------------(contact)--------------------------*/
.contact {
    padding: 15vw 0;
}
.contact .left {
    width: 100%;
    margin-right: 0;
}
.contact .left p {
    font-size: 14px;
    margin-top: 25px;
    line-height: 25px;
}
.contact .right {
    width: 100%;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.contact .right ul li:nth-child(1) {
    margin-top: 20px;
    font-size: 18px;
    letter-spacing: 3px;
}
.contact .right ul li:nth-child(2) {
    margin-top: 5px;
}
.contact .right ul li:nth-child(3) {
    margin-top: 5px;
}
.contact .right ul li:nth-child(4) {
    margin-top: 5px;
}
.contact .right ul li:nth-child(5) {
    margin-top: 5px;
}
/*---------------------------------(footer)--------------------------*/
footer {
    padding: 8vw 0;
}
footer .img {
    width: 45vw;
    margin-bottom: 0px;
    padding: 0;
}
footer .footer_top {
    margin-bottom: 0px;
}
footer .footer_top ul {
    display: none;
}
footer .footer_bottom {
  display: none;
}
footer .copy {
    margin-top: 4vw;
    font-size: 10px;
    text-align: center;
    display: block;
    color: #ffffff;
}
  
.serviceList ul li .ttl span {
    margin-right: 0;
    display: block;
    margin-bottom: 2vw;
    font-size: 13px;
    line-height: 30px;
    height: 30px;
    border-radius: 5px;
}

.serviceList ul li .ttl p {
    font-size: 15px;
    display: block;
}

.serviceList ul li .ttl {
    margin-bottom: 8vw;
    padding-bottom: 2vw;
}

.serviceList ul li .img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 8vw auto;
}

.spage_ervice_company .ttl {
    width: 100%;
    margin-bottom: 5vw !important;
}

.spage_ervice_company .imgbox .img {
    width: 100%;
    height: 20vw;
    margin-bottom: 4vw;
    margin-right: 0;
}

.spage_ervice_company .imgbox .img img {
    width: 60%;
}

.spage_ervice_company .imgbox .text {
    width: 100%;
}

.spage_ervice_company {
    margin-bottom: 5vw;
}

.page_service_textbox div {
    width: 100%;
}

.page_service_textbox .text01 {
    margin-bottom: 5vw;
    font-size: 15px;
    text-align: justify;
}

.page_service_textbox .text01 span {
    font-size: 16px;
    margin-bottom: 0vw;
}

.page_service_textbox .text02 {
    padding: 5vw;
}

.serviceList ul li {
    margin-bottom: 12vw;
}

.spage_ervice_companyBox .spage_ervice_company {
    width: 100%;
    padding: 5vw;
}

.spage_ervice_company .imgbox .text.jobalk {
    font-size: 14px;
}

.jobalk_img {
    width: 100%;
}

.jobalk_textbox {
    margin-top: 5vw;
}

.jobalk_textbox .jobalk_text {
    width: 100%;
}

.jobalk_textbox .jobalk_text:first-child {
    margin-bottom: 5vw;
}

.jobalk_textbox .jobalk_text .ttl span {
    display: block !important;
    width: 100%;
}

.jobalk_textbox .jobalk_text .ttl {
    margin-bottom: 3vw;
}

section.recruit_top .contactBox{
  width: 100%;
  padding: 15vw 5vw 10vw 5vw;
}

section.recruit_top .contactBox h2{
  font-size: 4vw;
  line-height: 15vw;
  width: 80%;
  left: 10%;
  top: -8vw;
  margin: 0;
  font-weight: 600;
  letter-spacing: .1em;
}


section.recruit_top .contactBox p{
  margin-bottom: 5vw;
  font-size: 4vw;
}

section.recruit_top .contactBox.type-recruit{
  margin-bottom: 20vw;
}

section.recruit_top{
  padding: 15vw 0;
}

.recruit{
  padding-bottom: 15vw;
}

footer .ft_link{
  display: none;
}

footer .fl_wrap{
  justify-content: center;
}

.serviceList .main_text h2{
  font-size: 20px;
  line-height: 1.8;
}

.serviceList .main_text p{
  font-size: 14px;
}


 .top_top .top_back  .image {
  width: 100%;
  height: 50%;
}

.top_top .top_back .image:last-child {
  animation: loop 50s -25s linear infinite;
}

/** スマホメニュー start **/
nav.menu02      {width: 30px; height: 40px;top: 10px;bottom: 0;right: 4%;position:fixed;cursor:pointer;overflow:hidden;z-index:9999;}
nav .menu1      {width: 30px;height: 3px;background-color: #048ADE;top: 2px;position:absolute;left: 0;right: 0;margin: auto;} 
nav .menu2      {width: 30px;height: 3px;background-color: #048ADE;top: 12px;position:absolute;left: 0;right: 0;margin: auto;} 
nav .menu3      {width: 30px;height: 3px;background-color: #048ADE;top: 22px;position:absolute;left: 0;right: 0;margin: auto;}
nav .menu4      {font-size: 10px;position: absolute;bottom: 0;left: 0;right: 0;text-align: center;color: white;}
nav .menu1,nav .menu2,nav .menu3 {; transition: all 0.5s ease-out; -o-transition: all 0.5s ease-out; /* Opera */ -moz-transition: all 0.5s ease-out; /* Firefox */
               -webkit-transition: all 0.5s ease-out; /* GoogleChrome, Safari */ -ms-transition: all 0.5s ease-out; /* IE */ }
               nav .menuclick1    {
              top: 16px;
              -o-transform: rotate(405deg);
              -moz-transform: rotate(405deg);
              -webkit-transform: rotate(405deg);
              -ms-transform: rotate(405deg);
              transform: rotate(405deg);
              }
    nav .menuclick2   { background-color:rgba(255,255,255,0);  }
    nav .menuclick3   {
              top: 16px;
              -o-transform: rotate(-405deg);
              -moz-transform: rotate(-405deg);
              -webkit-transform: rotate(-405deg);
              -ms-transform: rotate(-405deg);
              transform: rotate(-405deg);
              }
              #menu02{
                width: 100%;
                display: none;
                right: 0px;
                top: 50px;
                margin: 0;
                right: 0;
                list-style-type: none;
                z-index: 9990;
                position: fixed;
                background: white;
    }/*by misallychan.com*/
    #menu02 a{
      display: inline-block;
      color: #1a1a1a;
      padding-left: 2%;
      background-size: 9px auto;
      background-position: 10px;
      font-size: 12px;
      font-weight: 600;
      margin: 0px 0 0px 0;
      width: 100%;
      height: 60px;
      line-height: 60px;
      position: relative;
      border-bottom: 1px solid #ccc;
    }
    #menu02 a span{
      font-size: 10px;
      padding-left: 10px;
    }
    #menu02 a:before{
      content: "";
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 0 5px 8.7px;
      border-color: transparent transparent transparent #ccc;
      position: absolute;
      right: 2%;
      top: 25px;
    }
#menu02{
  display: none;
}
/** スマホメニュー end **/


/* .arrowWrap01 {
  right: 39vw;
  top: 26vw;
  height: 40vw;
}

.arrowWrap02 {
  left: 15vw;
  top: 14vw;
  height: 22vw;
}

li#consul .arrowWrap02 {
  top: 10vw;
}

li#consul .arrowWrap01{
  top: 25vw;
}

#web .arrowWrap01{
  top: 25vw;
}

#web .arrowWrap03{
  top: 10vw;
}

#web .arrowWrap04{
  top: 3vw;
}

.arrowWrap03 {
  right: 10vw;
  top: 14vw;
  height: 22vw;
}

.arrowWrap04 {
  left: 15vw;
  top: 10vw;
  height: 20vw;
}

.arrowWrap02 .arrow,
.arrowWrap03 .arrow,
.arrowWrap04 .arrow{
  height: 40vw;
} */

/* .arrow {
  width: 10px;
  height: 40vw;
}

.arrow::before {
  height: 35vw;
  top: -49vw;
}

.arrowInner:after{
  border-width: 3vw 2vw 0 2vw;
  left: .57vw;
  top: -3vw;
} */


/* @keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 40vw, 0);
    transform: translate3d(-50%, 40vw, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 40vw, 0);
    transform: translate3d(-50%, 40vw, 0);
  }
}

@keyframes arrow04 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 20vw, 0);
    transform: translate3d(-50%, 20vw, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 20vw, 0);
    transform: translate3d(-50%, 20vw, 0);
  }
} */


/* @keyframes arrow02 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 40vw, 0);
    transform: translate3d(-50%, 40vw, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 40vw, 0);
    transform: translate3d(-50%, 40vw, 0);
  }
}

@keyframes arrow03 {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 20vw, 0);
    transform: translate3d(-50%, 20vw, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 20vw, 0);
    transform: translate3d(-50%, 20vw, 0);
  }
}
 */

.arrowWrap01,
.arrowWrap02,
.arrowWrap03,
.arrowWrap04{
  display: none; 
} 
}