:root {
  --text-sub-color: #094ab1;
  /* ====== SP(375-677) =======*/
  --size-58: clamp(3.625rem, 2.064rem + 6.66vw, 7.394rem); /* 58px → 73.9px */
  --size-52: clamp(3.25rem, 1.552rem + 6.93vw, 6.633rem); /* 52px → 106.3px */
  --size-48: clamp(3rem, 1.432rem + 6.4vw, 6.133rem); /* 48px → 98.1px */
  --size-40: clamp(2.5rem, 1.194rem + 5.33vw, 5.111rem); /* 40px → 81.8px */
  --size-38: clamp(2.375rem, 1.133rem + 5.06vw, 4.86rem); /* 38px → 77.7px */
  --size-32: clamp(2rem, 0.955rem + 4.27vw, 4.089rem); /* 32px → 65.4px */
  --size-24: clamp(1.5rem, 0.716rem + 3.2vw, 3.067rem); /* 24px → 49.1px */
  --size-20: clamp(1.25rem, 0.597rem + 2.67vw, 2.556rem); /* 20px → 40.9px */
  --size-16: clamp(1rem, 0.477rem + 2.13vw, 2.045rem); /* 16px → 32.7px */
  --size-14: clamp(0.875rem, 0.417rem + 1.87vw, 1.789rem); /* 14px → 28.6px */
  --size-12: clamp(0.75rem, 0.358rem + 1.6vw, 1.534rem); /* 12px → 24.5px */
  --size-10: clamp(0.625rem, 0.298rem + 1.33vw, 1.278rem); /* 10px → 20.4px */
  --size-8: clamp(0.5rem, 0.239rem + 1.07vw, 1.023rem); /* 8px → 16.4px */
  --size-4: clamp(0.25rem, 0.119rem + 0.53vw, 0.511rem); /* 4px → 8.2px */
  --size-2: clamp(0.125rem, 0.06rem + 0.27vw, 0.256rem); /* 2px → 4.1px */
  /* ====== PC(678-1280) =======*/
  --size-64-pc: clamp(3.392rem, 0.812rem + 4.28vw, 4rem); /* 54.3px → 64px */
  --size-52-pc: clamp(2.756rem, 0.659rem + 3.48vw, 3.25rem); /* 44.1px → 52px */
  --size-40-pc: clamp(2.12rem, 0.507rem + 2.68vw, 2.5rem); /* 33.9px → 40px */
  --size-32-pc: clamp(1.696rem, 0.406rem + 2.14vw, 2rem); /* 27.1px → 32px */
  --size-28-pc: clamp(1.484rem, 0.355rem + 1.87vw, 1.75rem); /* 23.7px → 28px */
  --size-24-pc: clamp(1.272rem, 0.304rem + 1.61vw, 1.5rem); /* 20.4px → 24px */
  --size-22-pc: clamp(
    1.166rem,
    0.279rem + 1.47vw,
    1.375rem
  ); /* 18.7px → 22px */
  --size-20-pc: clamp(1.06rem, 0.254rem + 1.34vw, 1.25rem); /* 17.0px → 20px */
  --size-18-pc: clamp(0.954rem, 0.228rem + 1.2vw, 1.125rem); /* 15.3px → 18px */
  --size-16-pc: clamp(0.848rem, 0.203rem + 1.07vw, 1rem); /* 13.6px → 16px */
  --size-14-pc: clamp(
    0.742rem,
    0.178rem + 0.94vw,
    0.875rem
  ); /* 11.9px → 14px */
  --size-12-pc: clamp(0.636rem, 0.152rem + 0.8vw, 0.75rem); /* 10.2px → 12px */
  --size-8-pc: clamp(0.424rem, 0.102rem + 0.53vw, 0.5rem); /* 6.8px → 8px */
  --size-4-pc: clamp(0.212rem, 0.051rem + 0.27vw, 0.25rem); /* 3.4px → 4px */
  --size-2-pc: clamp(0.106rem, 0.025rem + 0.13vw, 0.125rem); /* 1.7px → 2px */
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: var(--size-14-pc);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  overflow-x: hidden;
  overflow-y: visible;
}

