@charset "utf-8";

:root {
	--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-light: #e3eaf2;
	--bt-border-card: #dbe6f2;
	--bt-border-hero: #d9e6f5;
	--bt-border-chip: #cfe0f4;
	--bt-border-open: #a8c5e7;

	--bt-navy-dark: #112d52;
	--bt-orange-dark: #d96200;
	--bt-orange-light: #fff0e0;
	--bt-success: #1a7f4b;
	--bt-success-bg: #eafaf1;
	--bt-shadow-sm: rgba(24, 59, 107, .08);
	--bt-shadow-md: rgba(24, 59, 107, .14);
	--bt-shadow-lg: rgba(24, 59, 107, .20);
	--bt-orange-glow: rgba(255, 122, 0, .18);

	--bt-font-base: 15px;
	--bt-font-h1: 34px;
	--bt-font-h2: 26px;
	--bt-font-h3: 18px;
	--bt-font-small: 14px;
	--bt-font-label: 12px;
	--bt-font-cta: 24px;

	--bt-radius-sm: 8px;
	--bt-radius-md: 14px;
	--bt-radius-lg: 18px;
	--bt-radius-xl: 24px;
	--bt-radius-pill: 999px;

	--bt-ease: cubic-bezier(.25, .8, .25, 1);
}

/* ----------------------------------------
  online-bingo-event PC
---------------------------------------- */

#online.online-event {
	color: var(--bt-text);
	font-size: var(--bt-font-base);
	line-height: 1.9;
}

#online .online-inner {
	padding: 35px 20px 50px;
}

#online * {
	box-sizing: border-box;
}

#online a {
	color: var(--bt-blue);
	text-decoration: none;
	transition: .2s var(--bt-ease);
}

#online a:hover {
	color: var(--bt-orange);
	text-decoration: underline;
}

#online p {
	margin: 0 0 18px;
}

#online strong {
	color: var(--bt-navy);
	font-weight: bold;
	background: linear-gradient(transparent 65%, rgba(255, 122, 0, .22) 65%);
}

/* hero */

#online .online-hero {
	position: relative;
	overflow: hidden;
	margin: 0 0 28px;
	padding: 38px 36px 34px;
	border: 1px solid var(--bt-border-hero);
	border-radius: var(--bt-radius-xl);
	background:
		radial-gradient(circle at right top, rgba(255, 122, 0, .18), transparent 34%),
		linear-gradient(135deg, var(--bt-bg-light) 0%, var(--bt-bg-blue) 100%);
	box-shadow: 0 14px 34px var(--bt-shadow-sm);
}

#online .online-hero:before {
	content: "";
	position: absolute;
	top: -50px;
	right: -50px;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(11, 92, 171, .08);
}

#online .online-hero__label {
	display: inline-block;
	margin: 0 0 12px;
	padding: 5px 14px;
	border-radius: var(--bt-radius-pill);
	background: var(--bt-white);
	color: var(--bt-blue);
	font-size: var(--bt-font-label);
	font-weight: bold;
	letter-spacing: .08em;
	box-shadow: 0 4px 12px var(--bt-shadow-sm);
}

#online .online-hero h2 {
	margin: 0 0 18px;
	color: var(--bt-navy);
	font-size: var(--bt-font-h1);
	line-height: 1.35;
	font-weight: bold;
}

#online .online-hero__lead {
	max-width: 760px;
	margin: 0 0 24px;
	color: var(--bt-text-sub);
	font-size: 16px;
}

#online .online-hero__points {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 14px;
	position: relative;
	z-index: 1;
}

#online .online-hero__points div {
	padding: 16px 18px;
	border: 1px solid var(--bt-border-chip);
	border-radius: var(--bt-radius-lg);
	background: rgba(255, 255, 255, .9);
	box-shadow: 0 8px 18px var(--bt-shadow-sm);
}

#online .online-hero__points span {
	display: block;
	margin: 0 0 4px;
	color: var(--bt-orange);
	font-size: var(--bt-font-label);
	font-weight: bold;
	letter-spacing: .05em;
}

#online .online-hero__points strong {
	display: block;
	background: none;
	color: var(--bt-navy);
	font-size: var(--bt-font-h3);
}

/* summary */

#online .online-summary {
	margin: 0 0 32px;
	padding: 24px 26px;
	border: 1px solid var(--bt-border-card);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-white);
	box-shadow: 0 10px 24px var(--bt-shadow-sm);
}

#online .online-summary h3 {
	margin: 0 0 16px;
	padding: 0 0 10px;
	border-bottom: 3px solid var(--bt-blue);
	color: var(--bt-navy);
	font-size: var(--bt-font-h2);
	line-height: 1.4;
}

#online .online-summary ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px 18px;
	margin: 0;
	padding: 0;
	list-style: none;
}

#online .online-summary li {
	position: relative;
	padding: 10px 12px 10px 34px;
	border-radius: var(--bt-radius-md);
	background: var(--bt-bg-light);
	color: var(--bt-text-main);
	font-weight: bold;
}

#online .online-summary li:before {
	content: "✓";
	position: absolute;
	top: 10px;
	left: 13px;
	color: var(--bt-success);
	font-weight: bold;
}

/* section */

#online .online-section {
	margin: 0 0 34px;
}

#online .online-section__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin: 0 0 16px;
}

#online .online-section__head span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: var(--bt-navy);
	color: var(--bt-white);
	font-size: 16px;
	font-weight: bold;
	box-shadow: 0 6px 14px var(--bt-shadow-sm);
}

