@charset "utf-8";

/* ==============================
  gr1 景品セットカテゴリトップ SP
  ビンゴの虎ベース準拠
============================== */

.gr1-renewal {
	--bt-navy: #183b6b;
	--bt-blue: #0b5cab;
	--bt-orange: #ff7a00;
	--bt-text: #333;
	--bt-text-main: #1f3550;
	--bt-text-sub: #4d5d72;
	--bt-text-muted: #68788c;
	--bt-bg-light: #f7fbff;
	--bt-bg-blue: #eef6ff;
	--bt-bg-answer: #fbfdff;
	--bt-bg-chip: #eef5fd;
	--bt-white: #fff;
	--bt-border: #d7e1ee;
	--bt-border-card: #dbe6f2;
	--bt-border-hero: #d9e6f5;
	--bt-border-chip: #cfe0f4;
	--bt-border-open: #a8c5e7;
	--bt-orange-light: #fff0e0;
	--bt-shadow-sm: rgba(24, 59, 107, .08);
	--bt-shadow-md: rgba(24, 59, 107, .14);
	--bt-orange-glow: rgba(255, 122, 0, .18);

	box-sizing: border-box;
	width: 100%;
	padding: 0 10px 18px;
	color: var(--bt-text);
	font-size: 15px;
	line-height: 1.75;
}

.gr1-renewal *,
.gr1-renewal *::before,
.gr1-renewal *::after {
	box-sizing: border-box;
}

.gr1-renewal a {
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(255, 122, 0, .14);
}

