@charset "UTF-8";
/* CSS Document */
@font-face {
        src:url("../fonts/notosansjp_regular400.woff2") format('woff2'), url("../fonts/notosansjp_regular400.woff") format("woff");
        font-family: "Noto Sans JP";
        font-style: normal;
	    font-weight:400;
        font-display: swap;
 }
:root {
	--text_black: #0d0d0d;
	--color_green:#13ae67;
	--color_black:#000000;
	--color_blue:#003c92;
	--color_yellow:#ffe100;
	--color_dark:#333333;
	--color_gray:#dadada;
	--color_light:#F1F2F2;
	--color_pipe:#dcdddd;
	--h_header:80px;
	--h_header_min:60px;
	--max_width:1600px;
	--h_subpagetop:240px;
	--w_humberger:60px;/*sp:humberger menu:width*/
	
	/*bootstrap
	   --white:#fff
	*/
}

body{
    background:var(--white);
    font-family: 'Noto Sans JP'; /*400・700*/
	font-weight:400;
	color: var(--text_black);
	font-size:1.03125rem;
	letter-spacing: 0.04rem;
	line-height:1.8;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}
*{box-sizing: border-box;}

/*ページ内リンクの高さ（ページ内リンクrootが使用できない）*/
html{ scroll-padding-top:80px;}
:target {scroll-behavior: smooth;scroll-margin-top:80px;}

#home_recruit .container-fluid,#home_services_about .container-fluid{max-width: var(--max_width);}

ul{
	margin:0;
	padding: 0;
	list-style: none;
	margin-block-start:0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
	padding-inline-start: 0;
}

a{
	color:var(--color_blue);
	text-decoration: none;
    outline: none;
	cursor: pointer;
	transition: all 0.3s;
  user-select: none;
}
a:hover{
	color:var(--color_dark);
	text-decoration: none;
	outline: none;
}
img{
	width: 100%;
    max-width: 100%;
    height: auto;
}
::selection {
  background-color:var(--color_blue);
 color:var(--white);
  text-shadow: none;
}

h1, h2, h3, h4, h5, h6 {
font-weight: 400;
line-height: 1.5;
}

/*form*/
label {
    font-size: 1rem;
	margin-bottom: .2rem;
	}
textarea:focus, input:focus, input[type]:focus, .uneditable-input:focus { /*bootstrapの青枠を消す*/
  outline: none!important;
  box-shadow: none!important;
	border: 1px solid #4bb2f2!important;
	background-color:#EBF6FC!important;
}
.form-control {
	font-size: 1rem;
	padding: 12px 8px;
	margin-bottom: 4px;
	line-height: 1.5;
	height: auto!important;
	border: 1px solid #4bb2f2!important;
	background-color:#CCE9FB!important;
}
.form-group{
	margin-bottom: 20px;
}
.text_required{
  background-color: #e60000;
  color:#ffffff;
  font-size:13px;
  padding: 2px 6px;
  font-weight: normal;
  margin-left: 10px;
  border-radius: 2px;
}
.error, .error-php, .error-js {
  color: #e60000;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
	position: fixed;
	width: 100vw;
	height: 100vh;
	background-color: var(--color_gray);
	z-index: 9999999;
}
#splash-illust{
	width: 100%;
	max-width: 300px;
	height: auto;
	margin-bottom: 30px;
	z-index:10;
}
#splash-logo{
	width: 100%;
	max-width: 230px;
	z-index:10;
}


/*---------------------------------------------
 * header
 * ---------------------------------------------*/
#header{
	height: var(--h_header);/*Headerの高さ設定*/
	width:100%;
    z-index: 9;
	display: flex;
	justify-content: center;
	align-items: center;
    background-color:var(--color_yellow);
}
#home #header{
	background-color:var(--white);
}
#header.HeightMin{
	position: fixed;
	top:0;
	left: 0;
	height:var(--header_min);
	animation: DownAnime 0.5s forwards;
	background-color: rgba(255,255,255,0.00)!important;
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-170px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

