@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;
 }
body{
    background:#fff;
    font-family: 'Noto Sans JP', sans-serif; /*400・700*/
	font-weight:400;
	color: #0d0d0d;
	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;}

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;
}

ol > li {
    list-style-position: inside;
    margin-left: 0.9em;
    text-indent: -0.9em;
}

a{
	color:#0d0d0d;
	text-decoration: none;
    outline: none;
	cursor: pointer;
	transition: all 0.3s;
  user-select: none;
}
a:hover{
	color:#333333;
	text-decoration: none;
	outline: none;
}
img{
	width: 100%;
    max-width: 100%;
    height: auto;
}
::selection {
  background-color:#b6c4cc;
  color:#0d0d0d;
  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: #f0f5f7;
	z-index: 9999999;
}
#splash-logo{
	z-index:10;
	margin-bottom: 5rem;
}
#splash-logo img{max-width:60px;} 

.eachTextAnime span{opacity: 0;}
.eachTextAnime  span{ 
	position: relative;
	animation-name : text_anime_on;
	animation-duration: 1s;
	animation-timing-function:ease-out forwards; 
	animation-fill-mode:forwards;
}
@keyframes text_anime_on {
	0% {opacity:0;left: 15px;}
	100% {opacity:1;left:0px;}
}

/*---------------------------------------------
 * header
 * ---------------------------------------------*/
#header{
	position: absolute;
    top: 0;
    left: 0;
	/*height: 80px;/*Headerの高さ設定*/
	width:100%;
    z-index: 9;
    background-color:transparent;
}
#header.HeightMin{
	position: fixed;
	top:0;
	left: 0;
	height:60px;
	animation: DownAnime 0.5s forwards;
}
@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: 10px 120px 0 10px; /*120=humberger+contact width*/
}
#header .header_logo{
	display: flex;
	align-items: center;
	max-width:160px; 
    height: auto;
}
#header.HeightMin .header_logo_min{
	display: flex;
	align-items: center;
	max-width:46px;
	height:auto;
}
#header.HeightMin .header_logo{
    display: none;  
}
#header .header_logo_min{
	display: none;
}

/*---------------------------------------------
/*head btn
* ---------------------------------------------*/
#header_contact{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0;
	right: 0;
	display: flex;
}
.contactbtn , .openbtn{
	cursor: pointer;
    width: 140px;
    height:70px;
   background-color: #000000;
	display:flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	transition: all 0.3s;
    letter-spacing: -0.01rem;
}
.HeightMin .contactbtn , .HeightMin .openbtn{
	height:50px;
}

.contactbtn{
   background-color: #11cf79;
	color: #0d0d0d;
}
.contactbtn:hover,.openbtn:hover{
	color:/*#ffffff*/#e50212;
	background-color: #222222;
}

/*ボタン内側*/
.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: #fff;
  	width: 100%;
  }
.openbtn:hover .openbtn_line span{background: #e50212;}
.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;
	
   background:linear-gradient(rgba(0, 0, 0, .85),  rgba(0, 0, 0, .85)),  url(../images/nav_bg@05x.jpg);
	background-size: cover;
	background-position: center center;
}
/*アクティブクラスがついたら位置を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;
}
/*ナビゲーション*/
#g-nav ul {
    z-index: 999;
}
#g-nav li{
	list-style: none;
}
#g-nav li a{
	color:#ffffff;
	text-decoration: none;
	display: block;
	letter-spacing: 0.1rem;
	transition: all 0.3s;
	line-height: 1.2;
	padding: 10px 2px;
}
 #g-nav li a > .menu_title,#g-nav li  > .menu_title{
	color: #9cafba;
	font-size:0.8125rem;
	letter-spacing: 0;
	margin-left: 1rem;
	 transition: all 0.3s;
}
#g-nav li a > .menu_num{
	color:#9cafba;
	margin-right: 0.5rem;
	transition: all 0.3s;
}
#g-nav li a:hover,  #g-nav li a:hover  .menu_title,#g-nav li a:hover  .menu_num{
	color: #11cf79!important;
}


/*===================================
Main
===================================*/

