@charset "UTF-8";
/* Career Page Styles - キャリア採用ページ */
/* ====================================
   Variables - 変数
   ==================================== */
:root {
  --career-color-primary-blue: #26a1e1;
  --career-color-dark-blue: #165ea3;
  --career-color-accent-blue: #2672ff;
  --career-color-accent-yellow: #f5ff00;
  --career-color-gray-bg: #f1f1f1;
}

/* ====================================
   Hero Section - メインビジュアル
   ==================================== */
.career-hero {
  position: relative;
  width: 100%;
  height: 900px;
  margin-top: var(--header-height);
  overflow: hidden;
}

.career-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.career-hero__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.career-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 27.603%, rgba(0, 0, 0, 0.05) 89.366%);
  z-index: 2;
}

.career-hero__content {
  display: grid;
  place-items: center;
  position: absolute;
  top: 140px;
  left: 80px;
  z-index: 3;
  text-align: left;
}

.career-hero__graphic {
  width: 710.336px;
  height: 355.767px;
  margin-bottom: 20px;
}

.career-hero__title {
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 1.2;
  margin: 0;
}

.career-hero__scroll-button {
  position: absolute;
  bottom: 60px;
  right: 60px;
  width: 60px;
  height: 60px;
  background-color: var(--career-color-accent-yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform 0.3s ease;
}
.career-hero__scroll-button:hover {
  transform: scale(1.1);
}
.career-hero__scroll-button svg {
  width: 54px;
  height: 3px;
}

/* ====================================
   Sub Visual Section - サブビジュアル
   ==================================== */
.career-sub-visual {
  position: relative;
  width: 100%;
  height: 800px;
  margin-top: -200px;
  z-index: 1;
}

.career-sub-visual__decorations {
  position: absolute;
  top: 300px;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.career-sub-visual__decorations img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.career-sub-visual__decoration {
  position: absolute;
}
.career-sub-visual__decoration--1 {
  right: 100px;
  bottom: -100px;
  width: 263px;
  height: 214px;
}
.career-sub-visual__decoration--2 {
  left: 50%;
  top: -200px;
  transform: translateX(-50%);
  width: 263px;
  height: 214px;
}

.career-sub-visual__images {
  position: relative;
  height: 100%;
  z-index: 2;
  /* 全体を右にずらす */
  margin-left: 300px;
}

.career-sub-visual__image {
  position: absolute;
  overflow: hidden;
  /* 400x600 の枠、アスペクト比 2:3 */
  width: 400px;
  height: 600px;
}
.career-sub-visual__image img {
  width: 100%;
  /* パララックス用に画像を大きめにして移動可能にする */
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.career-sub-visual__image--left {
  /* 左の画像: 下に配置 */
  left: 50%;
  top: 100px;
  transform: translateX(-390px);
  z-index: 2;
}
.career-sub-visual__image--right {
  /* 右の画像: 上に配置 */
  left: 50%;
  top: 0;
  transform: translateX(50px);
  z-index: 1;
}

/* ====================================
   Catchphrase Section - キャッチコピー
   ==================================== */
.career-section-headline {
  position: relative;
  width: fit-content;
}
.career-section-headline::before {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -124px;
  display: block;
  width: 263px;
  height: 214px;
  background: url("../images/career/headline-decoration.svg") no-repeat center center;
  z-index: 0;
}
.career-section-headline .career-interviews__headline {
  position: relative;
  z-index: 1;
}

.career-catchphrase {
  position: relative;
  padding: 40px 20px;
  margin-left: 200px;
  margin-top: var(--header-height);
}

.career-catchphrase__text {
  font-family: "Noto Serif JP", serif;
  font-size: 65px;
  font-weight: 500;
  color: var(--color-white);
  line-height: 90px;
  margin: 0;
}
.career-catchphrase__text span {
  display: block;
  padding: 0 0.2em;
  background-color: var(--color-text-black);
  margin-bottom: 0.35em;
  white-space: nowrap;
  background: #000;
  width: fit-content;
  line-height: 1.2;
}
.career-catchphrase__text span:last-child {
  margin-bottom: 0;
}

/* ====================================
   Message Section - メッセージ
   ==================================== */
.career-message {
  position: relative;
  padding: 120px 200px 180px;
  z-index: 1;
}
.career-message::before {
  content: "";
  position: absolute;
  top: 25%;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #f5ff00;
  clip-path: polygon(0 12vw, 100% 0, 100% calc(100% - 12vw), 0 100%);
  z-index: 0;
}

.career-message__decorations {
  position: absolute;
  bottom: 0;
  right: 0;
  pointer-events: none;
  transform: rotate(180deg);
}
.career-message__decorations img {
  width: 70%;
  height: auto;
  object-fit: cover;
}

.career-message__heading {
  position: absolute;
  top: 40px;
  left: 1000px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--color-text-black);
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (min-width: 641px) and (max-width: 1520px) {
  .career-message__heading {
    top: -60px;
    right: 12%;
    left: auto;
  }
}

.career-message__headline {
  position: relative;
  z-index: 1;
}

.career-message__content {
  max-width: 1000px;
  margin: 50px 0 0;
  position: relative;
  z-index: 1;
}
.career-message__content p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 16px;
}

.career-message__images {
  position: relative;
  height: 700px;
  margin-top: 60px;
  z-index: 2;
}
@media screen and (min-width: 641px) and (max-width: 1520px) {
  .career-message__images {
    height: 500px;
  }
}

.career-message__image {
  position: absolute;
  overflow: hidden;
  /* 400x600 の枠、アスペクト比 2:3 */
  width: 400px;
  height: 600px;
}
.career-message__image img {
  width: 100%;
  /* パララックス用に画像を大きめにして移動可能にする */
  height: 140%;
  object-fit: cover;
  will-change: transform;
}
.career-message__image--left {
  /* 左の画像: 上に配置 */
  left: 0;
  top: 0;
  z-index: 2;
}
.career-message__image--right {
  /* 右の画像: 下に配置、重ねる */
  left: 450px;
  top: 100px;
  z-index: 1;
}

/* ====================================
   Photo Section - 写真セクション
   ==================================== */
.career-photo-section {
  position: relative;
  width: 100%;
  height: 700px;
  margin-top: 50px;
}

.career-photo-section__decoration {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1600px;
  height: 876.4px;
  z-index: 1;
}

.career-photo-section__images {
  position: relative;
  z-index: 2;
}

.career-photo-section__image {
  position: absolute;
  overflow: hidden;
}
.career-photo-section__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.career-photo-section__image--1 {
  left: 200px;
  top: -100px;
  width: 618px;
  height: 736px;
}
.career-photo-section__image--2 {
  left: 650px;
  top: 0;
  width: 559px;
  height: 649px;
}

/* ====================================
   Interviews Section - インタビュー
   ==================================== */
.career-section-title {
  text-align: center;
  color: var(--career-color-primary-blue);
  margin-bottom: 1em;
  font-weight: 500;
  font-size: 45px;
}

.career-interviews {
  background-color: var(--career-color-gray-bg);
  padding: 100px 200px;
  position: relative;
}

.career-interviews__decorations {
  position: absolute;
  pointer-events: none;
}

.career-interviews__decoration {
  position: absolute;
}
.career-interviews__decoration--1 {
  left: 50%;
  top: -250px;
  transform: translateX(-50%);
  width: 263px;
  height: 214px;
}
.career-interviews__decoration--2 {
  left: 200px;
  top: -220px;
  width: 560.24px;
  height: 179.045px;
}

.career-interviews__heading {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 500;
  color: var(--color-text-black);
  margin-bottom: 60px;
  text-align: center;
}

.career-interview-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 50px;
  margin-bottom: 80px;
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.career-interview-card--2 {
  grid-template-columns: 1fr 210px;
}
.career-interview-card--2 .career-interview-card__content {
  order: 1;
}
.career-interview-card--2 .career-interview-card__figure {
  order: 2;
}

.career-interview-card__figure {
  margin: 0;
  display: grid;
  place-items: center;
  place-content: center;
  gap: 0.5em;
}

.career-interview-card__image-wrapper {
  position: relative;
  width: 210px;
  height: 280px;
  overflow: hidden;
}

.career-interview-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.career-interview-card__caption {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.8em;
  font-weight: 500;
  line-height: 1.6;
}

.career-interview-card__content {
  padding: 20px 0;
}

.career-interview-card__question {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--career-color-primary-blue);
  line-height: 1.6;
  margin-bottom: 15px;
  padding-left: 20px;
  border-left: 5px solid var(--career-color-accent-yellow);
}

.career-interview-card__answer {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 30px;
  padding-left: 20px;
  color: #333;
}

/* ====================================
   Requirements & Alumni - 募集要項・アルムナイ
   ==================================== */
.career-requirements,
.career-alumni {
  padding: 120px 200px;
}

.career-alumni__description {
  max-width: 1200px;
  margin: 0 auto 80px;
}
.career-alumni__description p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 33px;
  margin-bottom: 10px;
}