#header h1{
	font-size: 1rem;
	 line-height: 1;
	margin: 0;
	padding: 0;
	padding-right: calc( var(--w_humberger) / 2);
}
#header .header_logo{
	display: flex;
	align-items: center;
	max-width: 280px;
	width: auto;
    height: var(--h_header);
}
#header.HeightMin .header_logo_min{
	display: flex;
	align-items: center;
	width: 60px;
	height: 40px;
}
#header.HeightMin .header_logo{
	display: none;
}
#header .header_logo_min{
	display: none;
}

/*globalMenu*/
#header nav{padding-right: 140px;}/*pc:humberger width*/
#header nav ul{
list-style: none;
display: flex;
justify-content:space-between;
align-items: center;
}
#header nav ul li a{
	height: var(--h_header);	
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	
	text-decoration: none;
	color:var(--text_black);
	letter-spacing: 0.05rem;
	line-height: 1.6;
	padding:0 14px;
	font-size: 0.9375rem;
}
#header.HeightMin nav ul li a{	height: var(--h_header_min);}
#header.HeightMin nav{display: none!important;}

/*---------------------------------------------
/*head btn
* ---------------------------------------------*/
#header_menu{
	position:fixed;
    z-index: 9999;
	top:10px;
	right: 10px;
	display: flex;
}
.openbtn{
	cursor: pointer;
    width: 140px;
    height:70px;
   background-color: var(--color_black);
	display:flex;
	align-items: center;
	justify-content: center;
	color: var(--white);
	transition: all 0.3s;
    letter-spacing: -0.01rem;
}
 .HeightMin .openbtn{
	height:var(--h_header_min);
}
.openbtn:hover{
	color:var(--white);
	background-color: var(--color_dark);
}

/*ボタン内側*/
.openbtn_line{
	width: 20%;
	height: 25%;
	position:relative;
}
.openbtn_line span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 0px;
    height: 2px;
    border-radius: 1px;
	background: var(--white);
  	width: 100%;
  }
.openbtn_line span:nth-of-type(1) {top:15%;}
.openbtn_line span:nth-of-type(2) {	top:50%;}
.openbtn_line span:nth-of-type(3) {	top:85%;}

/*activeクラスが付与されると線が回転して×に*/
.openbtn.active .openbtn_line span:nth-of-type(1) {
	top:50%;
	left:25%;
	 transform: rotate(-45deg);
    width: 50%;
}
.openbtn.active .openbtn_line span:nth-of-type(2) {
	opacity: 0;/*真ん中の線は透過*/
}
.openbtn.active .openbtn_line span:nth-of-type(3){
	top:50%;
	left:25%;
	 transform: rotate(45deg);
    width: 50%;
}

/*---------------------------------------------
/*humberger Menu
* ---------------------------------------------*/
#g-nav{
    position:fixed;
    z-index: 999;
	top:-120%;/*ナビのスタート位置：非表示*/
	left:0;
	width:100%;
    height: 100vh;
	transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{   top: 0;}

/*ナビゲーションの縦スクロール*/
#g-nav #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
	display: flex;
	align-items: center;
	justify-content: center;
}
.menu_categories{
	color:var(--white);
	margin-bottom: 0;
	line-height:1;
	padding-bottom: 0;
}
/*ナビゲーション*/
#g-nav ul {
    z-index: 999;
}
#g-nav li{
	list-style: none;
}
#g-nav  a{
	color:var(--white);
	text-decoration: none;
	display: block;
	letter-spacing: 0.1em;
	transition: all 0.3s;
	line-height: 1.2;
	padding: 8px 2px;
}
#g-nav  a:hover{ color:var(--color_yellow);}

/*===================================
Main
===================================*/
#mainimg{
	z-index: 1;
	overflow: hidden;
	padding-bottom: 30px;
}
#mainimg .container-fluid{max-width: 1100px;}
#mainimg_illust img{z-index: 2;}
#mainimg_man_l{
	position: absolute;
	left:54%;
	top:20%;
	width: 16%;
	height: auto;
	z-index:0;
}
#mainimg_catch{
	position: absolute;
	left: 15px;
	top:10%;
	width: 36%;
	height: auto;
	z-index: 5;
}
#mainimg_truck{
	position: absolute;
	left:3%;
	bottom:-30px;
	width: 60%;
	height: auto;
	z-index: 4;
}
#mainimg_man_r{
	position: absolute;
	right:0;
	bottom:-10px;
	width: 25%;
	height: auto;
	z-index: 3;
}

