@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  overflow-x: hidden;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: #101010;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* ======================== */
/* Navigation               */
/* ======================== */
.nav-container {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1128px;
  max-width: calc(100% - 40px);
  z-index: 100;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 80px;
  height: 56px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #101010;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #5FA9D1;
}

.nav-links a.nav-active {
  color: #585858;
}

.nav-contact-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  height: 40px;
  background: #101010;
  color: #FFFFFF !important;
  border-radius: 80px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}

.nav-contact-btn:hover {
  background: #333;
}

.nav-container.nav-scrolled {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #101010;
  transition: transform 0.3s, opacity 0.3s;
}

/* ======================== */
/* Hero Section             */
/* ======================== */
.career-hero {
  width: 100%;
  height: 264px;
  background: #5FA9D1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.career-hero-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1440px;
  padding: 56px 40px;
  margin: 0 auto;
}

.career-hero-heading {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.career-hero-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #FFFFFF;
}

.career-hero-title-row {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.career-hero-title-text {
  font-family: 'Inter', sans-serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-left: -5px;
}

.career-hero-plus {
  width: 40px;
  height: 40px;
  margin-top: 10px;
}

/* ======================== */
/* Team Culture Section     */
/* ======================== */
.culture-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 120px;
  padding: 80px 156px;
}

.culture-photo {
  width: 456px;
  height: 504px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.culture-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-content {
  width: 552px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.culture-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #585858;
  height: 24px;
  display: flex;
  align-items: center;
}

.culture-text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.culture-text-group-mob {
  display: none;
}
.culture-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.667;
  color: #101010;
}

.culture-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.14;
  color: #101010;
}

/* ======================== */
/* Benefit Section          */
/* ======================== */
.benefit-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 80px 0;
}

.benefit-header {
  width: 100%;
  padding: 0 156px;
  height: 64px;
  display: flex;
  flex-direction: column;
}

.benefit-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #585858;
  text-align: center;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  text-transform: uppercase;
  color: #101010;
  text-align: center;
}

.benefit-grid {
  width: 1128px;
  max-width: calc(100% - 40px);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.benefit-card {
  width: 264px;
  height: 128px;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-image: url('../imgs/career-benefit-card-12c1d7.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.benefit-card-heading {
  width: 176px;
  height: 28px;
}

.benefit-card-heading h3 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #101010;
}

.benefit-card-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #585858;
  line-break: strict;
}

/* ======================== */
/* Interview Section        */
/* ======================== */
.interview-section {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* background-image: url('../imgs/career-culture-bg.png'); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.interview-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(126deg, rgba(132, 195, 229, 1) 0%, rgba(255, 255, 255, 0) 35%, rgba(169, 207, 228, 1) 79%, rgba(148, 202, 232, 1) 95%);
  z-index: 0;
}

.interview-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 80px 0 80px 156px;
}

.interview-left {
  width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.interview-header {
  display: flex;
  flex-direction: column;
  height: 64px;
}

.interview-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  color: #585858;
  height: 24px;
  display: flex;
  align-items: center;
}

.interview-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.333;
  text-transform: uppercase;
  color: #101010;
}

.interview-catchphrase {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.667;
  color: #101010;
}
.interview-catchphrase-mob {
  display: none;
}

.interview-carousel {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  max-width: calc(100% - 384px);
  overflow: hidden;
  touch-action: pan-y;
  -webkit-user-select: none;
  user-select: none;
}

.interview-cards {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.interview-card {
  width: 360px;
  height: 456px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 16px;
  overflow: hidden;
}

/* .interview-card--tall {
  height: 492px;
} */

.interview-card-photo {
  width: 100%;
  height: 220px;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.interview-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interview-card-photo--gray {
  background: #585858;
}

.interview-card-body {
  width: 328px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 16px;
}

.interview-card-meta {
  width: 100%;
  display: flex;
  align-items: self-start;
  flex-direction: column;
  gap: 8px;
}

.interview-card-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.15px;
  color: #101010;
  white-space: nowrap;
}

.interview-card-dept {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  letter-spacing: -0.15px;
  color: #585858;
  white-space: nowrap;
}

.interview-card-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.interview-card-highlight {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  color: #101010;
}

.interview-card-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 2;
  color: #101010;
  line-break: strict;
}