/* ヒーロー */
.gr1-hero {
	position: relative;
	margin: 0 0 18px;
	padding: 22px 18px 20px;
	border: 1px solid var(--bt-border-hero);
	border-radius: 20px;
	background:
		radial-gradient(circle at 0% 0%, rgba(255, 122, 0, .20) 0, rgba(255, 122, 0, .20) 18%, transparent 19%),
		radial-gradient(circle at 100% 12%, rgba(11, 92, 171, .16) 0, rgba(11, 92, 171, .16) 22%, transparent 23%),
		linear-gradient(135deg, #f7fbff 0%, #fff 48%, #eef6ff 100%);
	box-shadow: 0 8px 20px var(--bt-shadow-sm);
	overflow: hidden;
}

.gr1-hero::after {
	content: "";
	position: absolute;
	right: -42px;
	bottom: -48px;
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background: rgba(255, 122, 0, .08);
	pointer-events: none;
}

.gr1-hero__body {
	position: relative;
	z-index: 1;
}

.gr1-hero__badge {
	display: inline-block;
	margin: 0 0 10px;
	padding: 5px 12px;
	border-radius: 999px;
	background: var(--bt-orange);
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
}

.gr1-hero__title {
	margin: 0 0 9px;
	color: var(--bt-navy);
	font-size: 26px;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: .02em;
}

.gr1-hero__lead {
	margin: 0 0 14px;
	color: var(--bt-text-sub);
	font-size: 14px;
	line-height: 1.85;
}

.gr1-hero__points {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gr1-hero__points li {
	position: relative;
	min-height: 38px;
	padding: 8px 8px 8px 27px;
	border: 1px solid var(--bt-border-chip);
	border-radius: 999px;
	background: #fff;
	color: var(--bt-text-main);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.35;
}

.gr1-hero__points li::before {
	content: "✓";
	position: absolute;
	left: 11px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bt-orange);
	font-weight: 900;
}

/* 共通セクション */
.gr1-section {
	margin: 0 0 18px;
	padding: 18px 14px;
	border: 1px solid var(--bt-border-card);
	border-radius: 18px;
	background: var(--bt-white);
	box-shadow: 0 6px 18px var(--bt-shadow-sm);
}

.gr1-section__head {
	margin: 0 0 14px;
}

.gr1-section__label {
	display: inline-block;
	margin: 0 0 7px;
	padding: 4px 10px;
	border: 1px solid var(--bt-border-chip);
	border-radius: 999px;
	background: var(--bt-bg-chip);
	color: var(--bt-blue);
	font-size: 12px;
	font-weight: 800;
	line-height: 1.45;
}

.gr1-section h2 {
	margin: 0 0 8px;
	padding-left: 11px;
	border-left: 5px solid var(--bt-orange);
	color: var(--bt-navy);
	font-size: 20px;
	font-weight: 800;
	line-height: 1.42;
}

.gr1-section__head p {
	margin: 0;
	color: var(--bt-text-sub);
	font-size: 14px;
	line-height: 1.75;
}

/* カテゴリカード */
.gr1-card-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.gr1-card {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	min-height: 0;
	padding: 14px 38px 14px 13px;
	border: 1px solid var(--bt-border-card);
	border-radius: 16px;
	background: linear-gradient(180deg, #fff 0%, #fbfdff 100%);
	box-shadow: 0 5px 14px var(--bt-shadow-sm);
}

.gr1-card::after {
	content: "›";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bt-blue);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.gr1-card__icon {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 0;
	border-radius: 13px;
	background: var(--bt-bg-blue);
	color: var(--bt-blue);
	font-size: 16px;
	font-weight: 900;
}

.gr1-card__body {
	display: block;
	min-width: 0;
}

.gr1-card__title {
	display: block;
	margin: 0 0 3px;
	color: #22384f;
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
}

.gr1-card__text {
	display: block;
	color: var(--bt-text-sub);
	font-size: 13px;
	line-height: 1.65;
}

.gr1-card--orange {
	border-color: rgba(255, 122, 0, .38);
	background: linear-gradient(180deg, #fff 0%, #fff7ef 100%);
	box-shadow: 0 5px 16px var(--bt-orange-glow);
}

.gr1-card--orange::after {
	color: var(--bt-orange);
}

.gr1-card--orange .gr1-card__icon {
	background: var(--bt-orange-light);
	color: var(--bt-orange);
}

/* 迷ったら */
.gr1-recommend {
	background:
		radial-gradient(circle at 100% 0%, rgba(255, 122, 0, .09) 0, rgba(255, 122, 0, .09) 21%, transparent 22%),
		linear-gradient(135deg, #f7fbff 0%, #fff 56%, #eef6ff 100%);
}

.gr1-recommend-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
}

.gr1-recommend-grid a {
	position: relative;
	display: block;
	padding: 14px 38px 14px 14px;
	border: 1px solid var(--bt-border-card);
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 5px 14px var(--bt-shadow-sm);
}

.gr1-recommend-grid a::after {
	content: "›";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--bt-orange);
	font-size: 24px;
	font-weight: 800;
	line-height: 1;
}

.gr1-recommend-grid strong {
	display: block;
	margin: 0 0 4px;
	color: var(--bt-navy);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
}

.gr1-recommend-grid span {
	display: block;
	color: var(--bt-text-sub);
	font-size: 13px;
	line-height: 1.65;
}

/* 選び方ガイド */
.gr1-guide {
	background: var(--bt-bg-answer);
}

.gr1-step-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.gr1-step-list li {
	display: flex;
	gap: 12px;
	padding: 14px;
	border: 1px solid var(--bt-border-card);
	border-radius: 16px;
	background: #fff;
}

.gr1-step-list__num {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 13px;
	background: var(--bt-navy);
	color: #fff;
	font-size: 13px;
	font-weight: 900;
	line-height: 1;
}

.gr1-step-list strong {
	display: block;
	margin: 0 0 4px;
	color: var(--bt-text-main);
	font-size: 16px;
	font-weight: 800;
	line-height: 1.45;
}

.gr1-step-list p {
	margin: 0;
	color: var(--bt-text-sub);
	font-size: 13px;
	line-height: 1.65;
}

@media screen and (max-width: 360px) {
	.gr1-renewal {
		padding-right: 8px;
		padding-left: 8px;
	}

	.gr1-hero__points {
		grid-template-columns: 1fr;
	}

	.gr1-section h2 {
		font-size: 19px;
	}
}