/*===================================
home
===================================*/
#home_services_about,#home_recruit{
	position: relative;
}
#home_services_about::before,#home_recruit::before{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 20px;
	background-color: var(--color_pipe);
	background-image: url("../images/illust/illust_pipe.png");
	background-repeat: repeat-x;
	background-size: 40px 20px;
	left: 0;
	top:-10px;
	z-index: 1;
}
#home_services_about::after,#home_recruit::after{
	content: '';
	position: absolute;
	display: block;
	width: 80px;
	height: 80px;
	background-image: url("../images/illust/illust_handle.png");
	background-size: contain;
	left:50px;
	top:-40px;
	z-index: 2;
	
	transform-origin: center center; 
    animation:3s linear infinite Role72;
}
#home_services_illust,#home_about_illust{
	position: absolute;
	left: -150px;
	bottom: -60px;
	width:300px;
	height:300px;
	z-index: 2;
}
#home_about_illust{
	left:auto;
	right:-150px;
}

#home_recruit::after{
	animation-name: Role-72;
}

#home_recruit #illust_hammer {
	width: 24%;
	height: auto;
	display: block;
	position: absolute;
	bottom: 6%;
	right: 16%;
}
#home_recruit #illust_drill {
	width: 24%;
	height: auto;
	display: block;
	position: absolute;
	bottom: 6%;
	left: 25%;
}
#home_recruit #illust_bar {
	width: 20%;
	height: auto;
	display: block;
	position: absolute;
	bottom: 31%;
	left: 0;
}
#home_works{z-index:1;	overflow: hidden;}
#home_works::after{
  content: '';
  position: absolute;
  left:0;
  top: 0;
  
  transform: skewY(-14deg);
  transform-origin: top right;
  
  z-index: -1;
  width:100%;
  height:45%;
  background:var(--white);
}
/*slickslider*/
.slick-slide {width: 500px; height: auto;margin: 0 10px;}
.slick-slide img {border-radius: 20px;}

/*===========================================================*/
/*footer*/
/*===========================================================*/
img.logo_footer{
	max-width: 320px;
}
ul#footer_menu{
	width: 100%;
	max-width: 150px;
}
/*ul#footer_menu li {
	line-height: 1;
	padding: 8px 20px 8px 0;
	margin: 0;
}*/
ul#footer_menu li a{ 
	display: block;
	color:var(--text_black);
	position: relative;
	margin-bottom: 0.5rem;
}
ul#footer_menu li a::before{
	content: '';
    display: block;
	width: 16px;
	height: 8px;
	background-image: url("../images/arrow_left_blue.svg");
	background-size: contain;
   
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
}

#footer_truck{
	position: absolute;
	display: block;
	max-width: 300px;
	height: auto;
	bottom: -60px;
	right: 0;
 transform: translate(4px, 3px);
  animation: CarBounce 1s infinite ease-in-out;
}
@keyframes CarBounce {
    20% {
        transform: translateY(-2px);
        animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
    }
    25% {
        transform: translateY(0px);
    }
    55% {
        transform: translateY(-1px);
        animation-timing-function: cubic-bezier(0.4, 0, 1, 1.3);
    }
    60% {
        transform: translateY(0px);
    }
}

#page-top a{
	width: 50px;
	height: 50px;
	display: block;
	text-align: center;
	text-decoration: none;
	
	background-image: url("../images/icon_pagetop.svg");
	background-repeat: no-repeat;
	background-size: contain;
}
#page-top {
	position: fixed;
	right: 6px;
	bottom:20px;
	z-index: 2;
	opacity: 0;
	transform: translateX(100px);
}

/*　左の動き　*/
#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}

@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateX(100px);
  }
  to {
    opacity: 1;
	transform: translateX(0);
  }
}

/*　右の動き　*/
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateX(0);
  }
  to {
  	opacity: 1;
	transform: translateX(100px);
  }
}

/*===================================
subpage
===================================*/
#subpagetop {
  height:var(--h_subpagetop);
  width:100%;
}
#subpagetop::before {
	content: '';
	position: absolute;
	top:0;
	left: 0;
	width: 100%;
	height: 100%;
	 clip-path: polygon(0 0, 100% 0 , 0 60%);
    background-color: var(--color_yellow);
}
#subpagetop h2{letter-spacing: 0.2rem;}

