@charset "UTF-8";

/*================================================
 *  flow（相談の流れ）
 ================================================*/

section.flow_area {
	margin-top: 40px;
}
section.flow_area .flow_list > li {
	position: relative;
	padding: 60px 0;
}
section.flow_area .flow_list > li:nth-child(odd) {
	background-color: #f5f5f5;
}
section.flow_area .flow_list > li::after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 30px 40px 0 40px;
	border-color: #fff transparent transparent transparent;
	bottom: -29px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	z-index: 10;
}
section.flow_area .flow_list > li:nth-child(odd)::after {
	border-color: #f5f5f5 transparent transparent transparent;
}

section.flow_area .flow_list > li h3 {
	font-size: 30px;
	font-weight: 700;
	margin: 0 0 1em 0.4em;
}
section.flow_area .flow_list > li h3 span {
	font-size: 1.17em;
	font-weight: 400;
	vertical-align: -0.05em;
	padding-right: 0.8em;
	position: relative;
}
section.flow_area .flow_list > li h3 span::after {
	position: absolute;
	content: '';
	width: 1px;
	height: 1.1em;
	right: 0.4em;
	top: 50%;
	margin-top: -0.45em;
	background-color: #164a81;
	transform: skew(-25deg, 0deg);
	-webkit-transform: skew(-25deg, 0deg);
}

section.flow_area .flow_list > li .box {
	display: table;
	width: 780px;
	margin: 0 auto;
}
section.flow_area .flow_list > li .box > div {
	display: table-cell;
	vertical-align: top;
	line-height: 1.5;
}
section.flow_area .flow_list > li .box > div:last-child {
	width: 370px;
	padding-left: 40px;
}
section.flow_area .flow_list > li .box > div:last-child img {
	width: 100%;
}

section.flow_area .new_flow {
	padding-top: 60px;
}
section.flow_area .new_flow h3 {
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	margin-bottom: 0.6em;
}


/*================================================
 *  スマートフォン向けデザイン
 ================================================*/
@media screen and (max-width:500px) {

.contents {
	padding-top: 8vw;
}

section.flow_area {
	margin-top: 8vw;
}
section.flow_area .flow_list > li {
	padding: 10vw 0;
}
section.flow_area .flow_list > li::after {
	border-width: 10vw 15vw 0 15vw;
	bottom: -4.9vw;
}

section.flow_area .flow_list > li h3 {
	font-size: 6vw;
	margin-left: 0;
}
section.flow_area .flow_list > li h3 span::after {
	margin-top: -0.5em;
}

section.flow_area .flow_list > li .box {
	display: table;
	width: 100%;
}
section.flow_area .flow_list > li .box > div {
	display: block;
}
section.flow_area .flow_list > li .box > div:last-child {
	width: 100%;
	padding: 5vw 0 0;
}

section.flow_area .new_flow {
	padding-top: 10vw;
}
section.flow_area .new_flow h3 {
	font-size: 6vw;
}

	
}