.career-requirements-table,
.career-alumni-table {
  max-width: 1200px;
  margin: 0 auto;
}

.career-requirements-table__row,
.career-alumni-table__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #d0d0d0;
}

.career-requirements-table__label,
.career-alumni-table__label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: var(--career-color-primary-blue);
  font-weight: normal;
  line-height: 33px;
}

.career-requirements-table__value,
.career-alumni-table__value {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 33px;
}

/* ====================================
   INSIDE CN Section
   ==================================== */
.career-inside-cn {
  padding: 100px 200px 100px;
  text-align: center;
}

.career-inside-cn__title {
  text-align: center;
  position: relative;
  margin-bottom: 1rem;
}
.career-inside-cn__title img {
  display: block;
  margin: 0 auto;
}

.career-inside-cn__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--career-color-primary-blue);
  line-height: 1.8;
  margin: 0;
  text-align: center;
}

/* ====================================
   3 Column Cards Section - 3カラムカード
   ==================================== */
.career-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background-color: #fff;
  margin-bottom: 100px;
}

.career-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.career-card:hover {
  opacity: 0.85;
}

.career-card__thumbnail {
  position: relative;
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.career-card__thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}

.career-card__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.career-card:hover .career-card__thumbnail-image {
  transform: scale(1.05);
}

