/* ==========================================================
   product_renewal.css

   目的：index配下の各商品ページ（ポスター用紙ページ等）を対象に、
   全面リニューアルではなく部分的に改修していくための共通CSS。
   新しいセクション・レイアウトを追加する際はここに追記する。

   作成開始：2026年7月〜
   ========================================================== */

/* ----------------------------------------------------------
   オプションセット（ラミネート・パウチ・パネル）
   ---------------------------------------------------------- */

.option-set-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 2%;
	margin: 5px 0 25px;
}

/* ボタンが1枚のみの場合：左寄せ */
.option-set-list.is-single {
	justify-content: flex-start;
}

/* ボタンが2枚のみの場合：中央寄せ */
.option-set-list.is-double {
	justify-content: center;
	gap: 2%;
}

.option-set-item {
	width: 32%;
	background: #fff;
	border: 3px solid #1e407f;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 3px 3px 4px #adb9dd;
}

.option-set-link {
	display: flex;
	flex-direction: column;
	height: 100%;
	color: inherit;
	text-decoration: none !important;
	transition: opacity .3s;
}

.option-set-link:hover {
	opacity: .8;
}

.option-set-link img {
	display: block;
	width: 100%;
	height: auto;
}

.option-set-desc {
	flex: 1;
	padding: 12px 15px 0;
	font-size: 14px;
	line-height: 1.7;
	color: #222;
	margin: 10px;
}

.option-set-desc li {
	list-style: none;
	font-weight: bold;
}

.option-set-btn {
	display: block;
	margin: 0px 15px 15px;
	padding: 10px 0 8px;
	background: #1e407f;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.4;
	border-radius: 30px;
}

.option-set-btn .btn-sub {
	display: block;
	font-size: 14px;
	font-weight: normal;
}

.option-set-btn .arrow {
	font-weight: bold;
}

@media screen and (max-width: 666px) {

	.option-set-list {
		flex-direction: column;
		gap: 15px;
		margin: 5px 20px 25px;
	}

	.option-set-item {
		width: 100%;
	}
	
	.option-set-desc {
	margin: 5px 10px;
}
	/* ボタンが2枚のみの場合：中央寄せ */
	.option-set-list.is-double {
	gap: 15px;
}
}
