@charset "utf-8";
#wrap {
	background-color: #fff;
}
#banner {
	background-image: url(../upload/b_products.jpg);
}
#main {
	margin: 30px auto;
}
#main.wrap {
	padding: 20px;
}
#main>section {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
#main>section>* {
	box-sizing: border-box;
	flex: 0 0 50%;
}
#gallery {
	padding: 15px;
	border: 1px solid #ccc;
	background-color: #f9f9f9;
	height: 400px;
	--f-arrow-pos: 10px;
	--f-arrow-color: #fff;
	--f-arrow-width: 40px;
	--f-arrow-height: 40px;
	--f-arrow-svg-width: 20px;
	--f-arrow-svg-height: 20px;
	--f-arrow-svg-stroke-width: 2px;
	--f-arrow-border-radius: 50%;
	--f-arrow-bg: rgba(0,0,0,0.2);
	--f-arrow-hover-bg: rgba(0,0,0,0.3);
}
#gallery .f-carousel__slide {
	display: flex;
	align-items: center;
	justify-content: center;
}
#gallery img {
/*
	width: 100%;
	height: 100%;
	object-fit: cover;
*/
	max-width: 100%;
	max-height: 100%;
}
#summary {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding-left: 50px;
}
#summary>h1 {
	padding: 15px 0;
	font-size: 30px;
	line-height: 40px;
}
#summary>p {
	padding: 20px 0;
	line-height: 30px;
	border-top: 1px solid #ccc;
}
#brochure:empty {
	display: none;
}
#brochure a {
	color: #f60;
	font-size: 16px;
}
#brochure a:before {
	content: "\e00a";
	margin-right: 6px;
	font-family: ico;
}
#categories strong {
	padding-right: 10px;
}
#summary a:hover {
	text-decoration: underline;
}
#categories span:before {
	content: "\e006";
	font-family: ico;
	padding: 0 10px;
}
#main>h3 {
	padding-top: 30px;
	font-size: 22px;
	line-height: 50px;
	border-bottom: 1px solid #ccc;
}
#related>p {
	width: 230px;
	margin: auto;
	position: relative;
	text-align: center;
	color: #999;
	letter-spacing: 3px;
	padding-left: 6px;
}
#related>p:before, #related>p:after {
	position: absolute;
	content: '';
	top: 40%;
	left: 0;
	width: 22px;
	height: 2px;
	border-top: 1px solid #e00;
	border-bottom: 1px solid #e00;
}
#related>p:after {
	left: auto;
	right: 0;
}
#related>h3 {
	margin: 20px 0;
	font-size: 35px;
	text-align: center;
}
#related>span {
	display: block;
	margin: auto;
	max-width: 780px;
	line-height: 20px;
	text-align: center;
	color: #aaa;
}
#p_list {
	display: flex;
	margin-top: 20px;
	justify-content: center;
	flex-wrap: wrap;
	gap: min(2vw, 25px);
}
#p_list>a {
	flex: 0 0 calc((100% - min(2vw, 25px) * 3) / 4);
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 3px;
}
#p_list>a figure {
	width: 100%;
	aspect-ratio: 4/3;
	border-bottom: 1px solid #ccc;
}
#p_list>a h3 {
	margin: 10px;
	max-height: 50px;
	font-size: 15px;
	line-height: 25px;
	text-align: center;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
}
@media screen and (max-width:991px){
	#main>section>* {
		flex: 0 0 100%;
	}
	#summary {
		padding: 10px 0 0;
	}
	#summary>h1 {
		text-align: center;
	}
	#p_list>a {
		flex: 0 0 calc((100% - 2vw * 2) / 3);
	}
}
@media screen and (max-width:600px){
	#p_list>a {
		flex: 0 0 calc((100% - 2vw) / 2);
	}
}
@media screen and (min-width:601px) and (max-width:991px){
	#p_list>a:nth-child(n+4) {
		display: none;
	}
}





