/* --------------------------------------------------
   RESET & BASE
-------------------------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  padding: 0 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #73D5FF;
  background-image: url(../images/logo-bg.png);
  background-repeat: no-repeat;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo img {
  height: 50px;
}

/* --------------------------------------------------
   NAVIGATION (DESKTOP)
-------------------------------------------------- */
.nav-bar {
  display: flex;
  gap: 60px;
}

.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.link-en {
  position: relative;
  font-family: 'Fugaz One';
  font-size: 18px;
  font-weight: 600;
  color: #00425D;
  transition: color 0.3s ease;
}

/* Animated underline */
.link-en::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  width: 100%;
  height: 2px;
  background-color: #00425D;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.link-en:hover {
  color: #007EA7;
}

.link-en:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.link-jp {
  font-size: 12px;
  font-weight: 500;
  color: #00425D;
}

/* --------------------------------------------------
   HAMBURGER MENU
-------------------------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  position: relative;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: #00425D;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Hidden drawer menu */
.hamburger-menu-content {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #73D5FF;
  display: flex;
  flex-direction: column;
  margin-top: 65px;
  justify-content: center;
  align-items: center;
  gap: 40px;
  transition: right 0.4s ease;
  z-index: -1;
}

/* When active */
.hamburger.active .hamburger-menu-content {
  right: 0;
}

/* Hamburger to "X" */
.hamburger.active span:nth-child(1) {
  transform: translateY(8.5px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8.5px) rotate(-45deg);
}

.main-container {
  max-width: 1120px;
}


.sub-fv {
  width: 100%;
  height: 350px;
  background: url('../images/source_image/news-fv-img.jpeg');
  background-size: cover;
  background-position: center;
  position: relative;
}

.page-title {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 350px;
  height: 80px;
  background-color: #6CD3FF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  font-weight: 800;
  color: #00425D;
  font-family: "DM Sans Bold";
}

.contact {
  display: flex;
  gap: 400px;

  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.recruit-card {
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  z-index: 2;
}

.recruit-card p {
  text-align: right;
}

.contact>img {
  position: absolute;
  left: 50%;

  transform: translateX(-50%);
  z-index: 0;
}

.contact p {
  font-size: 48px;
  color: #D28F13;

  font-family: "DM Sans Bold";
}

.contact-card {
  padding-block: 100px;
  display: flex;

  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  z-index: 2;
}



footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #6CD3FF;
  overflow: hidden;
  position: relative;
  justify-content: center;
}

.footer-container {
  display: flex;
  justify-content: space-around;
  padding-top: 100px;
  padding-bottom: 50px;
  padding-inline: 200px;
  z-index: 3 !important;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.com-logo {
  display: flex;
  flex-direction: column;
}

.com-logo img {
  width: 150px;
}

.com-logo h1 {
  font-size: 24px;
  color: #333333;
}

.com-contact {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.com-contact h2 {
  font-size: 16px;
  font-weight: 400;

  color: #333333;
}

.site-map {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}

.footer-nav-link {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.social {
  display: flex;
  gap: 30px;
}

.social img {
  width: 30px;
}

.privacy-copyright {
  display: flex;
  padding-inline: 0;
  justify-content: space-around;
  gap: unset;
  background-color: #00618B;
  color: #ffffff;
  padding-block: 10px;
  z-index: 2;
}

.footer-bg {
  position: absolute;
  right: 0;
  height: inherit;
  height: inherit;
  bottom: 0;
  z-index: 1;
}

.en-link {
  font-family: 'Fugaz One';
}

.privacy-copyright a {
  text-decoration: none;
  color: #ffffff;
}

.footer-nav-link a {
  display: flex;
  flex-direction: row;
  text-decoration: none;
  gap: 10px;
  color: #333333;
  transition: all .3s ease;
}

.footer-nav-link a:hover {
  color: #ffffff;
}

.more-btn:hover {
  cursor: pointer;
  color: #ff0000;
}

.recruit-card {
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  z-index: 2;
  transition: all .2s ease-in;
}

.contact-card {
  padding-block: 100px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: flex-end;
  z-index: 2;
  transition: all .2s ease-in;
}

.recruit-card:hover {
  scale: 1.1;
  transform: translateX(-20px);
  cursor: pointer;
  opacity: 0.8;
}

.contact-card:hover {
  scale: 1.1;
  transform: translateX(20px);
  cursor: pointer;
  opacity: 0.8;
}

.blue-space {
  width: 100%;
  height: 150px;
  background-color: #6CD3FF;
}

@media(max-width: 1280px) {
  .recruit-card:hover {
    background: rgba(0, 0, 0, 0.8);
    scale: 1;
    transform: unset;
  }

  .contact-card:hover {
    background: rgba(0, 0, 0, 0.8);
    scale: 1;
    transform: unset;
  }
}


@media(max-width: 1280px) {
  .footer-container {
    padding-inline: 100px;
  }

  .recruit-card img {
    display: none;
  }

  .contact-card img {
    display: none;
  }

  .contact {
    flex-direction: column;
    gap: 0;

  }

  .recruit-card {
    width: 100%;
    align-items: center;
    background: rgba(0, 0, 0, 0.8);
  }

  .contact-card {
    width: 100%;
    align-items: center;

    background: rgba(0, 0, 0, 0.8);
  }
}


@media (max-width: 1080px) {
  header {
    padding: 0 50px;
  }

  .nav-bar {
    display: none !important;
  }

  .hamburger {
    display: flex !important;
  }

  .fv {
    justify-content: center;
    align-items: center;
    padding: 0;
  }
}

@media(max-width: 975px) {
  .footer-container {
    padding-inline: 0;
  }
}

@media(max-width: 725px) {
  .footer-container {
    flex-direction: column;
    gap: 60px !important;
    justify-content: center;
    align-items: center;
  }

  .privacy-copyright {
    padding-inline: 0;
    justify-content: space-around;
    gap: unset;
    background-color: #00618B;
    color: #ffffff;
    padding-block: 10px;

  }

  .site-map {
    gap: 20px;
    align-items: center;
  }
}


@media(max-width: 725px) {
  .contact>img {
    width: 100%;
  }
}

@media(max-width: 440px) {
  .page-title {
    width: 100% !important;
  }
}