@charset "UTF-8";
/* CSS Document */

#advanced   { --course-theme: #151F41; }


/*---font-size---*/
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; } 
h3 { font-size: 2rem; } 
h4 { font-size: 1.4rem; } 
h5 { font-size: 1.2rem; } 

@media (min-width: 900px){
	h1 { font-size: 5rem; }
	h2 { font-size: 5rem; } 
	h3 { font-size: 3rem; } 
	h4 { font-size: 2rem; } 
	h5 { font-size: 1.8rem; } 
}

.section-title{
	text-align: center;
	margin-bottom: 20px;
	font-size: 2rem;
}

/*-----------------------------------
	
   スマホ版

-----------------------------------*/
/*-----------------------------------
	メインビジュアル
-----------------------------------*/
.adv-main-set{
	position: relative;
	width: 100%;
	overflow: hidden;
}

.adv-main-set img{
	width: 100%;
	height: 200px;
	object-fit: cover;
	display: block;
}
.adv-main-set::after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.40);
	z-index: 1;
}

.adv-main-set h2{
	position: absolute;
	top: 20px;
	left: 20px;
	color: #ffffff;
	margin: 0;
	z-index: 10;
}
/*-----------------------------------
	イントロ
-----------------------------------*/
.adv-intro-section{
	padding: 80px 0;
	text-align: center;
}
.adv-catch{
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 25px;
	line-height: 1.3;
}
.adv-intro-text{
	font-size: 1.1rem;
	margin-bottom: 60px;
}
/*-----------------------------------
	２年間の流れ
-----------------------------------*/
.adv-twoyears-section{
	padding: 60px 0;
}
.adv-twoyears-set{
	margin: 0 auto;
}
.twoyears-chart{
	margin-top: 40px;
}
.chart-header{
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
	font-size: 1.2rem;
}
.adv-years{
	color: #FFFFFF;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	position: relative;
}
.month-9{
	background-color: #71C7D1;
	flex: 4;
}
.month-3{
	background-color: #369AA6;
	flex: 1.5;
}
.year-4{
	background-color: #28737B;
	flex: 4.5;
}
.chart-steps{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 0 20px;
	align-items: flex-start;
}
.chart-item{
	flex: 1;
	text-align: center;
	position: relative;
}
.chart-item::before{
	content: "";
	position: absolute;
	top: -30px;
	left: 50%;
	width: 2px;
	height: 30px;
	background-color: #7BA7B0;
}
.chart-icon{
	width: 80px;
	height: 80px;
	border: 3px solid #7BA7B0;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 15px;
}
.chart-icon img{
	width: 50px;
}
.chart-item h4{
	margin-bottom: 10px;
	font-size: 1.2rem;
}
.chart-item p{
	font-size: 1rem;
	text-align: left;
	line-height: 1.6;
}

/*-----------------------------------
	目標とする就職先の業務内容
-----------------------------------*/
.adv-job-section{
	padding: 60px 20px;
}
.adv-job-set{
	max-width: 1000px;
	margin: 0 auto;
}
.adv-job-grid{
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 900px){
	.adv-job-grid{
		grid-template-columns: 1fr 1fr;
	}
}
.adv-job-card{
	background-color: #333333;
	color: #FFFFFF;
	padding: 25px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	gap: 20px;
}
.adv-job-icon{
	flex-shrink: 0;
	width: 60px;
}
.adv-job-icon img{
	width: 100%;
}
.adv-job-text h4{
	font-size: 1.3rem;
	margin-bottom: 5px;
	color: #71C7D1;
}
.adv-job-text p{
	font-size: 1.1rem;
	line-height: 1.5;
	opacity: 0.9;
}

/*-----------------------------------
	指導者紹介
-----------------------------------*/
.teacher-section{
	margin: 80px 0;
	text-align: center;
}
.teacher-flex{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	margin-top: 30px;
}
.teacher-card{
	display: flex;
	align-items: center;
	gap: 20px;
	max-width: 400px;
}
.teacher-icon{
	width: 140px;
	height: 140px;
	display: flex;
	background-color: #151F41;
	border: 1px solid #333333;
	border-radius: 50%;
	align-items: center;
	justify-content: center;
}
.teacher-icon img{
	width: 70px;
	height: 100px;
	text-align: center;
}


/*-----------------------------------
	
   PC版

-----------------------------------*/
@media (min-width: 900px){
	
	.section-title{
		margin-bottom: 60px;
		font-size: 5rem;
	}
	
	/*-----------------------------------
		        メインビジュアル
	-----------------------------------*/
	.adv-main-set img{
		height: 650px;
		object-position: 50% 65%;
	}
	
	/*-----------------------------------
		         イントロ
	-----------------------------------*/
	.adv-intro-section{
		padding: 120px 0;
	}
	.adv-catch{
		font-size: 3.5rem;
	}
	.adv-intro-text{
		font-size: 1.8rem;
		line-height: 2;
	}
	
	/*-----------------------------------
		        ２年間の流れ
	-----------------------------------*/
	.chart-header{
		font-size: 1.8rem;
	}
	.chart-steps{
		gap: 40px;
	}
	.chart-item h4{
		font-size: 1.8rem;
		margin-top: 10px;
	}
	.chart-item p{
		font-size: 1.3rem;
		padding: 0 80px;
	}
	.chart-icon{
		width: 120px;
		height: 120px;
	}
	.chart-icon img{
		width: 70px;
	}
	
	/*-----------------------------------
		  　目標とする就職先の業務内容
	-----------------------------------*/
	.adv-job-section{
		padding: 120px 0;
	}
	.adv-job-grid{
		max-width: 1200px;
		margin: 0 auto;
		gap: 30px;
	}
	.adv-job-card{
		padding: 40px;
	}
	.adv-job-icon{
		width: 80px;
	}
	.adv-job-text h4{
		font-size: 1.8rem;
	}
	.adv-job-text p{
		font-size: 1.3rem;
	}
	
	/*-----------------------------------
		5.指導者紹介
	-----------------------------------*/
	.teacher-flex{
		display: flex;
		flex-direction: row;
		justify-content: center;
		gap: 80px;
		max-width: 1000px;
		margin: 40px auto 0;
	}
	.teacher-card{
		display: flex;
		flex-direction: column;
		align-items: center;
		text-align: center;
		max-width: 300px;
	}
	.teacher-icon{
		margin-bottom: 20px;
	}
	.teacher-card p{
		font-size: 1.7rem;
		font-weight: bold;
		line-height: 1.6;
	}
}


