@charset "UTF-8";

/* === Author card === （※glossary0002用に追加。　アニメーションなしver 20260513　UK） */
.tb02-author {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0 8px;
  padding: 20px 24px;
  background: #f8fafe;
  border: 1px solid #d0dff0;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}

.tb02-hero__title {
  margin: 0;
  padding: 0;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.35);
  letter-spacing: 0.02em;
}

.tb02-author__img {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #d0dff0;
}

.tb02-author__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.4);
  transform-origin: center 140%;
}

@media screen and (max-width: 575.98px) {
  .tb01-author {
    gap: 14px;
    padding: 16px 16px;
  }
  .tb02-author__img img {
    width: 90px;
    height: 90px;
    transform-origin: center 120%;
  }
  .tb01-author__name-jp {
    font-size: 15px;
  }
  .tb01-author__dept {
    font-size: 11px;
  }
}

.tb02-author__info {
  flex: 1;
  min-width: 0;
}
.tb02-author__name-jp {
  font-size: 16px;
  font-weight: bold;
  color: #178cc5;
  line-height: 1.4;
}
.tb02-author__name-en {
  font-size: 12px;
  color: #111314;
  margin-top: 2px;
  line-height: 1.3;
}
.tb02-author__dept {
  font-size: 12px;
  color: #031264;
  margin-top: 8px;
  line-height: 1.6;
}


