@charset "UTF-8";
.u-pc-hidden {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-pc-hidden {
    display: inline-block;
  }
}

.u-sp-hidden {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .u-sp-hidden {
    display: none;
  }
}

.l-main#authors .p-authors {
  position: relative;
}
.l-main#authors .p-authors .p-authors-content {
  padding-top: min(15%, 300px);
  padding-bottom: min(15%, 300px);
}
@media screen and (max-width: 768px) {
  .l-main#authors .p-authors .p-authors-content {
    padding-top: 16rem;
    padding-bottom: 10rem;
  }
}

.l-main#authors .p-authors .p-authors-fv {
  position: relative;
  z-index: 1;
}

.l-main#authors .p-authors .c-fv-title .c-title1__big {
  font-size: 60px;
  font-weight: 700;
  line-height: 1.09375;
  letter-spacing: 0em;
}

.l-main#authors .p-authors .c-fv-title .c-title1__small {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 768px) {
  .l-main#authors .p-authors .c-fv-title .c-title1__big {
    /* hashimoto */
    /* font-size: 3.6rem; */
    font-size: 5.4rem;
    line-height: 1.6666666667;
  }
  .l-main#authors .p-authors .c-fv-title .c-title1__small {
    /* hashimoto */
    /* font-size: 1.4rem; */
    font-size: 2.1rem;
  }
}

.l-main#authors .p-authors .p-authors-fv::before,
.l-main#authors .p-authors .p-authors-fv::after {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  z-index: -1;
}

.l-main#authors .p-authors .p-authors-fv::before {
  background-image: url("../../img/new/fv-item01.png");
  width: 275px;
  height: 283px;
  top: 57px;
  left: 0;
}

.l-main#authors .p-authors .p-authors-fv::after {
  background-image: url("../../img/new/fv-item02.png");
  width: 31.8%;
  max-width: 318px;
  height: 34.4%;
  max-height: 344px;
  right: 0;
  bottom: 0;
}

@media screen and (max-width: 1000px) {
  .l-main#authors .p-authors .p-authors-fv::before {
    width: 22%;
    height: 23%;
    top: 5vw;
  }
}

@media screen and (max-width: 768px) {
  .l-main#authors .p-authors .p-authors-fv::before {
    top: 6%;
  }
  .l-main#authors .p-authors .p-authors-fv::after {
    bottom: 6%;
  }
}

.c-authors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.c-author-item {
  background-color: #fff;
  border: 3px solid #000;
  color: #000;
  border-radius: 30px;
  padding: 20px;
  transition: all 0.3s ease;
}

.c-author-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
}

.c-author-avatar img {
  border-radius: 50%;
  margin-right: 15px;
  width: 80px;
  height: 80px;
}

.c-author-name {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  letter-spacing: 0em;
  margin: 0;
  color: #000;
}

@media screen and (max-width: 768px) {
  .c-authors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-author-name {
    /* hashimoto */
    /* font-size: 1.2rem; */
    font-size: 1.8rem;
    line-height: 1.6666666667;
  }
}

@media screen and (max-width: 480px) {
  .c-authors-grid {
    grid-template-columns: 1fr;
  }
}