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;
  }
}

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

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

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

.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;
}
.experts-pagination-btn:hover {
  border-color: #111111;
}

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