.interview-nav-btn {
  position: absolute;
  top: 136px;
  width: 40px;
  height: 40px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
  z-index: 5;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.interview-nav-btn:hover {
  opacity: 0.8;
}

.interview-nav-prev {
  left: 0;
}

.interview-nav-next {
  right: 0;
}

/* ======================== */
/* Gallery Section          */
/* Figma：Frame 74 — 底图 Rectangle + 独立 recruit 图层，非单张带字合成图 */
/* ======================== */
.gallery-section {
  width: 100%;
}

.gallery-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1440 / 664;
  max-height: 664px;
  margin: 0 auto;
  overflow: hidden;
  background: #101010;
}

.recruit{
  width: 100%;
  max-width: 100%;
  position: absolute;
  left: 0px;
  bottom: -30px;
}
.recruit-inner{
  width:1128px;
  margin: 0 auto;
}

.gallery-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 略偏上，减弱合成图里底部与 RECRUIT 重叠的字；真底图-only 资源可改为 center */
  object-position: center 28%;
  display: block;
}



/* Figma Frame 74：recruit x:156, y:595；略上移避免与下方白底交界处裁切字形 */
.gallery-recruit-title {
  position: absolute;
  left: calc(100% * 156 / 1440);
  top: calc(100% * 575 / 664);
  right: auto;
  bottom: auto;
  margin: 0;
  transform: translateY(-4px);
  max-width: calc(100% - 100% * 156 / 1440 - 16px);
  font-family: 'Inter', sans-serif;
  /* 图层视觉约 540×98，大字横排 */
  font-size: clamp(40px, 6.25vw, 96px);
  white-space: nowrap;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  z-index: 1;
  pointer-events: none;
}

/* ======================== */
/* Job Listings Section     */
/* ======================== */
.jobs-section {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 156px;
}

.jobs-list {
  width: 1128px;
  max-width: 100%;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
}

/* 网格：各列上下居中对齐，与稿面 262 / 264 / 说明 / 箭头 一致 */
.job-row {
  display: grid;
  grid-template-columns: 262px 264px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #101010;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

/* .job-row:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
} */

.job-row:hover {
  opacity: 0.7;
}

.job-title {
  width: 100%;
  max-width: 262px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #101010;
  margin: 0;
  align-self: center;
}

.job-tags {
  width: 100%;
  max-width: 264px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-self: center;
}

.job-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 20px;
}

.job-tag-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.job-tag span {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #585858;
}

.job-desc {
  width: 100%;
  max-width: 480px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  color: #585858;
  margin: 0;
  align-self: center;
}

.job-arrow {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  margin-right: 48px;
  align-self: center;
}

.job-arrow img,.jobs-list a {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.jobs-list a:hover {
  opacity: 1;
  transform: translateX(10px);
}

/* ======================== */
/* CTA Section              */
/* ======================== */
.cta-section {
  width: 100%;
  height: 480px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(123deg, rgba(132, 195, 229, 1) 5%, rgba(255, 255, 255, 0) 40%, rgba(169, 207, 228, 1) 80%, rgba(148, 202, 232, 1) 95%),
    rgba(255, 255, 255, 0.2);
}

.cta-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  height: 100%;
  position: relative;
}

.cta-photo-column {
  position: absolute;
  left: 157px;
  top: 0;
  bottom: 0;
  width: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.cta-photo-scroll-track {
  position: relative;
  width: 100%;
  flex: 1;
  overflow: hidden;
  border-radius: 8px;
  margin-top: 22px;
}

.cta-photo-scroll-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  animation: ctaScrollUp 20s linear infinite;
}

.cta-photo-scroll-inner img {
  width: 100%;
  display: block;
  margin-bottom: 22px;
  border-radius: 10px;
}

@keyframes ctaScrollUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes ctaScrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-516px); }
}

.cta-glass-panel {
  position: absolute;
  left: 670px;
  top: 206px;
  width: 552px;
  height: 200px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
}

.cta-title {
  position: absolute;
  left: 636px;
  top: 140px;
  width: 503px;
  height: 40px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.111;
  text-align: center;
  color: #101010;
}

.cta-text {
  position: absolute;
  left: 636px;
  top: 220px;
  width: 562px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #101010;
}

.cta-right {
  display: none;
}

.cta-photo-stack {
  display: none;
}

.jobs-more-btn {
  display: none;
}

.cta-title-resp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 1.111;
  color: #101010;
}

.cta-text-resp {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
  color: #101010;
}


