/*メインビジュアル
=====================================*/
.main-visual {
		background-image: url('../img/service/main.jpg');
}
@media screen and (max-width: 1024px) {
		.main-visual {
				background-image: url('../img/service/sp/main.jpg');
		}
}

/*section-1
=====================================*/
.section-1{
	padding-top:100px;
}
.section-1 li:nth-of-type(even){
	background-color: #f2f7f7;
	padding:50px 0;
}
.section-1 .inner{
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
}
.section-1 li:nth-of-type(odd) .inner{
	justify-content: flex-end;
}
.section-1 li:nth-of-type(even) .inner{
	justify-content: flex-start;
}
.section-1 li:nth-of-type(1) .inner{
	background:url(../img/service/sec1_img1.png) no-repeat;
	background-size: 55% auto;
	background-position: top left;
}
.section-1 li:nth-of-type(2) .inner{
	background:url(../img/service/sec1_img2.png) no-repeat;
	background-size: 55% auto;
	background-position: top right;
}
.section-1 li:nth-of-type(3) .inner{
	background:url(../img/service/sec1_img3.png) no-repeat;
	background-size: 55% auto;
	background-position: top left;
}
.section-1 li:nth-of-type(4) .inner{
	background:url(../img/service/sec1_img4.png) no-repeat;
	background-size: 55% auto;
	background-position: top right;
}
.section-1 .text-wrapper{
	width: 55%;
	min-height: 380px;
	color:#fff;
	background-color: #003888;
	border-radius: 0 50px;
	padding:30px;
	margin-top: 50px;
}
.section-1 .text-wrapper h3{
	font-size: 3.8rem;
}
@media screen and (max-width: 1024px) {
	.section-1{
		padding-top:50px;
	}
	.section-1 .inner{
		width: 95%;
		padding-bottom: 45%;
	}
	.section-1 li:nth-of-type(1) .inner{
		background-size: 95% auto;
		background-position: bottom left;
	}
	.section-1 li:nth-of-type(2) .inner{
		background-size: 95% auto;
		background-position: bottom right;
	}
	.section-1 li:nth-of-type(3) .inner{
		background-size: 95% auto;
		background-position: bottom left;
	}
	.section-1 li:nth-of-type(4) .inner{
		background-size: 95% auto;
		background-position: bottom right;
	}
	.section-1 .text-wrapper{
		width: 95%;
		margin-top:0;
		padding:30px 4%;
	}
}
/*section-2
=====================================*/
.ud_layer section:nth-of-type(even){
	background-color: #fff;
}
.section-2 .desc{
	text-align: center;
	margin-bottom: 50px;
}
.section-2 .flow{
	margin-bottom: 50px;
}
.section-2 .flow ul{
	display: flex;
	justify-content: space-between;
	position: relative;
	z-index: 1;
	margin-bottom: 30px;
}
.section-2 .flow ul::after{
	content: "";
	width: 100%;
	border-bottom: 5px dotted #00cbd6;
	position: absolute;
	top:50%;
	z-index: -1;
}
.section-2 .flow ul li{
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	color: #002252;
	background-color: #f2f6f6;
	padding-top: 30px;
	height: 320px;
	width: 90px;
	line-height: 90px;
	position: relative;
	font-weight: bold;
	font-size:2rem;
}
.section-2 .flow ul li::before{
	content: "";
	border-top: solid 20px #003888;
	border-right: solid 20px transparent;
	position: absolute;
	left: 0;
	top: 0;
}
.section-2 .flow_detail li h3{
	background-color: #f2f6f6;
	border-bottom: 2px solid #003888;
}
.section-2 .flow_detail li h3 span.century{
	color: #fff;
	background-color: #003888;
	display: inline-block;
	height: 60px;
	width: 60px;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	line-height: 60px;
	margin-right: 20px;
}
.section-2 .flow_detail li p{
	padding:20px 20px 40px;
}
@media screen and (max-width: 1024px) {
	.section-2 .flow ul{
		display: block;
	}
	.section-2 .flow ul::after{
		width: auto;
		height:100%;
		border-bottom: none;
		top:0;
		left:50%;
		border-left: 5px dotted #00cbd6;
	}
	.section-2 .flow ul li{
		writing-mode:horizontal-tb;
		width: 100%;
		height: auto;
		padding: 30px 2%;
		line-height: 1;
		text-align: center;
		margin-bottom: 30px;
	}
}