.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 0.6s cubic-bezier(0.49, 0.11, 0.53, 0.84);
  transition-property: clip-path;
}

.smooth.active {
  clip-path: inset(0);
}

/* ========================================  navi ================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header__inner {
  margin: 0;
  padding: 28px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Brand */
.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
  margin-right: auto;
}

.site-header__logo {
  height: 40px;
  width: auto;
  display: block;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin-left: auto;
}

.site-header__link {
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1;
  padding: 8px 2px;
}

/* CTA button */
.site-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--size-40-pc);
  padding: 10px 24px;
  border-radius: 999px;
  background: #165ccc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
}

.breadcrumb {
  width: 100%;
  font-size: var(--size-12-pc);
  margin-left: 28px;
  color: #afafaf;
  padding-bottom: var(--size-24-pc);
  margin-top: var(--size-20-pc);
}
.breadcrumb ol {
  display: flex;
  gap: 0.25em;
  white-space: nowrap;
  overflow-x: auto;
}
.breadcrumb li {
  display: inline-flex;
  align-items: center;
}
.breadcrumb li + li::before {
  content: "›";
  opacity: 0.6;
  margin: 0 0.35em;
}
.breadcrumb [aria-current="page"] {
  text-decoration: none;
  opacity: 0.9;
}
.breadcrumb a {
  transition:
    color 0.25s ease,
    text-decoration-color 0.25s ease;
}
.breadcrumb a:hover {
  color: #094ab1;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.primary-btn {
  border-radius: calc(infinity * 1px);
  background: linear-gradient(
    115deg,
    #0b2041 0%,
    #1f4f9b 25%,
    #0b2041 50%,
    #9fc5ff 75%,
    #b3d0ff 87.5%,
    #c8ddfe 100%
  );
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: opacity 0.8s ease;
  box-shadow: 0 0 16px 0 rgba(255, 255, 255, 0.5);
  line-height: 1.5;
  font-weight: 700;
  color: #fff;
  text-align: center;
  animation: flicker 7s linear infinite;

  font-size: var(--size-22-pc);
  padding: var(--size-20-pc) var(--size-40-pc);
  max-width: calc(var(--size-20-pc) * 15);
  margin: 0 auto;
}

.primary-btn--floating {
  position: fixed;
  right: var(--size-40-pc);
  left: auto;
  z-index: calc(infinity);
  transition:
    transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    opacity 0.4s ease;
  opacity: 0;
  transform: translateY(100px) scale(0.8);
  width: calc(var(--size-40-pc) * 4.5);
  height: calc(var(--size-40-pc) * 4.5);
  padding: var(--size-32-pc) 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: var(--size-8-pc);
  bottom: var(--size-40-pc);
  margin: 0;
  font-size: var(--size-18-pc);
  letter-spacing: 0.04em;
}

.primary-btn--floating::after {
  content: "";
  display: block;
  width: var(--size-32-pc);
  height: var(--size-32-pc);
  background: url(/img/career/icon_double-arrow.svg) no-repeat center center;
  background-size: contain;
}

.primary-btn--floating.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation:
    fadeInUp 0.4s ease-out,
    flicker 7s linear infinite;
}

.primary-btn--floating.hidden {
  opacity: 0;
  transform: translateY(100px) scale(0.8);
}

.site-header__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.site-header__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
}

.site-header__cta:hover::after {
  transform: translateX(120%);
  transition: transform 0.6s ease;
}

.site-header__cta:active {
  transform: translateY(0px) scale(0.98);
}

.site-header__link {
  transition: color 0.2s ease;
}

.site-header__link:hover {
  color: #0048bc;
}

/* ========================================  Hero ================================================== */

.hero {
  width: 100%;
  overflow: hidden;
}