/*mainimg----------------------------------*/
#mainimg{
position: relative;
padding: 0 0 0 0;
height: 100vh;
height: calc(var(--vh, 1vh) * 100);
}
/* video */
.mainvideo{
  width: 100%;
  height: 100vh;
  background: url(../images/mainmovie_poster.jpg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
}
.mainvideo video{
  min-width: 100%;
  min-height: 100%;
  /*width:100%;
   height:auto;*/
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
/*===================================
home news
===================================*/
#home_topics{
	background-color: #b6c4cc;
}
#home_topics .ticker {
	border: none!important;
	background-color: inherit!important;
	padding: 0;
	width: 100%;
	position: relative;
}
#home_topics .ticker li{z-index:1!important;}
#home_topics .ticker li div {padding: 10px;}
#home_topics .ticker li a {display: block; z-index: 3;}

/*===========================================================*/
/*footer*/
/*===========================================================*/
#footer h1{
	letter-spacing: -0.05rem;
}
img.logo_footer{
	max-width: 100px;
}
#footer_menu{
	display: flex;
	flex-wrap:wrap;
}
#footer_menu .menu_col{padding-right:3rem;width: auto;}
#footer_menu ul{letter-spacing: 0rem;}
#footer_menu a{color:#ffffff;}
#footer_menu ul li{padding-bottom:0.2rem; }

#page-top {
	display: block;
	width: 20px;
	height: 112px;
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 0;
	transform: translateY(150px);
  }
}


/*===================================
home
===================================*/
#home_aboutus{
	padding: 5rem 0;
    overflow: hidden;
}
#home_aboutus_bg{
	position: absolute;
    bottom:3rem;
	left: 0;
	width: 46vw;
	height: auto;
	z-index: 1;
	pointer-events:none;
}
#home_aboutus_bg svg{
	width: 100%;
	height: auto;
}

.line_draw_home_aboutus,  .line_draw_not_home_aboutus {fill:none ;stroke:none;}
.is-show  .line_draw_home_aboutus{
   fill: none;
   stroke: #333333;
   stroke-miterlimit: 10;
   stroke-width: 20.73px;
  stroke-dasharray: 3000 3000;
  stroke-dashoffset: -3000;

  animation-name: draw_line;
  animation-duration: 10s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode:forwards;
}
@keyframes draw_line{
  to {
    stroke-dashoffset:0
  }
}

.is-show  .line_draw_not_home_aboutus{
animation-name: draw_fill;
  animation-duration:0.4s;
  animation-timing-function: ease;
  animation-delay: 3s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode:forwards;
}
@keyframes draw_fill{
	from{
		fill:rgba(51,51,51,0.00);
	}
to {
    fill:#333333;
  }
}

#home_business_title{
	padding: 5rem 0;
	background-image: url(../images/home_business_bg.jpg);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.home_business_bg,.subpage_business_bg{
	position: absolute;
	top: 6rem;
	left: 0;
	width: 100%;
	height: auto;
	z-index: -2;
}
.subpage_business_bg{
	top: 0;
}
.home_business_bg svg,.subpage_business_bg svg{
	width: 100%;
	height: auto;
}
.line_draw_home_business {fill:none ;stroke:none;}
.is-show .line_draw_home_business {
	fill: none;
	stroke: /*#f2f2f2*/#f0f5f7;
	stroke-miterlimit: 10;
	stroke-width: 7.69px;
	
  stroke-dasharray: 1000 1000;
  stroke-dashoffset: -1000;

  animation-name: draw_line;
  animation-duration: 5s;
  animation-timing-function: ease;
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode:forwards;
}
.title_line_green{
	position: relative;
	overflow: hidden;
	padding-bottom:5rem;
}
.title_line_green::after{
	content: '';
	height: 3rem;
	width: 100%;
	background-image: url(../images/line_green.svg);
	background-repeat: no-repeat;
	background-size: auto 100%;
	background-position: left top;
	
	position: absolute;
	bottom: 2rem;
	left: 0;
}

#home_products{
	background:linear-gradient(rgba(0, 0, 0, .8),  rgba(0, 0, 0, .8)),  url(../images/home_products_bg.jpg);
	background-size: cover;
	background-position: left center;
}

	
#home_long_movie{
	padding: 120px 0 50px 0 ;
}
#long_video{
	width: 100%;
	height: auto;
	cursor: pointer;
}
#long_video video{
	width: 100%;
	height: auto;
}
#video_title{
	position: absolute;
	top:-80px;
	left: 0;
	z-index: 1;
	pointer-events:none;
}
#video_title img{
	width: 100%;
	max-width: 700px;
}

