@charset "utf-8";
/* CSS Document */

.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
}

.flow_design03 ul {
  padding: 0;
}

.flow_design03 li {
  list-style-type: none;
}

.flow_design03 dd {
    margin-left: 0;
	font-size: 15px;
	text-align: left;
}

.flow03 {
  position: relative;
}

.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}

.flow03 > li {
  position: relative;
}

.flow03 > li:not(:last-child) {
  margin-bottom: 40px;
}

.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #b82020;
  display: inline-block;
  margin-right: 0.3em;
}

.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}

.flow03 > li dl::before,
.flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}

.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #b82020;
  border-radius: 50%;
  left: -4px;
}

.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #b82020;
  position: absolute;
  left: 5px;
}

.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}

@media only screen and (max-width:750px){
	
	.flow_design03 {
	    margin-left: 5px;
	}
		
	.flow03 > li dl {
    	padding-left: 10px;
	}
	
	.flow03 > li dl::after {
    	width: 0;
	}	
	
	.flow03 > li dl dt {
    	margin-left: 5px;
        font-size: 15px;
	}
	
	.flow03 > li:not(:last-child) {
    	margin-bottom: 30px;
	}
	
	.flow_design03 dd {
    	margin-left: 5px;
        font-size: 12px;
	}
    
}