.member-page__lead {
	margin: 0 0 24px;
	color: #555;
	line-height: 1.9;
}

.member-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
	gap: 20px;
}

.member-initial {
	grid-column: 1 / -1;
	margin: 6px 0 -4px;
	padding: 8px 14px;
	border-radius: 10px;
	background: #8a6a2f;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1.2;
}

.member-card {
	display: flex;
	flex-direction: row;
	align-items: stretch;
	overflow: hidden;
	border: 1px solid #e2ddd2;
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.member-card__photo {
	flex: 0 0 150px;
	max-width: 150px;
	background: linear-gradient(180deg, #f8f4ec 0%, #efe7d8 100%);
}

.member-card__photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

.member-card__body {
	flex: 1 1 auto;
	padding: 16px 16px 18px;
}

.member-card__name {
	margin: 0 0 14px;
	display: block;
	width: 100%;
	padding-bottom: 8px;
	border-bottom: 1px solid #d8c9a6;
	font-size: 1.8rem;
	line-height: 1.3;
	text-align: center;
}

.member-card__meta {
	margin: 0;
}

.member-card__meta div + div {
	margin-top: 12px;
}

.member-card__meta dt {
	margin-bottom: 4px;
	color: #8a6a2f;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
}

.member-card__meta dd {
	margin: 0;
	color: #333;
	font-size: 1.4rem;
	line-height: 1.7;
	word-break: break-word;
}

@media (max-width: 767px) {
	.member-grid {
		grid-template-columns: 1fr;
	}

	.member-card {
		flex-direction: row;
	}

	.member-card__photo {
		flex: 0 0 112px;
		max-width: 112px;
		aspect-ratio: 3 / 4;
	}

	.member-card__body {
		padding: 12px 12px 14px;
	}

	.member-card__name {
		margin-bottom: 10px;
		padding-bottom: 7px;
		font-size: 1.5rem;
		text-align: left;
	}

	.member-card__meta dt {
		font-size: 1.1rem;
	}

	.member-card__meta dd {
		font-size: 1.3rem;
		line-height: 1.6;
	}

	.member-initial {
		margin-top: 2px;
		padding: 7px 12px;
		font-size: 1.4rem;
	}
}

.aisatsu-list ul {
	list-style: none;
	padding-left: 0;
}

.aisatsu-list li {
	position: relative;
	padding-left: 1.8em;
	margin-bottom: 10px;
}

.aisatsu-list li:before {
	position: absolute;
	left: 0;
	top: 0;
}

.aisatsu-list li:nth-child(1):before { content: "①"; }
.aisatsu-list li:nth-child(2):before { content: "②"; }
.aisatsu-list li:nth-child(3):before { content: "③"; }
.aisatsu-list li:nth-child(4):before { content: "④"; }

/* 活動メニュー削除後の6項目ナビ幅補正 */
.mainnav li {
	width: 16.6666667%;
}

/* greeting/index.html: 役員・委員会レイアウト調整 */
.officer-committee .period {
	margin-bottom: 10px;
	font-weight: bold;
}

.officer-committee .officer-board {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}

.officer-committee .officer-column {
	flex: 1 1 320px;
	background: #fff8ea;
	border: 1px solid #ead9b5;
	border-radius: 10px;
	padding: 14px;
}

.officer-committee .officer-column h5 {
	margin: 0 0 10px;
	font-size: 18px;
	color: #6f512e;
}

.officer-committee .officer-column ul {
	margin: 0;
	padding-left: 1.2em;
}

.officer-committee .officer-column li {
	margin-bottom: 6px;
	line-height: 1.6;
}

.officer-committee .committee-table th,
.officer-committee .committee-table td {
	vertical-align: top;
}

@media (max-width: 767px) {
	.officer-committee .table-responsive {
		border: none;
		margin-bottom: 18px;
	}

	.officer-committee .officer-board {
		display: block;
		margin-bottom: 10px;
	}

	.officer-committee .officer-column {
		margin-bottom: 12px;
		padding: 12px;
	}

	.officer-committee .officer-column h5 {
		font-size: 16px;
	}

	.officer-committee .committee-table thead {
		display: none;
	}

	.officer-committee .committee-table,
	.officer-committee .committee-table tbody,
	.officer-committee .committee-table tr,
	.officer-committee .committee-table td {
		display: block;
		width: 100%;
	}

	.officer-committee .committee-table tr {
		border: 1px solid #e3d6be;
		border-radius: 10px;
		background: #fff;
		padding: 8px 10px;
		margin-bottom: 10px;
	}

	.officer-committee .committee-table td {
		border: none;
		padding: 4px 0 4px 6.5em;
		position: relative;
		min-height: 1.6em;
	}

	.officer-committee .committee-table td:before {
		position: absolute;
		left: 0;
		top: 4px;
		width: 6em;
		font-weight: bold;
		color: #6f512e;
	}

	.officer-committee .committee-table td:nth-child(1):before {
		content: "委員会";
	}

	.officer-committee .committee-table td:nth-child(2):before {
		content: "委員長";
	}

	.officer-committee .committee-table td:nth-child(3):before {
		content: "副委員長";
	}

	.officer-committee .committee-table td:nth-child(4):before {
		content: "委員";
	}
}
