@charset "utf-8";
/* CSS Document */
.banner-box{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.btn-anchor{
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FDA007;
	border: 10px double #fff;
	width: 350px;
	height: 100px;
	color: #fff;
	font-size: 1.8rem;
	text-decoration: none;
	transition:
    transform 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
	margin-bottom: 1.5rem;
}
.btn-anchor:hover{
  transform: scale(1.03);
  background-color: #fdb733; /* #FDA007 を少し薄く */
  box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,.15);
}
.btn-anchor:before{
	content: "↓↓↓";
	font-size: 1.8rem;
	display: inline-block;
	margin-right: .8em
	
}
.btn-anchor:after{
	content: "↓↓↓";
	font-size: 1.8rem;
	display: inline-block;
	margin-left: .8em
	
}
/* /////// step //////// */
.container-step{
	width: 95%;
	margin: 0 auto;
}
.step {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #FCFBEB;
	padding: 2rem;
	border-radius: 1.2rem;
	box-shadow: 0 4px 12px rgba(0,0,0,0.08);
	margin-bottom: 2rem;
}
.step img {
	border-radius: 1rem;
	margin-bottom: 2rem;
	
}
.step-title{
	font-weight: bold;
	font-size: 2rem;
	color: #E85600;
}
.step img,
.step p {
	width: 100%;
	max-width: 100%;
}
.step-num {
  font-weight: bold;
  font-size: 4rem;
  color: #FDA007;
}
.step-debut{
	font-weight: bold;
  font-size: 3.8rem;
  color: #e60000;
	line-height: 1.2;
	text-align: center;
	margin-bottom: 1rem;
}
.nomal{
	font-size: 1.8rem;
	color: #009b63;
}


/* ///////（タブレット）//////// */
@media (min-width: 768px) {
	.banner-box{
		flex-direction: row;
		justify-content: space-around;
		max-width: 900px;
		margin: 0 auto;
	}
	
}
	


/* ///////（PC）//////// */
@media (min-width: 1024px) {
	/* /////// step //////// */
	.container-step{
		display: flex;
		flex-direction: column;
		
	}
	.step-group{
		display: grid;
		gap: 3rem;
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
	}
	#driver .step-group{
		grid-template-columns: repeat(4, 1fr);
	}
	#staff .step-group{
		grid-template-columns: repeat(3, 1fr);
	}
	/* DEBUT専用レイアウト */
	.step:has(.step-debut) .debut-body{
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
		align-items: flex-start;
	}
	.step:has(.step-debut) img{
		max-width: 380px;
		width: 100%;
	}
	.debut-text{
		display: flex;
		flex-direction: column;
	}
	.debut-box::before{
		transform: rotate(-45deg);
		content: "";
		display: block;
		width: 60px;
		height: 60px;
		margin: 1rem auto 3rem;
		border-left: 12px solid #FDA007;
		border-bottom: 12px solid #FDA007;
		
		
	}
		
}

