@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	font-size: 20px;
	color: #fff;
	line-height:1.6;
	font-family: 'Zen Kaku Gothic New', sans-serif;
	cursor: none;
}

/* cursor */
#cursor{
	position: fixed;
	background: #fff;
	border-radius:10px;
	width: 10px;
	height: 10px;
	margin: -5px 0 0 -5px;
	z-index: 999;
	pointer-events: none;
	opacity: 0;
	transition: transform 0.1s;
}

#stalker{
	position: fixed;
	border: solid 2px #fff;
	width: 60px;
	height: 60px;
	border-radius: 100px;
	margin: 0 0 0 -30px;
	z-index: 998;
	pointer-events: none;
	opacity: 0;
	transition: transform 0.5s;
}

#cursor.active{transform: scale(1.8);}
#stalker.active{
	transform: scale(1.8);
	border: solid 2px #08B308;
}

nav ul {
    padding-inline-start: 0;
}

.sp-only{
	display: none;
}

a,a:visited{
	text-decoration: none;
}

a:hover{
	opacity: 0.8;
	-webkit-transition: color .3s ease,background-color .3s ease;
    transition: color .3s ease,background-color .3s ease;
}

header{
	background-color:rgba(0,0,0,0.65);
	color: #f2f3f5;
	width: 100%;
	height: 80px;
	position: fixed;
	z-index: 99;
}

.header{
	display: flex;
	justify-content: space-between;
}

h1{
	display: inline-block;
	margin: 10px;
	width: 210px;
}

ul li{
	display: inline-block;
	margin: 40px 10px 10px;
}

ul li a,ul li a:visited,
.h-add,.h-add a,.h-add a:visited{
	color: #f2f3f5;
	font-weight: 700;
}

ul li a:hover,.footer-link table td a:hover{
    color: #08B308;
}

.h-right{
	display: flex;
	height: 80px;
}

.h-rec{
	background-color: #fff;
	padding-top: 10px;
}

.h-con{
	background-color: #000;
	padding-top: 12px;
}

.h-btn{
    display: inline-block;
    width: 140px;
    max-width: 100%;
    text-align: center;
}

.h-rec:hover,.h-con:hover{
	background-color: #FE4D00; 
	-webkit-transition: color .3s ease,background-color .3s ease;
    transition: color .3s ease,background-color .3s ease;
}



/*** HEADER RESPONSIVE ***/
.resoponsive-nav-sm{display: none;}

@media (max-width: 1100px){
    .responsive-nav-lg{display: none;}   
    .h-right{display: none;}   
    .h-con{display: none;}   
    }
    @media (min-width: 1100px){
        .hamburger{display: none;}
    }

#toggle {
    display: none;
  }
  
/** Hamburger **/
  .hamburger {
    position: absolute;
    top: 4em;
    right: 5%;
    margin-left: -2em;
    margin-top: -45px;
    width: 2em;
    height: 45px;
    z-index: 5;
  }
  
  .hamburger div {
    position: relative;
    width: 2.6em;
    height: 3px;
    background-color: #fff;
    margin-top: 8px;
    transition: all 0.3s ease-in-out;
  }
  
  /** Nav Styles **/
  .nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #272727;
    top: -100%; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    transform: scale(0);
  }
  .nav-wrapper {
    position: relative;
    overflow: hidden;
    overflow-y: auto;
    height: 100%;
  }
  .nav-sm {
    text-align: center;
    margin-top: 100px;
  }
  .nav-sm a {
    position: relative;
    text-decoration: none;
    color: #f2f3f5;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    margin-top: 1em;
    transition: color 0.2s ease-in-out;
    letter-spacing: 1px;
  }
  .nav-sm a:before {
    content: '';
    height: 0;
    position: absolute;
    width: 0.25em;
    background-color: white;
    left: -0.5em;
    transition: all 0.3s ease-in-out;
  }
  .nav-sm a:hover {
    color: white;
  }
  .nav-sm a:hover:before {
    height: 100%;
  }
  
