/**
 * 執筆者・監修者一覧（archive-profile.php）用
 */
.page_header {
  padding: 10px 0 30px;
}

.page_header h1 {
  text-align: left;
  padding: 30px 0 15px;
}

.authors-archive {
  padding: 40px 0 80px;
}

.authors-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.author-card {
  margin: 0;
  padding: 0;
}

.author-card__content {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

@media (max-width: 767.98px) {
  .author-card__content {
    margin-bottom: 30px;
  }
}

.author-card__img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  overflow: hidden;
  background: #f3f3f3;
}

.author-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.author-card__body {
  flex: 1;
  min-width: 0;
}

.author-card__name {
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed var(--point_col);
  font-size: 2.4rem;
}

.author-card__link:hover .author-card__name {
  color: #ff4d03;
}

.author-card__imagelink:hover .author-card__img {
  opacity: 0.7;
}

.author-card__furigana {
  margin: 0 0 8px;
  color: #666;
}

.author-card__intro {
  font-size: 1.4rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 10px;
}

.author-card__intro p {
  margin-bottom: 1rem;
}

.author-card__link:not(:has(.author-card__img)) .author-card__body {
  padding-top: 0;
}

.authors-empty {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}

.author-card__listlink {
  margin: 0 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: #1a0dab;
}

.dli-chevron-round-right {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  position: relative;
  width: 10px;
  height: 10px;
  transform: translateX(-25%) rotate(45deg);
}

.dli-chevron-round-right::before,
.dli-chevron-round-right::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 0.1em;
}

.dli-chevron-round-right::before {
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
}

.dli-chevron-round-right::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 2px;
}

.author-card__listlink:hover {
  opacity: 0.7;
}


/* 詳細ページ */
.profile_detail_item {
  margin-bottom: 50px;
}

.profile_detail div p {
  font-size: 1.6rem;
}

.profile_detail_note {
  color: #666;
  margin: 1em 0;
  padding: 0.5em 0;
}
.profile_detail_note code {
  background: #f0f0f0;
  padding: 0.1em 0.4em;
  border-radius: 3px;
}

.profile_detail_contents h2 {
  text-align: left;
  color: #000000;
  font-size: 24px;
  padding: 8px 8px 8px 0;
  border-bottom: 4px solid #cdb193;
  border-top: none;
  border-left: none;
  border-right: none;
}

.profile_detail_contents .sub_h {
  margin-bottom: 20px;
  font-size: 2.4rem;
}

@media (max-width: 767.98px) {
  .profile_detail_contents .sub_h {
    font-size: 2rem;
  }
}

.profile_detail_item a {
  color: #1a0dab;
}

.profile_detail_item .publication {
  margin-bottom: 30px;
}

.profile_detail_item .publication:last-child {
  margin-bottom: 0;
}

.profile_detail_item .publication-title {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px dashed var(--point_col);
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 767.98px) {
  .profile_detail_item .publication-title {
    font-size: 1.6rem;
  }
}

.profile_detail_item li::before {
  content: '';
  margin-right: 5px;
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--point_col);
  border-radius: 50%;
}

.profile_note {
  padding: 20px;
  background-color: var(--tbl_bg);
  border-radius: 10px;
  margin-top: 20px;
}

.profile_note_title {
  color: var(--decoration_col);
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile_note_text {
  font-size: 1.4rem;
}


.archive_column_box {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 20px;
}

.archive_column_box_img {
  width: min(30%, 200px);
}

.archive_column_box_data {
  font-size: 1.4rem;
  color: #666;
}