/*===================================
subpage
===================================*/
#subpagetop {
  /*height:240px;*/
  width:100%;
	padding-top: 150px;/*header-logoの高さ*/
	padding-bottom: 70px;
	overflow: hidden;
	position: relative;
}
#subpagetop::after{
	content:'';
	position: absolute;
	left: 10vw;
	bottom: 30px;
	width:90vw;
	height: 34px;
	background-image: url(../images/line_subpagetop.svg);
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: auto 100%;
}
#subpagetop_animation{
	overflow: hidden;
	height: 1rem;
}
#subpagetop_animation > div{position: relative;}
#subpagetop_animation > div::after{
	position: absolute;
    top:0;
	right: 0;
	display: block;
    width:80%;
    height:1rem;
	background-color: #e50212;
    content: '';
    z-index: -1;
}
#industrial-waste #subpagetop_animation,#products #subpagetop_animation,#application #subpagetop_animation{/*サブページナビがあるので削除*/
	display:none;
}


#subpagetop .page_title_img{
	display: block;
	height: 60px;
	width: 100%;
	background-image: url(../images/page_title_buildmaintec.svg);
	background-repeat: no-repeat;
	background-position: left top;
	background-size: contain;
}
#aboutus #subpagetop .page_title_img{
	background-image: url(../images/page_title_aboutus.svg);
}
#products #subpagetop .page_title_img{
	background-image: url(../images/page_title_products.svg);
}
#news #subpagetop .page_title_img{
	background-image: url(../images/page_title_news.svg);
}
#contact #subpagetop .page_title_img{
	background-image: url(../images/page_title_contact.svg);
}
body.Business #subpagetop .page_title_img{
	background-image: url(../images/page_title_business.svg);
}
body.Recruit #subpagetop .page_title_img{
	background-image: url(../images/page_title_recruit.svg);
}

/*subpage_nav------------------*/
#subpage_nav a{
	display: block;
	text-align: center;
	color: #0d0d0d;
	padding: 20px 10px;
	font-size: 0.875rem;
	border-right: 1px solid #ffffff;
	border-bottom: 1px solid #ffffff;
	background-color:#b6c4cc;
}
#subpage_nav a span{position: relative;transition: all 0.3s;}
#subpage_nav a span::after{
content: '';
	position: absolute;
	right: -20px;
	top: calc(50% - 3px);
	width: 6px;
	height: 6px;
	border-top: 1px solid #0d0d0d;
	border-right: 1px solid #0d0d0d;
	transform: rotate(135deg);
	transition: all 0.3s;
}
#subpage_nav a:hover{
	background-color: #333333;
	color: #ffffff;
}
#subpage_nav a:hover span,#subpage_nav a:hover span::after{
		color: #ffffff;
	    border-color: #ffffff;
}
/*subpage_menu------------------*/
a.subpage_menu_link{
	display: flex;
	align-items: center;
	padding-right: 20px;
	margin-bottom: 1rem;
	border-bottom: 1px dotted #999999;
	height: 100%;
	position: relative;
}
.subpage_menu_link_num{
	letter-spacing: 0.08rem;
	padding-right: 1rem;
	color: #b6c4cc;
	transition: all 0.3s;
}
a.subpage_menu_link:hover, a.subpage_menu_link:hover .subpage_menu_link_num{color:#11cf79;}
a.subpage_menu_link::before{
	content: '';
  width: 20px;
  height: 6px;
  border-bottom: 1px solid #000000;
  border-right: 1px solid #000000;
  transform: skew(45deg);
  
  position: absolute;
  top: calc(50% - 5px);
  right: 10px;
    transition: all .2s linear;
}
a.subpage_menu_link:hover::before{	right:0px;}
a.subpage_menu_link h4{
	font-size: 1.25rem;
	line-height: 1.2;
	padding-top: 0.5rem;
}


#subpagetop h2{letter-spacing: 0.2rem;padding: 0 0 0 10px; margin: 0;}

#policy #subpagetop h2{letter-spacing: 0.1rem;}
#policy #subpagetop h2 span:first-of-type{font-size:1.25rem!important; }

/*circulation-blast---------------------------------------ADD*/
.text_c{position: relative; top:0.2em; font-size: 0.75em;}  /*循環式ブラスト工法のコピーライトの位置*/


/*aboutus---------------------------------------------------*/
#aboutus_outview_photo::before{
	content: '';
	display: block;
	width: 100%;
	height: 50%;
	background-color: #ffffff;
	
	position: absolute;
	left: 0;
	top: 0;
}

