@charset "utf-8";

/* ========================================
   gr101 - 電化製品の単品景品（現品）
   既存group-line系CSS上書き対応版
======================================== */

.tanpin-top-lead--kaden .tanpin-top-lead__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.tanpin-top-lead--kaden .tanpin-top-lead__title {
	margin-bottom: 14px;
}

.tanpin-top-lead--kaden .tanpin-top-lead__text {
	max-width: 920px;
}

.tanpin-accordion {
	margin: 0 0 24px;
}

.tanpin-accordion__box {
	border: 1px solid #ead9b8;
	border-radius: 18px;
	background: #ffffff;
	overflow: hidden;
	box-shadow: 0 10px 24px rgba(90, 59, 0, 0.08);
}

.tanpin-accordion__trigger {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	padding: 22px 28px;
	border: 0;
	background: linear-gradient(135deg, #f1b400 0%, #f7c94b 100%);
	cursor: pointer;
	text-align: left;
	appearance: none;
}

.tanpin-accordion__trigger:hover {
	opacity: 0.97;
}

.tanpin-accordion__title {
	display: block;
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
	color: #2f2100;
	letter-spacing: 0.02em;
}

.tanpin-accordion__icon {
	position: relative;
	flex: 0 0 34px;
	width: 34px;
	height: 34px;
	margin-left: 20px;
	border-radius: 50%;
	background: #8a5a00;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.16);
}

.tanpin-accordion__icon::before,
.tanpin-accordion__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 2px;
	background: #ffffff;
	border-radius: 999px;
	transform: translate(-50%, -50%);
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.tanpin-accordion__icon::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.tanpin-accordion.is-open .tanpin-accordion__icon::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
}

.tanpin-accordion__panel {
	padding: 30px 28px 34px;
	background: #ffffff;
}

.tanpin-accordion__panel[hidden] {
	display: none;
}

.tanpin-accordion .txt-desc {
	margin: 0 0 24px;
	padding: 18px 20px;
	background: #fffaf0;
	border: 1px solid #f0e0bf;
	border-radius: 14px;
}

.tanpin-accordion .txt-desc p {
	margin: 0;
	font-size: 14px;
	line-height: 1.9;
	color: #444444;
}

/* =========================
   5列レイアウト強制
   既存 common.css / gr55.css の float系を上書き
========================= */

.group-line.group-line--visual.group-line--kaden {
	width: 100%;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix::after {
	content: none;
	display: none;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix>li {
	float: none;
	width: auto;
	margin: 0;
	padding: 0;
	list-style: none;
	box-sizing: border-box;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix>li.list-right {
	float: none;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix>li>a {
	display: block;
	width: 100%;
	height: 100%;
	text-decoration: none;
	box-sizing: border-box;
}

.group-item-box--kaden {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	min-height: 240px;
	padding: 18px 14px 20px;
	background: #ffffff;
	border: 1px solid #eadfca;
	border-radius: 18px;
	box-shadow: 0 6px 16px rgba(90, 59, 0, 0.05);
	transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
	box-sizing: border-box;
}

.group-line.group-line--visual.group-line--kaden>ul.clearfix>li>a:hover .group-item-box--kaden {
	transform: translateY(-4px);
	border-color: #e3c779;
	box-shadow: 0 12px 22px rgba(90, 59, 0, 0.10);
}

.group-item-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 150px;
	margin-bottom: 14px;
	padding: 10px;
	background: #f7f7f7;
	border: 1px solid #ece7db;
	border-radius: 16px;
	box-sizing: border-box;
	overflow: hidden;
}

.group-item-thumb.has-image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.group-item-box--kaden .label {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	margin: auto 0 0;
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	color: #243a5a;
	text-align: center;
	letter-spacing: 0.02em;
	word-break: break-word;
}

.tanpin-guide-links {
	margin-top: 24px;
	text-align: center;
}

.tanpin-guide-links__btn {
	display: inline-block;
	min-width: 260px;
	padding: 14px 28px;
	background: #fff7e3;
	border: 1px solid #e7cf93;
	border-radius: 999px;
	font-size: 15px;
	line-height: 1.4;
	font-weight: bold;
	color: #6a4700;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.tanpin-guide-links__btn:hover {
	background: #ffefc7;
	border-color: #dcb55a;
	color: #5a3b00;
}