/* ======================== */
/* Footer                   */
/* ======================== */
.company-footer {
  position: relative;
  width: 100%;
  background-image: url('../imgs/footer-bg-350a86.png');
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.footer-cta-area {
  padding: 80px 156px;
}

.footer-cta-cards {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.footer-cta-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 49px;
  flex: 1;
  max-width: 554px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  text-decoration: none;
  color: #101010;
  transition: background 0.3s ease;
}

.footer-cta-card:hover {
  background: rgba(255, 255, 255, 0.6);
}

.footer-cta-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  color: #101010;
}

.footer-cta-sub {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-cta-desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: #585858;
}

.footer-cta-arrow {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.footer-cta-arrow img {
  width: auto;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.footer-cta-cards a:hover .footer-cta-arrow img {
  opacity: 1;
  transform: translateX(20px);
}

.footer-bottom {
  padding: 0 156px;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
}

.footer-bottom-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px 32px;
}

.footer-info {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  /* flex: 1; */
  margin-top: 50px;
  width: 409px;
}

.footer-company-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  color: #585858;
}

.footer-address {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #585858;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  flex: 1;
  gap: 16px;
  align-content: start;
}

.footer-links a {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #585858;
  text-decoration: none;
  padding: 4px 16px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #5FA9D1;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-divider {
  width: 100%;
  height: 1px;
  background: #C2C2C2;
}
.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
}

.footer-copyright {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #C2C2C2;
}

.footer-privacy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.43;
  color: #C2C2C2;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy:hover {
  color: #585858;
}


/* ======================== */
/* Scroll Animations        */
/* ======================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* ======================== */
/* Responsive: 1280px       */
/* ======================== */
@media (max-width: 1280px) {
  .nav-inner {
    padding: 0 40px;
  }

  .career-hero {
    /*padding: 56px 40px;*/
  }

  .career-hero-heading {
    width: 100%;
  }

  .culture-section {
    padding: 60px 40px;
    gap: 60px;
  }

  .culture-photo {
    width: 360px;
    height: 400px;
  }

  .culture-content {
    width: auto;
    flex: 1;
  }

  .benefit-section {
    padding: 60px 0;
  }

  .benefit-header {
    padding: 0 40px;
  }

  .benefit-grid {
    width: auto;
    padding: 0 40px;
    justify-content: center;
  }

  .interview-inner {
    padding: 60px 0 60px 40px;
  }

  .interview-left {
    width: 280px;
  }

  .gallery-inner {
    max-height: none;
  }


  /* 位置仍用 156/1440 与 595/664 比例，与 PC 稿一致 */

  .jobs-section {
    padding: 0 40px;
  }

  .jobs-list {
    width: 100%;
  }

  .job-row {
    grid-template-columns: 180px 200px minmax(0, 1fr) auto;
  }

  .job-title {
    max-width: 180px;
  }

  .job-tags {
    max-width: 200px;
  }

  .job-desc {
    max-width: none;
  }

  .cta-section {
    height: auto;
    min-height: 480px;
  }

  .cta-inner {
    display: flex;
    align-items: flex-start;
    padding: 60px 40px;
    gap: 40px;
  }

  .cta-photo-column {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    width: 300px;
    height: 400px;
    flex-shrink: 0;
  }

  .cta-photo-scroll-track {
    margin-top: 0;
  }

  .cta-glass-panel,
  .cta-title,
  .cta-text {
    display: none;
  }

  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    padding-top: 40px;
  }

  .footer-cta-area {
    padding: 60px 40px;
    height: auto;
  }

  .footer-bottom {
    padding: 0 40px;
    margin-top: 0;
  }

  .footer-info {
    flex-direction: column;
  }

  .footer-links {
    grid-template-columns: repeat(3, auto);
  }
}

