.mpaa-section {
padding: 72px 20px;
background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 100%);
font-family: inherit;
}

.mpaa-inner {
max-width: 1120px;
margin: 0 auto;
}

.mpaa-heading {
text-align: center;
margin-bottom: 42px;
}

.mpaa-label {
display: inline-block;
padding: 6px 16px;
border-radius: 999px;
background: #e7f4ec;
color: #0f5132;
font-size: 13px;
font-weight: 700;
letter-spacing: 0.06em;
margin-bottom: 14px;
}

.mpaa-heading h2 {
font-size: clamp(26px, 4vw, 38px);
color: #123728;
margin: 0 0 14px;
line-height: 1.35;
}

.mpaa-heading p {
max-width: 720px;
margin: 0 auto;
color: #4b5f55;
line-height: 1.9;
font-size: 15px;
}

.mpaa-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(320px, 420px));
justify-content: center;
gap: 28px;
}

.mpaa-card {
background: #ffffff;
border: 1px solid #dcebe2;
border-radius: 24px;
overflow: hidden;
box-shadow: 0 14px 34px rgba(18, 55, 40, 0.08);
}

/* 顔写真が切れにくいように縦長・上寄せに調整 */
.mpaa-photo-wrap {
background: #edf7f1;
aspect-ratio: 3 / 4;
overflow: hidden;
}

.mpaa-photo {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center top;
display: block;
}

.mpaa-photo-placeholder {
width: 100%;
height: 100%;
min-height: 320px;
display: flex;
align-items: center;
justify-content: center;
}

.mpaa-photo-placeholder span {
width: 112px;
height: 112px;
border-radius: 999px;
background: #ffffff;
border: 1px solid #dcebe2;
color: #0f5132;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}

.mpaa-card-body {
padding: 28px;
}

.mpaa-profile-top {
margin-bottom: 18px;
padding-bottom: 18px;
border-bottom: 1px solid #edf3ef;
}

.mpaa-role {
color: #b58a2a;
font-size: 13px;
font-weight: 700;
margin: 0 0 6px;
line-height: 1.6;
}

.mpaa-profile-top h3 {
font-size: 26px;
color: #123728;
margin: 0;
line-height: 1.35;
}

.mpaa-content {
color: #35493f;
font-size: 15px;
line-height: 1.9;
margin-bottom: 20px;
}

.mpaa-content p {
margin-top: 0;
}

.mpaa-content p:last-child {
margin-bottom: 0;
}

.mpaa-info-box {
background: #f7fbf8;
border-radius: 18px;
padding: 18px;
margin: 20px 0;
}

.mpaa-info-row {
margin-bottom: 14px;
}

.mpaa-info-row:last-child {
margin-bottom: 0;
}

.mpaa-info-row span {
display: inline-block;
color: #0f5132;
font-size: 13px;
font-weight: 700;
margin-bottom: 4px;
}

.mpaa-info-row p {
color: #35493f;
margin: 0;
line-height: 1.7;
}

.mpaa-message {
background: #123728;
color: #ffffff;
border-radius: 18px;
padding: 18px 20px;
}

.mpaa-message span {
display: inline-block;
color: #d8bd72;
font-size: 13px;
font-weight: 700;
margin-bottom: 8px;
}

.mpaa-message p {
margin: 0;
line-height: 1.8;
}

.mpaa-bottom-note {
margin-top: 36px;
background: #ffffff;
border: 1px solid #dcebe2;
border-radius: 20px;
padding: 22px 24px;
text-align: center;
}

.mpaa-bottom-note p {
margin: 0;
color: #35493f;
line-height: 1.8;
}

.mpaa-empty {
background: #f7fbf8;
border: 1px solid #dcebe2;
border-radius: 16px;
padding: 24px;
text-align: center;
color: #35493f;
}

@media (max-width: 768px) {
.mpaa-section {
padding: 52px 16px;
}

```
.mpaa-grid {
    grid-template-columns: 1fr;
    gap: 22px;
}

.mpaa-card {
    border-radius: 22px;
}

.mpaa-card-body {
    padding: 22px;
}

.mpaa-profile-top h3 {
    font-size: 23px;
}

.mpaa-photo-wrap {
    aspect-ratio: 3 / 4;
}
```

}
