@charset "utf-8";

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
製品
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-article {
	--content-width: var(--content-width_small);
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 一覧
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.page-header {
	background-image: url("../img/product/page-header.webp");
}

.product-post-li .post-link {
	display: flex;
}

.product-post-li .post-image {
	margin-bottom: 15px;
	border-radius: 15px;
}

.product-post-li .post-text {
	display: flex;
	flex: 1;
	flex-flow: column;
	justify-content: space-between;
}

.product-post-li .post-text::after {
	margin: 1em 0 0 auto;
	padding: 0 1.6em 0.1em 0.1em;
	border-bottom: 1.5px solid;
	background: url("../img/product/arrow.svg") right 4px center no-repeat;
	background-size: 0.6em auto;
	color: var(--color_main);
	font-weight: 700;
	content: "製品詳細はこちら";
	transition: var(--transition);
}

.product-post-li .post-link:hover .post-text::after {
	background-position: right center;
}

.product-post-li .post-heading {
	position: relative;
	padding-left: 0.6em;
	font-size: 18px;
}

.product-post-li .post-heading::before {
	position: absolute;
	top: 0.2em;
	left: 0;
	height: 1.2em;
	border-right: 0.3em solid var(--color_main);
	content: "";
}

.product-post-li .post-content {
	margin: 10px 0 auto;
}

.product-about {
	margin-top: var(--padding-height);
}

@media (min-width: 768px) {
.product-post-ul {
	margin-bottom: -60px;
}

.product-post-li {
	width: 100%;
	margin-bottom: 60px;
}

.product-post-li .post-image {
	width: 280px;
	max-width: 40%;
	margin: 0 40px 0 0;
	border-radius: 25px;
	align-self: flex-start;
}

.product-post-li .post-heading {
	font-size: 37px;
}

.product-post-li .post-content {
	margin-top: 32px;
}

.product-about .description {
	font-size: 16px;
}
}

@media (max-width: 767.9px) {
.product-post-li .post-link {
	height: 100%;
	flex-flow: column;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
- 詳細
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-- ヘッダ－
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-header {
	position: relative;
	z-index: 0;
}

.product-header::before {
	opacity: 0.5;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
	background: linear-gradient(#434343, #000);
	content: "";
	mix-blend-mode: multiply;
}

.product-header .heading {
	margin-top: 0.7em;
	font-size: 24px;
	font-weight: bold;
}

.product-header .copy {
	margin-top: 0.3em;
	font-weight: 700;
	font-size: 16px;
}

.product-header .price {
	display: inline-block;
	margin-top: 0.6em;
	border-bottom: 0.2em solid #ffd800;
	font-size: 30px;
	font-weight: 700;
	font-family: var(--font_english);
	line-height: 0.6;
	text-shadow: 0 3px 6px rgba(0, 0, 0, 0.32);
}

.product-header .yen-img {
	width: 2em;
	margin-left: 0.1em;
}

@media (min-width: 768px) {
.product-header {
	padding-bottom: 40px;
}

.product-header .description {
	font-size: 18px;
}

.product-header .heading {
	font-size: 45px;
}

.product-header .copy {
	font-size: 27px;
}

.product-header .price {
	font-size: 70px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-- 特徴
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-feature-li {
	margin-bottom: 50px;
}

.product-feature-li:last-child {
	margin-bottom: 0;
}

.product-feature-li .heading {
	position: relative;
	margin-bottom: 1em;
	padding: 0.2em 0 0.6em 2.5em;
	border-bottom: 3px solid;
	border-image: linear-gradient(90deg, var(--color_main) 4em, var(--color_base_light) 4em);
	border-image-slice: 1;
	font-size: 18px;
}

.product-feature-li .heading::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 2em;
	height: 2em;
	background: url("../img/product/feature-heading.svg") center center no-repeat;
	background-size: contain;
	content: "";
}

.product-feature-li .description a {
	color: var(--color_main);
	font-weight: 700;
	text-decoration: underline;
	text-underline-offset: var(--text-underline-offset);
}

.product-feature-li .description a:hover {
	text-decoration-color: transparent;
}

.product-feature-li .image {
	position: relative;
}

.product-feature-li .image::after {
	display: block;
	padding-top: 62%;
	content: "";
}

.product-feature-li .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 560px) {
.product-feature-li {
	display: flex;
}

.product-feature-li .text {
	flex: 1;
}

.product-feature-li .image {
	width: 43%;
	min-height: 200px;
	margin-left: 6%;
}
}

@media (min-width: 768px) {
.product-feature-li {
	margin-bottom: 76px;
}

.product-feature-li .heading {
	font-size: 24px;
}

.product-feature-li .image {
	min-height: 300px;
}
}

@media (max-width: 559.9px) {
.product-feature-li .text {
	margin-bottom: 1.5em;
}
}

@media (max-width: 399.9px) {
.product-feature-li .image {
	max-height: 200px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-- ご利用シーン
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-scene {
	background: var(--color_main_light);
}

.product-scene-ul {
	display: flex;
	margin-bottom: -50px;
	flex-flow: wrap;
	justify-content: space-between;
}

.product-scene-li {
	width: 48%;
	margin-bottom: 24px;
}

.product-scene-li .image {
	position: relative;
}

.product-scene-li .image::after {
	display: block;
	padding-top: 100%;
	content: "";
}

.product-scene-li .img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-scene-li .heading {
	display: table;
	margin: 0.8em auto 0;
	font-size: 16px;
}

@media (min-width: 640px) {
.product-scene-li {
	width: 30%;
}
}

@media (min-width: 768px) {
.product-scene-li .heading {
	font-size: 20px;
}
}

@media (min-width: 1024px) {
.product-scene-li {
	width: 23%;
}
}

@media (max-width: 399.9px) {
.product-scene-li .image {
	max-height: 200px;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
-- よくある質問
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.product-faq {
	background: var(--color_main_light);
}

/*コンテンツを投稿した後に詳細はこちらを表示  */
.product-post-ul > .product-post-li:nth-of-type(3) .post-text::after, .product-post-ul > .product-post-li:nth-of-type(4) .post-text::after, .product-post-ul > .product-post-li:nth-of-type(5) .post-text::after, .product-post-ul > .product-post-li:nth-of-type(6) .post-text::after, .product-post-ul > .product-post-li:nth-of-type(7) .post-text::after, .product-post-ul > .product-post-li:nth-of-type(8) .post-text::after {
    content: none;
}