#online .online-section__head h3 {
	flex: 1;
	margin: 0;
	padding: 0 0 8px;
	border-bottom: 3px solid var(--bt-border-open);
	color: var(--bt-navy);
	font-size: var(--bt-font-h2);
	line-height: 1.45;
}

#online .online-card,
#online .online-note,
#online .online-tip,
#online .online-tool {
	border: 1px solid var(--bt-border-card);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-white);
	box-shadow: 0 10px 24px var(--bt-shadow-sm);
}

#online .online-card {
	padding: 26px;
}

#online .online-card p:last-child,
#online .online-note p:last-child,
#online .online-tip p:last-child,
#online .online-tool p:last-child {
	margin-bottom: 0;
}

#online .online-note {
	margin: 18px 0 0;
	padding: 24px 26px;
	background: var(--bt-bg-answer);
	border-left: 6px solid var(--bt-orange);
}

#online .online-note h4,
#online .online-tip h4,
#online .online-tool h4 {
	margin: 0 0 12px;
	color: var(--bt-navy);
	font-size: var(--bt-font-h3);
	line-height: 1.45;
}

/* flow */

#online .online-flow {
	display: grid;
	gap: 14px;
	counter-reset: flow;
}

#online .online-flow__item {
	position: relative;
	padding: 22px 24px 20px 84px;
	border: 1px solid var(--bt-border-card);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-white);
	box-shadow: 0 8px 20px var(--bt-shadow-sm);
}

#online .online-flow__item:before {
	counter-increment: flow;
	content: counter(flow);
	position: absolute;
	top: 22px;
	left: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 50%;
	background: var(--bt-bg-blue);
	color: var(--bt-blue);
	font-size: 20px;
	font-weight: bold;
}

#online .online-flow__item span {
	display: inline-block;
	margin: 0 0 4px;
	color: var(--bt-orange);
	font-size: var(--bt-font-label);
	font-weight: bold;
	letter-spacing: .06em;
}

#online .online-flow__item h4 {
	margin: 0 0 8px;
	color: var(--bt-navy);
	font-size: var(--bt-font-h3);
}

#online .online-flow__item p {
	margin: 0;
	color: var(--bt-text-sub);
}

/* tips */

#online .online-tips {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
}

#online .online-tip {
	padding: 24px 24px 22px;
	background: linear-gradient(180deg, var(--bt-white), var(--bt-bg-light));
}

#online .online-tip h4 {
	position: relative;
	padding-left: 30px;
}

#online .online-tip h4:before {
	content: "★";
	position: absolute;
	left: 0;
	top: 0;
	color: var(--bt-orange);
}

/* tools */

#online .online-tool-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin: 18px 0 0;
}

#online .online-tool {
	padding: 24px;
}

#online .online-tool a {
	display: inline-block;
	margin-top: 4px;
	padding: 9px 16px;
	border: 1px solid var(--bt-border-chip);
	border-radius: var(--bt-radius-pill);
	background: var(--bt-bg-chip);
	color: var(--bt-blue);
	font-size: var(--bt-font-small);
	font-weight: bold;
}

#online .online-tool a:hover {
	border-color: var(--bt-orange);
	background: var(--bt-orange-light);
	color: var(--bt-orange-dark);
	text-decoration: none;
}

/* prize */

#online .online-prize {
	margin: 38px 0 34px;
	padding: 6px;
	border-radius: var(--bt-radius-xl);
	background: linear-gradient(135deg, var(--bt-orange), var(--bt-blue));
	box-shadow: 0 16px 36px var(--bt-shadow-md);
}

#online .online-prize__body {
	padding: 30px 32px;
	border-radius: 20px;
	background: var(--bt-white);
}

#online .online-prize__label {
	display: inline-block;
	margin: 0 0 10px;
	padding: 5px 13px;
	border-radius: var(--bt-radius-pill);
	background: var(--bt-orange-light);
	color: var(--bt-orange-dark);
	font-size: var(--bt-font-label);
	font-weight: bold;
}

#online .online-prize h3 {
	margin: 0 0 14px;
	color: var(--bt-navy);
	font-size: var(--bt-font-cta);
	line-height: 1.45;
}

#online .online-prize__links {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-top: 20px;
}

#online .online-prize__links a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	padding: 12px 18px;
	border-radius: var(--bt-radius-pill);
	background: var(--bt-orange);
	color: var(--bt-white);
	font-weight: bold;
	box-shadow: 0 8px 16px var(--bt-orange-glow);
}

#online .online-prize__links a:hover {
	background: var(--bt-orange-dark);
	color: var(--bt-white);
	text-decoration: none;
	transform: translateY(-1px);
}

/* closing */

#online .online-closing {
	padding: 28px 30px;
	border: 1px solid var(--bt-border-light);
	border-radius: var(--bt-radius-lg);
	background: var(--bt-bg-blue);
	text-align: center;
}

#online .online-closing h3 {
	margin: 0 0 12px;
	color: var(--bt-navy);
	font-size: var(--bt-font-cta);
	line-height: 1.45;
}

#online .online-closing p {
	max-width: 760px;
	margin: 0 auto;
	color: var(--bt-text-sub);
}

/* 既存マーカー互換 */

#online .mark1 {
	font-weight: bold;
	color: var(--bt-navy);
	background: linear-gradient(transparent 65%, rgba(255, 122, 0, .22) 65%);
}

#online .mark2 {
	font-weight: bold;
	background: linear-gradient(transparent 75%, #66ccff 75%);
}

#online .mark3 {
	font-weight: bold;
	color: var(--bt-blue);
	background: linear-gradient(transparent 75%, rgba(11, 92, 171, .18) 75%);
}