.career-card__title-area {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 0 80px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
}

.career-card__title-svg {
  height: 80px;
  width: 100%;
  object-fit: contain;
  display: block;
  max-width: none;
}

.career-card__content {
  padding: 25px 30px 35px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.career-card__description {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: #333;
  margin: 0 0 25px 0;
  text-align: left;
}

.career-card__arrow {
  margin-top: auto;
  text-align: center;
}
.career-card__arrow svg {
  width: 39px;
  height: 14px;
}

/* ====================================
   Talk Contents Section - トークコンテンツ
   ==================================== */
.career-talk-contents {
  position: relative;
  padding: 0 0 100px;
  margin-bottom: 150px;
  overflow: hidden;
}

.career-talk-contents__clip-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.career-talk-contents__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  clip-path: url(#career-talk-clip-desktop);
}

.career-talk-contents__background-image {
  width: 100%;
  height: 120%;
  object-fit: cover;
  object-position: center top;
  will-change: transform;
}

.career-talk-contents__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.career-talk-contents__wave--mobile {
  display: none;
}

.career-talk-contents__header {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 180px 40px 80px;
}

.career-talk-contents__title {
  margin: 0 0 20px;
}

.career-talk-contents__title-svg {
  max-width: 590px;
  height: auto;
  margin-inline: auto;
}

.career-talk-contents__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-white);
  margin: 0;
}

.career-talk-contents__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.career-talk-contents__card {
  display: flex;
  flex-direction: column;
  background: white;
  cursor: pointer;
}
.career-talk-contents__card:hover .career-talk-contents__card-image img {
  transform: scale(1.05);
}

.career-talk-contents__card-image {
  width: 100%;
  aspect-ratio: 120/56;
  overflow: hidden;
}
.career-talk-contents__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.career-talk-contents__card-content {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%);
  padding: 30px 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: -5em;
  position: relative;
  z-index: 2;
}

.career-talk-contents__card-title {
  height: 48px;
  width: 100%;
  object-fit: contain;
  display: block;
  max-width: none;
  margin-bottom: 15px;
}

.career-talk-contents__card-subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}

.career-talk-contents__card-arrow svg {
  width: 39px;
  height: 14px;
}

/* ====================================
   Scroll to Top Button - ページトップへ戻るボタン
   ==================================== */
.back-top {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #26a1e1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(200px);
  opacity: 0;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 50;
}
@media (max-width: 767px) {
  .back-top {
    bottom: 3vh;
    right: 3vw;
    width: 10.2vw;
    height: 10.2vw;
  }
}
.back-top.active {
  transform: translateY(0);
  opacity: 0.75;
}
.back-top:hover {
  cursor: pointer;
  opacity: 0.85;
  box-shadow: 0 3px 5px rgba(120, 120, 120, 0.5);
}
.back-top:hover .back-top__arrow {
  animation: ArrowUp 0.75s linear 0s infinite normal none running;
}
.back-top__arrow {
  display: block;
  background: url("../images/common/backtop.png") center/contain no-repeat;
  width: 50%;
  height: 50%;
}

