@charset "utf-8";
/* -----------------------------------------------------------------------
use : /sevenmax/flow/

style.css

----------------------------------------------------------------------- */
.pageTitleBox .pageTTL span{
	display: block;
	font-size: 18px;
}
@media screen and (min-width: 768px){
	.pageTitleBox .pageTTL span{
		font-size: 21px;
	}

}
/*-----------------------------------------------------------------

	stepList

-----------------------------------------------------------------*/

#stepList {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-flex-wrap: wrap;
	-ms-flex-pack: wrap;
	flex-wrap: wrap;
	width:100%;
	margin:25px auto 0;
}
#stepList li {
	width:100%;
	margin:25px 0 0;
	background-color:#ffffff;
	background-repeat:no-repeat;
	border-radius:6px;
	position:relative;
	z-index:1;
}
#stepList li::before {
	display: block;
	content: '';
	width: 3px;
	height:30px;
	background:#45BC90;
	position:absolute;
	bottom:-30px;
	transition:all 0.5s ease;
	z-index:-1;
}
#stepList li:last-child::before {
	display: none;
}
#stepList li.step01 {
	background-image:url(/sevenmax/flow/img/icon_flow_step1.svg);
}
#stepList li.step02 {
	background-image:url(/sevenmax/flow/img/icon_flow_step2.svg);
}
#stepList li.step03 {
	background-image:url(/sevenmax/flow/img/icon_flow_step3.svg);
}
#stepList li.step04 {
	background-image:url(/sevenmax/flow/img/icon_flow_step4.svg);
}

#stepList li:first-child {
	margin-top:0;
}
#stepList li .number {
	width:100%;
	padding:8px 25px;
	font-size:3rem;
	letter-spacing:0em;
	font-size:1.8rem;
	letter-spacing:0.05em;
	line-height:28px;
	font-weight:700;
	font-family: 'Poppins', sans-serif;
	color:#ffffff;
	text-align:center;
	background:#45BC90;
	position:absolute;
	top:0;
	left:0;
}
#stepList li .number span {
	display:inline-block;
	margin-left:5px;
	font-size:2.8rem;
	line-height:28px;
}
#stepList li .headLineF {
	margin-bottom:8px;
	font-size:2.0rem;
	line-height:1.6;
	font-weight:700;
	background-repeat:no-repeat;
	background-position:top 0 left 0%;
	background-size:60px auto;
}

/*----------------------------------------------------------
	Display：767px →（ sp + tablet ）
----------------------------------------------------------*/

@media screen and (max-width: 767px) {
	
	#stepList li {
		padding:145px 25px 25px;
		background-position:top 65px left 50%;
		background-size:100px auto;
		border:2px solid #45BC90;
	}
	#stepList li.step01,
	#stepList li.step02 {
		background-position:top 75px left 50%;
	}
	#stepList li::before {
		margin:0 auto;
		left:0;
		right:0;
	}
	#stepList li .number {
		border-radius:3px 3px 0 0;
	}

}
/*----------------------------------------------------------
	Display：768px →（ pc + tablet ）
----------------------------------------------------------*/

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

	#stepList {
		margin-top:30px;
	}
	#stepList li {
		padding:30px 30px 30px 240px;
		background-position:top 35px left 115px;
		background-size:100px auto;
	}
	#stepList li::before {
		left:44px;
	}
	#stepList li .number {
		width:90px;
		height:100%;
		padding:30px 0 0;
		font-size:1.8rem;
		letter-spacing:0em;
		line-height:1.0;
		font-weight:700;
		font-family: 'Poppins', sans-serif;
		color:#ffffff;
		text-align:center;
		background:#45BC90;
		border-radius:6px 0 0 6px;
		position:absolute;
		top:0;
		left:0;
	}
	#stepList li .number span {
		display:block;
		margin-left:0px;
		font-size:4rem;
		line-height:1.0;
	}

}
