@charset "utf-8";

/* CSS Document */
.body-boxhelp {
	padding: 35px 0px 0px 0px;
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: center;
}

.body-boxhelp h1 {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
}


.step {
	border: 1px solid #dddddd;
	margin-bottom: 50px;
	box-sizing: border-box;
	width: 950px;
	position: relative;
	border-radius: 12px;
	overflow: hidden;
}

.step a {
	color: #00aaff;
}

.step a:hover {
	text-decoration: underline;
}

.step .text {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.step .text img {
	box-sizing: border-box;
	padding: 0px 10px 15px 10px;
}

.step .text .imgs {
	display: flex;
	justify-content: center;
}

.step .text .imgs img {
	height: 250px;
}

.step .text .words {
	width: 100%;
	border-top: 1px solid #dddddd;
	background-color: #eeeeee;
	padding: 15px 15px 15px 15px;
	box-sizing: border-box;
	text-align: center;
}

.step .text a {
	word-break: break-all;
}

.step .num {
	background-color: #00aaff;
	color: #ffffff;
	width: 35px;
	height: 35px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 12px;
}

.step-last .text {
	padding-top: 0px;
}

.step-last .num {
	position: absolute;
}

.step-last .text .words {
	border-top: none;
}

@media screen and (max-width: 970px) {
	.body-boxhelp {
		padding: 35px 15px 0px 15px;
	}

	.step {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		margin-bottom: 15px;
	}

	.step .num {
		position: static;
		margin-bottom: 15px;
		width: 100%;
		border-bottom-left-radius: 0;
		border-bottom-right-radius: 0;
	}

	.step .text .imgs {
		display: block;
	}

	.step .text .imgs img {
		height: auto;
	}

	.step .text img {
		margin: 0px 0px 15px 0px;
	}
}