@charset "utf-8";

/* loading animation */
#loading-wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
  z-index: 99999;
	transform: skewX(-35deg);
  transition: all .8s ease-in-out;
}
#loading-left,
#loading-right {
  position: fixed;
	background-color: #fff;
  background-color: #f6f6f6;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  transition: all .8s ease-in-out;
}
#loading-left {
	right: calc(50% - 1px);
  top: 0;
}
#loading-right {
  left: calc(50% - 1px);
  bottom: 0;
}
#loading-wrap.move {display: none;}
#loading-left.move-left {transform: translateX(-120%);}
#loading-right.move-right {transform: translateX(120%);}



/* mainimage */
.top-image {
  background: url("../img/top/slide01.jpg") center no-repeat;
  background-size: cover;
  height: 100vh;
  width: 100%;
  position: relative;
  top: 0;
  left: 0;
}
.catch {
  position: absolute;
  filter: drop-shadow(7px 7px 5px rgba(0,0,0,0.7));
	width: 100%;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
	color: #fff;
	text-align: center;
	font-weight: bold;
	font-size: clamp(3.2rem, 2.545rem + 3.27vw, 5rem);
	line-height: 1.3;
}
.catch span {opacity: 0;}
.catch.appeartext span{ animation:text_anime_on .5s ease-out forwards; }
@keyframes text_anime_on {
  0% {opacity:0;}
  100% {opacity:1;}
}
@media screen and (max-width: 768px) {
  .top-image {
    background: url("../img/top/slide01_tb.jpg") center no-repeat;
    background-size: cover;
  }
	.catch{font-size: clamp(3.4rem, 3.255rem + 0.73vw, 3.8rem);}
}
@media screen and (max-width: 480px) {
	.catch {width: 90%;}
}