.subpagetop_illust{
	width: var(--h_subpagetop);
	height: var(--h_subpagetop);
	display: block;
	right: 140px;
	top: 0;
	background-image: url("../images/illust/illust_man_truck.png");
	background-repeat: no-repeat;
	background-size: contain;
}

/*services================================*/
/*modal lightbox2*/
.gallery{
	list-style: none;
    display:flex;
	flex-wrap:wrap; 
	justify-content:flex-start;
	 align-items: flex-start;
}
.gallery li {
    margin: 0 4px 10px 4px;
	width: 19%;
}
.gallery li a:hover{
	cursor: zoom-in;
}
.gallery img{
	width:100%;
	height:auto;
	vertical-align:center;
	border-radius: 8px;
}
.gallery p{ color: var(--text_black);}
.lb-nav a.lb-next,.lb-nav a.lb-prev{width:30%!important;}
.lb-data .lb-caption{
	font-size:1.125rem!important;
	font-weight: 400!important;
	letter-spacing: 0.1rem!important;
}
.lb-data .lb-number{
	display: inline!important;
	color: var(--white)f!important;
	margin-left: 10px;
}
.lb-data .lb-close{
	background-size: contain!important;
}
.lb-nav a.lb-prev {
background-image: url( ../images/icon_prev.png)!important;
background-size: 30px 30px!important;
background-repeat: no-repeat!important;
background-position: center left 10%!important;
}
.lb-nav a.lb-next {
background-image: url( ../images/icon_next.png)!important;
background-size: 30px 30px!important;
background-repeat: no-repeat!important;
background-position: center right 10%!important;
}

/*aboutus---------------------------------------------------*/
.timeline li{
    position: relative;
	list-style: none;
	padding:0 0 10px 0;
}
.timeline dl{
	margin:0 0 4px 1em;
	line-height: 1.4;
}
.timeline dl dt{
	font-weight: 400;
}
.timeline dl dt span{background-color:var(--color_gray); border-radius: 8px;font-size: 0.85rem;text-align: center;display: block;padding: 2px 8px;}
.border-line {
	position: absolute;
	left:4px;
	top:0;
	width:1px;
	height:0;
	background:var(--color_green);
}
.timeline li::after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:8px;
	height:8px;
	border: 1px solid var(--color_green);
	background: var(--white);
	border-radius: 50%;
}

/*---------------------------------------------
 * Bootstrap Override
 * ---------------------------------------------*/
.fs--1 {
  font-size: 0.75019rem !important;
}

.fs-0 {
  /*font-size: 1rem !important;*/
	font-size: 1.03125rem !important /*16.5*/
}

.fs-1 {
  font-size: 1.333rem !important;
}

.fs-2 {
  font-size: 1.77689rem !important;
}

.fs-3 {
  font-size: 2.36859rem !important;
}

.fs-4 {
  font-size: 3.15733rem !important;
}

.fs-5 {
  font-size: 4.20873rem !important;
}

.fs-6 {
  font-size: 5.61023rem !important;
}

.fs-7 {
  font-size: 7.47844rem !important;
}

.fs-8 {
  font-size: 9.96876rem !important;
}

.lh-0 {
  line-height: 0 !important;
}

.lh-f1 {
  line-height: 0.7 !important;
}

