@charset "UTF-8";

/* =========================================================
   staff greeting
   ========================================================= */
.staff-greeting {
  padding: 7.2rem 0;
  background: #fff;
}

.staff-greeting__inner {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.staff-greeting__head {
  margin-bottom: 3.2rem;
  text-align: center;
}

.staff-greeting__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-main-dark);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-greeting__title {
  margin: 0;
  color: #111;
  font-size: clamp(3.2rem, 3vw, 4.8rem);
  font-weight: 700;
  line-height: 1.3;
}

/* PC: 画像 | 文言 | 表 */
.staff-greeting__layout {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 300px;
  gap: 4rem;
  align-items: start;
}

.staff-greeting__photo {
  position: relative;
}

.staff-greeting__photo::before {
  content: "";
  position: absolute;
  top: 18px;
  right: -18px;
  bottom: -18px;
  left: 18px;
  border-radius: 2.4rem;
  background: rgba(220, 236, 247, 0.55);
  z-index: 0;
}

.staff-greeting__photo img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 2rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.staff-greeting__body {
  display: grid;
  gap: 3.2rem;
  align-content: start;
}

.staff-greeting__message {
  color: #333;
  font-size: 1.8rem;
  line-height: 2;
}

.staff-greeting__message p {
  margin: 0;
}

.staff-greeting__message p + p {
  margin-top: 2rem;
}

.staff-greeting__signature {
  margin: 0;
  color: #374151;
  font-size: 2rem;
  line-height: 1.9;
  text-align: right;
}

.staff-greeting__society {
  border: 1px solid #cfe0eb;
  border-radius: 1.8rem;
  overflow: hidden;
  background: #fff;
  align-self: start;
}

.staff-greeting__society-title {
  margin: 0;
  padding: 1.6rem 2rem;
  background: #eef6fb;
  color: var(--color-main-dark);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #cfe0eb;
}

.staff-greeting__society-list {
  display: grid;
  gap: 1.2rem;
  margin: 0;
  padding: 2rem;
  list-style: none;
}

.staff-greeting__society-list li {
  position: relative;
  padding-left: 1.4em;
  color: #374151;
  font-size: 1.6rem;
  line-height: 1.7;
}

.staff-greeting__society-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--color-main-dark);
  transform: translateY(-50%);
}

