@charset "UTF-8";

sup {
	vertical-align: text-top;
	font-size: 10px;
}
.title-bg {
	padding: 5px 0;
	background-color: #adadad;
	text-align: center;
	color: #fff;
	margin-top: 50px;
}
.kakko {
	padding: 1em;
	position: relative;
	box-sizing: border-box;
}
.kakko::before,
.kakko::after {
	content: '';
	width: 20px;
	height: 100%;
	position: absolute;
	box-sizing: border-box;
	border-bottom: solid 1px #ababab;
	top: 0;
}
.kakko::before {
	border-left: solid 1px #ababab;
	left: 0;
}
.kakko::after {
	border-right: solid 1px #ababab;
	right: 0;
}
.comment-check li {
	display: flex;
	align-items: baseline;
}
.comment-check li:before {
	content: "\02713";
	margin-right: 5px;
	font-size: 20px;
	margin-bottom: 10px;
}
.checklist-container {
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}
.checklist-container li {
	background-image: url('/img/usr/goods_detail/comment_2/icon-check.png');
	background-repeat: no-repeat;
	background-position: left 5px;
	background-size: 14px 11px;
	padding-left: 24px;
	margin-bottom: 8px;
	line-height: 1.6;
}
summary {
	list-style-type: none;
}
summary::-webkit-details-marker {
	display: none;
}
summary:before {
	content: "＋ ";
}
details[open] > summary:before {
	content: "－ ";
}

/* --- モーダル共通CSS --- */
.modal-toggle {
	display: none !important;
}

/* ページ読み込み時のチラつきを防止するため最初から非表示・透過化 */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.75);
	display: none;
	visibility: hidden;
	align-items: center;
	justify-content: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s ease;
	z-index: 9999;
}

/* チェックが入った時だけ表示 */
.modal-toggle:checked ~ .modal-overlay {
	display: flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	pointer-events: auto !important;
}

/* モーダル枠と閉じるボタンをまとめる親要素 */
.modal-wrapper {
	position: relative;
	width: 90vw;
	max-width: 900px;
	z-index: 10000;
}

.modal-content {
	position: relative;
	width: 100%;
	max-height: 85vh;
	background-color: #fff;
	padding: 15px;
	box-sizing: border-box;
	border-radius: 4px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
.modal-content img {
	width: 100%;
	min-width: 600px;
	height: auto;
	display: block;
	margin: 0 auto;
}

/* モーダル白枠の右上に固定される閉じるボタン */
.modal-close-btn {
	position: absolute;
	top: -14px;
	right: -14px;
	width: 32px;
	height: 32px;
	background: #333;
	color: #fff;
	border-radius: 50%;
	text-align: center;
	line-height: 30px;
	cursor: pointer;
	font-size: 20px;
	z-index: 10001;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.modal-close-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

/* --- トリガーボタン個別装飾 --- */
.lineup-banner-btn {
	display: block;
	width: 80%;
	max-width: 680px;
	margin: 0 auto;
	padding: 10px;
	background-color: #f0f0f0;
	box-sizing: border-box;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, opacity 0.2s ease;
}
.lineup-banner-btn:hover {
	background-color: #e6e6e6;
	opacity: 0.9;
}
.lineup-banner-btn .banner-title {
	display: block;
	font-size: 16px;
	letter-spacing: 0.1em;
	margin-bottom: 5px;
}
.lineup-banner-btn .banner-sub {
	display: block;
	font-size: 13px;
}
.lineup-banner-btn .banner-view {
	display: inline-block;
	font-size: 12px;
	letter-spacing: 0.05em;
}
.sub-modal-trigger {
	cursor: pointer;
	text-decoration: underline;
	display: inline-block;
}

@media screen and (min-width: 768px) {
	.text-xl {
		font-size: 18px;
	}
	.text-l {
		font-size: 16px;
	}
	.text-m {
		font-size: 15px;
	}
	.text {
		font-size: 14px;
	}
	.text-s {
		font-size: 12px;
	}
	.sp {
		display: none;
	}
	.catch {
		display: flex;
		align-items: center;
		justify-content: center;
		font-size: 16px;
	}
	.catch:before,
	.catch:after {
		border-top: 1px solid;
		content: "";
		width: 6em;
	}
	.catch:before {
		margin-right: 1em;
	}
	.catch:after {
		margin-left: 1em;
	}
}
@media screen and (max-width: 768px) {
	.text-xl {
		font-size: 16px;
	}
	.text-l {
		font-size: 14px;
	}
	.text-m {
		font-size: 13px;
	}
	.text {
		font-size: 12px;
	}
	.text-s {
		font-size: 10px;
	}
	.pc {
		display: none;
	}
	.catch {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
	}
	.catch:before,
	.catch:after {
		border-top: 1px solid;
		content: "";
		width: 3em;
	}
	.catch:before {
		margin-right: 1em;
	}
	.catch:after {
		margin-left: 1em;
	}
	.pre-number {
		border: 1px solid #707070;
		padding: 0.5px 8px;
		text-align: center;
		margin-right: 10px;
	}
	.itemdetail-detail-area .pc-only-mgt {
		margin-top: 0 !important;
	}
	.lineup-banner-btn {
		width: 100%;
		padding: 18px 10px;
	}
	.lineup-banner-btn .banner-title {
		font-size: 14px;
	}
	.lineup-banner-btn .banner-sub {
		font-size: 12px;
	}
	.lineup-banner-btn .banner-view {
		font-size: 10px;
	}
}

/*コメント6*/
@media screen and (min-width: 768px) {
	.itemdetail-detail-area .eria03 dl dt {
		width: 210px;
	}

	.itemdetail-detail-area .eria03 dl dd {
		width: 620px;
		margin-left: 20px;
		vertical-align: top;
	}
}

@media screen and (max-width: 768px) {
	.itemdetail-detail-area .eria03 dl dt {
		width: 25%;
	}

	.itemdetail-detail-area .eria03 dl dd {
		width: 67%;
		margin-left: 3%;
		line-height: 1.5;
	}
}