@charset "utf-8";

/*------------------------------------------------------------
	product
------------------------------------------------------------*/

h2 {
	color: rgb(233, 86, 41);
	text-align: center;
	margin-top: 100px;
	font-size: 2.3em;
	letter-spacing: 0.1em;
}

.center_logo {
	width: 30vw;
	max-width: 220px;
	position: fixed;
	top: 40px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
}

#main {
	margin-top: 200px;
}

#main h3 {
	font-size: 0.8em;
	margin-bottom: 20px;
}


#main dl {
	margin-bottom: 46px;
}

#main dl:last-child {
	margin-bottom: 0;
}

#main dt {
	margin-top: 6px;
	margin-bottom: 2px;
	font-weight: normal;
	font-family: 'kintosans_bold', sans-serif;
}

#main dd {
	line-height: 1.5;
}

#main dt,
#main dd {
	font-size: 14px;
	text-align: center;
}

#main dd p {
	margin-bottom: 12px;
}

.grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	gap: 20px;
}

.grid img {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.grid-2col {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.coment {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.coment h3 {
	font-size: 14px;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.coment p {
	font-size: 14px;
	letter-spacing: 0.1em;
}

.item-flex {
	display: flex;
	justify-content: space-between;
	align-items: end;
}

.item-flex p {
	font-size: 12px;
	line-height: 1.5;
}

.attention {
	font-size: 10px;
	margin: 5px 0;
}

.top-space {
	margin-top: 100px;
}

/*スライダー用*/

.slider {
	margin: 0 auto;
	max-width: 350px;
	width: 100%;
}

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

.thumbnail {
	max-width: 300px;
	margin: auto;
}

.thumbnail .slick-track {
	transform: unset !important;
}

.thumbnail-img {
	opacity: 0.3;
	transition: opacity .3s linear;
	margin: 0 5px;
}

.thumbnail-img img {
	aspect-ratio: 1/1;
	object-fit: cover;
}

.thumbnail .slick-current {
	opacity: 1;
}


@media all and (min-width: 897px) {
	#main dd a:hover {
		text-decoration: underline;
	}
}

@media all and (max-width: 896px) {

	#main dl {
		margin-bottom: 26px;
	}

	#main dt,
	#main dd {
		font-size: inherit;
	}

	h2 {
		margin-top: 50px;
	}


}




/*スマホ対応*/

@media all and (max-width: 896px) {

	/*------------------------------------------------------------
	Product以下、ヘッドメニュー
------------------------------------------------------------*/
	menu {
		display: flex;
		flex-direction: column-reverse;
		top: 20px;
		left: 0;
		transform: translateX(0);
		padding: 0;
	}


	.ECbtn {
		width: fit-content;
		margin: 8px 20px 8px auto;
		padding: 5px 10px;
	}

	.ECbtn::after {
		content: " ≫";
	}


	.text-btn {
		text-align: right;
		padding-right: 25px;
	}

	.text-btn a {
		margin-left: 15px;
	}

	.center_logo {
		width: 40vw;
		max-width: 200px;
		position: fixed;
		top: 10px;
		left: 30px;
		transform: translateX(0);
	}

	.bread {
		color: #e95532;
		margin-bottom: 20px;
	}


	/*------------------------------------------------------------
	メインエリア
------------------------------------------------------------*/
	#main {
		margin-top: 50px;
	}


	.grid {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.grid-2col {
		grid-template-columns: 1fr;

	}

	.slider {
		order: -2;
	}

	.thumbnail {
		order: -1;
	}


	.coment {
		margin: 30px auto;
	}

	.item-flex {
		margin-top: 50px;
		display: block;
	}

	.slick-prev {
		left: -5px;
	}

	.slick-next {
		right: -2px;
	}


}