/* ======================== */
/* Responsive: 768px        */
/* ======================== */
@media (max-width: 768px) {

  /* --- Navigation --- */
  .nav-container {
    max-width: calc(100% - 32px);
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    margin-top: 30px;
  }

  .nav-container.nav-scrolled {
    background: transparent;
    box-shadow: none;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 24px;
    gap: 16px;
    border-radius: 16px;
    box-shadow: none;
  }

  .nav-links.open {
    display: flex;
  }

  .mobile-menu-btn {
    display: flex;
  }

  /* --- Hero --- */
  .career-hero {
    height: 200px;
    padding: 120px 16px 40px;
  }

  .career-hero-inner{
    gap: 0px;
    padding: 0px;
  }

  .career-hero-heading {
    width: 100%;
    gap: 0px;
  }

  .career-hero-label {
    font-size: 10px;
    line-height: 1.2;
  }

  .career-hero-title-text {
    font-size: 32px;
    line-height: 1.21;
    margin-left: -2px;
  }

  .career-hero-plus {
    width: 10px;
    height: 10px;
    margin-top: 8px;
    margin-left: -2px;
  }

  /* --- Culture --- */
  .culture-section {
    flex-direction: column;
    padding: 40px 16px 64px;
    gap: 64px;
  }

  .culture-content {
    width: 100%;
    order: -1;
  }

  .culture-photo {
    width: 100%;
    height: 400px;
    order: 1;
  }

  .culture-label {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    line-height: 1.21;
  }

  .culture-text-group{
    display: none;
  }
  .culture-text-group-mob{
    display: block;
  }

  .culture-heading {
    font-size: 16px;
    line-height: 2;
  }

  .culture-body {
    color: #585858;
    margin-top:26px;
  }

  /* --- Benefit --- */
  .benefit-section {
    padding: 40px 0 64px;
    gap: 40px;
  }

  .benefit-header {
    padding: 0 16px;
    height: 72px;
    justify-content: center;
    align-items: center;
  }

  .benefit-label {
    font-size: 10px;
    line-height: 1.48;
  }

  .benefit-grid {
    max-width: 100%;
    padding: 0 16px;
    gap: 24px 16px;
  }

  .benefit-card {
    width: calc(50% - 8px);
    height: 144px;
    min-height: auto;
    padding: 16px;
    gap: 8px;
    background-image: none;
    background-image: url('../imgs/career-benefit-card-12c1d7.png');
  }

  .benefit-card-heading {
    width: 100%;
    height: auto;
  }

  .benefit-card-heading h3 {
    font-size: 14px;
    line-height: 1.48;
  }

  .benefit-card-desc {
    font-size: 12px;
    line-height: 2.33;
  }

  /* --- Interview --- */
  .interview-section {
    height: 768px;
    /* background-image: url('../imgs/interview-bg.png'); */
    background-size: 100% 100%;
    background-position: center;
  }

  .interview-inner {
    padding: 64px 0 80px;
    flex-direction: column;
    gap: 24px;
  }

  .interview-left {
    width: 100%;
    gap: 24px;
    padding-right: 0;
  }

  .interview-header {
    height: 73px;
    padding: 0 16px;
    justify-content: center;
  }

  .interview-label {
    font-size: 10px;
    line-height: 1.48;
  }

  .interview-catchphrase {
    padding: 0 16px;
    font-size: 16px;
    line-height: 2;
  }
  .interview-catchphrase-pc {
    display: none;
  }
  .interview-catchphrase-mob {
    display: block;
  }

  .interview-carousel {
    width: calc(100% - 32px);
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    flex: none;
  }

  .interview-card {
    width: 100%;
    height: 415px;
    border-radius: 7px;
    gap: 15px;
    padding-bottom: 15px;
  }

  .interview-card--tall {
    height: 415px;
  }

  .interview-card-photo {
    height: 200px;
    border-radius: 7px 7px 0 0;
  }

  .interview-card-body {
    width: calc(100% - 30px);
    gap: 15px;
  }

  .interview-card-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    height: auto;
  }

  .interview-card-name {
    font-size: 16px;
    line-height: 1.14;
  }

  .interview-card-dept {
    font-size: 12px;
    line-height: 1.52;
  }

  .interview-card-content {
    gap: 7px;
  }

  .interview-card-highlight {
    font-size: 14px;
    line-height: 1.3;
  }

  .interview-card-text {
    font-size: 12px;
    line-height: 2.13;
  }

  .interview-nav-btn {
    top: 80px;
    width: 23px;
  }
  .interview-nav-btn svg{
    width: 23px;
  }

  .interview-nav-prev {
    left: 0;
  }

  .interview-nav-next {
    right: 0;
  }

  /* --- Gallery：独立标题层，避免窄屏 cover 裁切掉半行字 --- */
  .gallery-inner {
    aspect-ratio: 360 / 220;
    max-height: none;
  }

  .gallery-bg-img {
    object-position: center 22%;
  }

  .gallery-recruit-title {
    left: 16px;
    top: calc(100% * 560 / 664);
    transform: translateY(-4px);
    font-size: clamp(28px, 10.5vw, 40px);
    font-weight: 400;
    line-height: 1.05;
    max-width: calc(100% - 32px);
    white-space: nowrap;
  }

  .recruit-inner{
    width: 100%;
  }
  .recruit-inner img{
    position: absolute;
    width: 200px;
    left: 0px;
    bottom:20px;
  }

  /* --- Jobs --- */
  .jobs-section {
    padding: 0 16px;
  }

  .jobs-list {
    padding: 40px 0 0;
    gap: 0;
  }
  .jobs-list a:hover .job-arrow img {
    opacity: 1;
    transform: translateX(0px);
  }

  .job-row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #C2C2C2;
  }

  .job-row:first-child {
    border-top: none;
  }

  .job-row:nth-child(n+5) {
    display: none;
  }

  .job-row:nth-child(n+5).show {
    display: flex;
  }

  .job-title {
    width: 100%;
    max-width: none;
    font-size: 16px;
    line-height: 1.75;
    align-self: stretch;
  }

  .job-tags {
    width: 100%;
    max-width: none;
    flex-direction: column;
    gap: 8px;
    align-self: stretch;
    align-items: flex-start;
  }

  .job-desc {
    width: 100%;
    max-width: none;
    font-size: 14px;
    line-height: 1.71;
    align-self: stretch;
  }

  .job-arrow {
    width: 16px;
    height: 16px;
    align-self: flex-end;
    margin-right: 0px;
  }

  .job-arrow img {
    width: 16px;
    height: 16px;
  }

  .jobs-more-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 40px 0 64px;
    background: none;
    border: none;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 2;
    color: #585858;
    text-decoration: none;
    cursor: pointer;
  }

  /* --- CTA --- */
  .cta-section {
    height: 688px;
    overflow: visible;
  }

  .cta-inner {
    position: relative;
    display: block;
    padding: 0;
    height: 100%;
  }

  .cta-photo-column {
    display: none;
  }

  .cta-glass-panel {
    display: none;
  }

  .cta-title {
    display: none;
  }

  .cta-text {
    display: none;
  }

  .cta-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: absolute;
    top: 58px;
    left: 16px;
    right: 16px;
    padding-top: 0;
    text-align: left;
    align-items: flex-start;
  }

  .cta-title-resp {
    font-size: 20px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
    width: 100%;
  }

  .cta-text-resp {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
    width: 100%;
    color: #585858;
  }

  .cta-photo-stack {
    display: block;
    position: absolute;
    top: 408px;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 200px;
  }

  .cta-photo-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: ctaScrollLeft 15s linear infinite;
  }

  .cta-photo-stack img {
    width: 156px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  /* --- Footer --- */
  .company-footer {
    height: 864px;
    position: relative;
    overflow: hidden;
    background-image: url(../imgs/footer_bg_mob.png) !important;
  }

  .footer-cta-area {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 864px;
    padding: 0 16px;
    background-size: cover;
    background-position: center;
  }

  .footer-cta-cards {
    position: absolute;
    top: 64px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    gap: 16px;
  }

  .footer-cta-card {
    padding: 16px 0;
    border-radius: 4px;
    gap: 4px;
    align-items: center;
  }

  .footer-cta-title {
    font-size: 16px;
    line-height: 2;
  }

  .footer-cta-desc {
    font-size: 14px;
    line-height: 1.71;
  }

  .footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 448px;
    padding: 0;
    background: rgba(255, 255, 255, 0.9);
  }

  .footer-bottom-inner {
    position: relative;
    height: 100%;
    padding: 32px 16px 0px;
    max-width: 100%;
    padding-top: 20px;
  }

  .footer-info {
    flex-direction: column;
    gap: 48px;
  }

  .footer-company-info{
    width: 100%;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 0px;
  }

  .footer-links a {
    width: calc(50% - 8px);
    padding: 0;
    font-size: 14px;
    line-height: 1.43;
  }

  .footer-social {
    position: absolute;
    bottom: 75px;
    left: 16px;
    padding: 0 10px;
    gap: 32px;
    width: 100%;
  }
  .footer-divider{
    display: none;
  }
  .footer-bottom-bar {
    position: absolute;
    bottom: 34px;
    left: 16px;
    right: 16px;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
    border-top: 1px solid #C2C2C2;
    padding-top: 67px;
  }

  .footer-copyright {
    font-size: 10px;
    line-height: 2;
  }

  .footer-privacy {
    font-size: 10px;
    line-height: 2;
  }
}
