@charset "UTF-8";

/* =========================================================
   Crosstalk detail
   /recruit/crosstalk/01.html - 02.html

   lower.css から以下を流用：
   - .lower-page
   - .lower-page__hero*
   - .lower-page__breadcrumb*
========================================================= */

.crosstalk-page {
  overflow-x: clip;
}

/* Hero
--------------------------------------------------------- */

/* Hero layout / title / media sizing are inherited from lower.css. */
.crosstalk-page .lower-page__hero-title {
  font-size: 64px;
}

.crosstalk-page .lower-page__hero-copy {
  position: relative;
  z-index: 1;
  padding-right: 0;
}

.crosstalk-page__hero-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 24px;
  padding: 9px 22px;
  border-radius: 999px;
  background: #fceded;
  color: var(--color-accent);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.crosstalk-page__hero-lead {
  margin-top: 32px;
  color: var(--color-text-main);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

.crosstalk-page__toc-link {
  display: none;
}

/* Members
--------------------------------------------------------- */

.crosstalk-members {
  padding: 60px 0;
  background: var(--color-back-pink);
}

.crosstalk-members__inner {
  width: min(880px, calc(100% - (var(--page-gutter-pc) * 2)));
  margin: 0 auto;
}

.crosstalk-members__title {
  margin: 0 0 32px;
  color: var(--color-text-main);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.08em;
}

.crosstalk-members__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.crosstalk-member {
  text-align: center;
}

.crosstalk-member__photo {
  width: 168px;
  height: 168px;
  margin: 0 auto 8px;
  overflow: hidden;
  border-radius: 50%;
}

.crosstalk-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crosstalk-member__name {
  color: var(--color-text-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

.crosstalk-member__name small {
  margin-left: 4px;
  font-size: 14px;
}

.crosstalk-member__meta {
  margin-top: 8px;
  color: var(--color-text-main);
  font-size: 13px;
  line-height: 1.8;
}

/* Q&A
--------------------------------------------------------- */

.crosstalk-content {
  background: #fbf8f4;
}

.crosstalk-content__inner {
  --crosstalk-content-shell-width: min(
    956px,
    calc(100vw - (var(--page-gutter-pc) * 2))
  );
  display: grid;
  grid-template-columns: minmax(0, 742px) 160px;
  gap: 0 54px;
  width: var(--crosstalk-content-shell-width);
  margin: 0 auto;
  padding: 80px 0 0;
}

.crosstalk-content__main {
  min-width: 0;
}

.crosstalk-question {
  padding: 0 0 80px;
  scroll-margin-top: 110px;
}

.crosstalk-question__heading {
  margin-bottom: 28px;
  color: var(--color-accent);
}

.crosstalk-question__number {
  display: block;
  margin-bottom: 24px;
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: 48px;

  line-height: 1;
  letter-spacing: -0.02em;
}

.crosstalk-question__title {
  margin: 0;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.crosstalk-question__answers {
  display: grid;
  gap: 16px;
}

.crosstalk-answer {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.crosstalk-answer__speaker {
  text-align: center;
}

.crosstalk-answer__speaker img {
  display: block;
  width: 100px;
  height: 100px;
  margin: 0 auto 8px;
  border-radius: 50%;
  object-fit: cover;
}

.crosstalk-answer__speaker span {
  display: block;
  color: var(--color-text-main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.crosstalk-answer__text {
  margin: 0;
  padding: 32px;
  border-radius: 32px;
  background: var(--color-gray0);
  color: var(--color-text-main);

  line-height: 1.9;
  letter-spacing: 0.03em;
}

/* Scene images span the viewport, while Q&A text remains in the content shell. */
.crosstalk-scene {
  width: 100vw;
  margin: 0 0 80px;
}

.crosstalk-scene img {
  display: block;
  width: 100%;
  aspect-ratio: 1440 / 720;
  object-fit: cover;
}

/* Desktop TOC
--------------------------------------------------------- */

.crosstalk-toc {
  position: sticky;
  z-index: 20;
  top: 110px;
  align-self: start;
  padding-top: 4px;
}

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

.crosstalk-toc__list li {
  border-top: 1px solid var(--color-accent);
}

.crosstalk-toc__list li:last-child {
  border-bottom: 1px solid var(--color-accent);
}

.crosstalk-toc__list a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 24px;
  padding: 10px 0;
  color: var(--color-text-main);
  text-decoration: none;
}

.crosstalk-toc__list a:hover {
  opacity: 0.7;
}

.crosstalk-toc__list span {
  color: var(--color-accent);
  font-family: "Nunito", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.crosstalk-toc__list strong {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
}

.crosstalk-toc-overlay {
  display: none;
}

/* Last message
--------------------------------------------------------- */

.crosstalk-last {
  padding: 60px;
  background: var(--color-gray0);
}

.crosstalk-last__inner {
  width: min(1000px, calc(100% - (var(--page-gutter-pc) * 2)));
  margin: 0 auto;
}

.crosstalk-last__title {
  margin: 0 0 32px;
  color: var(--color-text-main);
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.12em;
}

.crosstalk-last__main-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
}

.crosstalk-last__main-photo img {
  display: block;
  width: 100%;
  aspect-ratio: 880 / 336;
  object-fit: cover;
}

.crosstalk-last__messages {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  width: 816px;
  margin: 28px auto 0;
}

.crosstalk-last-card {
  text-align: center;
}

.crosstalk-last-card p {
  min-height: 72px;
  margin: 0 0 8px;
  padding: 19px;
  border: 1px solid var(--color-accent);
  border-radius: 20px;
  color: var(--color-text-main);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.6;
}

.crosstalk-last-card img {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  object-fit: cover;
}

/* Related
--------------------------------------------------------- */

/* Base card/title/image styles are inherited from .lower-related* in lower.css. */
.crosstalk-page .lower-related__item {
  width: 323px;
  padding: 24px;
}

.crosstalk-page .lower-related__heading h3 {
  font-size: 20px;
}

.crosstalk-page .lower-related__item p {
  margin-top: 16px;
  font-size: 13px;
}

.crosstalk-page .lower-related__image--talk {
  width: 274px;
}

.crosstalk-page .lower-related__list {
  grid-template-columns: minmax(0, 280px);
  justify-content: center;
}

/* Tablet
--------------------------------------------------------- */

@media (max-width: 1399px) {
  .crosstalk-members__inner,
  .crosstalk-last__inner {
    width: min(880px, calc(100% - (var(--page-gutter-tablet) * 2)));
  }

  .crosstalk-content__inner {
    --crosstalk-content-shell-width: min(
      1094px,
      calc(100vw - (var(--page-gutter-tablet) * 2))
    );
    width: var(--crosstalk-content-shell-width);
  }
}

@media (max-width: 1199px) and (min-width: 768px) {
  .crosstalk-content__inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .crosstalk-toc {
    display: none;
  }

  .crosstalk-members__list {
    gap: 20px;
  }

  .crosstalk-answer__text {
    padding: 20px 24px;
  }
}

/* Crosstalk 01: switch the four-member area to the SP layout at 860px. */
@media (min-width: 768px) and (max-width: 860px) {
  body.crosstalk-01 .crosstalk-members {
    padding: 40px 19px;
  }

  body.crosstalk-01 .crosstalk-members__inner {
    width: min(396px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  body.crosstalk-01 .crosstalk-members__title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  body.crosstalk-01 .crosstalk-members__list {
    grid-template-columns: repeat(2, 190px);
    justify-content: center;
    gap: 24px 16px;
  }
}

/* SP
--------------------------------------------------------- */

@media (max-width: 767px) {
  .crosstalk-page {
    --crosstalk-toc-drawer-width: min(190px, calc(100vw - 50px));
  }

  /* Hero: lower.css のSPレイアウトを流用し、座談会固有差分のみ指定 */
  .crosstalk-page .lower-page__hero-title {
    font-size: 40px;
    line-height: 1.45;
  }

  .crosstalk-page__hero-label {
    margin-bottom: 20px;
    padding: 7px 14px;
    border-radius: 8px;
    font-size: 14px;
  }

  .crosstalk-page__hero-lead {
    margin-top: 28px;
    font-size: 14px;
    line-height: 2;
  }

  .crosstalk-page .lower-page__hero-media picture {
    display: block;
    width: 100%;
  }

  .crosstalk-page .lower-page__hero-media img {
    display: block;
    width: 100%;
    aspect-ratio: 390 / 280;
    object-fit: cover;
  }


  .crosstalk-page__toc-link {
    position: fixed;
    z-index: 10003;
    right: 0;
    bottom: 124px;
    display: flex;
    width: 50px;
    height: 128px;
    padding: 16px 0 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 0;
    border-radius: 0;
    background: var(--color-accent);
    color: #fff;
    font-family: inherit;
    cursor: pointer;
    transition: transform 0.32s ease;
  }

  .crosstalk-page__toc-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .crosstalk-page__toc-arrow {
    display: block;
    font-size: 20px;
    line-height: 1;
  }

  body.crosstalk-menu-open .crosstalk-page__toc-link {
    transform: translateX(calc(-1 * var(--crosstalk-toc-drawer-width)));
  }

  /* Members */
  .crosstalk-members {
    padding: 40px 19px;
  }

  .crosstalk-members__inner {
    width: 100%;
  }

  .crosstalk-members__title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .crosstalk-members__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 16px;
  }

  .crosstalk-member__photo {
    width: 168px;
    height: 168px;
    margin-bottom: 8px;
  }

  .crosstalk-member__name {
    font-size: 20px;
  }

  .crosstalk-member__name small {
    margin-left: 4px;
    font-size: 14px;
  }

  .crosstalk-member__meta {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
  }

  /* Q&A */
  .crosstalk-content__inner {
    --crosstalk-content-shell-width: 100vw;
    display: block;
    width: 100%;
    padding-top: 56px;
  }

  .crosstalk-content__main {
    width: 100%;
  }

  .crosstalk-question {
    padding: 0 var(--page-gutter-sp) 80px;
    scroll-margin-top: 84px;
  }

  .crosstalk-question__heading {
    margin-bottom: 28px;
  }

  .crosstalk-question__number {
    margin-bottom: 22px;
    font-size: 48px;
  }

  .crosstalk-question__title {
    font-size: 24px;
    line-height: 1.6;
  }

  .crosstalk-question__title .pc-only {
    display: none;
  }

  .crosstalk-question__answers {
    gap: 20px;
  }

  /* SPでは話者情報→本文の縦1列 */
  .crosstalk-answer {
    display: block;
  }

  .crosstalk-answer__speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
  }

  .crosstalk-answer__speaker img {
    width: 80px;
    height: 80px;
    margin: 0;
  }

  .crosstalk-answer__speaker span {
    font-size: 14px;
  }

  .crosstalk-answer__text {
    min-height: 0;
    margin-top: 8px;
    padding: 24px;
    border-radius: 32px;
    font-size: 14px;
    line-height: 2;
  }

  .crosstalk-scene {
    width: 100vw;
    margin: 0 0 80px;
  }

  .crosstalk-scene picture {
    display: block;
    width: 100%;
  }

  .crosstalk-scene img {
    display: block;
    width: 100%;
    aspect-ratio: 390 / 312;
    object-fit: cover;
  }

  /* TOC drawer */
  .crosstalk-toc-overlay {
    position: fixed;
    z-index: 10001;
    inset: 0;
    display: block;
    visibility: hidden;
    border: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 0.32s ease,
      visibility 0.32s ease;
  }

  .crosstalk-toc {
    position: fixed;
    z-index: 10002;
    top: auto;
    right: 0;
    bottom: 124px;
    display: block;
    width: var(--crosstalk-toc-drawer-width);
    max-height: calc(100dvh - 148px);
    padding: 10px 12px 12px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.32s ease;
    overscroll-behavior: contain;
  }

  .crosstalk-toc__list a {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 10px;
    padding: 13px 0;
  }

  .crosstalk-toc__list span {
    font-size: 16px;
  }

  .crosstalk-toc__list strong {
    font-size: 11px;
    line-height: 1.45;
  }

  body.crosstalk-menu-open {
    overflow: hidden;
  }

  body.crosstalk-menu-open .crosstalk-toc {
    transform: translateX(0);
  }

  body.crosstalk-menu-open .crosstalk-toc-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Global SP menu must always be above/alone. */
  body.is-menu-open .crosstalk-page__toc-link,
  body.is-menu-open .crosstalk-toc,
  body.is-menu-open .crosstalk-toc-overlay {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }

  /* Last */
  .crosstalk-last {
    padding: 52px var(--page-gutter-sp) 64px;
  }

  .crosstalk-last__inner {
    width: 100%;
  }

  .crosstalk-last__title {
    margin-bottom: 32px;
    font-size: 24px;
  }

  .crosstalk-last__main-photo {
    width: 100vw;
    margin-left: calc(-1 * var(--page-gutter-sp));
    overflow: hidden;
    border-radius: 0;
  }

  .crosstalk-last__main-photo picture {
    display: block;
    width: 100%;
  }

  .crosstalk-last__main-photo img {
    display: block;
    width: 100%;
    aspect-ratio: 390 / 312;
    object-fit: cover;
  }

  .crosstalk-last__messages {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
    margin-top: 48px;
  }

  .crosstalk-last-card p {
    min-height: 0;
    margin-bottom: 8px;
    padding: 18px 12px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.6;
  }

  .crosstalk-last-card img {
    width: 156px;
    height: 156px;
  }

  /* lower.css の関連カードを利用。PC用固定幅だけSPで解除する */
  .crosstalk-page .lower-related__item,
  .crosstalk-page .lower-related__image--talk {
    width: 100%;
  }

  .crosstalk-page .lower-related__list {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crosstalk-page__toc-link,
  .crosstalk-toc,
  .crosstalk-toc-overlay {
    transition: none !important;
  }
}

/* =========================================================
   Hero alignment - match the 1440px design ratio (440 / 1000)
========================================================= */
@media (min-width: 768px) {
  .crosstalk-page .lower-page__hero-inner {
    grid-template-columns: 30.5556% minmax(0, 69.4444%);
  }

  .crosstalk-page .lower-page__hero-copy {
    padding-left: clamp(40px, 6.9444vw, 100px);
    padding-right: 24px;
  }
}


/* Scroll reveal: fade in at the element's original position. */
.crosstalk-page .is-reveal-target {
  opacity: 0;
  transition: opacity 0.7s ease;
  will-change: opacity;
}

.crosstalk-page .is-reveal-target.is-visible {
  opacity: 1;
}

/* Answers are revealed as one block rather than card-by-card. */
.crosstalk-question__answers.is-reveal-target .crosstalk-answer {
  opacity: 1;
  transform: none;
}

@media (min-width: 1400px) {
  /*
   * Keep the text / profile / TOC aligned to a centered 1280px shell.
   * Full-bleed scene photography can still extend to the viewport edges.
   */
  .crosstalk-members__inner,
  .crosstalk-last__inner {
    width: min(1280px, calc(100% - 96px));
    margin-right: auto;
    margin-left: auto;
  }

  .crosstalk-content__inner {
    --crosstalk-content-shell-width: min(1280px, calc(100vw - 96px));
    width: calc(100vw - 30px);
    max-width: none;
    margin-right: 30px;
    margin-left: 0;
    grid-template-columns: minmax(0, 1fr) 191px;
    column-gap: 30px;
  }

  .crosstalk-content__main {
    width: 100%;
    max-width: none;
  }

  .crosstalk-question {
    width: min(1000px, calc(100vw - 482px));
    margin-right: 0;
    margin-left: max(
      30px,
      calc((100vw - min(1000px, calc(100vw - 482px))) / 2)
    );
    position: relative;
    left: auto;
  }

  .crosstalk-toc {
    width: 191px;
    justify-self: end;
  }

  .crosstalk-scene {
    width: 100vw;
    height: clamp(520px, 50vw, 720px);
    margin-right: 0;
    margin-left: 0;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100vw auto;
    background-attachment: fixed;
  }

  .crosstalk-scene picture {
    visibility: hidden;
  }

  /* Keep the following Q&A in normal flow; no overlap with the scene image. */
  .crosstalk-scene + .crosstalk-question {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
    background: #fbf8f4;
  }
}

@media (min-width: 1200px) and (max-width: 1399px) {
  /* Liquid layout while retaining breathing room between main text and TOC. */
  .crosstalk-members__inner,
  .crosstalk-last__inner {
    width: calc(100% - (var(--page-gutter-tablet) * 2));
  }

  .crosstalk-content__inner {
    --crosstalk-content-shell-width: calc(100vw - 60px);
    width: var(--crosstalk-content-shell-width);
    max-width: none;
    grid-template-columns: minmax(0, 1fr) 191px;
    column-gap: 30px;
    margin-right: 30px;
    margin-left: 30px;
  }

  body:not(.crosstalk-compact) .crosstalk-toc {
    width: 191px;
  }

  .crosstalk-scene {
    width: 100vw;
    height: clamp(460px, 50vw, 660px);
    margin-right: 0;
    margin-left: -30px;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100vw auto;
    background-attachment: fixed;
  }

  .crosstalk-scene picture {
    visibility: hidden;
  }

  .crosstalk-scene + .crosstalk-question {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
    background: #fbf8f4;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .crosstalk-content__inner {
    --crosstalk-content-shell-width: calc(
      100vw - (var(--page-gutter-tablet) * 2)
    );
    width: var(--crosstalk-content-shell-width);
    grid-template-columns: 1fr;
  }

  .crosstalk-scene {
    width: 100vw;
    height: clamp(420px, 55vw, 560px);
    margin-right: calc((100vw - var(--crosstalk-content-shell-width)) / -2);
    margin-left: calc((100vw - var(--crosstalk-content-shell-width)) / -2);
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100vw auto;
    background-attachment: fixed;
  }

  .crosstalk-scene picture {
    visibility: hidden;
  }

  .crosstalk-scene + .crosstalk-question {
    position: relative;
    z-index: 2;
    margin-top: 0;
    padding-top: 0;
    background: #fbf8f4;
  }
}

@media (max-width: 767px) {
  /* SP: normal single-column flow; parallax is intentionally disabled. */
  .crosstalk-scene {
    height: auto;
    background: none !important;
    background-attachment: scroll;
  }

  .crosstalk-scene picture {
    visibility: visible;
  }

  .crosstalk-scene + .crosstalk-question {
    margin-top: 0;
    padding-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .crosstalk-page .is-reveal-target,
  .crosstalk-page .is-reveal-target.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .crosstalk-scene {
    background-attachment: scroll !important;
  }
}


@media (min-width: 768px) {
  .crosstalk-page .lower-page__hero,
  .crosstalk-page .lower-page__hero-inner {
    width: 100%;
    max-width: none;
  }

  .crosstalk-page .lower-page__hero-inner {
    grid-template-columns: 30.5556% minmax(0, 69.4444%);
    min-height: 470px;
    overflow: visible;
  }

  .crosstalk-page .lower-page__hero-copy {
    position: relative;
    z-index: 3;
    overflow: visible;
    min-width: 0;
    padding: 0 0 0 clamp(32px, 6.9444vw, 100px);
  }

  .crosstalk-page__hero-copy-inner {
    position: relative;
    z-index: 3;
    width: clamp(310px, 38.2vw, 550px);
    max-width: none;
  }

  .crosstalk-page .lower-page__hero-title {
    width: max-content;
    max-width: none;
    font-size: clamp(40px, 4.4444vw, 64px);
    line-height: 1.45;
    white-space: nowrap;
  }

  .crosstalk-page__hero-lead {
    width: max-content;
    max-width: none;
    font-size: clamp(13px, 1.1111vw, 16px);
    white-space: nowrap;
  }

  .crosstalk-page .lower-page__hero-media {
    position: relative;
    z-index: 1;
    min-height: 470px;
    height: 470px;
    overflow: hidden;
  }

  .crosstalk-page .lower-page__hero-media picture,
  .crosstalk-page .lower-page__hero-media img {
    display: block;
    width: 100%;
    height: 100%;
  }

  .crosstalk-page .lower-page__hero-media img {
    object-fit: cover;
    object-position: center center;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .crosstalk-page .lower-page__hero-title {
    font-size: clamp(36px, 5.2vw, 48px);
  }

  .crosstalk-page__hero-copy-inner {
    width: clamp(290px, 40vw, 390px);
  }

  .crosstalk-page__hero-lead {
    font-size: 13px;
  }
}


@media (min-width: 1440px) {
  .crosstalk-page .lower-page__hero-inner {
    min-height: 0;
    align-items: stretch;
  }

  .crosstalk-page .lower-page__hero-media {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1000 / 470;
  }

  .crosstalk-page .lower-page__hero-media picture,
  .crosstalk-page .lower-page__hero-media img {
    width: 100%;
    height: 100%;
  }

  .crosstalk-page .lower-page__hero-media img {
    object-fit: cover;
  }
}

/* =========================================================
   Hero entrance motion
   label -> title slide/fade -> lead fade
========================================================= */
@keyframes crosstalkHeroFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes crosstalkHeroSlideIn {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.crosstalk-page__hero-label {
  animation: crosstalkHeroFadeIn 0.45s ease-out 0.08s both;
}

.crosstalk-page .lower-page__hero-title {
  animation: crosstalkHeroSlideIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.24s
    both;
}

.crosstalk-page__hero-lead {
  animation: crosstalkHeroFadeIn 0.55s ease-out 0.86s both;
}

@media (prefers-reduced-motion: reduce) {
  .crosstalk-page__hero-label,
  .crosstalk-page .lower-page__hero-title,
  .crosstalk-page__hero-lead {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}


.crosstalk-page .lower-page__hero-title {
  font-weight: 900;
}

@media (min-width: 768px) {
  .crosstalk-members__list {
    grid-template-columns: repeat(4, 190px);
    justify-content: center;
  }

  .crosstalk-member {
    width: 190px;
  }

  .crosstalk-page--mamapapa .crosstalk-members__list {
    grid-template-columns: repeat(3, 190px);
  }

  /* Match the liquid interview-image behavior: keep the source ratio while
     the full-bleed scene scales with the viewport. */
  .crosstalk-scene {
    height: auto;
    aspect-ratio: 1440 / 720;
  }
}

.crosstalk-answer__text {
  font-size: 15px;
}

.crosstalk-question__number {
  font-weight: 900;
}

@media (max-width: 767px) {
  /* Keep crosstalk/01 member layout unchanged. */
  .crosstalk-page--mamapapa .crosstalk-members__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .crosstalk-page--mamapapa .crosstalk-member {
    width: 100%;
  }

  .crosstalk-page--mamapapa .crosstalk-member:first-child {
    grid-column: 1 / -1;
    width: calc((100% - 16px) / 2);
  }

  .crosstalk-answer__text {
    font-size: 15px;
  }
}


@media (min-width: 768px) {
  .crosstalk-scene {
    position: relative;
    width: 100vw;
    /* Keep the existing 1440:720 responsive scene sizing. */
    height: 50vw !important;
    aspect-ratio: auto;
    overflow: hidden;

    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100vw auto;
    background-attachment: scroll;
  }

  .crosstalk-scene picture {
    display: block;
    visibility: hidden !important;
    width: 100%;
    height: 100%;
    pointer-events: none;
  }

  .crosstalk-scene img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  .crosstalk-question {
    position: relative;
    z-index: 2;
    background: #fbf8f4;
  }
}

@media (max-width: 767px) {
  .crosstalk-scene {
    height: auto !important;
    aspect-ratio: auto;
    background: none !important;
    background-attachment: scroll !important;
  }

  .crosstalk-scene picture {
    visibility: visible !important;
  }
}

/* Last scene: connect directly to the related section. */
.crosstalk-content__main > .crosstalk-scene:last-of-type {
  margin-bottom: 0;
}


@media (min-width: 768px) {
  body.crosstalk-compact {
    --crosstalk-toc-drawer-width: min(190px, calc(100vw - 50px));
  }

  body.crosstalk-compact > .crosstalk-page__toc-link {
    position: fixed;
    z-index: 10003;
    right: 0;
    bottom: 124px;
    display: flex;
    width: 50px;
    height: 128px;
    padding: 16px 0 14px;
    border: 0;
    border-radius: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--color-accent);
    color: #fff;
    transform: translateX(0);
    transition: transform 0.32s ease;
  }

  body.crosstalk-compact
    > .crosstalk-page__toc-link
    > .crosstalk-page__toc-label {
    display: flex;
    width: 50px;
    margin: 0;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    text-align: center;
  }

  body.crosstalk-compact
    > .crosstalk-page__toc-link
    .crosstalk-page__toc-label
    > span {
    display: block;
    width: 1em;
    height: 1em;
    line-height: 1;
  }

  body.crosstalk-compact
    > .crosstalk-page__toc-link
    .crosstalk-page__toc-arrow {
    display: block;
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 18px;
    text-align: center;
  }

  body.crosstalk-compact > .crosstalk-toc-overlay {
    position: fixed;
    z-index: 10001;
    inset: 0;
    display: block;
    visibility: hidden;
    opacity: 0;
    background: rgb(0 0 0 / 55%);
    pointer-events: none;
    transition:
      opacity 0.32s ease,
      visibility 0.32s ease;
  }

  body.crosstalk-compact > .crosstalk-toc {
    position: fixed;
    z-index: 10002;
    top: auto;
    right: 0;
    bottom: 124px;
    display: block;
    width: var(--crosstalk-toc-drawer-width);
    min-width: 0;
    max-width: none;
    max-height: calc(100dvh - 148px);
    margin: 0;
    padding: 10px 12px 12px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.32s ease;
  }

  body.crosstalk-compact > .crosstalk-toc .crosstalk-toc__list,
  body.crosstalk-compact > .crosstalk-toc .crosstalk-toc__list a {
    width: 100%;
  }

  body.crosstalk-compact > .crosstalk-toc .crosstalk-toc__list a {
    grid-template-columns: 26px minmax(0, 1fr);
    gap: 12px;
    padding: 13px 0;
  }

  body.crosstalk-compact > .crosstalk-toc .crosstalk-toc__list span {
    font-size: 18px;
  }

  body.crosstalk-compact > .crosstalk-toc .crosstalk-toc__list strong {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 0.06em;
  }

  body.crosstalk-compact.crosstalk-menu-open > .crosstalk-page__toc-link {
    transform: translateX(calc(-1 * var(--crosstalk-toc-drawer-width)));
  }

  body.crosstalk-compact.crosstalk-menu-open > .crosstalk-toc {
    transform: translateX(0);
  }

  body.crosstalk-compact.crosstalk-menu-open > .crosstalk-toc-overlay {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  /* Switch only visibility/placement. Keep the existing CTA design itself. */
  body.crosstalk-compact .pc-fixed-internship {
    display: none !important;
  }

  body.crosstalk-compact .fixed-entry-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 980;
    display: block !important;
    width: 100%;
    padding: 8px 0 calc(14px + env(safe-area-inset-bottom));
  }

  body:not(.crosstalk-compact) > .crosstalk-page__toc-link,
  body:not(.crosstalk-compact) > .crosstalk-toc-overlay,
  body:not(.crosstalk-compact) .fixed-entry-cta {
    display: none !important;
  }

  body:not(.crosstalk-compact) .pc-fixed-internship {
    display: flex !important;
  }
}

/* =========================================================
   Compact desktop CTA: reuse the existing SP/tablet CTA styling.
   header.css defines these visual rules only inside <=1399px, so when a
   >=1400px desktop becomes compact by height we mirror those same existing
   child styles here. No crosstalk-specific background is added to the CTA.
========================================================= */
@media (min-width: 1200px) {
  body.crosstalk-compact .fixed-entry-cta__inner {
    width: min(calc(100% - 48px), 390px);
    margin: 0 auto;
  }

  body.crosstalk-compact .fixed-entry-cta__lead {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 0 0 7px;
    color: var(--color-accent);
    font-family: "Zen Maru Gothic", sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }

  body.crosstalk-compact .fixed-entry-cta__lead span {
    display: block;
    flex: 0 0 2px;
    width: 2px;
    height: 18px;
    overflow: hidden;
    border-radius: 999px;
    background-color: currentColor;
    color: var(--color-accent);
    font-size: 0;
  }

  body.crosstalk-compact .fixed-entry-cta__lead span:first-child {
    transform: rotate(-25deg);
  }

  body.crosstalk-compact .fixed-entry-cta__lead span:last-child {
    transform: rotate(25deg);
  }

  body.crosstalk-compact .fixed-entry-cta__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 58px;
    padding: 12px 20px;
    border: 0;
    border-radius: 4px;
    background-color: var(--color-accent);
    color: var(--color-gray0);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.04em;
    cursor: pointer;
  }

  body.crosstalk-compact.is-menu-open .fixed-entry-cta {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