.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: #f0f5f7; 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:#11cf79;
}
.timeline li::after{
	content:'';
	position: absolute;
	top:0;
	left:0;
	width:8px;
	height:8px;
	border: 1px solid #11cf79;
	background: #ffffff;
	border-radius: 50%;
}

/*rej--------------------------------------------------------*/

/*accordion*/
.accordion h4 {
	margin:0;
	padding:0 50px 0 10px; 
}

.accordion ul {
	width:100%;
	padding:0;
}
.accordion li {
	position:relative;
   box-shadow: 8px 8px  rgba(182,196,204,1);
	border: 2px solid rgba(182,196,204,1);
	border-radius: 10px;
	list-style:none;
	margin-bottom: 30px;
	background-color: #ffffff;
}
.accordion > ul > li > span.click_plus{
	display: block;
	text-decoration: none;
	cursor: pointer;
	padding: 1.6em 1em;
	position: relative;
}

.accordion > ul > li > .comment {
   display: none;
	text-align:left;
	padding:1.4em;
	line-height:1.8;
	margin-bottom:20px;
	position:relative;
}
.accordion li .accordion_icon,
.accordion li .accordion_icon span {
	display: inline-block;
	transition: all .3s;
	box-sizing: border-box;
}
.accordion li .accordion_icon {
	position: absolute;
	width: 40px;
	height: 40px;
	top:40px;
	right:10px;
}
.accordion li .accordion_icon span {
	position: absolute;
    width: 100%;
	height: 4px;
    background-color: #4797d6;
	border-radius: 2px;
}
.accordion li .accordion_icon span:nth-of-type(1) {
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion li .accordion_icon span:nth-of-type(2) {
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}
.accordion li .accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion li .accordion_icon.active span:nth-of-type(2) {
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/*industrial----------------------------------------------------*/
#industrial_flow img{
	max-width: 160px;
	padding: 0 0 15px 0;
}
.flow_border{position: relative;}
.flow_border::after{
	 content: '';
	 display: block;
	 width: 50px;
	 height: 1px;
	 background-color: #b6c4cc;
	 position:absolute;
	 top :50%;
	 right: -50px;
	z-index: -1;
}

/*廃プラスチック類*/
ul.ul_flow_pra{display: flex;}
ul.ul_flow_pra li{
	width: 30%;
	padding: 0 20px 30px 20px;
	
	position: relative;
}
ul.ul_flow_pra li::after{
	content:'\f061'; 
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	top :40%;
	right: -8px;
	color: #b6c4cc;
}
ul.ul_flow_pra li:last-child::after{
	content:none;
}

ul.ul_flow_pra .circle_num{
   width: 50px;
  height: 50px;
  background-color: #aadfec;
	color: #ffffff;
  border-radius: 50%;
  text-align: center;
  box-sizing: border-box;
  display: flex;
  align-items: center;
	justify-content: center;
	
  position: absolute;
  top :-25px;
  left :0;
}

video.umekomi{
	width: 100%;
	height: auto;
}

/*interview----------------------------------------------------*/
#interview_gallery{
	padding:3rem 0;
	margin-top: 7rem;
}
img.title_interview{
	width: 100%;
	max-width: 400px;
	position: absolute;
	top:-7rem;
	left: 0;
}
#interview_gallery .container-fluid{ max-width: 1200px; }
ul#ul_interview_gallery{
	width: 100%;
	height: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
ul#ul_interview_gallery li {
	padding: 0;
	margin: 0;
	width: 20%;
	position: relative;
}
ul#ul_interview_gallery li  span.dep_name{
	background-color: rgba(0,0,0,0.70);
	color: #ffffff;
	padding: 0 16px;
	font-size: 1.125rem;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 3;
}
ul#ul_interview_gallery li  span.mask{
	position:relative;
    display: block;
    line-height: 0;
    overflow: hidden;
}
ul#ul_interview_gallery li  span.mask::before{
	content:"";
	position: absolute;
	z-index: 2;
	left:0;
	top:0;
	opacity:0;
	transition: .3s ease-in-out;
    transform: translateX(-100%);
	background:rgba(0,0,0,0.50);
	width:100%;
	height: 100%;	
}
ul#ul_interview_gallery li:hover span.mask::before{
	opacity:1;
	transform: translateX(0);
}
ul#ul_interview_gallery li  span.cap{
	font-size: 0.9375rem;
	opacity:0;
	transition: .5s ease-in-out;
	z-index:3;
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	color: #fff;
    line-height: 1.5;
}
ul#ul_interview_gallery li :hover span.cap{
	opacity:1;
}