.hero__top {
  width: 100%;
  margin: 0 auto;
  transform: translateX(12%);
}

.hero__kicker {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding-bottom: 8px;
  width: 100%;
}

.hero__kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #111;
}

.hero__eyebrow {
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  font-size: clamp(24px, 6.2vw, 64px);
  margin: 0;
}

.hero__eyebrow-ja {
  font-weight: 700;
  font-size: clamp(12px, 1.6vw, 24px);
  color: #111;
}

.hero--crosstalk .hero__main {
  background: #fff; /* 设计图是白底主图 */
}

.hero-crosstalk__visual {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 240px;
  overflow: hidden;
}

.hero-crosstalk__photo,
.hero-crosstalk__photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-crosstalk__photo img {
  object-fit: cover;
  object-position: center;
}

.hero-crosstalk__cross {
  position: absolute;
  left: 50%;
  top: 30%;
  transform: translate(-50%, -50%);
  width: clamp(120px, 20vw, 290px);
  height: auto;
  pointer-events: none;
}

/* 名字牌（共用） */
.hero-crosstalk__tag {
  position: absolute;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  bottom: 24%;
  z-index: 3;
  color: #fff;
}

.hero-crosstalk__role,
.hero-crosstalk__name {
  margin: 0;
  line-height: 1.1;
}

.hero-crosstalk__role {
  width: fit-content;
  text-align: center;
  background: #165ccc;
  padding: 4px;
  font-weight: 700;
  font-size: clamp(12px, 1.4vw, 24px);
  margin: 10px auto;
  letter-spacing: 0.2em;
}

.hero-crosstalk__name {
  text-align: center;
  background: #165ccc;
  padding: clamp(4px, 1vw, 12px);
  font-weight: 800;
  font-size: clamp(20px, 4vw, 64px);
  margin: 0;
  letter-spacing: 0.1em;
  line-height: 1;
}

.hero-crosstalk__role > span {
  background: linear-gradient(90deg, #fff9e5 0%, #efd879 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.hero-crosstalk__name.is-yellow > span {
  background: linear-gradient(90deg, #fff9e5 0%, #efd879 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-block;
}

.hero-crosstalk__tag--left {
  left: 18%;
}

.hero-crosstalk__tag--right {
  right: 18%;
  text-align: right;
}

/* ======================================== Intro ================================================== */
.intro {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: transparent;
}

.intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--base-color);
  background: url(../../../../img/career/noise.webp) repeat;
  background-size: 160px 160px;
  --cut: clamp(60px, 12vw, 260px);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--cut)), 0 100%);

  z-index: 0;
  pointer-events: none;
}

.intro__inner {
  z-index: 1;

  width: clamp(320px, 85vw, 1320px);
  margin: 0 auto;

  padding: clamp(44px, 6vw, 90px) clamp(16px, 4vw, 30px);
  min-height: clamp(220px, 28vw, 420px);
}

.intro__content {
  max-width: 100%;
}

.intro__title {
  margin: 0;
  line-height: 1.1;
}

.intro__outline {
  display: block;
  font-weight: 900;
  letter-spacing: 0.01em;

  font-size: clamp(34px, 6vw, 96px);
  color: transparent;
  -webkit-text-stroke: 2px rgba(255, 255, 255, 0.95);

  width: max-content;

  position: relative;

  left: calc(
    (100vw - clamp(320px, 85vw, 1200px)) / -2 + 8vw + clamp(-40px, -4vw, -12px)
  );

  transform: rotate(-8deg);
  transform-origin: left bottom;
}

.intro__fill {
  display: block;
  font-weight: 900;
  letter-spacing: 0.02em;

  font-size: clamp(30px, 5.4vw, 88px);
  margin-top: clamp(12px, 2vw, 24px);
  margin-inline: auto;
  margin-bottom: clamp(12px, 2vw, 24px);
  transform: rotate(-8deg);
  transform-origin: left top;
}