.lh-f2 {
  line-height: 0.85 !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-2 {
  line-height: 1.15 !important;
}

.lh-3 {
  line-height: 1.3 !important;
}

.lh-4 {
  line-height: 1.45 !important;
}

.lh-5 {
  line-height: 1.6 !important;
}

.lh-6 {
  line-height: 1.75 !important;
}

.lh-7 {
  line-height: 1.9 !important;
}

.lh-8 {
  line-height: 2.05 !important;
}

/*≥576px*/
@media (min-width: 576px) { 	
  .fs-sm--1 {
    font-size: 0.75019rem !important;
  }
  .fs-sm-0 {
      /*font-size: 1rem !important;*/
	font-size: 1.03125rem !important /*16.5*/
  }
  .fs-sm-1 {
    font-size: 1.333rem !important;
  }
  .fs-sm-2 {
    font-size: 1.77689rem !important;
  }
  .fs-sm-3 {
    font-size: 2.36859rem !important;
  }
  .fs-sm-4 {
    font-size: 3.15733rem !important;
  }
  .fs-sm-5 {
    font-size: 4.20873rem !important;
  }
  .fs-sm-6 {
    font-size: 5.61023rem !important;
  }
  .fs-sm-7 {
    font-size: 7.47844rem !important;
  }
  .fs-sm-8 {
    font-size: 9.96876rem !important;
  }
}

/*≥768px*/
@media (min-width: 768px) {	
  .fs-md--1 {
    font-size: 0.75019rem !important;
  }
  .fs-md-0 {
      /*font-size: 1rem !important;*/
	font-size: 1.03125rem !important /*16.5*/
  }
  .fs-md-1 {
    font-size: 1.333rem !important;
  }
  .fs-md-2 {
    font-size: 1.77689rem !important;
  }
  .fs-md-3 {
    font-size: 2.36859rem !important;
  }
  .fs-md-4 {
    font-size: 3.15733rem !important;
  }
  .fs-md-5 {
    font-size: 4.20873rem !important;
  }
  .fs-md-6 {
    font-size: 5.61023rem !important;
  }
  .fs-md-7 {
    font-size: 7.47844rem !important;
  }
  .fs-md-8 {
    font-size: 9.96876rem !important;
  }
}

/*≥992px*/
@media (min-width:992px){
  .fs-lg--1 {
    font-size: 0.75019rem !important;
  }
  .fs-lg-0 {
      /*font-size: 1rem !important;*/
	font-size: 1.03125rem !important /*16.5*/
  }
  .fs-lg-1 {
    font-size: 1.333rem !important;
  }
  .fs-lg-2 {
    font-size: 1.77689rem !important;
  }
  .fs-lg-3 {
    font-size: 2.36859rem !important;
  }
  .fs-lg-4 {
    font-size: 3.15733rem !important;
  }
  .fs-lg-5 {
    font-size: 4.20873rem !important;
  }
  .fs-lg-6 {
    font-size: 5.61023rem !important;
  }
  .fs-lg-7 {
    font-size: 7.47844rem !important;
  }
  .fs-lg-8 {
    font-size: 9.96876rem !important;
  }
}

/****************************************************
/*animation 共通 
/****************************************************/
/*回転 home,title*/
@keyframes Role72{
  0%{ transform:rotate(0);}
  50%{ transform:rotate(72deg);}	
  100%{ transform:rotate(72deg); }
}
@keyframes Role-72{
  0%{ transform:rotate(0);}
  50%{ transform:rotate(-72deg);}	
  100%{ transform:rotate(-72deg); }
}


/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInLeft,.zoomInDown,.fadeIn {opacity:0;}

/*bounce*/
.Bounce.is-show {
animation-duration:1.5s;
animation-fill-mode:forwards;
animation-timing-function: ease-in-out;		
  /*-webkit-animation-name: Bounce;*/
  animation-name: Bounce;
  /*-webkit-transform-origin: center bottom;*/
  transform-origin: center bottom;
  animation-iteration-count:infinite;
}

@keyframes Bounce {
  from,
  20%,
  43%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  30%,
  33% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -20px, 0) scaleY(1.08);
    transform: translate3d(0, -20px, 0) scaleY(1.08);
  }

  60% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -10px, 0) scaleY(1.03);
    transform: translate3d(0, -10px, 0) scaleY(1.03);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.98);
    transform: translate3d(0, 0, 0) scaleY(0.98);
  }

  90% {
    -webkit-transform: translate3d(0, -2px, 0) scaleY(1.01);
    transform: translate3d(0, -2px, 0) scaleY(1.01);
  }
}

