@charset "UTF-8";
/* -------------------------------------- 見出し */
.authors-all-top {
  margin-top: 30px;
}
.authors-all-top h2 {
  text-align: center;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.31;
  margin-bottom: 1.5em;
}

/* -------------------------------------- 上部の余白 */
.authors-all-top-text {
  font-size: 16px;
  color: #111;
  line-height: 2em;
  margin-bottom: 1em;
}

/* -------------------------------------- 上部のリンク */
.authors-all-top-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 6em;
}

.authors-all-top-links-item {
  display: block;
  position: relative;
  width: 30%;
  transition: 0.3s;
}

.authors-all-top-links-item:hover {
  opacity: 0.8;
}

.authors-all-top-links-item img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.authors-all-top-links-item span {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  display: block;
  text-align: center;
  color: #fff;
  width: 100%;
  font-size: 0.9rem;
  font-weight: bold;
  line-height: 1.5;
}

/* -------------------------------------- ライター一覧 */
.authors-all-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* -------------------------------------- ライターボックス */
.authors-all-wrap .p-author {
  width: calc((100% - 20px) / 3);
}

.authors-all-wrap .p-author__box.p-authors__box {
  flex-direction: column;
  padding: 1em;
  border: none;
  gap: 0;
}

.p-author__name {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

/* -------------------------------------- ライター写真 */
.p-author__header {
  flex-shrink: 0;
}

.authors-all-wrap .p-author__thumbnail {
  display: block;
  margin: 0 auto 1em;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
}
.authors-all-wrap .p-author__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-author__thumbnail__inner {
  height: 100%;
  width: 100%;
  position: relative;
}

/* -------------------------------------- ライター説明 */
.p-author__info {
  margin-top: 1em;
}

.p-social-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 0 !important;
}
.p-social-nav__item {
  list-style: none !important;
}
.p-social-nav__item a::before {
  font-family: "design_plus";
  color: #333;
}
.p-social-nav__item--url a::before {
  content: "\f0ac";
}
.p-social-nav__item--facebook a::before {
  content: "\e902";
}
.p-social-nav__item--twitter a::before {
  content: "\e904";
}
.p-social-nav__item--contact a::before {
  content: "\f003";
}

.p-author__excerpt {
  width: 100%;
  min-height: 1.5em;
  text-align: center;
  line-height: 1.5;
}
.p-author__excerpt p {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
  display: flex;
  height: 40px;
  align-items: center;
  justify-content: center;
}

/* -------------------------------------- 記事を見るボタン */
.p-author__info {
  width: 100%;
}

.p-author__more {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #16478e;
  font-size: 14px;
  font-weight: 600;
  color: white !important;
  border-radius: 2px;
  padding: 0.5em 2em;
  margin-top: 20px;
  height: auto;
  width: 100%;
  position: relative;
  text-align: center;
  line-height: 1.5;
}
.p-author__more:hover {
  background: #1c3faf;
}

.p-author__more::after {
  display: none;
}

@media only screen and (max-width: 750px) {
  /* -------------------------------------- 上部のリンク */
  .authors-all-top-links {
    flex-direction: column;
  }

  .authors-all-top-links-item {
    width: 100%;
    padding: 0 1em;
  }

  .authors-all-top-links-item img {
    max-height: 180px;
  }

  .authors-all-top-links-item:hover {
    opacity: 1;
  }

  /* -------------------------------------- ライター一覧 */
  .authors-all-wrap {
    flex-direction: column;
    gap: 0;
  }

  /* -------------------------------------- ライターボックス */
  .authors-all-wrap .p-author {
    width: 100%;
  }

  .authors-all-wrap .p-author__box.p-authors__box {
    flex-direction: column;
    padding: 1em;
    border: none;
    gap: 0;
  }

  /* -------------------------------------- 記事を見るボタン */
  .p-author-br {
    display: none;
  }

  .p-author__more {
    padding: 0.8em 2em;
  }
}

/*# sourceMappingURL=author.css.map */
