@charset "utf-8";
/* CSS Document */

.contents {
	max-width: 1260px;
}
.main_in {
	margin: 10px;
	padding: 30px;
	background: #FFF;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.chairperson, .chapter_manager {
	padding: 0 0 20px;
	display: flex;
	flex-direction: row;
	gap: 30px;
	border-bottom: 1px solid #1E474B;
}
.chairperson img {
	width: 50%;
	height: auto;
	max-width: 250px;
}

.chapter_manager img {
	width: 30%;
	height: auto;
	max-width: 150px;
}
.chairperson_info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0px;
}
.chairperson_name {
	font-size:2.5rem;
}
.main {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ml-10px {
	margin-left: 10px;
}

/* 表示領域が992px以上の場合に適用するスタイル */
@media screen and (min-width: 992px) {
	.contents {
		padding: 0 10px;
	}
	.left-contents {
		width: 210px;
	}
	.middle-contents {
		width: calc(100% - 240px);
	}
}

/* 表示領域が570px以下の場合に適用するスタイル */
@media print, screen and (max-width: 570px) {
	.chairperson, .chapter_manager {
		flex-direction: column;
		gap: 10px;
	}
	.main_in {
		padding: 10px;
	}
}
