@charset "utf-8";

.pagehead.checkin{
	/*background-image:linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),url("../images/facilities/pagehead.jpg");*/
	background-image:url("../images/checkin/pagehead.jpg");
	background-position:center center;
}

.pageintro{
	padding:80px 15px;
	text-align:center;
}
.pageintro p{
	font-family:var(--sans_serif);
}
#sec_usage{
	background:var(--lightgray);
	padding:80px 0;
}
#sec_usage .ttl{
	text-align:center;
}
#sec_usage .ttl h3{
	font-weight:normal;
	font-size:2.3rem;
	position:relative;
}
#sec_usage .ttl h3::after{
	content:"";
	background:var(--gold);
	width:77px;
	height:1px;
	position:absolute;
	bottom:-30px;
	left:50%;
	transform:translateX(-50%);
}
.flow_index{
	margin-top:80px;
}
.flow_index ul{
	display:flex;
	justify-content:center;
	margin-bottom:80px;
	flex-wrap:wrap;
	gap:10px 3px;
}
.flow_index ul li{
	position: relative;
	height: 50px;
	padding:0 15px;
	background: #F4F3F2;
	display:flex;
	align-items:center;
	margin-right:25px;
}
.flow_index ul li:last-child{
	margin-right:0;
}
.flow_index ul li:not(:last-child):after{
	content: '';
	position: absolute;
	top: 0; /* 要素のすぐ下 */
	right: -20px;
	width: 20px;
	height: 50px;
	background-color: #F4F3F2; /* 三角形の色 */
	clip-path: polygon(0% 0%, 100% 50%, 0% 100%); /* 右向き三角形 */
}
.flow_unit h4{
	background:#C1BDB3;
	font-size:2.2rem;
	padding:20px 10px;
	text-align:center;
	font-weight:normal;
}
.flow_unit_inner{
	display:flex;
	gap:5%;
	align-items:center;
	padding:40px 50px 0;
	background:#fff;
}
.flow_unit_inner:last-child{
	margin-bottom:60px;
	padding-bottom:40px;
	position:relative;
}
.flow_unit_inner:last-child::after{
	content:"";
	background:var(--gold);
	width:1px;
	height:40px;
	position:absolute;
	bottom:-50px;
	left:50%;
}
.flow_unit:last-child .flow_unit_inner:last-child::after{
	content:none;
}
.flow_unit_inner .img{
	width:40%;
	display:flex;
	gap:10px;
}

.flow_unit_inner .txt{
	width:55%;
}
.flow_unit_inner .txt p{
	font-family:var(--sans_serif);
	font-size:1.8rem;
}
@media screen and (max-width:767px){
	
}
@media screen and (max-width:480px){
	#sec_usage{
		padding:50px 0;
	}
	.pageintro{
		padding:50px 15px;
	}
	.pageintro p{
		text-align:left;
	}
	#sec_usage .ttl h3{
		font-size:1.9rem;
	}
	.flow_index ul{
		margin-bottom:45px;
	}
	.flow_index ul li{
		font-size:1.2rem;
		margin-right:16px;
		height: 40px;
		padding:0 8px;
	}
	.flow_index ul li:not(:last-child){
		padding-right:0;
	}
	.flow_index ul li:not(:last-child):after{
		right: -20px;
		width: 20px;
		height: 40px;
		clip-path: polygon(0% 0%, 80% 50%, 0% 100%); /* 右向き三角形 */
	}
	.flow_unit h4{
		font-size:1.5rem;
	}
	.flow_unit_inner{
		flex-direction:column;
		gap:10px;
		align-items:center;
		padding:30px;
	}
	.flow_unit_inner .img{
		width:100%;
		display:flex;
		gap:10px;
	}
	.flow_unit_inner .img.r2 img{
		width:50%;
	}
	.flow_unit_inner .txt{
		width:100%;
	}
	.flow_unit_inner .txt p{
		font-size:1.4rem;
	}
}