/* Tablet: 現状と同じ（画像＋表 | 文言） */
@media screen and (max-width: 1100px) {
  .staff-greeting__layout {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 3.2rem;
  }

  .staff-greeting__photo {
    grid-column: 1;
    grid-row: 1;
  }

  .staff-greeting__body {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .staff-greeting__society {
    grid-column: 1;
    grid-row: 2;
  }
}

/* SP: 画像 → 文言 → 表 */
@media screen and (max-width: 767px) {
  .staff-greeting {
    padding: 5.6rem 0;
  }

  .staff-greeting__inner {
    width: min(100% - 24px, 1240px);
  }

  .staff-greeting__head {
    margin-bottom: 2.4rem;
    text-align: left;
  }

  .staff-greeting__title {
    font-size: clamp(2.8rem, 8vw, 4rem);
  }

  .staff-greeting__layout {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }

  .staff-greeting__photo,
  .staff-greeting__body,
  .staff-greeting__society {
    grid-column: auto;
    grid-row: auto;
  }

  .staff-greeting__photo::before {
    top: 10px;
    right: -10px;
    bottom: -10px;
    left: 10px;
    border-radius: 1.8rem;
  }

  .staff-greeting__photo img {
    border-radius: 1.6rem;
  }

  .staff-greeting__body {
    gap: 2.4rem;
  }

  .staff-greeting__message {
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .staff-greeting__message p + p {
    margin-top: 1.6rem;
  }

  .staff-greeting__signature {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: left;
  }

  .staff-greeting__society {
    border-radius: 1.4rem;
  }

  .staff-greeting__society-title {
    padding: 1.2rem 1.4rem;
    font-size: 1.8rem;
  }

  .staff-greeting__society-list {
    gap: 1rem;
    padding: 1.4rem;
  }

  .staff-greeting__society-list li {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

/* =========================================================
   staff credentials
   ========================================================= */
.staff-credentials {
  padding: 7.2rem 0;
  background: #fbfdff;
}

.staff-credentials__inner {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

.staff-credentials__head {
  margin-bottom: 3.2rem;
  text-align: center;
}

.staff-credentials__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-main-dark);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-credentials__title {
  margin: 0;
  color: #111;
  font-size: clamp(3rem, 3vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
}

.staff-credentials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.2rem;
  align-items: start;
}

.staff-credentials__card {
  display: grid;
  gap: 2rem;
  padding: 2.4rem;
  border: 1px solid #dce8f0;
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 10px 24px rgba(22, 90, 167, 0.04);
}

.staff-credentials__image {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  border-radius: 0;
  background: transparent;
}

.staff-credentials__image img {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.staff-credentials__body {
  color: #374151;
}

.staff-credentials__card-title {
  margin: 0 0 1.2rem;
  color: #1f2937;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}

.staff-credentials__body p {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.9;
}

.staff-credentials__body p + p {
  margin-top: 1.4rem;
}

/* =========================================================
   responsive
   ========================================================= */
@media screen and (max-width: 1024px) {
  .staff-credentials__grid {
    grid-template-columns: 1fr;
    gap: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .staff-credentials {
    padding: 5.6rem 0;
  }

  .staff-credentials__inner {
    width: min(100% - 24px, 1240px);
  }

  .staff-credentials__head {
    margin-bottom: 2.4rem;
    text-align: left;
  }

  .staff-credentials__title {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }

  .staff-credentials__card {
    gap: 1.6rem;
    padding: 1.6rem;
    border-radius: 1.4rem;
  }

  .staff-credentials__image img {
    max-width: 240px;
    border-radius: 1rem;
  }

  .staff-credentials__card-title {
    font-size: 1.9rem;
    line-height: 1.45;
  }

  .staff-credentials__body p {
    font-size: 1.5rem;
    line-height: 1.8;
  }

  .staff-credentials__body p + p {
    margin-top: 1.2rem;
  }
}

/* =========================================================
   staff team
   ========================================================= */
.staff-team {
  padding: 7.2rem 0;
  background: #fff;
}

.staff-team__inner {
  width: min(100% - 32px, 1120px);
  margin-inline: auto;
}

.staff-team__head {
  margin-bottom: 3.2rem;
  text-align: center;
}

.staff-team__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--color-main-dark);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.staff-team__title {
  margin: 0;
  color: #111;
  font-size: clamp(3rem, 3vw, 4.4rem);
  font-weight: 700;
  line-height: 1.3;
}

.staff-team__body {
  max-width: 980px;
  margin: 0 auto;
}

.staff-team__message {
  padding: 3.2rem 3.6rem;
  border: 1px solid #dce8f0;
  border-radius: 2rem;
  background: linear-gradient(180deg, #fbfdff 0%, #f8fcfe 100%);
  box-shadow: 0 10px 24px rgba(22, 90, 167, 0.04);
  color: #374151;
  font-size: 1.8rem;
  line-height: 2;
}

.staff-team__message p {
  margin: 0;
}

.staff-team__message p + p {
  margin-top: 2rem;
}

.staff-team__link {
  color: #27b8ef;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(39, 184, 239, 0.35);
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}

.staff-team__link:hover {
  color: var(--color-main-dark);
  border-color: var(--color-main-dark);
}

/* =========================================================
   responsive
   ========================================================= */
@media screen and (max-width: 767px) {
  .staff-team {
    padding: 5.6rem 0;
  }

  .staff-team__inner {
    width: min(100% - 24px, 1120px);
  }

  .staff-team__head {
    margin-bottom: 2.4rem;
    text-align: left;
  }

  .staff-team__title {
    font-size: clamp(2.8rem, 8vw, 3.8rem);
  }

  .staff-team__message {
    padding: 2rem 1.6rem;
    border-radius: 1.4rem;
    font-size: 1.6rem;
    line-height: 1.9;
  }

  .staff-team__message p + p {
    margin-top: 1.6rem;
  }
}