@charset "UTF-8";


/* STEP------------------------------*/

/* 要素本体 */
.stepBox{
	color: white;
	margin: 1.5em auto 2em auto;
	width: 100%;
}
.stepBox .step{
	display: flex;
	flex-wrap: nowrap;
	list-style: none;
	justify-content: center;
	align-items: center;
}
.stepBox p{
	font-size: 1.2em;
	font-weight: 600;
	text-align: center;
	color: #000;
	margin:1em auto;
}
.step li{
	position: relative;
	flex-basis: 12em;
	padding: 1.5em 5em;
	margin: 0 2em .8em 0;
	color: #000;
	background: #eaeff3;
	text-align: center;
}
@media (max-width: 930px) {
	.stepBox .step{
		flex-wrap: wrap;
		margin: 0 auto;
		width: 80%;
	}
	.step li{
		flex: 1 0 auto;
	}
}
@media (max-width:512px) {
	.stepBox .step{
		flex-direction: column;
	}
	.stepBox p{
		margin: 1em auto 0 auto;
	}
	.step li{
	position: relative;
	padding: 1em 2em 0 2em;
	margin: 0 1em 3em 1em;
	width: 80%;
	}
}

/* 先端部分 */
.step li::after{
	content: "";
	position: absolute;
	top: 0;
	right: -30px;
	border-width: 32px 15px;
	border-color: transparent transparent transparent #eaeff3;
	border-style: solid;
}

@media (max-width:512px) {
	.step li{
		position: relative;
		flex-basis: auto;
		padding: 1em;
		margin: 1em auto 1em 2em;
		background: #fff;
		color: #000;
		font-weight: 600;
		text-align: center;
	}
	.step li:first-child::before{
		content: "1";
		position: absolute;
		width: 2.5em;
		height: 2.5em;
		line-height: 2.5;
		top: 0;
		right: initial;
		left: -45px;
		border: 1px solid #ccc;
		border-radius: 50%;
		background-color: #eaeff3;
		color: #000;
		font-size: 1.5em;
		font-weight: 600;
	}
	.step li:nth-child(2)::before{
		content: "2";
		position: absolute;
		width: 2.5em;
		height: 2.5em;
		line-height: 2.5;
		top: 0;
		right: initial;
		left: -45px;
		border: 1px solid #ccc;
		border-radius: 50%;
		background-color: #eaeff3;
		color: #000;
		font-size: 1.5em;
		font-weight: 600;
	}
	.step li::after{
		top: initial;
		right: 10px;
		bottom: -15px;
		border-width: 1px;
		border-color: #eaeff3;
		width: 80%;
	}
}
/* 現在のステップ */
.step li.is-current{
	background: #1ba9c0;
	color: #fff;
	font-weight: 600;
}
.step li.is-current::after{
	border-color: transparent transparent transparent #1ba9c0;
}

@media (max-width:512px) {
	.step li.is-current::before{
		background: #1ba9c0;
		color: #fff;
	}
	.step li.is-current{
		background: #fff;
		color: #000;
	}
	.step li.is-current::after{
		border-color: #1ba9c0;
	}
}
/*
** sendMessage
*/
.sendMessage{
	margin-top: 60px;
	padding-top: 40px;
	padding-bottom: 45px;
}

.sendMessage p {
	margin-bottom: 25px;
}

.sendMessage .formBtn {
	margin: 0 auto;
	max-width: 350px;
	text-align: center;
	font-size: 14px;
	font-weight: bold;
}

.sendMessage .formBtn a {
	display: block;
	position: relative;
	padding: 21px 0 20px;
	font-weight: normal;
	text-decoration: none;
	border: 1px solid #b9c3c8;
	color: #526d7b;
	background: #fff;
	line-height: 1.2;
}

.sendMessage .formBtn a::before{
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: auto;
	margin-top: -6px;
	width: 12px;
	height: 12px;
	border-right: 1px solid #fabe00;
	border-bottom: 1px solid #fabe00;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	left: auto;
	right: 20px;
	background: none !important;
}

@media (max-width: 767px) {
	.sendMessage{
		margin-top: 30px;
		padding-top: 20px;
		padding-bottom: 22px;
	}
	.sendMessage p{
		text-align: left;
	}

	.sendMessage .formBtn{
		width: 90.77%;
		max-width: initial;
	}

	.sendMessage .formBtn a{
		padding: 12px 0 12px;
	}
}

.boderBox{
	text-align: center;
	border: solid #dce1e3 5px;
	margin-bottom: 40px;	
	padding-top: 25px;
	padding-bottom: 18px;
}

@media (max-width: 767px) {
	.boderBox{
		width: calc(94% - 10px);
		margin: 0 auto;
		margin-bottom: 20px;
	}
}