@keyframes ArrowUp {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-10px);
    opacity: 0;
  }
}
/* ====================================
   Responsive Design - タブレット (1024px)
   ==================================== */
@media (max-width: 1024px) {
  /* Hero */
  .career-hero {
    height: 70vw;
    max-height: 700px;
  }
  .career-hero__content {
    top: 10vw;
    left: 5vw;
  }
  .career-hero__graphic {
    width: 55vw;
    height: auto;
  }
  .career-hero__title {
    font-size: 2.8vw;
  }
  /* Sub Visual */
  .career-sub-visual {
    height: 60vw;
    margin-top: -15vw;
  }
  .career-sub-visual__decorations {
    top: 20vw;
  }
  .career-sub-visual__images {
    margin-left: 15vw;
  }
  .career-sub-visual__image {
    width: 30vw;
    height: 45vw;
  }
  .career-sub-visual__image--left {
    transform: translateX(-28vw);
    top: 8vw;
  }
  .career-sub-visual__image--right {
    transform: translateX(4vw);
  }
  /* Catchphrase */
  .career-catchphrase {
    margin-left: 10vw;
  }
  .career-catchphrase__text {
    font-size: 5vw;
    line-height: 1.3;
  }
  /* Message */
  .career-message {
    padding: 80px 8vw 120px;
  }
  .career-message__heading {
    top: -40px;
    right: 8%;
    left: auto;
  }
  .career-message__content p {
    font-size: 15px;
  }
  .career-message__images {
    height: 45vw;
  }
  .career-message__image {
    width: 30vw;
    height: 45vw;
  }
  .career-message__image--right {
    left: 35vw;
    top: 8vw;
  }
  /* Interviews */
  .career-interviews {
    padding: 80px 8vw;
  }
  .career-interview-card {
    gap: 30px;
  }
  /* Requirements & Alumni */
  .career-requirements,
  .career-alumni {
    padding: 80px 8vw;
  }
  /* Inside CN (newgrads- prefixed sections used on career page) */
  .page-career .newgrads-inside-cn {
    padding: 80px 8vw;
  }
  .page-career .newgrads-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Talk Contents */
  .career-talk-contents__header {
    padding: 140px 30px 60px;
  }
  .career-talk-contents__cards {
    max-width: 90%;
  }
  .career-talk-contents {
    margin-bottom: 100px;
  }
  /* Section Title */
  .career-section-title {
    font-size: 6vw;
  }
}
/* ====================================
   Responsive Design - タブレット/モバイル境界 (768px)
   ==================================== */
