@charset "utf-8";

#page_introduction #outpatient{
	border-top: 1px solid #ccc;
}

#page_introduction .programbox_wrap{
	display: block;
}
#page_introduction .programbox_inner{
	width: 50%;
	padding: 15px;
	box-sizing: border-box;
}
#page_introduction .programbox_inner tbody th{
	text-align: center;
}

.stepbox_wrap{
	counter-reset:count;
	margin: 2em 0;
	position: relative;
}
.stepbox_content {
	padding: 0 0 2em 2em;
	margin: 0;
	position: relative;
}
.stepbox_content::before {
	content: "";
	display: block;
	width: 13px;
	height: 13px;
	background: #003376;
	border: solid 3px #fff;
	border-radius: 50%;
	position: absolute;
	top: 3px;
	left: 3px;
	box-shadow: 0 0 0 2px #003376;
}
.stepbox_content::after {
	content: "";
	display: block;
	height: calc(100% - 35px);
	border-left: dotted 5px #003376;
	position: absolute;
	top: 30px;
	left: 10px;
}
.step-title {
	font-weight: bold;
	font-size: 1.188em;
}
.step-label {
	color: #003376;
	font-weight: bold;
}
.step-label::after {
	counter-increment:count;
	content:counter(count);
	position: relative;
	left: .3em;
}
.step-body {
	margin-top: .5em;
	padding: 0 0 2em;
	border-bottom: dotted 2px #ddd;
}
.step-body .fax{
	font-size: 1.188em;
	font-weight: bold;
	color: #D80104;
}
.stepbox_wrap .stepbox_content:last-of-type:after {
	display: none;
}
@media screen and (max-width: 768px){
	#page_introduction .programbox_inner{
		width: 100%;
	}
}
