@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');
/*--------------------------------------
全体
--------------------------------------*/
.breadcrumb {
	max-width: 100%;
}
.contents {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #222;
	padding: 50px 0;
	
	& a {
		text-decoration: none;
		color: inherit;
		&:hover {
			opacity: 0.8;
			transition: all 0.6s ease;
		}
	}
	& .inner {
		width: 992px;
		max-width: 96%;
		margin: 0 auto;
	}
	& img {
		max-width: 100%;
	}
}
/*--------------------------------------
見出し
--------------------------------------*/
.contents h2 {
	font-size: 36px;
	line-height: 1.3em;
	font-weight: 900;
	text-align: center;
	margin-bottom: 50px;
}
.contents h3 {
	text-align: center;
	font-size: 30px;
	line-height: 1.3em;
	font-weight: 700;
	margin-bottom: 50px;
}
/*--------------------------------------
ナビ
--------------------------------------*/
#navi {
	width: 100%;
	max-width: 100%;
	background-color: #fff;
	
	& ul {
		width: 992px;
		max-width: 100%;
		margin: 0 auto;
		display: flex;
		justify-content: center;
		
		& li {
			width: 40%;
			margin: 0 2%;
			font-size: 16px;
			font-weight: 700;
			text-align: center;

			& a {
				display: block;
				padding: 15px 0;
				background-color: #ffe500;
				border-radius: 7px;
				box-shadow: 2px 2px 0 rgba(0 0 0 / 0.2);
				position: relative;
			}
			& a:hover {
				transition: all 0.6s ease;
				background-color: #faaa21;
			}
			& a:after {
				font-family: "Font Awesome 5 Free";
				font-weight: 900;
				content: "\f107";
				position: absolute;
				right: 8px;
				top: 15px;
			}
		}

	}
	&.fixed {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 1000;
		padding: 5px 0 7px;
		box-shadow: 0px 1px 2px rgba(0,0,0,0.3);
	}
	& br {
		display: none;
	}
}
.fix-navi:has(.fixed) {
	height: 66px;
}

/*--------------------------------------
フロー
--------------------------------------*/
#regist,#howto {
	padding: 80px 0;
}
.flow-list {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	
	& li {
		width: calc(98% / 3);
		padding: 10px 15px 30px;
		margin: 0 1% 10px 0;
		background-color: #f7f7f7;
		
		&:before {
			display: block;
			font-size: 50px;
			line-height: 1.8em;
			color: #888;
			text-align: center;
		}		
		&.wide {
			width: calc(99% - calc(98% / 3));
			display: flex;
			flex-wrap: wrap;
			justify-content: center;
			align-items: flex-start;
			& .img {
				width: 300px;
				margin: 0 1%;
			}
		}
	}
	& .text {
		& h4 {
			font-size: 18px;
			line-height: 1.5;
			font-weight: 700;
			color: #f00;
			margin-bottom: 10px;
		}
		& p {
			font-size: 16px;
			font-weight: 500;
		}
	}
	& .img {		
		& img {
			display: block;
			padding: 6px;
			background-color: #fff;
		}
	}
}
/*SP横の時*/
.sp .flow-list li .text h4 {
	font-size: 16px;
}
.sp .flow-list li .text p {
	font-size: 14px;
}
/*高さ揃え*/
#regist .text {
	min-height: 180px;
}
#howto .text {
	min-height: 100px;
}
/*番号*/
#regist .flow-list li{
	&:nth-child(1):before {content: "①";}
	&:nth-child(2):before {content: "②";}
	&:nth-child(3):before {content: "③";}
	&:nth-child(4):before {content: "④";}
	&:nth-child(5):before {content: "⑤";}
}
#howto .flow-list li{
	&:nth-child(1):before {content: "①②";}
	&:nth-child(2):before {content: "③";}
	&:nth-child(3):before {content: "④";}
	&:nth-child(4):before {content: "⑤";}
}
/*枠ボーダー*/
#regist .flow-list li {
	&:nth-child(3n) {
		margin-right: 0;
	}
}
#howto .flow-list li {
	&:nth-child(2),
	&:nth-child(5){
		margin-right: 0;
	}
}