@media (max-width: 768px) {
  /* Header - hide side logo text on mobile */
  .page-career .header__side-logo-text {
    display: none;
  }
  /* Hero */
  .career-hero {
    height: auto;
    min-height: 100vw;
    aspect-ratio: auto;
  }
  .career-hero__content {
    top: 12vw;
    left: 5vw;
    right: 5vw;
  }
  .career-hero__graphic {
    width: 75vw;
    height: auto;
    margin-bottom: 3vw;
  }
  .career-hero__title {
    font-size: min(20px, 4.5vw);
  }
  .career-hero__scroll-button {
    bottom: 5vw;
    right: 5vw;
    width: 10vw;
    height: 10vw;
  }
  /* Sub Visual */
  .career-sub-visual {
    height: 80vw;
    margin-top: -10vw;
  }
  .career-sub-visual__decorations {
    top: 25vw;
  }
  .career-sub-visual__images {
    margin-left: 5vw;
  }
  .career-sub-visual__image {
    width: 40vw;
    height: 55vw;
  }
  .career-sub-visual__image--left {
    transform: translateX(-5vw);
    top: 10vw;
  }
  .career-sub-visual__image--right {
    transform: translateX(35vw);
    top: 0;
  }
  /* Catchphrase */
  .career-catchphrase {
    margin-left: 5vw;
    padding: 20px 5vw;
  }
  .career-catchphrase__text {
    font-size: min(32px, 6.5vw);
    line-height: 1.3;
  }
  /* Message */
  .career-message {
    padding: 60px 5vw 100px;
  }
  .career-message__heading {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin-bottom: 30px;
    text-align: center;
  }
  .career-message__heading img {
    max-width: 70vw;
    height: auto;
  }
  .career-message__content {
    margin-top: 30px;
  }
  .career-message__content p {
    font-size: min(16px, 3.8vw);
    line-height: 1.8;
  }
  .career-message__images {
    height: 70vw;
    margin-top: 40px;
  }
  .career-message__image {
    width: 42vw;
    height: 58vw;
  }
  .career-message__image--left {
    left: 0;
    top: 0;
  }
  .career-message__image--right {
    left: auto;
    right: 0;
    top: 12vw;
  }
  /* Section Headline decoration */
  .career-section-headline::before {
    width: 180px;
    height: 146px;
    right: -80px;
    bottom: -5px;
    background-size: contain;
  }
  /* Interviews */
  .career-interviews {
    padding: 60px 5vw;
  }
  .career-interviews__heading {
    margin-bottom: 40px;
  }
  .career-interviews__heading img {
    max-width: 80vw;
    height: auto;
  }
  .career-interview-card {
    grid-template-columns: 1fr;
    gap: 5vw;
    margin-bottom: 12vw;
  }
  .career-interview-card--2 {
    grid-template-columns: 1fr;
  }
  .career-interview-card--2 .career-interview-card__content {
    order: 2;
  }
  .career-interview-card--2 .career-interview-card__figure {
    order: 1;
  }
  .career-interview-card__figure {
    justify-items: center;
  }
  .career-interview-card__image-wrapper {
    width: 45vw;
    height: 60vw;
    max-width: 210px;
    max-height: 280px;
  }
  .career-interview-card__caption {
    text-align: center;
    font-size: min(14px, 3.2vw);
  }
  .career-interview-card__content {
    padding: 0;
  }
  .career-interview-card__question {
    font-size: min(18px, 4vw);
    padding-left: 4vw;
    border-left-width: 3px;
    margin-bottom: 3vw;
  }
  .career-interview-card__answer {
    font-size: min(15px, 3.6vw);
    padding-left: 4vw;
    margin-bottom: 6vw;
    line-height: 1.8;
  }
  /* Section Title */
  .career-section-title {
    font-size: min(36px, 7vw);
  }
  /* Requirements & Alumni */
  .career-requirements,
  .career-alumni {
    padding: 60px 5vw;
  }
  .career-alumni__description {
    margin-bottom: 40px;
  }
  .career-alumni__description p {
    font-size: min(15px, 3.6vw);
    line-height: 1.8;
  }
  .career-requirements-table__row,
  .career-alumni-table__row {
    grid-template-columns: 1fr;
    gap: 2vw;
    padding: 4vw 0;
  }
  .career-requirements-table__label,
  .career-alumni-table__label {
    font-size: min(15px, 3.6vw);
    font-weight: 500;
    line-height: 1.6;
  }
  .career-requirements-table__value,
  .career-alumni-table__value {
    font-size: min(15px, 3.6vw);
    line-height: 1.8;
  }
  /* Inside CN (newgrads- prefixed sections used on career page) */
  .page-career .newgrads-inside-cn {
    padding: 60px 5vw;
  }
  .page-career .newgrads-inside-cn__title {
    font-size: min(36px, 7vw);
  }
  .page-career .newgrads-inside-cn__subtitle {
    font-size: min(15px, 3.6vw);
  }
  .page-career .newgrads-cards {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin-bottom: 12vw;
  }
  .page-career .newgrads-card__thumbnail {
    height: auto;
    aspect-ratio: 16/9;
  }
  .page-career .newgrads-card__title-area {
    padding: 0 0 8vw;
  }
  .page-career .newgrads-card__title-svg {
    height: 14vw;
    max-height: 80px;
  }
  .page-career .newgrads-card__content {
    padding: 4vw 5vw;
  }
  .page-career .newgrads-card__description {
    display: block;
    font-size: min(14px, 3.4vw);
  }
  /* Talk Contents */
  .career-talk-contents {
    padding: 0 5vw 12vw;
    margin-bottom: 12vw;
  }
  .career-talk-contents__background {
    clip-path: url(#career-talk-clip-mobile);
  }
  .career-talk-contents__wave--desktop {
    display: none;
  }
  .career-talk-contents__wave--mobile {
    display: block;
  }
  .career-talk-contents__header {
    padding: 25vw 5vw 10vw;
  }
  .career-talk-contents__title-svg {
    max-width: 80vw;
  }
  .career-talk-contents__subtitle {
    font-size: min(15px, 3.6vw);
  }
  .career-talk-contents__cards {
    grid-template-columns: 1fr;
    gap: 4vw;
    max-width: 90vw;
  }
  .career-talk-contents__card-content {
    padding: 5vw 5vw 4vw;
    margin-top: -8vw;
  }
  .career-talk-contents__card-title {
    height: 10vw;
    max-height: 48px;
    margin-bottom: 2vw;
  }
  .career-talk-contents__card-subtitle {
    font-size: min(15px, 3.6vw);
    margin-bottom: 3vw;
  }
}
/* ====================================
   Responsive Design - 小型モバイル (640px)
   ==================================== */
@media (max-width: 640px) {
  /* Hero - さらに小さい画面 */
  .career-hero {
    min-height: 80vw;
  }
  .career-hero__content {
    top: 15vw;
  }
  .career-hero__graphic {
    width: 85vw;
  }
  .career-hero__title {
    font-size: min(18px, 5vw);
  }
  /* Sub Visual - 横並びを維持（パララックス対応） */
  .career-sub-visual {
    height: 65vw;
    margin-top: -8vw;
  }
  .career-sub-visual__images {
    margin-left: 0;
  }
  .career-sub-visual__image {
    width: 43vw;
    height: 58vw;
    left: 0;
  }
  .career-sub-visual__image img {
    height: 110%;
  }
  .career-sub-visual__image--left {
    left: 4vw;
    transform: translateX(0);
    top: 3vw;
  }
  .career-sub-visual__image--right {
    left: 50vw;
    transform: translateX(0);
    top: 0;
  }
  /* Catchphrase */
  .career-catchphrase {
    margin-left: 0;
    padding: 20px 5vw;
  }
  .career-catchphrase__text {
    font-size: min(28px, 7.5vw);
  }
  .career-catchphrase__text span {
    white-space: normal;
  }
  /* Message */
  .career-message {
    padding: 40px 5vw 60px;
  }
  .career-message__content p {
    font-size: min(15px, 4vw);
  }
  /* Message images - 横並びを維持（パララックス対応） */
  .career-message__images {
    height: 65vw;
    margin-top: 30px;
  }
  .career-message__image {
    width: 44vw;
    height: 60vw;
  }
  .career-message__image img {
    height: 110%;
  }
  .career-message__image--left {
    left: 0;
    top: 3vw;
  }
  .career-message__image--right {
    left: auto;
    right: 0;
    top: 0;
  }
  /* Interview */
  .career-interview-card {
    margin-bottom: 15vw;
  }
  .career-interview-card__image-wrapper {
    width: 55vw;
    height: 73vw;
    max-width: 210px;
    max-height: 280px;
  }
  .career-interview-card__caption {
    font-size: min(13px, 3.5vw);
  }
  .career-interview-card__question {
    font-size: min(16px, 4.2vw);
  }
  .career-interview-card__answer {
    font-size: min(14px, 3.8vw);
  }
  /* Section Title */
  .career-section-title {
    font-size: min(30px, 8vw);
  }
  /* Section Headline decoration */
  .career-section-headline {
    overflow: visible;
  }
  .career-section-headline::before {
    width: 80px;
    height: 65px;
    right: 0;
    bottom: -5px;
    background-size: contain;
  }
  /* Requirements & Alumni */
  .career-requirements,
  .career-alumni {
    padding: 40px 5vw;
  }
  .career-requirements-table__label,
  .career-alumni-table__label {
    font-size: min(14px, 3.8vw);
  }
  .career-requirements-table__value,
  .career-alumni-table__value {
    font-size: min(14px, 3.8vw);
  }
  .career-alumni__description p {
    font-size: min(14px, 3.8vw);
  }
  /* Talk Contents */
  .career-talk-contents {
    padding: 0 3vw 40vw;
    margin-bottom: 10vw;
  }
  .career-talk-contents__header {
    padding: 30vw 5vw 8vw;
  }
  .career-talk-contents__card-content {
    padding: 6vw 5vw 5vw;
    margin-top: -10vw;
  }
  /* Inside CN */
  .page-career .newgrads-inside-cn {
    padding: 40px 5vw;
  }
  .page-career .newgrads-inside-cn__title {
    font-size: min(28px, 7vw);
  }
  .page-career .newgrads-inside-cn__subtitle {
    font-size: min(14px, 3.8vw);
  }
}