*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: #fff;
  color: #1a1a1a;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
}

p { color: #1a1a1a; }

/* ─── MAIN WRAPPER ─── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── HERO ─── */
.hero {
  padding: 56px 0 40px;
}
.hero-category {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  color: #C7000B;
  letter-spacing: 0.12em;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.hero-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(22px, 3.5vw, 30px);
  font-weight: 500;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.hero-lead {
  font-size: 14px;
  color: #555;
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ─── HERO PHOTO ─── */
.hero-photo {
  width: 55%;
  overflow: hidden;
  position: relative;
}
.hero-photo img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.hero-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.hero-photo-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: #bbb;
  fill: none;
  stroke-width: 1.2;
}
.hero-photo-placeholder span {
  font-size: 12px;
  color: #bbb;
  letter-spacing: 0.08em;
}

/* ─── INLINE PHOTO ─── */
.inline-photo {
  margin: 24px 0 32px;
}
.inline-photo-placeholder {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: #f0f0f0;
}
.inline-photo-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── PROFILE ─── */
.profile {
  margin: 12px 0 0;
  padding-left: 0;
  width: 100%;
}
.profile-name {
  font-size: 15px;
  font-weight: 700;
  color: #555;
  margin-bottom: 2px;
  text-align: left;
}
.profile-desc {
  font-size: 15px;
  color: #595757;
  line-height: 1.8;
  text-align: left;
}

/* ─── ARTICLE BODY ─── */
.article {
  padding: 48px 0 80px;
}

/* ─── SECTION ─── */
.section {
  margin-bottom: 64px;
}
.section-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.6;
  padding-bottom: 14px;
  border-bottom: 2px solid #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: 0.04em;
}

/* ─── Q & A ─── */
.qa-block {
  margin-bottom: 32px;
}
.question {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
}
.q-label {
  font-size: 13px;
  font-weight: 700;
  color: #aaa;
  flex-shrink: 0;
  line-height: 1.9;
}
.q-text {
  font-size: 14px;
  color: #666;
  line-height: 1.9;
  letter-spacing: 0.03em;
}
.answer {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fafafa;
  border-left: 3px solid #C7000B;
  padding: 18px 20px;
  border-radius: 0 6px 6px 0;
}
.a-label {
  font-size: 13px;
  font-weight: 700;
  color: #C7000B;
  flex-shrink: 0;
  line-height: 1.9;
}
.a-text {
  font-size: 15px;
  color: #1a1a1a;
  line-height: 2;
  letter-spacing: 0.03em;
}

/* ─── PULL QUOTE ─── */
.pull-quote {
  margin: 40px 0;
  padding: 32px 40px;
  background: #fff8f7;
  border: 1px solid #f0d5d3;
  border-radius: 6px;
  text-align: center;
}
.pull-quote p {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  color: #1a1a1a;
  letter-spacing: 0.04em;
}
.pull-quote em {
  font-style: normal;
  color: #C7000B;
  font-weight: 500;
}

/* ─── 2-CARD GRID ─── */
.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}
.card {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 28px 24px;
}
.card-num {
  font-size: 11px;
  font-weight: 700;
  color: #C7000B;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.card-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.6;
}
.card-body {
  font-size: 13px;
  color: #666;
  line-height: 1.85;
}

/* ─── TRAITS ─── */
.traits {
  margin: 32px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trait {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: #f8f8f8;
  border-radius: 6px;
}
.trait-num {
  font-size: 11px;
  font-weight: 700;
  color: #C7000B;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  width: 28px;
}
.trait-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 2px;
}
.trait-desc {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* ─── EDITOR NOTE ─── */
.editor-note {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 36px 40px;
  margin-top: 64px;
}
.editor-note-label {
  font-size: 11px;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.editor-note-text {
  font-size: 14px;
  color: #444;
  line-height: 2;
  letter-spacing: 0.03em;
}
.editor-note-text p + p {
  margin-top: 16px;
}
.cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.cta-button {
  display: inline-block;
  padding: 8px 22px;
  background: #C7000B;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
}
.cta-button:link,
.cta-button:visited,
.cta-button:hover,
.cta-button:active {
  color: #fff;
}
.cta-button:hover { background: #a80009; }

/* recruit-links.css の `body.recruit-page a:link/visited { color: inherit; }` を打ち消す */
body.recruit-page .cta-button:link,
body.recruit-page .cta-button:visited,
body.recruit-page .cta-button:hover,
body.recruit-page .cta-button:active {
  color: #fff;
}

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid #e8e8e8;
  padding: 24px 0;
  text-align: center;
}
.footer-text {
  font-size: 12px;
  color: #aaa;
}

/* ─── PCだけ文字サイズを約+2px ─── */
@media (min-width: 769px) {
  body {
    font-size: 17px;
  }

  .hero-category {
    font-size: 13px;
  }

  .hero-title {
    font-size: clamp(24px, 3.5vw, 32px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-photo-placeholder span {
    font-size: 14px;
  }

  .profile-name {
    font-size: 17px;
  }

  .profile-desc {
    font-size: 17px;
  }

  .section-heading {
    font-size: 20px;
  }

  .q-label {
    font-size: 17px;
  }

  .q-text {
    font-size: 18px;
  }

  .a-label {
    font-size: 15px;
  }

  .a-text {
    font-size: 17px;
  }

  .pull-quote p {
    font-size: 19px;
  }

  .card-num {
    font-size: 13px;
  }

  .card-title {
    font-size: 16px;
  }

  .card-body {
    font-size: 15px;
  }

  .trait-num {
    font-size: 13px;
  }

  .trait-title {
    font-size: 16px;
  }

  .trait-desc {
    font-size: 14px;
  }

  .editor-note-label {
    font-size: 13px;
  }

  .editor-note-text {
    font-size: 16px;
  }

  .cta-button {
    font-size: 14px;
    color: #fff;
  }

  .footer-text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .card-grid { grid-template-columns: 1fr; }
  .pull-quote { padding: 24px; }
  .editor-note { padding: 28px 24px; }
  .hero { padding-bottom: 30px; }
  .hero-profile-wrap { text-align: center; }
  .hero-photo { width: 80%; margin-left: auto; margin-right: auto; }
  .profile { width: 100%; margin-left: auto; margin-right: auto; }
  .profile-desc { font-size: 14px; }
  .cta-buttons { width: 100%; justify-content: center; }
  .cta-button { width: 100%; padding: 8px 13px; }
}

@media (min-width: 901px) {
  .hero-profile-wrap {
    display: flex;
    gap: 24px;
    align-items: center;
  }

  .hero-photo {
    margin: 0;
  }

  .profile {
    margin: 0;
    width: 100%;
  }
}
