@charset "utf-8";
/***** mv *****/
.p-top__mv {
	background: #fff url("../images/img_bg.jpg") no-repeat center / cover;
	padding: 0 1.5rem;
}

.p-top__mv__contents {
	max-width: 1230px;
	margin-inline: auto;
	padding: 2% 0 1%;
	display: flex;
}

.p-top-mv__title {
	width: 52%;
}

.p-top-mv__outline {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 2rem;
	margin-top: 6%;
}

.p-top-mv__chair {
	width: 62%;
	margin-left: auto;
}

.p-top-mv__chairmen {
	align-items: flex-start;
	justify-content: space-between;
}

.p-top-mv__chairmen img {
	width: 28%;
}

@media screen and (max-width:768px){
	.p-top__mv {
		background: #fff url("../images/img_bg_sp.jpg") no-repeat top center / 100%;
		padding: 0;
	}
	
	.p-top__mv__contents {
		padding: 1.5rem 1.5rem 0;
		flex-direction: column;
	}
	
	.p-top-mv__title {
		width: 90%;
		margin-inline: auto;
	}
	
	.p-top-mv__outline {
		gap: 1.5rem;
		margin-top: 1.5rem;
	}
	
	.p-top-mv__chair {
		width: 70%;
		margin: 2.5rem auto 0;
	}
	
	.p-top-mv__chairmen {
		padding-top: 4rem;
		gap: 4rem;
		align-items: center;
	}
	
	.p-top-mv__chairmen img {
		width: 65%;
	}
}

/***** news *****/
.p-top__news {
	margin: 4rem 0;
	padding: 3rem;
	border: 3px solid var(--base-color);
}

.p-top__news__ttl {
	font-size: 2.6rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	margin-bottom: 2rem;
	padding-left: 0.5em;
	border-left: 3px solid var(--sub-color);
}

.p-top__news__box {
	height: 200px;
	overflow-y: scroll;
}

.p-top__news__item {
	display: flex;
	border-bottom: 1px dotted var(--black-color);
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	gap: 3rem;
}

@media screen and (max-width:768px){
	.p-top__news {
		margin: 3rem 1.5rem;
		padding: 1.5rem;
		border: 2px solid var(--base-color);
	}
	
	.p-top__news__ttl {
		font-size: 2.2rem;
		margin-bottom: 1rem;
	}
	
	.p-top__news__item {
		display: block;
		margin-bottom: 1rem;
		padding-bottom: 1rem;
	}
}

/***** トップバナー *****/
.p-top__bnr {
	display: flex;
	justify-content: space-between;
	gap: 2rem;
	margin-inline: auto;
	width: 70%;
}

.p-top__bnr li {
	padding: 10px;
	border: 2px solid var(--base-color);
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
}

.p-top__bnr a {
	display: block;
}

@media screen and (max-width:768px){
	.p-top__bnr {
		flex-direction: column;
		gap: 1rem;
		max-width: 250px;
	}
}