.intro__fill--impact {
  opacity: 0;
  transform: rotate(-8deg) translateY(18px) scale(0.92);
  filter: blur(10px);
}

/* 出现瞬间：impact */
.intro__fill--impact.active {
  animation: fillImpact 0.55s cubic-bezier(0.2, 1.2, 0.25, 1) forwards;
}

.intro__scroll {
  position: absolute;
  right: 6vw;
  top: clamp(20px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-center;
  gap: clamp(12px, 1.5vw, 24px);
}

.intro__scroll-text {
  font-size: clamp(14px, 1.6vw, 32px);
  line-height: 1;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  font-weight: 600;
  display: block;
}

.intro__scroll-icon {
  display: block;
  line-height: 0;
  width: clamp(10px, 1.2vw, 24px);
  height: auto;
}

.intro__dots {
  display: block;
  width: 100%;
  height: auto;
  animation: dots-float 2.2s ease-in-out infinite;
  will-change: transform;
}

.intro__dots-wrap {
  position: absolute;
  right: clamp(10px, 2vw, 30px);
  bottom: clamp(8px, 1vw, 28px);
  width: clamp(120px, 22vw, 260px);
  z-index: 10;
  pointer-events: none;
}

.intro__dots-wrap--left {
  left: clamp(10px, 2vw, 30px);
  top: 0%;
  right: auto;
  bottom: auto;
  transform: rotate(180deg);
  transform-origin: center;
}

/* ============================== Conversation Section ============================== */
.conversation {
  background: #fff;
  padding-top: clamp(8px, 0.5vw, 24px);
}

.conversation__inner {
  width: clamp(320px, 85vw, 1000px);
  margin: 0 auto;
  position: relative;
}

.conversation__lead {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: clamp(18px, 3vw, 28px);
}

.conversation__lead-box {
  border: 1px solid #0454a2;
  border-radius: 6px;
  padding: 12px 14px;
  font-size: clamp(12px, 1.2vw, 16px);
  line-height: 1.7;
  background: #fff;
  position: relative;
}

.conversation__lead-text {
  flex: 1;
  min-width: 0;
}

.conversation__lead-note {
  margin-top: 4px;
  font-size: 12px;
  padding-left: 4px;
  line-height: 1.6;
  color: #9a9a9a;
}

.conversation__host {
  position: relative;
  width: fit-content;
  display: inline-block;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.conversation__lead-box::after {
  content: "";
  position: absolute;

  right: -24px;
  top: 50%;
  transform: translateY(-50%);

  width: clamp(4px, 6vw, 20px);
  border-top: 1px dashed #165ccc;
}

.conversation__host-photo {
  width: clamp(88px, 12vw, 180px);
  height: auto;
  display: block;
}

.conversation__host-name {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -4%;
  width: clamp(68px, 10vw, 112px);
  text-align: center;
  display: inline-block;
  padding: clamp(4px, 1vw, 8px);
  background: #165ccc;
  color: #fff;
  font-weight: 600;
  font-size: clamp(12px, 1.6vw, 24px);
  line-height: 1;
  z-index: 2;
}

/* ========== Q Bubble (blue) ========== */
.q-bubble {
  position: relative;
  margin: clamp(20px, 3vw, 28px) 0;
  margin-top: 20px;
  background: #165ccc;
  color: #fff;
  border-radius: 16px;
  padding: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  width: fit-content;
}

.q-bubble--mt {
  margin-top: clamp(28px, 4vw, 44px);
}

.q-bubble__text {
  display: block;
  font-size: clamp(20px, 2.6vw, 40px);
  line-height: 1.35;
}

.q-bubble::after {
  content: "";
  position: absolute;
  right: -16px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 16px solid #165ccc;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.conversation__row {
  width: 100%;
}

.conversation__chat {
  min-height: 0;
  width: 100%;
  overflow: auto;
  grid-area: chat;
}

.conversation__row--with-photo .conversation__chat {
  max-width: 480px;
}

.conversation__row--with-photo {
  display: grid;
  grid-template-columns: minmax(280px, 480px) minmax(280px, 460px);
  justify-content: space-between;
  gap: clamp(16px, 3vw, 40px);
  align-items: stretch;
  grid-template-areas: "chat photo";
}

.conversation__photo {
  height: auto;
  width: clamp(280px, 40vw, 460px);
  grid-area: photo;
  min-height: 0;
  margin: 0;
  padding-bottom: clamp(16px, 3vw, 40px);
  overflow: hidden;
  aspect-ratio: 460 / 606;
}

.conversation__photo img {
  display: block;
  width: 100%;

  height: 100%;
  object-fit: cover;
}

.conversation__row--with-photo.conversation__row--photo-left {
  grid-template-areas: "photo chat";
  gap: 0;
}

.conversation__full {
  width: 100%;
  margin: 0 auto;
}

.conversation__full img {
  display: block;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  object-position: top;
}

/* ========== Message ========== */
.msg {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: clamp(16px, 3vw, 40px);
}

.msg__person {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.msg__avatar {
  width: 100px;
  height: auto;
  border-radius: 999px;
  display: block;
}

.msg__name {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.msg__bubble {
  display: flex;
  align-items: center;
  background: #f6f6f6;
  padding: 16px 24px;
  font-size: clamp(12px, 2vw, 16px);
  line-height: 1.85;
  min-height: 93px;
}

.msg--ask .msg__bubble {
  color: #094ab1;
  font-weight: 700;
  background: #fff;
  padding: 16px 0px;
}

.msg--right {
  grid-template-columns: 1fr 72px;
}

.msg--right .msg__person {
  order: 2;
}

.msg--right .msg__bubble {
  order: 1;
}

/* ======================================== Other Interview ================================================== */

.interview {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: transparent;
  overflow: visible;
}

.interview::before {
  content: "";
  position: absolute;
  inset: 0;
  margin-top: 20px;
  background-color: var(--base-color);
  background: url(../../../../img/career/noise.webp) repeat;
  background-size: 160px 160px;
  --cut: clamp(60px, 12vw, 260px);
  clip-path: polygon(0 var(--cut), 100% 0, 100% 100%, 0 100%);
}

.interview__inner {
  width: clamp(600px, 85vw, 1000px);
  padding-top: clamp(40px, 24vw, 240px);
  margin: 0 auto;
  position: relative;
  padding-bottom: clamp(2px, 4vw, 48px);
  gap: clamp(32px, 4vw, 48px);
}

.interview__header {
  position: relative;
  z-index: 1;
}

.interview__title {
  font-size: clamp(32px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.3;
  background: linear-gradient(90deg, #e1efff 0%, #5da9ff 34%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.interview__back {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.interview__back-icon {
  width: clamp(40px, 1.5vw, 60px);
  height: clamp(40px, 1.5vw, 60px);
  display: block;
  flex: 0 0 auto;
}

.interview__back-text {
  font-size: clamp(24px, 1vw, 40px);
  font-weight: 700;
  color: #fff;
}

.crosstalk__list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--size-32-pc);
  padding: clamp(32px, 4vw, 48px) 0;
}

.crosstalk__item {
  overflow: hidden;
  box-shadow: 16px 16px 0px #0000003d;
  border-radius: 8px;
}

.crosstalk__link {
  display: block;
}

.crosstalk__link img {
  display: block;
  width: 100%;
  height: auto;
}

/* ========================================  Footer ================================================== */

.footer {
  margin-top: -2px;
  background-color: var(--base-color);
  background: url(/img/career/noise.webp) repeat;
  background-size: 160px 160px;
  padding: clamp(24px, 9vw, 56px);
}

.line {
  width: 100%;
  height: 1px;
  background: #fff;
}

.footer__main {
  color: var(--text-color);
  width: clamp(600px, 85vw, 1000px);
  margin: 0 auto;
  margin-bottom: 40px;
  gap: var(--size-32-pc);
  display: flex;
  flex-direction: column;
  line-height: 1.5;
}

.footer__logo {
  width: calc(var(--size-20-pc) * 7);
}

.footer__links {
  display: flex;
  flex-direction: row;
  gap: var(--size-16-pc);
  color: #fff;
}

.footer__link {
  font-size: var(--size-16-pc);
  font-weight: 700;
}

.footer__external-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--size-12-pc) var(--size-16-pc);
  color: #fff;
}

.footer__external-link {
  font-size: var(--size-14-pc);
  color: #fff;
}

.footer__external-link::after {
  content: "";
  background-size: contain;
  display: inline-block;
  width: var(--size-16-pc);
  height: var(--size-16-pc);
  margin-left: var(--size-4-pc);
  color: #fff;
}

.footer__sns {
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: var(--size-16-pc);
  padding: var(--size-12-pc);
  align-items: center;
  justify-content: flex-start;
}

.footer__introduction-link {
  font-size: var(--size-14-pc);
  color: #fff;
}

.footer__copyright {
  font-size: var(--size-12-pc);
  opacity: 0.8;
  color: #fff;
}

.attention {
  font-size: var(--size-12-pc);
  opacity: 0.8;
  padding-top: var(--size-40-pc);
  color: #fff;
}

/* ======================================== SP ================================================== */
/* ======================================== SP ================================================== */

/* SP */
@media (max-width: 677px) {
  .site-header__inner {
    padding: 12px 16px;
  }

  .site-header__nav {
    display: none;
  }

  .breadcrumb {
    display: none;
  }

  .site-header__cta {
    padding: 8px 24px;
    font-size: var(--size-16);
  }

  /* ======================================== Hero ================================================== */
  .hero__top {
    max-width: none;
    margin: 0;
  }

  .hero__inner {
    width: 100%;
  }

  .hero__main {
    overflow: visible;
    height: clamp(214px, 68vw, 600px);
  }

  .hero-crosstalk__cross {
    top: 24%;
  }

  .hero-crosstalk__tag {
    bottom: 32%;
  }

  .hero-crosstalk__tag--left {
    left: 10%;
  }

  .hero-crosstalk__tag--right {
    right: 10%;
  }

  /* ======================================== Intro ================================================== */

  .intro {
    margin-top: -1px;
  }

  .intro__outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.95);
  }
  .intro__title br {
    display: none;
  }

  .intro__fill {
    width: clamp(256px, 70vw, 560px);
  }

  /* ======================================== conversation ================================================== */

  .conversation__lead {
    align-items: flex-start;
  }

  .conversation__host {
    justify-items: end;
  }

  .conversation__lead-note {
    min-width: 310px;
  }

  .q-bubble::after {
    right: -14px;
    top: 50%;
    bottom: -14px;
    transform: translateY(-50%) rotate(270deg);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid #165ccc;
    border-bottom: 0;
  }

  .conversation__row--with-photo {
    grid-template-columns: 1fr;
    grid-template-areas: "chat" "photo";
  }

  .conversation__row--with-photo.conversation__row--photo-left {
    grid-template-columns: 1fr;
    grid-template-areas: "chat" "photo";
    gap: clamp(16px, 3vw, 40px);
  }

  .conversation__row--with-photo .conversation__chat {
    max-width: none;
  }

  .conversation__photo {
    width: 100%;
    height: clamp(300px, 60vw, 400px);
  }
  .conversation__photo img {
    object-position: top center;
  }

  .msg__avatar {
    width: 50px;
    height: auto;
  }

  /* ========================================  Other interview ================================================== */

  .interview {
    padding: var(--size-2) 0 var(--size-24);
  }

  .interview__inner {
    width: clamp(320px, 80vw, 600px);
  }

  .interview__back {
    left: 18px;
    bottom: 18px;
    z-index: 50;
  }

  .crosstalk__list {
    gap: var(--size-16);
  }

  .crosstalk__item {
    box-shadow: 8px 8px 0px #0000003d;
    border-radius: 8px;
  }

  /* ========================================  Footer ================================================== */
  .footer {
    margin: 0;
    margin-top: -2px;
  }

  .footer__main {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--size-24);
    line-height: 1.5;
    width: auto;
    padding-bottom: 40px;
  }

  .footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--size-8);
  }

  .footer__link {
    color: var(--text-color);
    font-weight: 700;
  }

  .footer__external-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--size-12) var(--size-16);
  }

  .footer__external-link {
    display: flex;
    align-items: center;
    font-size: var(--size-12);
  }

  .footer__external-link::after {
    content: "";
    background-size: contain;
    display: inline-block;
    width: var(--size-16);
    height: var(--size-16);
    margin-left: var(--size-4);
  }

  .footer__sns {
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: var(--size-8) var(--size-16);
    display: flex;
    gap: var(--size-16);
    align-items: center;
    justify-content: flex-start;
  }

  .footer__sns img {
    display: block;
  }

  .footer__introduction-link {
    font-size: var(--size-12);
  }

  .footer__copyright {
    font-size: var(--size-12);
    opacity: 0.8;
  }

  /* ========================================  BTN ================================================== */

  .primary-btn--floating::after {
    display: none;
  }

  .primary-btn {
    padding: 1em 2em;
    font-size: var(--size-16);
    max-width: none;
    margin: 0 auto;
    width: 100%;
  }

  .primary-btn--floating {
    position: fixed;
    width: 80%;
    height: auto;
    padding: 0.8em 1.6em;
    bottom: var(--size-12);
    margin: 0;
    z-index: calc(infinity);
    transition:
      transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      opacity 0.4s ease;
    opacity: 0;
    transform: translateX(-50%) translateY(100px) scale(0.8);
    left: 50%;
    right: auto;
  }

  .primary-btn--floating.visible {
    opacity: 1;

    transform: translateX(-50%) translateY(0) scale(1);
    animation:
      fadeInUp 0.4s ease-out,
      flicker 7s linear infinite;
  }

  .primary-btn--floating.hidden {
    opacity: 0;

    transform: translateX(-50%) translateY(100px) scale(0.8);
  }

  .br-pc {
    display: none !important;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    transform: none;
    opacity: 1;
  }
}

