

.flow_width {
	width: 900px;
	margin: 0 auto;
}


@media screen and (max-width: 768px) {

.flow_width {
	width: 100%;
}
}




/*ステップフローのCSS*/


ul.stepflow {
	border: none;
	margin: 1em 0.5em;
	padding: 0;
	list-style: none;
	text-align: left;
}

ul.stepflow > li:before, ol.stepflow > li:before {
	background-color: rgba(255,255,255,0.6) !important;
}

.stepflow li {
    position: relative;
    padding: 0 0 3.5em 1.8em;
}


.stepflow li:last-child {
    position: relative;
    padding: 0 0 1em 1.8em;
}


.stepflow>li:before {
	content: "";
	width: 3px;
	background: #cccccc;
	display: block;
	position: absolute;
	top: 28px;
	bottom: 0;
	left: 5px;
}

.stepflow-white {
	content: '';
	display: inline-block;
	position: absolute;
	top: 5px;
	left: -2px;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: solid 3px rgba(255,255,255,0.8);
	background-color: rgba(255,255,255,0.4);
}

.stepflow-black {
	content: '';
	display: inline-block;
	position: absolute;
	top: 5px;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	border: solid 3px #232F3E;
	background-color: #232F3E;
}


.stepflow_label {
	padding: 3px 0px 8px 0px;
	margin-bottom:8px;
	font-family: 'Bilbo Swash Caps', cursive;
	font-size: 4em;
	color: rgba(55,43,27,0.3);
}


.stepflow_label span{
	font-size: .5em;
}


.stepflow_title {
	font-size: 1.5em;
	font-weight: bold;
	color: rgba(55,43,27,0.8);
	margin-top: -10px;
	margin-bottom:15px;
	padding: 8px;
	background: linear-gradient(transparent 50%, rgba(55,43,27,0.1) 50%);
	display: inline-block;
}


.stepflow_content {
	font-size: .9em;
	line-height: 1.5;
	margin-top: .5em;
	padding: 0 0 1.5em 0;
	border-bottom: dashed 1px rgba(255,255,255,1);
}


.stepflow_content ol{
	padding: 10px 10px 10px 20px;
	font-size: 1.2em;
}


.stepflow_content ol li{
	padding: 0px 0px 40px 0px;
	font-weight: bold;
}


.stepflow_content ol li span{
	font-size: .9em;
	font-weight: normal;
}


/*ステップフローのCSSここまで*/







.flow-box {
  display: flex;
}
 
.flow-box .img {
  flex-shrink: 0;
}
 
.flow-box .tx-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 20px;
  width: 100%;
}

.flow-box .ttl {
	font-size: 1.4em;
	font-weight: bold;
	margin-bottom: 10px;
}

.flow-box .tx {
	font-size: 1.1em;
}


.angle-down:before {
  font-family: "Font Awesome 5 Free";
  content: '\f107';
  font-weight: 900;
	font-size: 4em;
	color: rgba(55,43,27,0.8);
}



@media screen and (max-width: 768px) {
.flow-box {
  display: flex;
	flex-wrap: wrap;
}
	
 
.flow-box .tx-box {
  padding-left: 0px;
	margin: 15px auto 0px;
}
}


