@charset "shift-JIS";
/*--------------------
背景色
--------------------*/

.cvBOX {
	background: #fff8d3;
	border-radius: 10px;
	color;
	#fff;
	/* color: #1288e8; */
	padding: 2rem;
}

@media screen and (max-width:767px) {
	.cvBOX {
		padding: 1rem;
	}
}

dl.description dt {
	margin-bottom: 0;
}

.cvBOX .btnLink {
	padding: 0.5em;
}

.cvBOX .btnRed {
	background: #e8111d;
	font-weight: bold;
	width: 70%;
	border-radius: 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 10px;
	transition: all .3s;
}

@media screen and (max-width:767px) {
	.cvBOX .btnRed {
		width: 100%;
	}
}


.cvBOX .btnRed:hover {
	background: #ff1d2a;
	box-shadow: none;
	text-decoration: none;
}


.cvBOX a.btnRed:hover {
	border: none;
}

.cvBOX .btnLink:after {
	content: "";
	display: inline-block;
	width: 7px;
	height: 11px;
	background: url("/common/images/arrow_a_btn.png") no-repeat center;
	background-size: contain;
	margin-left: 1em;
	vertical-align: middle;
}


/**/

.steps {
	position: relative;
}

/* 縦線（全体） */
.steps::before {
	content: "";
	position: absolute;
	left: 60px;
	top: 0;
	bottom: 0;
	width: 3px;
	background: #a0d7de;
}

.step-item {
	display: flex;
	align-items: center;
	background: #f2fafc;
	padding: 1em;
	border-radius: 12px;
	margin-bottom: 2em;
	gap: 1em;
	position: relative;
}

/* STEPラベル */
.step-label {
	background: #1fb6d5;
	color: #fff;
	padding: 0.5em 1em;
	border-radius: 4px;
	font-weight: bold;
	min-width: 80px;
	text-align: center;
	z-index: 1;
}

/* テキスト */
.step-text {
	flex: 1;
}

.step-text {
	flex: 1;
	display: flex;
	align-items: center;
	line-height: 1.5;
	margin: 0 !important;
	font-size: 1.2rem;
}


/* 画像 */
.step-item img {
	width: 200px;
	height: auto;
}

@media screen and (max-width:767px) {

	.step-item {
		flex-direction: column;
		align-items: center;
	}

	.step-text {
		width: 100%;
		justify-content: center;
		text-align: center;
	}

	.step-item img {
		width: 50%;
		height: auto;
		margin: auto;
	}

	.steps::before {
		left: 50%;
		transform: translateX(-50%);
	}
}

