@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: 0 0 80px 80px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

.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;
  line-height: 1.43;
  transition: opacity 0.2s;
}

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

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

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

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

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

.career-info-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-info-hero-heading {
  display: flex;
  align-items: flex-start;
  gap: 4px;
}

.career-info-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-info-hero-heading .heading-icon {
  width: 40px;
  height: 40px;
      margin-top: -18px;
    margin-left: -6px;
}

/* ======================== */
/* Banner Image             */
/* ======================== */
.career-info-banner {
  width: 100%;
  height: 498px;
  overflow: hidden;
}

.career-info-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ======================== */
/* Job Detail Section       */
/* ======================== */
.job-detail-section {
  max-width: 744px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.job-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #101010;
}

.job-tags {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

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

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

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

.job-separator {
  width: 100%;
  height: 1px;
  background: #C2C2C2;
  margin: 32px 0;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.job-detail-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-detail-label {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  color: #101010;
}

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

.job-submit-section {
  margin-top: 44px;
}

.job-submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  background: #101010;
  color: #FFFFFF;
  border: none;
  border-radius: 8px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  cursor: pointer;
  transition: opacity 0.2s;
}

.job-submit-btn:hover {
  opacity: 0.85;
}

/* ======================== */
/* Other Jobs Section       */
/* ======================== */
.other-jobs-section {
  background: #E6E6E6;
  margin-top: 80px;
  padding: 0;
}

.other-jobs-inner {
  width: 1128px;
  max-width: 100%;
  margin: 0 auto;
  padding: 80px 0;
}

.other-jobs-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 64px;
  margin-bottom: 0;
}

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

.other-jobs-heading-title {
  font-family: 'Inter', sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.33;
  text-transform: uppercase;
  text-align: center;
  color: #101010;
  width: 100%;
}

.other-jobs-list {
  padding: 80px 0;
}

.job-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #101010;
  text-decoration: none;
  transition: opacity 0.2s;
}

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

.job-row-title {
  width: 262px;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #101010;
}

.job-row-tags {
  width: 264px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

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

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

.job-row-desc {
  width: 480px;
  flex-shrink: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.71;
  color: #585858;
}

.job-row-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

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

/* ======================== */
/* 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: 24px 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);
}

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

  .career-info-hero {
    min-height: 200px;
  }

  .career-info-hero-content {
    padding: 56px 40px;
  }

  .career-info-banner {
    height: 360px;
  }

  .job-detail-section {
    max-width: 100%;
    padding: 0 40px;
    margin-top: 60px;
  }

  .other-jobs-inner {
    padding: 60px 40px;
  }

  .other-jobs-list {
    padding: 60px 0;
  }

  .job-row-desc {
    width: auto;
    flex: 1;
  }

  .footer-cta-area {
    padding: 60px 40px;
    min-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;
  }
  
 .mobile-menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  /* --- Hero --- */
  .career-info-hero {
    height: 200px;
    padding: 0;
    align-items: flex-start;
  }

  .career-info-hero-content {
    padding: 120px 16px 40px;
    gap: 0;
  }

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

  .career-info-hero-heading {
    gap: 2px;
  }

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

  .career-info-hero-heading .heading-icon {
    width: 10px;
    height: 10px;
    margin-top:-13px;
  }

  /* --- Banner --- */
  .career-info-banner {
    height: 240px;
  }

  /* --- Job Detail --- */
  .job-detail-section {
    padding: 0 16px;
    margin-top: 40px;
  }

  .job-title {
    font-size: 16px;
    line-height: 1.75;
  }

  .job-tags {
    flex-direction: column;
    gap: 8px;
  }

  .job-tag-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .job-separator {
    margin: 24px 0;
  }

  .job-details {
    gap: 24px;
  }

  .job-detail-label {
    font-size: 14px;
    line-height: 1.75;
  }

  .job-detail-text {
    font-size: 12px;
    line-height: 2;
  }

  .job-submit-section {
    margin-top: 32px;
  }

  /* --- Other Jobs --- */
  .other-jobs-section {
    margin-top: 48px;
  }

  .other-jobs-inner {
    padding: 40px 16px;
  }

  .other-jobs-heading {
    height: 73px;
    justify-content: center;
  }

  .other-jobs-heading-label {
    font-size: 10px;
    line-height: 1.48;
  }

  .other-jobs-list {
    padding: 40px 0;
  }

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

  .job-row-title {
    width: 100%;
    font-size: 16px;
    line-height: 1.75;
  }

  .job-row-tags {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
  }

  .job-row-tag-text {
    font-size: 12px;
    line-height: 1.5;
  }

  .job-row-desc {
    width: 100%;
    font-size: 12px;
    line-height: 2;
  }

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

  .other-jobs-list a:hover .job-row-arrow {
    transform: translateX(0px);
  }

  /* --- 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: 48px 16px 38px;
    gap: 0;
  }

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

  .footer-company-info {
    width: 100%;
    margin-top: 20px;
  }

  .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;
  }
}
