@charset "utf-8";
/* CSS Document */

/* flowArea */
.flowArea .inner .flowBox01 .txt01 {
  display: inline-block;
	font-size: 15px;
	margin: 0 auto;
  padding: 0 130px 10px;
  border-bottom: 2px solid #F0F3F7;
}
.flowBox02 {
    padding: 50px 0 80px;
}
.flowBox02 h1 {
    text-align: center;
}
.flowBox02 .flowList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.flowBox02 .flowList li {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin: 50px auto 30px;
	position: relative;
}
.flowBox02 .flowList li:after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -65px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #FFC92C transparent transparent transparent;
	border-width: 40px 100px 0 100px;
}
.flowBox02 .flowList li:last-child:after {
	display: none;
}
.flowBox02 .flowList li .step {
	width: 20%;
	text-align: center;
}
.flowBox02 .flowList li .detail {
	width: 80%;
	padding: 20px 5%;
}
.flowBox02 .flowList li .step img {
	width: 100%;
	max-width: 121px;
}
.flowBox02 .flowList li .detail h2 {
	font-size: 24px;
	font-weight: bold;
	color: #425B89;
	border-bottom: 2px dashed #425B89;
}
.flowBox02 .flowList li .detail p {
	padding:  20px 0;
}

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

@media screen and (max-width: 767px) {
	/*サブh1タイトルエリア*/
	.flowArea .inner .flowBox01 .txt01 {
    font-size: 14px;
    padding: 0 5vw;
	}
}