/*home_service*/
.zoomInDown.is-show {
animation-duration:1.5s;
animation-fill-mode:forwards;
animation-timing-function: ease-in-out;	
 /* -webkit-animation-name: zoomInDown;*/
  animation-name: zoomInDown;
	opacity: 1;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/*manL*/
.DownUp.is-show {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
animation-duration:3s;
animation-fill-mode:forwards;
animation-name: DownUp;
	animation-timing-function: ease-in-out;
animation-iteration-count:infinite;	
}
@keyframes DownUp{	
  0% {
    transform: translate(0, 0);
  }
  30% {
    transform: translate(0, 0);
  }
	
  40% {
    transform: translate(-20px, 20px);
  }
  60% {
    transform: translate(-30px, 30px);
  }
  80% {
    transform: translate(-30px, 30px);
  }	
  100%{
	transform: translate(0, 0);
	}
}

/*manR*/
.RightLeft.is-show {
animation-duration:3s;
animation-fill-mode:forwards;
animation-name: RightLeft;
	animation-timing-function: easeOutQuart;
animation-iteration-count:infinite;	
}
@keyframes RightLeft{
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 0, 0);
  }
  60% {
    transform: translate3d(-20px, 0, 0);
  }
  80% {
    transform: translate3d(-20px, 0, 0);
  }	
  100%{
	transform: translate3d(0, 0, 0);
	}
}
	
/*左から*/
.fadeInLeft.is-show {
animation-duration:1s;
animation-fill-mode:forwards;
animation-name: fadeInLeft;
animation-timing-function:cubic-bezier(.3,.99,.64,.93);
opacity: 0;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-1000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*下から */
.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(200px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

.fadeIn.is-show{
animation-name: fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
.delay_s{animation-delay: 0.4s;}
.delay_m{animation-delay: 0.8s;}
.delay_l{animation-delay: 1.2s;}

/*-----------------------------------------------------
dl
-----------------------------------------------------*/
dl.dl_table{
margin-left: 5px ;
margin-right: 5px;
margin-block-start: 0;
 margin-block-end: 0;
}

dl.dl_table{
 border-radius: 0.5px;
 }

dl.dl_table dt{
    border-top: 1px solid var(--color_gray);
	 border-radius: .5px;
     padding: 20px 5px 16px 15px;
	font-weight:normal;
	margin-bottom: 0;
}
dl.dl_table dd{
    border-top: 1px solid var(--color_gray);
	 border-radius: .5px;
    padding: 20px 5px 16px 15px;
	margin-bottom: 0;
}
dl.dl_table dt:last-of-type{
    border-bottom: 1px solid var(--color_gray);
}
dl.dl_table dd:last-of-type{
    border-bottom: 1px solid var(--color_gray);
}

@media (max-width:767px){
	dl.dl_table dt{border:none;background-color: var(--color_gray);padding-bottom: 5px;padding-top: 5px}
	dl.dl_table dd{border: none;padding-top: 14px; padding-bottom: 20px;}
	dl.dl_table dt:last-of-type,dl.dl_table dd:last-of-type{border: none;}
	
	dl.dl_topics dt,dl.dl_topics dd{padding:0 10px }
}


/*-----------------------------------------------------
ボタン
-----------------------------------------------------*/
a.btn_white{
	display: block;
	text-decoration: none;
	color: var(--text_black);
	transition:all .3s;
	background-color:var(--white);
	border: solid 3px var(--color_black);

	margin: 2px 0;
	padding: 16px 10px;
	position: relative;
	text-align: center;
    position: relative;
}
a.btn_white:hover{
	background-color: var(--color_green);
	color: var(--white);
}
a.btn_white::before{
	content: '';
   width: calc(40px * 0.8);
	height: calc(30px * 0.8);
	display: block;
	background-image: url("../images/arrow_left_blue.svg");
	background-size: contain;
	position: absolute;
	top :50%;
	right: 8px;
	 transform: translateY(-50%);
	transition:all .3s;
}
a.btn_white:hover::before{
	right: 2px;
}
#subpage_nav a.btn_white::before{
	background-image: none;
	color: var(--color_blue);
	  font-family: "Font Awesome 6 Free";
  content: '\f063';
  font-weight: 900;
}
#subpage_nav a.btn_white:hover::before{
	right:8px;
	top:calc(50% + 10% );
}

a.btn_white_non::before{
	content: none;
}

 /****************************************************
/*共通
/****************************************************/
.link_banner{
	width: 100%;
	max-width: 200px;
	height: auto;
	border: 1px solid var(--color_black);
	display: block;
}

.title_handle{
	position: relative;
	padding-left:35px; 
}
.title_handle>span{position: relative;z-index: 1;}
.title_handle::before{
	position: absolute;
	content: '';
	width: 30px;
	height: 30px;
	display: inline-block;
	background-image: url("../images/illust/illust_handle.png");
	background-size: contain;
	left:0;
	top:calc(50% - 15px);
	z-index: 0;
}

ul li.dotted{ 
	list-style-position: outside;
	position: relative;
	padding-left:1rem;
}
ul li.dotted::before{
	content: '・';
    position: absolute;
	left:0;
}

.font_jp700{
	/*使う際にはheaderで取り込む*/
	font-family: 'Noto Sans JP';
	font-weight: 700;
}
@font-face {
        src: url(  "../fonts/montserrat_medium500.woff2") format("woff2"),url(  "../fonts/montserrat_medium500.woff") format("woff");
     font-family: 'Montserrat';
        font-style:normal;
	   font-weight:500;
        font-display: swap;
      }
.font_en{
	font-family: 'Montserrat';
    font-weight: 500;
}
@font-face {
        src: url( "../fonts/montserrat_black900.woff2") format("woff2"),url(  "../fonts/montserrat_black900.woff") format("woff");
      font-family: 'Montserrat';
        font-style:normal;
	   font-weight:900;
        font-display: swap;
      }
.font_en_bold{
	font-family: 'Montserrat';
	font-weight: 900!important;
}

.fs_14{font-size:0.875rem!important;}
.fs_15{font-size: 0.9375rem!important;}
.fs_18{font-size:1.125rem!important;}
/*.fs_14px{font-size: 14px!important;}/*固定*/
/*.fs_18px{font-size: 18px!important;}/*固定*/

.fw-400{font-weight: 400!important;}
.fw-700{font-weight: 700!important;}

.ls_0{letter-spacing: 0;}
.ls_04{ letter-spacing: 0.04rem;}
.ls_08{ letter-spacing: 0.08rem;}
.ls_12{ letter-spacing: 0.12rem;}

.text_nowrap{white-space:nowrap;}

.bg_yellow{background-color: var(--color_yellow);}
.bg_gray{background-color: var(--color_gray);}
.bg_light{background-color: var(--color_light);}
.bg_black{background-color: var(--color_black);}


.opacity_0{opacity: 0;}

/*-----------------------------------------------------
レスポンシブ
-----------------------------------------------------*/
@media (min-width: 1200px){

}
@media (max-width: 1199.98px) { /*xl*/

}
@media(max-width:991.9px){/*lg*/
	#home_about_illust{
	left:inherit;
	right:-100px;
}
	.gallery li {width: 45%;}
}
	

