.home-Hero{
	grid-column: full-width;
	display: flex;
	flex-direction: column-reverse;
	background-image: url('/images/home-hero-background.png');
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ddd;
	text-align: center;
	font-size: 3rem;
	margin-top: -20px;
	margin-bottom: 15px;
}
.home-Hero__Points{
	display: flex;
	justify-content: center;
	padding: 30px;
}
.home-Hero__Point{
	width: 25%;
}

@media screen and (max-width: 600px) {
	.home-Hero__Point{
		width: 33%;
	}
}
.home-Hero__Point:not(:first-child){
	margin-left: -2%;
}
.home-Hero__Point img{
	width: 100%;
}
.home-Hero__Message{
	font-size: 2.0rem;
	color: #fff;
	background-color: rgba(138,0,31,0.5);
	padding: 15px;
}
.home-Hero__Message > span{
	font-size: 2.4rem;
	display: inline-block;
}

.home-Title{
	text-align: center;
	font-size: 1.8rem;
	line-height: 1.5;
	padding: 15px;
	border-bottom: 1px solid #ddd;
	margin-bottom: 30px;
}


.home-Products{
	margin-bottom: 30px;
}
.home-Products__Title{
	font-size: 2.4rem;
	padding-bottom: 10px;
}
.home-Products__SubTitle{
	font-size: 2.0rem;
	padding-top: 15px;
	padding-bottom: 5px;
}
.home-Products__List{
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 15px;
	margin-bottom: 20px;
}
.home-Products__Item{
	display: flex;
	flex-direction: column-reverse;
	border: 1px solid rgba(0, 0, 0, .125);
	border-radius: 3px;
	box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
	background-color: #f8f8f8;
}
.home-Products__Below{
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 15px;
}
.home-Products__Detail > a{
	color: #666;
	text-decoration: none;
	border: 1px solid #888;
	border-radius: 3px;
	padding: 5px 10px;
}
.home-Products__Detail > a:hover{
	color: #fff;
	background-color: #aaa;
	border-color: transparent;
}
.home-Products__Above{
	background-color: #fff;
}
.home-Products__Image{
	padding: 5px;
}
.home-Products__Image > a:hover{
	opacity: 0.7;
}


.home-OrderFlow{
	grid-column: full-column;
	margin-bottom: 40px;
}
.home-OrderFlow__Title{
	font-size: 2.4rem;
	padding-bottom: 20px;
}
.home-OrderFlow__Headers{
	display: flex;
}
.home-OrderFlow__List{
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 15px;
	counter-reset: step;
	margin-bottom: 20px;
}
.home-OrderFlow__Item{
	counter-increment: step;
	display: flex;
	gap: 10px;
	/* flex-basis: 200px; */
}
.home-OrderFlow__Item::after{
	/* content: url('/images/delimiter.svg'); */
	align-self: center;
	content: '';
	display: block;
	height: 100%;
	aspect-ratio: 1 / 9;
	background-image: url('/images/delimiter.svg');
	background-repeat: no-repeat;	
}
.home-OrderFlow__Item:last-child:after{
	display: none;
}
.home-OrderFlow__ItemInner{
	display: flex;
	flex-direction: column;
}
.home-OrderFlow__StepTitle{
	display: flex;
	font-size: 1.6rem;
	font-weight: bold;
}
.home-OrderFlow__StepTitle.--Highlight{
	background: linear-gradient(transparent 70%, yellow 70%);
}
.home-OrderFlow__StepTitle::before{
	content: counter(step) '.';
	padding-right: 10px
}
/* .home-OrderFlow__StepTitle span{
	display: inline-block;
} */
.home-OrderFlow__Image{
	text-align: center;
	margin-top: auto;
}
.home-OrderFlow__Image img{
	padding-top: 15px;
	width: 30px;
}
.home-OrderFlow__Detail{
	text-align: right;
}
.home-OrderFlow__Detail > a{
	font-size: 2rem;
	color: #000;
	display: inline-block;
	width: fit-content;
	border: 1px solid #888;
	border-radius: 3px;
	text-decoration: none;
	padding: 10px 15px;
}
.home-OrderFlow__Detail > a:hover{
	color: #fff;
	background-color: #666;
	border-color: transparent;
}
@media screen and (max-width: 600px) {
	.home-OrderFlow{
		padding: 0 15px;
	}
	.home-OrderFlow__Headers{
		display: none;
	}
    .home-OrderFlow__List{
		display: block;
    }
	.home-OrderFlow__Item{
		flex-direction: column;
		align-items: center;
	}
	.home-OrderFlow__Item::after{
		transform: rotate(90deg);
	}
	.home-OrderFlow__ItemInner{
		padding-bottom: 20px;
	}
	.home-OrderFlow__Image img{
		width: 60px;
	}
}