.interview_item{
	background: #ffffff;
	background: -moz-linear-gradient(top,  #ffffff 40%, #f0f5f7 100%);
	background: -webkit-linear-gradient(top,  #ffffff 40%,#f0f5f7 100%);
	background: linear-gradient(to bottom,  #ffffff 40%,#f0f5f7 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f0f5f7',GradientType=0 );
}
.interview_item h3{
	font-size: 1.375rem;
	line-height:2;
}
dl.dl_interview_item dt{
	font-size: 1.25rem;
	line-height: 1.3;
	padding-bottom: 0.5rem;
	display: flex;
	align-items:center;
}
dl.dl_interview_item dd{
		padding-bottom: 1rem;
}
.border_gradient{
	border-bottom:3px solid #11cf79;
		border-image: linear-gradient(to right, #00a2b6 20%, #11cf79 100%);
	    border-image-slice: 1;
	  opacity: 0;
}
.is-show.border_gradient{
animation-duration:1.5s;
animation-delay: 0.2s;
animation-timing-function: ease-out;
animation-fill-mode:forwards;
animation-name: slideline;
}
@keyframes  slideline {
  0% {
    opacity: 1;
	  width: 0%
  }
  100%{
	     opacity: 1;
	     width: 100%;
	}
}

/*news----------------------------------------------------*/
#news_list .news_item{
	background-color: #ffffff;
	border-radius: 10px;
	margin-top: 2rem;
	margin-bottom: 2rem;
	padding:2rem;
}
#news_list .news_item h3{
	font-size: 1.25rem;
	padding-bottom: 4px;
	border-bottom: 1px solid #b6c4cc;
	margin: 0.5rem 0  2rem;
}

/*===================================*/
/*modal lightbox2*/
/*===================================*/
.gallery{
	list-style: none;
    display:flex;
	flex-wrap:wrap; 
	justify-content:center;
	/*justify-content: space-between;*/
	 align-items: flex-start;
}
.gallery li {
    margin: 0 10px 10px 10px;
	width: 30%;
}
.gallery_col2 li{width: 45%;}
.gallery_col3 li{width: 30%;}
.gallery_col4 li{width: 24%; margin: 1px;}
.gallery li a:hover{
	cursor: zoom-in;
}
.gallery figure{
	margin-bottom: 0.5rem;
}
.gallery img{
	width:100%;
	height:auto;
	vertical-align:center;
}
.gallery_item p{
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
  width: 100%;
 letter-spacing: 0.075rem;
 color: #0d0d0d;
 border:1px solid #000000;
border-radius: 4px;
padding: 4px 10px;
}

.modal_zoom >  a{cursor: zoom-in;}
/* lightbox2共通*/
.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: #ffffff!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;
}
/****************************************************
/*animation 共通 
/****************************************************/
/*左から*/
.fadeInLeft {
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000; 
perspective: 1000; 	
	
will-change: transform, opacity;
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);
  }
}
/*右から*/
.fadeInRight.is-show{
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000; 
perspective: 1000; 	
will-change: transform, opacity;
animation-duration:1s;
animation-fill-mode:forwards;
animation-name: fadeInRight;
animation-timing-function:cubic-bezier(.3,.99,.64,.93);
opacity: 0;
}
@keyframes fadeInRight{
  from {
    opacity: 0;
    transform: translate3d(1000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/*下から */
.fadeUp.is-show{
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000; 
perspective: 1000; 	
will-change: transform, opacity;
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{
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-perspective: 1000; 
perspective: 1000; 	
will-change: transform, opacity;
animation-name: fadeInAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUp,.fadeInRight{opacity: 0;}
.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 #b6c4cc;
	 border-radius: .5px;
     padding: 20px 5px 16px 15px;
	font-weight:normal;
	margin-bottom: 0;
}
dl.dl_table dd{
    border-top: 1px solid #b6c4cc;
	 border-radius: .5px;
    padding: 20px 5px 16px 15px;
	margin-bottom: 0;
}
dl.dl_table dt:last-of-type{
    border-bottom: 1px solid #b6c4cc;
}
dl.dl_table dd:last-of-type{
    border-bottom: 1px solid #b6c4cc;
}

dl.dl_table_color{
margin-left: 0;
margin-right: 0;
margin-block-start: 0;
 margin-block-end: 0;
}
dl.dl_table_color dt{
    border-top: 1px solid #666666;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	background-color: #C3CED5;
    padding: 8px 5px 6px 10px;
	font-weight:normal;
	margin-bottom: 0;
}
dl.dl_table_color dd{
    border-top: 1px solid #666666;
	border-left: 1px solid #666666;
	border-right: 1px solid #666666;
	background-color: #ffffff;
   padding: 8px 5px 6px 20px;
	margin-bottom: 0;
}
dl.dl_table_color dt:last-of-type{
    border-bottom: 1px solid  #666666;
}
dl.dl_table_color dd:last-of-type{
    border-bottom: 1px solid #666666;
}

@media (max-width:767px){
	dl.dl_table dt{border:none;background-color: #b6c4cc;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_table_color dd:last-of-type{ border-top:none;}
}


/*-----------------------------------------------------
ボタン
-----------------------------------------------------*/
a.link_arrow{
	display:block;
	position: relative;
	padding:0 30px 0 0; /*右矢印分の余白*/
    color: #0d0d0d;
    text-decoration: none;
    outline: none;
}
a.link_arrow::after{
  content: '';
  width: 18px;
  height: 6px;
  margin-left: 10px;
  border-bottom: 1px solid #0d0d0d;
  border-right: 1px solid #0d0d0d;
  transform: skew(45deg);
  
  position: absolute;
  top: calc(50% - 3px);
	right: 0;
  transition: all 0.3s;
}
a.link_arrow:hover{
	color: #333333;
}
a.link_arrow:hover::after{
	border-color: #333333;
	right: -0.5rem;
}
a.btn_maru{
	display:block;
	position: relative;
	padding:0 0 0 15px;
	line-height: 50px;
    color: #0d0d0d;
    text-decoration: none;
    outline: none;
}
a.btn_maru span{ margin-right: 20px;}

/* 丸が動く */
a.btn_maru::before{
	content:'';
	position:absolute;
	left:0;
	z-index: -1;
	width:50px;
	height:50px;
	background:#cccccc;
	border-radius:25px;
    transition:.3s ease-out;
}
a.btn_maru:hover::before{
	width:100%;
}
a.btn_maru::after{
  content: '';
  width: 25px;
  height: 10px;
  border-bottom: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: skew(45deg);
  
  position: absolute;
  top: calc(50% - 5px);
}

a.btn_border_white,a.btn_border_black,a.btn_border_white_small{
	display: block;
	position: relative;
	border: 2px solid #ffffff;
    padding: 8px 10px;
    /*display: inline-block;*/
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    outline: none;
    transition: all .2s linear;
}
a.btn_border_white_small{
	border: 1px solid #ffffff;
	padding: 4px 10px;
}
a.btn_border_white:hover,a.btn_border_white_small:hover{
	border-color: /*#11cf79*/#e50212;
	color: /*#11cf79*/#e50212;
}

a.btn_border_white::before{
  content: '';
  width: 60px;
  height: 10px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: skew(45deg);
  
  position: absolute;
  top: calc(50% - 5px);
  right: -14px;
    transition: all .2s linear;
}
a.btn_border_white:hover::before{
	right:-30px;
	border-color: #e50212;
}
a.btn_catalog{
	display: block;
	padding: 20px 10px;
	text-align: center;
	text-decoration: none;
	color: #0d0d0d;
	background-color: #11cf79;

    outline: none;
    transition: all .2s linear;
}
a.btn_catalog:hover {
  color: #ffffff;
  background: #000000;
}
a.btn_catalog.btn_catalog_shadow {
  border-bottom: 10px solid #BDC9D0;
}

a.btn_catalog.btn_catalog_shadow:hover {
  margin-top: 5px;
  border-bottom: 5px solid #b6c4cc;
}

a.btn_tel{
	background-color: #11cf79;
	border-radius: 50px;
	padding: 10px 20px;
}
a.btn_tel:hover{
	background-color: #111111;
	color: #ffffff;
}
/*-----------------------------------------------------
/* deco
-----------------------------------------------------*/
.subtitle_line {
	padding: 1rem 0;
	font-size: 1.75rem;
	letter-spacing: 0.2rem;
	border-bottom: 2px solid #000000;
}
.subtitle_line_left{
	padding: 0.2rem 0.8rem;
    margin-bottom: 0.5rem;
	border-left: #00a2b6 solid 8px;
    font-size:1.25rem;
}
.box_point{
	background-color: #ffffff;
	padding: 12px 10px 12px 34px;
	box-shadow: 2px 2px 0 3px rgba(182,196,204,0.5);
	border-radius: 4px;
	line-height: 1.5;
	position: relative;
}
.box_green{
	background-color: #ffffff;
	border:3px solid #00b2bc;
	padding: 26px 10px 26px 34px;
	border-radius: 4px;
	line-height: 1.5;
	position: relative;
}
.box_number{
	font-size: 1.25rem;
	color: #ffffff;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	background-color: #00b2bc;
	display: flex;
	align-items: center;
	justify-content: center;
	
	position: absolute;
	top:-0.75rem;
	left: -0.75rem;
}
/*
.box_white_shadow{
	box-shadow:8px 8px 0 rgba(182,196,204,0.5);
	border-radius: 4px;
	background-color: #ffffff;
}*/

.underline_light{
	/*ベンダー必要!*/
    background-image: -webkit-linear-gradient(left,transparent 50%,rgba(0,162,182,0.25) 50%);
    background-image: -moz-linear-gradient(left,transparent 50%,rgba(0,162,182,0.25)  50%);
    background-image: -ms-linear-gradient(left,transparent 50%,rgba(0,162,182,0.25)  50%);
    background-image: -o-linear-gradient(left,transparent 50%,rgba(0,162,182,0.25)  50%);
    background-image: linear-gradient(left,transparent 50%,rgba(0,162,182,0.25)  50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .8em;
    transition: all 3.5s ease;
}
.underline_light.is-show{background-position: -100% .8em;}

.underline_yellow{
	/*ベンダー必要!*/
    background-image: -webkit-linear-gradient(left,transparent 50%,#fff799 50%);
    background-image: -moz-linear-gradient(left,transparent 50%,#fff799  50%);
    background-image: -ms-linear-gradient(left,transparent 50%,#fff799 50%);
    background-image: -o-linear-gradient(left,transparent 50%,#fff799  50%);
    background-image: linear-gradient(left,transparent 50%,#fff799 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .8em;
    transition: all 3.5s ease;
}
.underline_yellow.is-show{background-position: -100% .8em;}

.ul_list_gray{
	display: flex;
	flex-wrap:wrap; 
}
.ul_list_gray li , .tab_gray{
	padding: 1px 10px ;
	background-color: #f0f5f7;
	border-radius: 4px;
	margin: 2px 4px;
}

 /****************************************************
/*共通
/****************************************************/
#home_aboutus .container-fluid ,#home_business_title .container-fluid ,#home_products .container-fluid ,#home_recruit .container-fluid ,#aboutus_outview_photo .container-fluid{
	max-width: 1800px;
}

ul li.dotted{ /*footermenuでも使っているので注意*/
	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', sans-serif;
	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', sans-serif;
    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', sans-serif;
	font-weight: 900!important;
}

.font_num_bold{
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
}

.font_min{
	/*使う際にはheaderで取り込む*/
	font-family: 'Noto Serif JP', serif;
}
.fs_14{font-size:0.875rem!important;}
.fs_16{font-size: 1rem!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;}

.color_black{color:#0d0d0d;}
.color_white{color: #ffffff;}
.color_red{color:#e60000;}
.color_gray{color:#b6c4cc;}
.color_bluegreen{color:#00a2b6;}

.bg_black{background-color: #000000;}
.bg_dark{background-color: #222222;}
.bg_light{background-color: #f0f5f7;}
.bg_gray{background-color:#b6c4cc;}
.bg_bluegreen{background-color: #00a2b6;}
.bg_gradient{
	background: #00a2b6;
background: -moz-linear-gradient(-45deg,  #00a2b6 20%, #11cf79 100%);
background: -webkit-linear-gradient(-45deg,  #00a2b6 20%,#11cf79 100%);
background: linear-gradient(135deg,  #00a2b6 20%,#11cf79 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00a2b6', endColorstr='#11cf79',GradientType=1 );
}

.tag_light{
	background-color:#f0f5f7;
	font-size:0.875rem;
	padding: 1px 6px;
	border-radius:2px; 
	margin-right: 4px;
}
.tag_green{
	background-color:#00a2b6;
	display: inline!important;
	color: #ffffff;;
	font-size:0.875rem;
	padding: 1px 6px;
	border-radius:2px; 
	margin-right: 4px;
}
.opacity_0{opacity: 0;}

/*-----------------------------------------------------
レスポンシブ
-----------------------------------------------------*/
@media (min-width: 1200px){

}
@media (max-width: 1199.98px) { /*xl*/

}
@media(max-width:991.9px){/*lg*/
	#header {height: 70px;}
	#g-nav{
	   background:linear-gradient(rgba(0, 0, 0, .85),  rgba(0, 0, 0, .85)),  url(../images/nav_bg@05x.jpg);
		background-size: cover;
		background-position: center center;
	}
	.mainvideo{background: url(../images/mainmovie_poster@05x.jpg) no-repeat center/cover;}

	  #footer_menu .menu_col{width:50%;}
	  #home_aboutus_bg{
		    bottom: 0;
			top:0;
			width: 60vw;
	}
	#home_business_title{	background-image: url(../images/home_business_bg@05x.jpg);}
	#home_products{
		background:linear-gradient(rgba(0, 0, 0, .7),  rgba(0, 0, 0, .7)),  url(../images/home_products_bg@05x.jpg);
		/*必要*/   
		background-size: cover; 
		background-position: left center; 
	}
	ul#ul_interview_gallery li {width: 25%;}
	
	.flow_border::after{
	 width: 1px;
	 height: 100%;
	 top :0;
	 right:0;
	left: 50%;
	}

	#industrial_flow ul{
	   display: flex;
	   padding: 10px 20px;
	}
	#industrial_flow ul li{	padding: 0 5px;}
	
	.timeline dl dt{margin-bottom: 4px;}
	.timeline dl dt span{display:inline;text-align: left;}
	
	.gallery_col4 li{width:48%;}
}

@media (max-width:767.9px) {/*md: sp*/
	#header {height: 70px;}
	#header h1 {padding-right:80px; }
	#header .header_logo{ max-width: 100px;}
/*humberger menu*/
	.contactbtn , .openbtn{
		 width: 60px;
		 height: 60px;
		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;}
	
	#g-nav{
	   background:linear-gradient(rgba(0, 0, 0, .85),  rgba(0, 0, 0, .85)),  url(../images/nav_bg_sp.jpg);
		background-size: cover;
		background-position: center center;
	}
	
	#mainimg h2{margin-top: calc(70px + 5vh);}
	.mainvideo video{
  		height: 100%;
		width: auto;
	}	

   #home_products{
	background:linear-gradient(rgba(0, 0, 0, .7),  rgba(0, 0, 0, .7)),  url(../images/home_products_bg_sp.jpg);
	/*必要*/   
	background-size: cover; 
	background-position: left center; 
	}
	#subpage_nav a{border-right: none;}
	ul#ul_interview_gallery li {width: 50%;}
	dl.dl_interview_item dt{ align-items:flex-start;}
	.gallery_col2 li,.gallery_col3 li,.gallery_col4 li{width:80%;}
	
	ul.ul_flow_pra{flex-direction: column;}
	ul.ul_flow_pra li{width: 100%; max-width:300px; }
	ul.ul_flow_pra li::after{
	content:'\f063'; /*arrow*/
	top:inherit;
	right:inherit;
	bottom:0;
	left: 50%;
}

}

/*sm*/
@media (max-width:575.9px){
	#g-nav{
	   background:linear-gradient(rgba(0, 0, 0, .85),  rgba(0, 0, 0, .85)),  url(../images/nav_bg_sp@075x.jpg);
		background-size: cover;
		background-position: center center;
	}
	#g-nav li a{padding: 10px 2px;}
	
	.mainvideo{background: url(../images/mainmovie_poster@025x.jpg) no-repeat center/cover;}
	
	 #home_topics .ticker {height: 70px!important;}
	#footer_menu .menu_col{width:100%;}
	#home_aboutus_bg{
			bottom: 0;
			top:0;	
			width: 100vw;
	}
	 #home_business_title{background-image: url(../images/home_business_bg@025x.jpg);}
	 #home_products{
			background:linear-gradient(rgba(0, 0, 0, .7),  rgba(0, 0, 0, .7)),  url(../images/home_products_bg_sp@075x.jpg);
			/*必要*/	 
			background-size: cover; 
			background-position: left center; 	 
	}
	#video_title{
		position:static
	}
	
	ul#ul_interview_gallery li {width: 90%;max-width: 300px;}
	.interview_item h3{line-height: 1.5;}
	.gallery_col2 li,.gallery_col3 li,.gallery_col4 li{width:90%;}
}

@media (max-width:380px){
	#splash-logo{width:80vw;}
}
	