/** Animations **/
  #toggle:checked + .hamburger .top-bun {
    transform: rotate(-45deg);
    margin-top: 25px;
  }
  #toggle:checked + .hamburger .bottom-bun {
    opacity: 0;
    transform: rotate(45deg);
  }
  #toggle:checked + .hamburger .meat {
    transform: rotate(45deg);
    margin-top: -7px;
  }
  
  #toggle:checked + .hamburger + .nav {
    top: 0;
    transform: scale(1);
  }


/*** nav contact ***/

  .h-center{
    color: #f2f3f5;
    margin: 30px auto;
    text-align-last: center;
	text-align: center;
    font-weight: 600;
    font-size: 22px;
    line-height: 2;
  }
  .h-center a{
    color: #f2f3f5;
    font-size: 22px;
  }

  .h-con-btn{
	  text-align-last: center;
	  text-align: center;
}

/*** Main ***/
main{
	background-color: #1D1D21;
}

#mainvisual {
    position: relative;
    padding: 0;
}

.mainv-imgbox {
    text-align: right;
    max-height: 100vh;
    min-height: 500px;
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-left: auto;
}

.mainv-txtbox {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: calc((100% - 170px)/ 2);
}

.mainv-txtbox h2 img{
    display: inline-block;
	padding: 20px;
	max-width: 90%;
}

#to-top{
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
    background-color:rgba(0,0,0,0.75);
	padding: 7px 12px 4px;
}

#to-top:hover{
	background-color:rgba(254,77,0,0.75);
	-webkit-transition: color .3s ease,background-color .3s ease;
    transition: color .3s ease,background-color .3s ease;
}


.sec-company{ 
	margin: 0 auto;
}

.top-container{
	width: 1280px;
	max-width: 95%;
	margin: 0 auto;
	padding: 200px 0;
	z-index: 1;
	position:  relative;
}

.top-pad{
	padding: 50px 0;
	position: relative;
}

.com-container {
    display: flex;
    flex-wrap: wrap;
}

/*** section ***/

h3,h4{
	margin-bottom: 4rem;
	text-align: center;
	vertical-align: middle;
}

h3 img{
	max-width: 90%;
}

