@charset "UTF-8";
/* CSS Document */

#main_visual {
	position: relative;
	width: 100%;
	height: 100vh;
}
#main_visual .visual {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../img/product-p.jpg") no-repeat center;
	background-size: cover;
}
@media only screen and (max-width: 768px) {
	#main_visual {
		position: relative;
		width: 100%;
		height: 70svh;
		margin-top: 10vh
	}
	#main_visual .visual {
		background: url("../img/product-s.jpg") no-repeat center;
		background-size: cover;
	}
	
}

#main_contents {
	position: relative;
}
#main_contents section {
	margin: 0 auto;
}

#main_contents img {
	width: 100%;
}
#main_contents .look {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	column-gap: 5px;
	margin: 5px auto;
}
#main_contents .look .img {
	position: relative;
	line-height: 0;
	margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
	#main_contents .look {
		display: grid;
		grid-template-columns: 1fr 1fr;
	}
}





#main_contents .product {
	width: 100%;
	margin: 5% auto;
	box-sizing: border-box;
	padding: 50px 0 0;
	position: relative;
}
#main_contents .product h3 {
	text-align: center;
	font-size: 28px;
	font-weight: 600;
	color: #FFF;
	position: relative;
	z-index: 10
}
#main_contents .product::before {
	content: "";
	background: #000;
	position: absolute;
	top: 0;
	left: 5%;
	width: 90%;
	height: 100%;
	z-index: 0
}
#main_contents .product .category {
	text-align: center;
	position: relative;
	z-index: 1
}
#main_contents .product .category a {
	display: inline-block;
	text-decoration: underline;
	color: #FFF;
	font-size: 12px;
	margin: 0 10px;
} 
@media only screen and (max-width: 768px) {
	#main_contents .product::before {
		left: 0%;
		width: 100%;
	}
	
}

#main_contents .product ul {
	position: relative;
	z-index: 1;
	margin: 50px auto;
} 
#main_contents .product ul li {
	position: relative;
	color: #FFF;
	padding-bottom: 5%;
	margin: 0 auto 5%;
	border-bottom: 1px solid #FFF;
}
#main_contents .product ul li .inner {
	max-width: 1200px;
	width: 80%;
	margin: 0 auto;
	position: relative;
}
#main_contents .product ul li .img {
	line-height: 0;
	width:  35%;
}
#main_contents .product ul li .data {
	text-align: left;
	width: 60%;
	position: absolute;
	top: 50%;
	left: 40%;
	transform: translate(0,-50%);
}
#main_contents .product ul li .data h4 {
	font-size: 20px;
	margin: 0 0 15px;
}
#main_contents .product ul li .data p {
	font-size: 14px;
}

#main_contents .product .list {
	display: flex;
	flex-wrap: nowrap;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	margin: 0px auto;
	padding: 15px 0;
}
#main_contents .product .list .in {
	box-sizing: border-box;
	position: relative;
	min-width: 200px;
	border: 1px solid #FFF;

}
#main_contents .product .list .in::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	background: #FFF;
	transform: translate(0,-50%);
	border-bottom: 1px solid #FFF;
}
#main_contents .product .list .in span{
	display: inline-block;
	box-sizing: border-box;
	padding: 0 0 0 10%;
	width: 36%;
	border-right: 1px solid #FFF;
	font-size: 12px;
}
#main_contents .product .list .in p{
	display: inline-block;
	box-sizing: border-box;
	padding: 0 0 0 10%;
	font-size: 12px;
}
.scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
.scrollbar-thumb-rounded::-webkit-scrollbar-thumb {
  border-radius: 0.25rem;
}
.scrollbar-thumb-black::-webkit-scrollbar-thumb {
  --bg-opacity: 1;
  background-color: #FFF;
}
@media only screen and (max-width: 768px) {
	#main_contents .product ul li {
		position: relative;
		color: #FFF;
		padding-bottom: 15%;
		margin: 0 auto 15%;
		border-bottom: 1px solid #FFF;
	}
	#main_contents .product ul li .img {
		line-height: 0;
		width: 100%;
	}
	#main_contents .product ul li .data {
		text-align: left;
		width: 100%;
		position: relative;
		top: auto;
		left: auto;
		transform: translate(0);
	}
	#main_contents .product ul li .data h4 {
		font-size: 18px;
		margin: 10% 0 5%
	}
	#main_contents .product ul li .data p {
		font-size: 11px;
	}
	#main_contents .product table td {
		word-break:normal;
		white-space: nowrap;
		padding: 5px 10px;
		min-width: 200px;
	}
	#main_contents .product table {
		width: auto;
	}
}
