@charset "utf-8";

:root {
  --navy: #003366;
  --text: #222;
  --muted: #666;
  --gap: 32px;
  --maxw: 1180px;

font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	
}

/* ベース */
body {
	margin: 0;
	background-color: #E5EDF4;
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.wrap {
  max-width: var(--maxw);
  margin: 40px auto;
  padding: 0 20px;
}

/* 見出し */
h2.section-title {
	color: var(--navy);
	font-size: 22px;
	margin-top: 44px;
	margin-right: 0;
	margin-left: 0;
	margin-bottom: 18px;
	letter-spacing: 0.02em;
	border-bottom: 2px solid var(--navy);
	display: inline-block;
	padding-bottom: 6px;
	width: 100%;
}

/* バナー */
.banner {
  text-align: center;
  margin-bottom: 18px;
}
.banner img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* ===== スタッフグリッド ===== */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr); /* スマホ：1列 */
  gap: var(--gap);
  align-items: stretch; /* 高さを自動で揃える */
}

/* タブレット：2列 */
@media (min-width: 640px) {
  .staff-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* PC：4列 */
@media (min-width: 1024px) {
  .staff-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== カード ===== */
.staff-card {
  text-align: center;
  padding: 18px;
  border: none; /* 枠線を削除 */
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  height: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08); /* やや控えめなシャドウ */
  transition: box-shadow 0.3s ease; /* ホバー時に自然に変化 */
}

.staff-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12); /* ホバー時に少し強調 */
}
.staff-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  display: block;
  border-radius: 0; /* 角丸なし */
  flex: 0 0 auto;
}

.staff-body {
  flex: 1;
  width: 100%;
  text-align: center;
  box-sizing: border-box;
}

/* テキスト要素 */
.position {
  color: var(--navy);
  font-weight: 600;
  font-size: 14px;
  margin: 6px 0 4px 0;
}

.name {
  font-weight: 700;
  font-size: 1.2em;
  margin: 0 0 6px 0;
  line-height: 1.3;
}

.roman {
	display: block;
	font-size: 13px;
	color: #ADADAD;
	font-weight: 500;
	margin-top: 4px;
}

.meta {
  font-size: 14px;
  color: var(--muted);
  margin: 6px 0;
  line-height: 1.7;
  display: inline-block;
  text-align: left; /* 中央寄せではなく、情報を整列 */
}

.meta .label {
	display: inline-block;
	width: 4em;            /* ラベル幅を固定 */
	font-weight: 600;
	color: #90A4AF;
}

.meta .value {
  display: inline-block;
  color: var(--text);
}
.message {
	margin-top: 6px;
	font-size: 14px;
	color: var(--text);
	line-height: 1.6;
	white-space: pre-wrap;
	text-align: left;
}
