@charset "UTF-8";
/*-----------------------商品紹介_各商品*/
.section_mv #products_item.mv_inner {
	height: 280px;
	background-color: #DFDFDF;
	background-image: url("../img/common/bg_pattern.png");
	background-repeat: repeat;
	background-size: 100px;
}
.section_mv #products_item.mv_inner .mv_title {
	color: #000000;
	text-shadow: none;
	font-family: var(--font-family-mincho);
}
.products_detail {
	background-color: #F2F2F2;
	background-image: url("../img/common/bg_pattern.png");
	background-size: 100px;
}

.contents {
	/*max-width: 960px;*/
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
.products_mainbox {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-bottom: 50px;
	position: relative;
	top: 30px;
	opacity: 0;
	transition: 2s;
}
.products_mainbox.fadeIn.active {
	top: 0;
	opacity: 1;
}
.products_mainbox .imagebox {
	width: 77%;
}
.products_mainbox .imagebox .imagebox_inner {
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 5px;
	background-image: url("../img/top/washi3.jpg");
	position: relative;
	overflow: hidden;
}
.products_mainbox .imagebox .imagebox_inner img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
}
.products_mainbox .title_area {
	width: 18%;
}
.products_mainbox .title_area .title_inner {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	-ms-writing-mode: tb-lr;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
.products_mainbox .title_area .product_from {
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.8;
	letter-spacing: 2px;
}
.products_mainbox .title_area .product_name {
	font-size: 3.75rem;
	line-height: 1.8;
	letter-spacing: 3px;
	/*font-family: var(--font-family-mincho);*/
	font-family: "Yuji Syuku", serif;
}
.products_textbox {
	width: 90%;
	min-width: 500px;
	background-image: url("../img/common/bg_pattern.png");
	background-color: rgba(255,255,255,0.7);
	background-size: 100px auto;
	padding: 3em;
	margin-left: auto;
	position: relative;
}
.products_textbox::before {
	content: "";
	display: block;
	width: 1px;
	height: 110px;
	background-color: #909090;
	position: absolute;
	left: 48px;
	top: -80px;
}
.products_textbox::after {
	content: "";
	display: block;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: #909090;
	position: absolute;
	left: 45px;
	top: -80px;
}
.products_textbox .catch {
	font-size: 1.75rem;
	font-family: var(--font-family-mincho);
	letter-spacing: 1px;
	margin-bottom: 0.5em;
}
.products_textbox .text {
	font-size: 1rem;
	font-family: inherit;
	line-height: 2;
	letter-spacing: 1px;
	text-transform: none;
}
.products_img_wrap {
	margin-top: 4em;
	display: flex;
	flex-wrap: wrap;
}
.products_img_wrap .product_img {
	width: calc((100% - 60px) / 3);
	margin-right: 30px;
}
.products_img_wrap .product_img:nth-child(3) {
	margin-right: 0;
}
.products_img_wrap a {
	display: block;
	padding-bottom: 66.6%;
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}
.products_img_wrap a:hover {
	transform: none;
}
.products_img_wrap a img {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	object-fit: cover;
	transition: .3s;
}
.products_img_wrap a:hover img {
	transform: scale(1.1);
}
.btn_link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 200px;
	height: 50px;
	padding: 0 15px;
	border-radius: 50vh;
	border: 0.8px solid #000000;
	transition: all 1s;
	font-family: var(--font-family-gothic);
	margin: 50px auto 0;
}
.btn_link:hover {
	background-color: #e4e4e4;
}
@media screen and (max-width: 768px) {
	.section_mv #products_item.mv_inner {
		height: 240px;
	}
	.products_mainbox {
		flex-direction: column;
		margin-bottom: 20px;
	}
	.products_mainbox .imagebox {
		width: 100%;
		margin-bottom: 2em;
	}
	.products_mainbox .title_area {
		width: 100%;
		padding-left: 60px;
	}
	.products_mainbox .title_area .title_inner {
		writing-mode: horizontal-tb;
	}
	.products_mainbox .title_area .product_from {
		font-size: 1.125rem;
	}
	.products_mainbox .title_area .product_name {
		font-size: 2.5rem;
	}
	.products_textbox {
		width: 100%;
		min-width: unset;
		padding: 2em;
	}
	.products_textbox::before {
		height: 180px;
		left: 28px;
		top: -160px;
	}
	.products_textbox::after {
		left: 25px;
		top: -160px;
	}
	.products_textbox .catch {
		font-size: 1.5rem;
	}
	.products_textbox .text {
		font-size: 0.875rem;
	}
	.products_img_wrap .product_img {
		width: calc((100% - 40px) / 3);
		margin-right: 20px;
	}
}
@media screen and (max-width: 480px) {
	.section_mv #products_item.mv_inner {
		height: 200px;
	}
	.products_mainbox .title_area {
		padding-left: 50px;
	}
	.products_mainbox .title_area .product_from {
		font-size: 1rem;
	}
	.products_mainbox .title_area .product_name {
		font-size: 1.875rem;
	}
	.products_textbox::before {
		height: 160px;
		left: 28px;
		top: -140px;
	}
	.products_textbox::after {
		left: 25px;
		top: -140px;
	}
	.products_textbox .catch {
		font-size: 1.25rem;
	}
	.products_img_wrap {
		flex-direction: column;
	}
	.products_img_wrap .product_img {
		width: 100%;
		margin-right: 0;
		margin-bottom: 1em;
	}
}

