@charset "UTF-8";

/* ===============================
pg_research
=============================== */
.pg_intro_text {
  width: fit-content;
  max-width: 850px;
  margin: 0 auto 54px;
  padding: 0 20px;
  text-align: center;
  line-height: 1.75;
}
.pg_research_lists {
  display: grid;
  grid-template-columns: repeat(auto-fit, 190px);
  justify-content: center;
  width: min(850px, 100%);
  gap: 16px 30px;
  margin: 0 auto;
}
.pg_research_lists a {
  display: block;
  padding: 10px;
  text-align: center;
  border-radius: 10px;
}
.pg_research_lists img {
  display: block;
  margin: 0 auto;
}
.pg_research_list_text {
  display: block;
  margin: 30px auto 0;
  padding: 2px 14px 4px;
  width: fit-content;
  min-width: 110px;
  background-color: var(--color_blue_400);
  color: #fff;
  border-radius: 10px;
}

/* hoverデバイス ----------- */
@media (any-hover: hover) {
  .pg_research_lists a {
    transition: transform .3s ease;
  }
  .pg_research_lists a:hover {
    transform: translateY(-10px);
    opacity: 1;
  }
  .pg_research_lists a:hover img {
    opacity: 0.8;
  }
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_intro_text {
    margin-bottom: 73px;
    padding: 0 10px;
    text-align: left;
  }
  .pg_research_lists {
    grid-template-columns: repeat(auto-fit, 160px);
    width: min(850px, 100%);
    gap: 12px 0;
  }
  .pg_research_list_text {
    margin: 25px auto 0;
    padding: 2px 10px 3px;
    min-width: 90px;
    border-radius: 10px;
    font-size: calc(13 / 16 * 1rem);
  }
}

/* ===============================
english
=============================== */
.english .pg_research_lists {
  margin-bottom: 100px;
}
.english .pg_research_list_text {
  display: grid;
  place-content: center;
  font-size: calc(13 / 16 * 1rem);
  min-height: 4em;
}
.english .pg_research_lists {
  gap: 25px 30px;
}

/* SP調整 ------------------ */
@media screen and (max-width:768px) {
  .pg_research_lists {
    gap: 20px 0;
  }
}