@charset "UTF-8";
/* CSS Document */
.article-top-section .article-top-visual > img, .article-main-body figure > img, .article-top-section .lead, .article-inner-link {
  margin-bottom: clamp(48px, calc(8vw + 16px), 80px);
}

.no-margin:is(.article-top-section .article-top-visual > img, .article-main-body figure) > img, :is(.article-top-section .article-top-visual > img, .article-main-body figure) > img.no-margin {
  margin: 0;
}

.entry-content figure > img + br {
  display: none;
}

.profile-card {
  display: flex;
  flex-direction: column;
  flex-direction: row;
  align-items: center;
  gap: clamp(16px, calc(2vw + 8px), 24px);
  margin-bottom: clamp(48px, calc(8vw + 16px), 80px);
  background-color: rgb(249.9, 249.9, 249.9);
  border: 1px solid rgb(229.5, 229.5, 229.5);
  border-radius: clamp(4px, 1vw, 8px);
  padding: clamp(16px, calc(2vw + 8px), 24px);
}

.profile-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  gap: 24px;
  width: 96px;
  height: 96px;
  border-radius: 192px;
  background-color: rgb(216.75, 216.75, 216.75);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.profile-icon i {
  display: none;
  font-size: 30px;
  color: rgb(127.5, 127.5, 127.5);
  font-style: unset;
}

.profile-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25em;
}

.profile-card .profile-name {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0.25em;
  margin-left: 0;
  padding: 0;
  text-indent: 0;
}

h3.profile-name::before {
  display: none;
}

.profile-title {
  font-size: 14px;
}

p.profile-title {
  margin: 0;
}

.profile-description {
  font-size: 14px;
  color: rgb(85, 85, 85);
}

.interview-section {
  --default--blue: #0071bc;
  --section--color: var(--default--blue);
  display: flex;
  flex-direction: column;
  margin-bottom: clamp(24px, calc(2vw + 16px), 32px);
}

h2.section-heading {
  font-size: clamp(24px, calc(2vw + 16px), 32px);
  font-weight: bold;
  border-bottom: 2px solid var(--section--color, #000);
  padding: 0 0 0.25em;
  margin-bottom: 1.5em;
  margin-left: 0;
  text-indent: 0;
}

h2.section-heading::before {
  display: none;
}

.interview-set {
  display: flex;
  flex-direction: column;
  row-gap: clamp(48px, calc(3vw + 36px), 60px);
  margin-bottom: clamp(70px, calc(5vw + 50px), 90px);
}

.chat-rows {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}

.chat-row {
  display: flex;
  -moz-column-gap: 16px;
  column-gap: 16px;
  --chat--color: #333333;
}

.chat-interviewee {
  flex-direction: row-reverse;
}

.chat-row.chat-interviewee {
  --chat--color: var(--section--color, #000);
}

.chat-avatar {
  width: 48px;
  height: 48px;
  border-radius: 192px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--chat--color);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  flex-shrink: 0;
}

.chat-avatar-empty {
  width: 48px;
  flex-shrink: 0;
}

/* 吹き出し共通 */
.chat-bubble {
  position: relative;
  padding: clamp(16px, calc(2vw + 8px), 24px);
  border-radius: clamp(12px, calc(1vw + 8px), 16px);
  flex: 1;
  background-color: color-mix(in srgb, var(--chat--color) 5%, #fff);
}

.chat-bubble p {
  margin: 0;
}

.bubble-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--chat--color) 60%, #fff);
}

.chat-interviewee .bubble-label {
  color: var(--chat--color);
}

.bubble-right .bubble-label {
  text-align: right;
}

.highlight {
  background-color: #fef9c3;
  padding: 0 0.25em;
}

/* 吹き出しの三角 */
.bubble-left::after {
  content: "";
  position: absolute;
  top: 20px;
  left: -10px;
  border-width: 10px 10px 10px 0;
  border-style: solid;
  border-color: transparent color-mix(in srgb, var(--chat--color) 5%, #fff) transparent transparent;
}

.bubble-right::after {
  content: "";
  position: absolute;
  top: 20px;
  right: -10px;
  border-width: 10px 0 10px 10px;
  border-style: solid;
  border-color: transparent transparent transparent color-mix(in srgb, var(--chat--color) 5%, #fff);
}

/* 引用 */
.article-quote {
  position: relative;
  padding: 2rem;
  margin: 2rem 0;
  background-color: #fff;
  border-left: 8px solid #22c55e;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border-radius: 0.25rem;
}

.quote-icon {
  font-size: 2.25rem;
  color: #f3f4f6;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 700;
  font-style: italic;
  position: relative;
  z-index: 10;
}

.quote-footer {
  margin-top: 1rem;
  text-align: right;
  color: #6b7280;
  font-size: 0.875rem;
}

@media only screen and (min-width: 768px) {
  .profile-card {
    flex-direction: row;
  }
}