@media (max-width: 1000px) {
  .conversation__row--with-photo.conversation__row--photo-left {
    grid-template-columns: 1fr;
    grid-template-areas: "chat" "photo";
    gap: clamp(16px, 3vw, 40px);
  }

  .conversation__row--with-photo .conversation__chat {
    max-width: none;
  }

  .conversation__row--with-photo {
    grid-template-columns: 1fr;
    grid-template-areas: "chat" "photo";
  }

  .conversation__photo {
    width: 100%;
    height: clamp(300px, 60vw, 400px);
  }
  .conversation__photo img {
    object-position: top center;
  }
}

@keyframes fillImpact {
  0% {
    opacity: 0;
    transform: scale(2) rotate(0deg);
    filter: blur(10px);
  }
  55% {
    opacity: 1;
    transform: scale(0.98) rotate(-8deg);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(-8deg);
    filter: blur(0);
  }
}

/* --------- ホバーエフェクト --------- */

@media (any-hover: hover) {
  .primary-btn:hover {
    opacity: 0.6;
  }

  .primary-btn--floating:hover {
    opacity: 0.6;
    transform: scale(1.05);
  }

  .interview__back:hover {
    opacity: 0.85;
    transform: translateX(4px);
  }

  .crosstalk__item img:hover {
    transition: transform 0.45s ease;
    will-change: transform;
    transform-origin: center;
    transform: scale(1.05);
  }
}

@media (max-width: 677px) and (any-hover: hover) {
  .primary-btn--floating:hover {
    transform: translateX(-50%) translateY(0) scale(1.05);
  }
}

/* --------- アニメーション --------- */
@keyframes dots-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