@media (max-width:767.9px) {/*md: sp*/
	#header h1{padding-right: var(--w_humberger);}

   /*humberger menu*/
     .openbtn{
		 width: var(--w_humberger);
		 height: var(--h_header_min);
		flex-direction: column;
	}
	.openbtn_line{width: 50%;}
	.openbtn_line span{height: 3px;}
	.openbtn_line span:nth-of-type(1) {	top:20%;}
	.openbtn_line span:nth-of-type(2) {top:50%;}
	.openbtn_line span:nth-of-type(3) {top:80%;}
	.openbtn_menu{margin-left:0; line-height: 1.6;}
	ul#footer_menu{flex-flow: column;text-align: center;}	

		#home_services_illust,#home_about_illust{
			width:200px;
			height:200px;
			left:-10px;
			bottom: -130px;	
		}
		#home_about_illust{
			left:inherit;
			right: -10px;
			}
		#home_recruit::after{
				left: inherit;
				right: 50px;
			}
	#footer_truck{	position:static;}
	
}

/*sm*/
@media (max-width:575.9px){
	#splash-illust{max-width: 200px;}
    #splash-logo{max-width: 180px;}
	#mainimg{padding-bottom: 120px;	}	
	#mainimg_man_l{
		left:44%;
		top:34%;
		width:20%;
	}
	#mainimg_catch{
		width: 50%;
		top:18%;
	}
	#mainimg_truck{
		left:0;
		bottom:-110px;
		width: 75%;
	}
	#mainimg_man_r{
		bottom:-70px;
		width:34%;
	}
	#subpagetop {  height:calc(var(--h_subpagetop) + 50px);}
	.subpagetop_illust{
		right: 0;
		top:inherit;
		bottom: 0;
	}
}

@media (max-width:380px){
	#splash-logo{width:80vw;}
}
