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

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

-----------------------------------*/
.section-title{
	text-align: center;
	margin: 10px 0 30px;
	font-size: 2rem;
}
/*-----------------------------------
	       基本情報
-----------------------------------*/
.entrance-info-section{
	margin-bottom: 100px;
}
.entranceexa-title{
	text-align: center;
	margin: 60px 0 40px;
}
.entrance-subtitle{
	margin: 40px 10px 10px 20px;
	padding-left: 10px;
	border-left: 4px solid #DDDDDD;
}

.expenses-list{
	list-style: none;
	padding: 0;
	margin: 0;
}
.expenses-item{
	display: flex;
	align-items: flex-start;
	padding: 25px 0;
	border-bottom: 1px solid #DDDDDD;
}
.label-text{
	display: inline-block;
	width: 200px;
	flex-shrink: 0;
	font-weight: bold;
	margin-right: 5px;
	padding-left: 20px;
}
.red{
	color: #FF6B6B;
}
.blue{
	color: #427BBF;
}
.price{
	font-size: 1.8rem;
	font-weight: bold;
}
.price-deta p{
	margin: 0 0 10px 0;
}
.price-deta small{
	display: block;
	margin-top: 5px;
}

/*-----------------------------------
	       概要リンク
-----------------------------------*/
.exam-link-set{
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
	padding: 40px 20px;
	max-width: 100%; 
	position: relative;
	z-index: 2;
}
.exam-card{
	text-decoration: none;
	color: inherit;
	width: 80%;
	max-width: 320px;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.exam-card-inner{
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	border-radius: 12px;
	padding: 25px 15px 15px;
	text-align: center;
	aspect-ratio: 1 / 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.exam-img img{
	max-width: 100%;
	height: 80px;
	object-fit: contain;
	margin-bottom: 10px;
}
.exam-img .car-img{
	max-width: 100%;
	height: 50px;
	object-fit: contain;
}
.exam-name{
	font-weight: bold;
	margin: 5px 0;
}
.arrow-down{
	color: #DFFF4F;
	font-size: 1.8rem;
	margin-top: 5px;
}
.exam-desc{
	margin-top: 12px;
	text-align: center;
}
/*---波の背景---*/
.exam-link-section{
	position: relative;
	width: 100%;
	padding-top: 120px;
	padding-bottom: 60px;
	background-color: #E6F0FF;
}
.exam-link-section::before{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%23ffffff'/%3E%3C/svg%3E");
	background-size: 100% 100%;
	background-repeat: no-repeat;
	z-index: 1;
}


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

-----------------------------------*/

@media (min-width: 900px){
	.section-title{
		margin-bottom: 120px;
		font-size: 5rem;
	}
	/*-----------------------------------
	       　　　　基本情報
	-----------------------------------*/
	.entrance-info-set{
		max-width: 900px;
		padding: 0 20px;
		margin: 100px auto;
	}
	/*-----------------------------------
	       　　　　概要リンク
	-----------------------------------*/
	.exam-link-section{
		padding-top: 140px;
		margin-top: 150px;
	}
	.bg-wave{
		width: 150%;
		top: 20%;
	}
	.exam-link-set{
		flex-direction: row;
		justify-content: center;
		gap: 30px;
		max-width: 1000px;
		margin: 60px auto;
	}
	.exam-card{
		width: 30%;
		max-width: none;
	}
	.exam-card:hover{
		transform: translateY(-5px);
	}
	.exam-card:hover .exam-card-inner {
        box-shadow: 0 8px 25px rgba(0,0,0,0.1); 
        border-color: #427BBF; 
    }
	.exam-card-inner{
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
	}
	.exam-img{
		width: 100%;
		height: 120px;
		display: flex;
		align-items: flex-end;
		justify-content: center;
		margin-bottom: 15px;
	}
	.exam-img img{
		height: auto;
		max-height: 110px;
		width: auto;
	}
	.exam-img .car-img{
		height: 70px;
	}
	.exam-name{
		font-size: 1.6rem;
		margin-top: auto;
	}
	
	
}

/* 2. 押した瞬間（クリック中）：グッと沈み込む */
.exam-card:active {
    transform: translateY(2px); 
    transition: transform 0.1s; 
}

.exam-card:active .exam-card-inner {
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}