/* product list
--------------------------------------------------------------------------------------*/
.products-wrap {
  background-color: #00112c;
  width: 100%;
  margin: auto;
}
.product-box {
  padding: 80px 12.5% 80px 0;
	background-position: center;
	background-repeat: no-repeat;
  background-size: cover;
	display: flex;
	justify-content: space-between;
	flex-direction: row-reverse;
}
.product-box:nth-child(even) {
  padding: 80px 0 80px 12.5%;
	flex-direction: row;
}
.product-box.kenna {background-image: url(../img/top/bg_kennametal.jpg);}
.product-box.haynes {background-image: url(../img/top/bg_haynes.jpg);}
.product-box.gtv {background-image: url(../img/top/bg_gtv.jpg);}
.product-box.deloro {background-image: url(../img/top/bg_deloro.jpg);}
.product-box-inner {
  width: 45%;
  height: 25vw;
	max-width: 700px;
	max-height: 400px;
  position: relative;
  padding: 30px;
  box-sizing: border-box;
}
.product-box.kenna .product-box-inner {background: #f4ca20;}
.product-box.haynes .product-box-inner {background: #de3232;}
.product-box.gtv .product-box-inner {background: #317eb2;}
.product-box.deloro .product-box-inner {background: #004899;}
.product-box.kenna .product-box-inner .logo {width: 41%;}
.product-box.haynes .product-box-inner .logo {width: 35%;}
.product-box.gtv .product-box-inner .logo {width: 19%;}
.product-box.deloro .product-box-inner .logo {width: 37%;}
.product-box-inner .desc {
  position: absolute;
  bottom: calc(22px + 4vw);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  width: calc(100% - 60px);
}
.product-box-inner .btn a {
  position: absolute;
  bottom: 30px;
  color: #333;
  font-size: clamp(1.8rem, 1.4vw, 2.2rem);
  font-weight: bold;
  border-radius: 100px;
  background-color: #fff;
  padding: .2em 1em;
  width: calc(100% - 60px - 2em);
	text-decoration: none;
}
.product-box-inner .btn a br{
  display: none;
}
.product-box-inner .btn a::after {
  content: url(../img/arrow.svg);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  width: 14px;
  height: 22px;
  line-height: 0;
}
@media screen and (max-width: 768px) {
	.product-box {padding: 80px 5% 80px 0;}
	.product-box:nth-child(even) {padding: 80px 0 80px 5%;}
  .product-box-inner {height: 50vw; width: 55%;}	
  .product-box.kenna {background-position: left 15% center;}
  .product-box.haynes {background-position: right 15% center;}
  .product-box.gtv {background-position: left 15% center;}
  .product-box.deloro {background-position: right 15% center;}
  .product-box.kenna .product-box-inner .logo {width: 61.5%;}
  .product-box.haynes .product-box-inner .logo {width: 52.5%;}
  .product-box.gtv .product-box-inner .logo {width: 28.5%;}
  .product-box.deloro .product-box-inner .logo {width: 55.5%;}
  .product-box-inner .desc {
    bottom: 15vw;
    font-size: 1.6rem;
  }
  .product-box-inner .btn a {
    font-size: 2.0rem;
    text-align: center;
  }
  .products-wrap .btn a br{display: block;}
}
@media screen and (max-width: 480px) {
  .products-wrap {display: block;}
  .product-box {
		width: 100%;
		padding: 80px 0;
	}
	.product-box:nth-child(even) {padding: 80px 0;}
  .product-box-inner {
		width: 90%;
		height: 50vh;
		max-height: none;
		margin: 0 auto;
	}
  .product-box-inner .desc {bottom: 30vw;}
}



/* news & blog
--------------------------------------------------------------------------------------*/
.top-sec01 {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 80px auto;
}
.top-sec01 .news,
.top-sec01 .blog {}
.top-sec01 .news {
  position: relative;
  width: 60%;
	display: flex;
	justify-content: space-between;
}
.top-sec01 .news .news-left {}
.top-sec01 .news .news-title {
	line-height: 1.4;
	margin-bottom: 1em;
	font-size: 1.6rem;
	color: #666;
}
.top-sec01 .news .news-title span {
  display: block;
	font-family: "Roboto Condensed", sans-serif;
  font-size: 5.0rem;
	font-weight: normal;
	color: #333;
}
.top-sec01 .news .btn-list {}
.top-sec01 .news .btn-list a {
	position: relative;
  display: inline-block;
  border: solid 1px #969696;
  border-radius: 50px;
  padding: 2px 30px 2px 10px;
  color: #969696;
  text-decoration: none;
}
.top-sec01 .news .btn-list a::after {
  content: url(../img/arrow.svg);
  position: absolute;
  top: 50%;
  right: 0.5em;
  transform: translateY(-50%);
  width: 6px;
  height: 10px;
  line-height: 0;
}
.top-sec01 .news .btn-list a:hover {
  color: #00c8ff;
  border-color: #00c8ff;
}
.top-sec01 .news .btn-list a:hover::after {content: url(../img/arrow_lb.svg);}
.top-sec01 .news ul {
  background-image: linear-gradient(to right, #969696, #969696 2px, transparent 2px, transparent 6px);
  background-size: 6px 1px;
  background-position: left top;
  background-repeat: repeat-x;
	width: calc(100% - 160px);
}
.top-sec01 .news li {
  background-image: linear-gradient(to right, #969696, #969696 2px, transparent 2px, transparent 6px);
  background-size: 6px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding: 1.5em 1em;
  box-sizing: border-box;
}
.top-sec01 .news li .date {margin-right: 1em;}
.top-sec01 .news li a {text-decoration: none;}
.top-sec01 .blog {
  width: 36%;
	max-width: 480px;
	position: relative;
}
.top-sec01 .blog a {
	display: block;
  width: 100%;
	height: 100%;
	background: url("../img/top/ban_blog.jpg") top center no-repeat;
	background-size: cover;
	/*aspect-ratio: 2 / 1;*/
}
.top-sec01 .blog a:hover {opacity: .8;}
.top-sec01 .blog p {
	position: absolute;
	top: 5px;
	left: 15px;
	line-height: 1.4;
	margin-bottom: 0.5em;
	font-size: 1.6rem;
	color: #666;
	font-weight: bold;
}
.top-sec01 .blog p span {
  display: block;
	font-family: "Roboto Condensed", sans-serif;
	color: #333;
  font-size: 5.0rem;
	font-weight: normal;
}
.top-sec01 .blog img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
@media screen and (max-width: 1280px) {
	.top-sec01 .news ul li {padding: 1em;}
  .top-sec01 .news ul li .date {display: block;}
}
@media screen and (max-width: 768px) {
  .top-sec01 {
    display: block;
    width: 90%;
  }
  .top-sec01 .news {width: 100%;}
	.top-sec01 .news {display: block;}
	.top-sec01 .news .news-left {
		display: flex;
		justify-content: space-between;
	}
	.top-sec01 .news .btn-list {align-content: center;}
	.top-sec01 .news .news-title span {
		display: inline-block;
		margin-right: .25em;
	}
  .top-sec01 .news ul {width: 100%;}
  .top-sec01 .news ul li .date {display: inline-block;}
  .top-sec01 .blog {width: 50%;}
	.top-sec01 .blog {margin-top: 50px;}
	.top-sec01 .blog {max-width: none;}
  .top-sec01 .blog a {
    max-width: none;
    aspect-ratio: 2 / 1;
  }
}
@media screen and (max-width: 480px) {
  .top-sec01 .news ul li .date {display: block;}
  .top-sec01 .blog {width: 100%;}
}

