@charset "utf-8";


/*------------------------------------------------
#top_img
------------------------------------------------*/
#top_img {
	position: relative;
	width: 100%;
	overflow: hidden;
}
#top_img .swiper-slide {
	position: relative;
}
#top_img .swiper-slide img {
	object-fit: cover;
	height: 100%;
	width: 100%;
}
#top_img .swiper-slide {
	height: calc( 100vh - 100px );
}
#top_img .main_copy {
	position: absolute;
	z-index: 50;
  top: 8%;
  left: 4%;
	display: flex;
	align-items: center;
	gap: 1.5rem;
}
#top_img .main_copy img {
}
#top_img .main_copy p {
	/*font-family: 'メイリオ', 'Meiryo';*/
	font-size: 2.2rem;
	color: var(--text-color_blue);
	white-space: nowrap;
	text-shadow:
		0 0 3px rgb(255 255 255 / 0.9),
    0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9),
		0 0 3px rgb(255 255 255 / 0.9);
}
@media screen and (max-width: 1140px) { 
	#top_img .main_copy img {
		max-width: 240px;
		width: auto;
	}
}
@media screen and (max-width: 768px) {
	#top_img .main_copy {
		width: 95%;
		display: block;
	}
	#top_img .main_copy img {
		max-width: 40%;
		width: 40%;
	}
	#top_img .main_copy p {
		font-size: 2.0rem;
	}
}
@media screen and (max-width: 640px) {

}
@media screen and (max-width: 480px) {
	#top_img .main_copy {
		top: 4%;
	}
	#top_img .main_copy p {
		font-size: 1.6rem;
		line-height: 1.4;
	}
	#top_img .main_copy img {
		margin-bottom: 0.8rem;
	}
}


/*------------------------------------------------
#products
------------------------------------------------*/
#products .img_box_list {
	display: flex;
	flex-wrap: wrap;
	gap: 4%;
}
#products .img_box_list .box {
	margin-bottom: 3rem;
	width: 22%;
}
#products .img_box_list .box a:hover {
	opacity: 0.6;
}
#products .img_box_list .box img {
	margin: 0 auto 1rem auto;
}
#products .img_box_list .box .name {
	margin-bottom: 0.5rem;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
}
#products .img_box_list .box .name::after {
	display: block;
	content: "";
	width: 50px;
	height: 2px;
	margin: 0.3rem auto 0 auto;
	background-color: var(--key-color);
}
#products .img_box_list .box .text {
	line-height: 1.6;
	text-align: center;
}
#products .btn_arrow {
	text-align: center;
}


/*------------------------------------------------
#maintenance
------------------------------------------------*/
#maintenance ul {
	display: flex;
	justify-content: space-between;
	gap: 0 2rem;
}
#maintenance ul li {
	width: 50%;
	padding: 3rem 3rem 2rem 3rem;
	background-color: #fff;
	display: flex;
	flex-direction: column;
}
#maintenance ul li img {
	margin: 0 auto 2rem auto;
	height: 80px;
}
#maintenance ul li .text_box {
	display: flex;
  flex-direction: column;
	height: 100%;
}
#maintenance ul li .text_box .btn_arrow {
	margin-top: auto;
}
#maintenance ul li .title {
	margin-bottom: 0.8rem;
	font-weight: bold;
	font-size: 1.2rem;
	text-align: center;
}
#maintenance ul li .text {
	margin-bottom: 2rem;
	line-height: 1.8rem;
}
#maintenance .btn_arrow {
	text-align: center;
}
@media (max-width: 640px) {
	#maintenance ul li {
		padding: 2rem 2rem 1rem 2rem;
	}
	#maintenance ul li .text {
		margin-bottom: 1.4rem;
	}
	#maintenance .btn_arrow a {
		display: block;
		padding-left: 1rem;
	}
}
@media (max-width: 480px) {
	#maintenance ul {
		flex-direction: column;
		gap: 2rem 0;
		width: 100%;
	}
	#maintenance ul li {
		width: 100%;
	}
	#maintenance .btn_arrow a {
		padding-left: 5rem;
	}
}




/*------------------------------------------------
#news
------------------------------------------------*/
#news dl {
	display: flex;
	padding: 0.8rem 0.5rem;
	border-bottom: 1px dotted var(--bg-color-5);
}
#news dl dt {
	flex-basis: 10%;
	margin-right: 2rem;
}
#news dl dd {
	flex-basis: 90%;
	letter-spacing: 0.05rem;
}
#news .btn_arrow {
	text-align: center;
}