h3 span{
	font-size: 28px;
	background:linear-gradient(transparent 60%, #000 60%);
}

.btn-prev{
	text-align: right;
	display: block;
	position: relative;
	z-index:2;
	margin-top: 3rem
}

.btn-prev:after{
	position:absolute;
	background-color: #000;
	content: "";
	width: 65px;
	height: 65px;
	left: 375px;
	top:-15px;
	z-index:-1;
}

.btn-prev:hover{
	color: #08B308;
}

.btn-prev img{
	vertical-align: middle;
	margin-left: 20px;
}

.top-page-btn{
    text-align: -webkit-center;
	margin-block-end: 4rem;
}

.sec-2col,.sec-info{
	display: flex;
	align-items: center;
	margin: 10rem auto;
	justify-content:space-around;
}

.sec-2col-item{
	width: 50vw;
	margin: 0 auto;
    text-align: center;
}

.recruit{
	padding:5rem 0;
}

.info,.news{
	padding:5rem 0;
	background-color: #161619;
}

.sec-info-item{
	width:45%;
	position: relative;
}

.sec-info-over{
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background-color: rgba(0,0,0,0.75);
	border: solid 1px #fff;
	padding:20px;
	width: 400px;
    height: 300px;
	display: block;
}

.sec-info-over h4{
	font-size: 24px;
	margin: 2rem 0; 
}

.sec-info-item img{
	width:100%;
}

.sec-info-item img.btn-prev{
	width: 15%;
    margin: 3rem 0 0 auto;
}

.sec-info-item .btn-prev:after {
    content: none;
}

.sec-difficult-processing p,.sec-quality p,.sec-2col-item p{
	font-size: 24px;
	font-weight: bolder;
}

.sec-2col-item p{
	display: inline-block;
    margin: 0 auto;
    text-align: left;
}


.sec-difficult-processing span,.sec-quality span,.sec-2col-item p span{
	font-size: 20px;
}

.sec-2col-item .sec-2col-img{
	width: 100%;
}

.sec-difficult-processing {
    position: relative;
    background: url("../img/index/img002.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
	text-align: center;
}

.sec-quality {
    position: relative;
    background: url("../img/index/img004.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
	text-align: center;
}

.container{
	width: 1080px;
    max-width: 95%;
    margin: 0 auto;
	padding: 10rem 0;
}

.bg-bk{
	background-color: rgba(0,0,0,0.40)
}

.sec-rec{
	width: 90vw;
	margin: 0 0 0 auto;
}

.rec-img{
	width: 90vw;
	display: block;
	margin: 0 0 0 auto;
}

.sec-rec h4{
	font-size: 50px;
	text-align: left;
}

.news-container{
	width: 1080px;
    max-width: 95%;
    margin: 0 auto;
}

.news-colum{
	overflow-y: scroll;
    margin: 50px auto 20px;
    width: 100%;
    height: fit-content;
    border: none;
}

.news-colum dl {
    border-bottom: 1px solid #ccc;
    line-height: 40px;
}

.news-colum dl dt {
    width: 120px;
    margin: 0;
    padding-top: 16px;
    float: left;
	color: #FE4D00;
}

.news-colum dl dd {
    margin: 0 0 0 120px;
    padding: 15px;
}

.arrow-hover{
	width: 150px;
	height: 20px;
	position: relative;
    display: inline-block;
}

.arrow-hover .arrow-color{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 6px;
	z-index: 99;
}
.arrow-hover .arrow-color:last-child{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	padding-top: 6.9px;
	z-index: 99;
}
.arrow-hover:hover .arrow-color {
	display: inline;
}

.arrow-green{
	margin-top: 3rem;
}

.button-top{
	margin-block-start: 4rem;
 	width: 290px;
	height:77px;
	position: relative;
    display: inline-block;
}

.button-top .button-hover{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
}
.button-top:hover .button-hover {
	display: inline;
}

@media (max-width: 769px){
	.arrow-hover .arrow-color{
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		padding-top: 0px;
		z-index: 99;
	}
	.arrow-hover .arrow-color:last-child{
		display: none;
		position: absolute;
		top: 0;
		left: 0;
		padding-top: 0px;
		z-index: 99;
	}
}


/*** Footer ***/

footer{
    background-color: #1d1d20;
}

.foot-con {
    position: relative;
    background: url("../img/common/img-foot-con.jpg") center no-repeat;
    background-size: cover;
    background-attachment: fixed;
    z-index: 0;
	text-align: center;
}

.foot-con p{
	margin-bottom: 50px;
}

.contact-btn{
	display: inline-block;
	margin: 20px;
	width: 425px;
	max-width: 90%;
	line-height: 120px;
	border: solid 2px #fff;
	background-color:rgba(0,0,0,0.65); 
	font-size: 20px;
	font-weight: bolder;
}

.contact-btn svg{
	fill:#fff;
}

.contact-btn #tel-svg{
	transform: translate(-5px, 10px);
}

footer .sec-2col .sec-2col-item{
	text-align: left;
}

footer .sec-2col .foot-banner{
	text-align: right;
}

footer .sec-2col .sec-2col-item p{
    margin-bottom: 2rem;
	font-size: 20px;
}

footer .footer-nav{
	padding-inline-start: 0;
}

footer .footer-nav li{
	display: inline-block;
    margin: 10px 30px 0 0 ;
}

.powerd-by{
	width: 1080px;
    max-width: 95%;
    margin: 0 auto;
	text-align: right;
	padding-bottom: 20px;
}


/*common*/


.inner{
  width: 1400px;
  max-width: 90%;
  margin: 0 auto;
}


/*product*/
.spec{
	margin: 0 auto;
}
.produce{
	margin: 0 auto;
}
.back-color{
	background-color: #161619;
	width: 100%;
	padding-bottom: 160px;
	margin-bottom: 70px;
}

.title_image{
	width: 100%;
	padding-top: 80px;
}

.title_image img{
	width: 100%;
	height:auto;
}

.spec-flex{
	display: flex;
	justify-content: space-between;
	 flex-wrap: wrap;
}

.half-container{
	width: 50%;
	text-align: center;
	margin-bottom: 4rem;
}

.orange-word-under h4,.orange-word-left h4,.orange-word-right h4{
	color: #FE4D00;
	font-size: 2rem;
	margin-bottom: 1rem;
	text-align: center;
}

.orange-word-left h4{
	margin-right: 2.1rem;
}

.orange-word-right h4{
 	margin-left: 2.1rem;
}

.mini-black-box1,.mini-black-box2{
	width: 92%;
	height: 16.25rem;
	background-color: #000;
	border: 1px solid #ACACAC;
	position: relative;
	text-align:left;
}


.mini-black-box1 p,.mini-black-box2 p{
	height:100px;
  width: 17rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.mini-black-box2{
	margin: 0 0 0 auto;
}

.big-black-box{
	width: 100%;
	height: 16.25rem;
	background-color: #000;
	border: 1px solid #ACACAC;
	position: relative;
	text-align:left;
}

.big-black-box p{
  height: 220px;
  width: 45rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.big-container{
	width: 95%;
	max-width: 1400px;
    margin: 0 auto;
}

.produce{
	width: 100%;
	box-sizing: border-box;
}

.products {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
	
	height: 2070px;
	padding-bottom: 150px;
	gap:3em;
}


.pro_box{
	max-width: 420px;
}
.pro_txt{
	border-collapse: collapse ;
	border-color: #000;
	width: 100%;
	height: 270px;
}

.pro_txt th{
	text-align: left;
}

.pro_txt td,.pro_txt th{
	padding: 20px 25px;
	font-size: 16px;
}


.pro_bo img{
	width: 100%;
}

.pro_line_b th{
	margin: 20px 50px;
	
}

 .pro_line_b{
	background-color: #000;
}

.pro_line_g{
	background-color:#161619;
}


@media (max-width:1450px){
	
	.spec-flex{
		display: block;
	}
	
	.half-container{
		margin: 0 auto;
	}
	
	.orange-word-left h4{
		margin-right: initial;
	}
	
	.orange-word-right h4{
		margin-left: initial;
	}
	
	.mini-black-box1,.mini-black-box2{
		margin: 0 auto;
	}
	
	.orange-word-left,.orange-word-right,.orange-word-under{
		margin-top: 4rem;
	}
	
	.products{
	padding-bottom: 1300px;
		margin: 0 auto;
	}
	
	.big-black-box{
		margin: 0 auto;
		width:70%;
	}

	.mini-black-box1 p,.mini-black-box2 p{
	height:220px;
  width: 13.5rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 font-size: 1.0rem;
	}
	
.big-black-box p{
  height:225px;
  width: 21.5rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 font-size: 0.9rem;
	}
	
	
	.big-container{
		padding-bottom: 15rem;
	}
}

@media (max-width:950px){
	.products{
	padding-bottom: 3800px;
	}
	
		.big-container{
		padding-bottom: 20rem;
	}
	

}

@media (max-width:700px){
.mini-black-box1 p,.mini-black-box2 p{
	height:225px;
  width: 6.0rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 font-size: 0.7rem;
	}
	
.big-black-box p{
  height:215px;
  width: 9.5rem;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
 font-size: 0.6rem;
	}
	
	.spec img,.produce img{
		width: 100%;
	}
	
	.orange-word-left h4,.orange-word-right h4,.orange-word-under h4{
		font-size: 1.5rem;
	}
	
	.products{
		padding-bottom: 220rem;
	}
	
}

/*company*/

.title-box{
	    position: relative;
}
.title-box img{
	max-width: 100%;
}
.title-box h1{
	position: absolute;
    width: fit-content;
    font-size: 70px;
    font-weight: 700;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.president-container{
	width: 100%;
	max-width: 1920px;
}

.title-president{
	text-align: center;
	margin: 6.0rem 0 4.5rem;
}

.president-contents{
	display: flex;
	gap: 4rem;
}

.challenge-spirit{
	width: 50%;
	height: 30rem;
	text-align: center;
}

.challenge-spirit img{
	margin-bottom: 2.5rem;
}
.challenge-spirit p{
	text-align: left;	
}


.overview{
	margin-bottom: 17rem;
}
.title-overview{
	text-align: center;
	margin-bottom: 4rem;
}
.overview table{
	margin: 0 auto;
}

