html, body, div, span, h1, h2, h3, h4, h5, h6, p,
blockquote, pre, a, abbr, address, code, em, img, ins,
small, strong, sub, sup, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption,
tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, menu, nav, output, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
}

.experts-page-header {
  background-color: #f4f4f4;
  padding: 5.4rem 2rem;
  text-align: center;
}
@media (max-width: 480px) {
  .experts-page-header {
    padding: 3.2rem 1.6rem;
  }
}

.experts-page-header-title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  color: #111111;
}
@media (max-width: 480px) {
  .experts-page-header-title {
    font-size: 1.8rem;
  }
}

.experts-section {
  background-color: #FFFFFF;
  padding: 8rem 6rem 6rem;
  color: #111111;
}
@media (max-width: 960px) {
  .experts-section {
    padding: 6rem 1.6rem 5rem;
  }
}
@media (max-width: 480px) {
  .experts-section {
    padding: 4rem 1.6rem 3.2rem;
  }
}

.fellows-section {
  background-color: #f4f4f4;
  padding: 8rem 6rem 6rem;
  color: #111111;
}
@media (max-width: 960px) {
  .fellows-section {
    padding: 6rem 1.6rem 5rem;
  }
}
@media (max-width: 480px) {
  .fellows-section {
    padding: 4rem 1.6rem 3.2rem;
  }
}

.experts-inner {
  width: 100%;
  max-width: 122rem;
  margin: 0 auto;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media (max-width: 960px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }
}
@media (max-width: 560px) {
  .experts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
  }
}

.experts-card {
  position: relative;
  display: block;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 0.8rem;
  background-color: #f2f2f2;
}
.experts-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.experts-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.74));
}
.experts-card:hover img {
  transform: scale(1.04);
}

.experts-card-overlay {
  position: absolute;
  left: 1.8rem;
  right: 1.8rem;
  bottom: 1.8rem;
  z-index: 2;
  color: #FFFFFF;
}

.experts-card-role {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.35;
}

.experts-card-name {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (max-width: 560px) {
  .experts-card-name {
    font-size: 1.5rem;
  }
}

.experts-card-icon {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.experts-card-icon img {
  width: 1rem;
  height: 1rem;
  filter: invert(1);
}

.experts-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 6.4rem;
}

.experts-pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.experts-pagination-num {
  display: inline-grid;
  place-items: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 500;
  color: #111111;
  transition: background-color 0.2s ease;
}
.experts-pagination-num:hover {
  background-color: #f0f0f0;
}
.experts-pagination-num.is-current {
  background-color: #111111;
  color: #FFFFFF;
  font-weight: 700;
  cursor: default;
}

.experts-pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid #ddd;
  border-radius: 50%;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.experts-pagination-btn:hover {
  border-color: #111111;
}

.experts-pagination-arrow {
  width: 1.4rem;
  height: 1.4rem;
}
.experts-pagination-arrow--prev {
  transform: scaleX(-1);
}

.fellows-title {
  margin-bottom: 3.2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 700;
}

.fellows-empty {
  font-size: 1.5rem;
  font-weight: 500;
  color: #999;
  text-align: center;
}