@charset "UTF-8";

/* ===============================
	共通スタイル
=============================== */

.size-prod-container:not(:last-of-type) {
	padding-bottom: 6rem;
}

.prod-title {
	font-size: 2rem;
	font-weight: 500;
	text-align: center;
	margin-bottom: 1.2em;
	padding: .2em 1em;
	background-color: var(--white-gray);
}

.list-function-icon {
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
}

.list-function-icon>li {
	align-self: start;
}

.has-caption {
	position: relative;
}

.has-caption sup {
	position: absolute;
	inline-size: fit-content;
	right: 0;
	top: -1em;
}

#fuzoku .disc.caption {
	padding-left: unset;
}

#fuzoku .disc.caption>li {
	display: inline;
	text-indent: unset;
	line-height: 1.7;
}

.fuzoku-title {
	font-size: 1.6rem;
	font-weight: 500;
	margin-top: 2em;
}

/* 別売オプション */
.list-option {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	grid-column-gap: 3%;
	grid-row-gap: 4rem;
}

.option-prod-name {
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: .2em;
}

.link-option {
	display: block;
	inline-size: fit-content;
	font-size: 1.6rem;
	font-weight: 500;
	padding: .5em 1em .5em 3em;
	background-color: var(--white-gray);
	border: 1px solid #959595;
	position: relative;
}

.link-option::before {
	content: '';
	display: block;
	position: absolute;
	inline-size: 30px;
	block-size: 30px;
	background: url('/assets/common/images/icon-option.svg') no-repeat center center/contain;
	left: 1.5em;
	top: 50%;
	transform: translate(-50%, -50%);
}

.list-option>li>a>span {
	font-size: .8em;
	font-weight: 300;
}

/* ==========================================
	ホバー、マウスポインタがサポートされている環境
=========================================== */
@media (hover:hover) and (pointer: fine) {
	.link-option:hover {
		text-decoration: none;
	}
}

/* ====================================
	スマートフォン専用スタイル（～768px）
===================================== */
@media screen and (width <768px) {}

/* ====================================
	TAB、PC、印刷専用スタイル（768px～）
===================================== */
@media print,
screen and (width >=768px) {
	.flex-container {
		justify-content: space-between;
	}

	.flex-item {
		inline-size: 47%;
	}

	.size-prod-container:not(:last-of-type) {
		padding-bottom: 10rem;
	}

	.prod-title {
		font-size: 2.4rem;
	}

	.option-prod-name {
		font-size: 2.2rem;
	}

	.link-option {
		font-size: 1.8rem;
	}

	.link-option::before {
		inline-size: 35px;
		block-size: 35px;
	}
}