/* Shortcode Box Plugin Styles */

.scb-box {
	display: flex;
	gap: 16px;
	margin: 1.5em 0;
	padding: 20px 24px;
	border-radius: 8px;
	line-height: 1.7;
	font-size: 16px;
	box-sizing: border-box;
}

.scb-box__icon {
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-weight: 700;
	font-size: 16px;
	line-height: 1;
}

.scb-box__body {
	flex: 1 1 auto;
	min-width: 0;
}

.scb-box__body > *:first-child { margin-top: 0; }
.scb-box__body > *:last-child { margin-bottom: 0; }

.scb-box a {
	color: inherit;
	text-decoration: underline;
	word-break: break-word;
}

/* --- point (注意 / ポイント) --- */
.scb-box--point {
	background: #fff8e1;
	border: 1px solid #ffe082;
	border-left: 6px solid #f5a623;
}
.scb-box--point .scb-box__icon {
	background: #f5a623;
}
.scb-box--point .scb-box__icon::before {
	content: "!";
}

/* --- step (行程 / ステップ) --- */
.scb-box--step {
	background: #f1f8ff;
	border: 1px solid #bee3f8;
	border-left: 6px solid #3182ce;
}
.scb-box--step .scb-box__icon {
	background: #3182ce;
}
.scb-box--step .scb-box__icon::before {
	content: "\2713";
}

/* ステップリスト */
.scb-step-list {
	list-style: none;
	padding: 0;
	margin: 0;
	counter-reset: scb-step;
}

.scb-step-list__item {
	counter-increment: scb-step;
	position: relative;
	padding: 10px 14px 10px 48px;
	margin: 6px 0;
	background: #fff;
	border: 1px solid #cbd5e0;
	border-radius: 6px;
	min-height: 36px;
}

.scb-step-list__item::before {
	content: counter(scb-step);
	position: absolute;
	left: 10px;
	top: 50%;
	transform: translateY(-50%);
	width: 28px;
	height: 28px;
	border-radius: 50%;
	background: #3182ce;
	color: #fff;
	font-weight: 700;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.scb-step-list__arrow {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 4px 14px 4px 48px;
	color: #4a5568;
	font-size: 14px;
}

.scb-step-list__arrow-mark {
	display: inline-block;
	font-size: 20px;
	line-height: 1;
	color: #3182ce;
}

.scb-step-list__arrow-label {
	display: inline-block;
	padding: 2px 8px;
	background: #edf2f7;
	border-radius: 4px;
	font-size: 13px;
}

/* --- 予備: note / warning --- */
.scb-box--note {
	background: #e8f5e9;
	border: 1px solid #a5d6a7;
	border-left: 6px solid #43a047;
}
.scb-box--note .scb-box__icon { background: #43a047; }
.scb-box--note .scb-box__icon::before { content: "i"; font-style: italic; }

.scb-box--warning {
	background: #ffebee;
	border: 1px solid #ef9a9a;
	border-left: 6px solid #e53935;
}
.scb-box--warning .scb-box__icon { background: #e53935; }
.scb-box--warning .scb-box__icon::before { content: "!"; }

/* スマホ向け */
@media (max-width: 600px) {
	.scb-box {
		padding: 16px;
		gap: 12px;
	}
	.scb-step-list__item {
		padding-left: 44px;
	}
}
