@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:700,500,900|Oswald:700,500|Zen+Old+Mincho:400,500,700|Cinzel:400,500,600,700|EB+Garamond:400,500,600,700|Niconne:400");
header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  font-family: "Zen Old Mincho";
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 1024px) {
  header {
    height: 60px;
  }
}
header.transparent {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
  box-shadow: none;
}
header .header-container {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 min(40px, 5vw);
  margin: 0 auto;
  position: relative;
  z-index: 101;
}
@media (max-width: 1150px) {
  header .header-container {
    padding: 0 20px;
    justify-content: space-between;
  }
}
header .header-container .header-logo {
  flex-shrink: 0;
}
header .header-container .header-logo img {
  height: max(45px, 4vh);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1150px) {
  header .header-container .header-logo img {
    height: 20px;
    margin-right: 0;
  }
}
header .header-container .menu-button {
  display: none;
}
@media (max-width: 1150px) {
  header .header-container .menu-button {
    display: flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #00479D;
    cursor: pointer;
    position: relative;
    z-index: 101;
  }
  header .header-container .menu-button::before {
    content: "";
    width: 17px;
    height: 30px;
    background: url(../../images/common/header-menu-icon.svg) no-repeat center center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
  }
  header .header-container .menu-button.active {
    border-color: #00479D;
    background-color: #00479D;
  }
  header .header-container .menu-button.active::before {
    content: "×";
    background: none;
    color: #ffffff;
    font-size: 24px;
    width: auto;
    height: auto;
  }
}
header .header-container .header-nav {
  margin-left: auto;
}
@media (max-width: 1150px) {
  header .header-container .header-nav {
    display: none;
  }
}
header .header-container .header-nav nav {
  display: flex;
  gap: min(32px, 3vw);
  align-items: center;
}
header .header-container .header-nav nav a {
  font-size: 18px;
  line-height: 26px;
  color: #333333;
  text-decoration: none;
  letter-spacing: 0.08em;
}
header .header-container .header-nav nav a:hover {
  color: #B7B7B7;
}
header .header-container .header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 20px;
}
@media (max-width: 1150px) {
  header .header-container .header-actions {
    display: none;
  }
}
header .header-nav.sp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #ffffff;
  padding: 100px min(150px, 10%) 60px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  display: none;
  z-index: 99;
}
@media (max-width: 1150px) {
  header .header-nav.sp {
    padding: 90px 20px 100px;
  }
}
header .header-nav.sp.active {
  transform: translateY(0);
  display: block;
}
header .header-nav.sp nav a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-decoration: none;
  padding: 24px 0;
  border-bottom: 1px solid #B7B7B7;
}
header .header-nav.sp nav a:last-child {
  border-bottom: none;
}
header .header-nav.sp nav a div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
header .header-nav.sp nav a div span {
  font-size: 20px;
  line-height: 29px;
  color: #333333;
}
header .header-nav.sp nav a div p {
  font-size: 13px;
  line-height: 16px;
  color: #00479D;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
}
header .header-nav.sp nav a .nav-title-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #00479D;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00479D;
  position: relative;
}
header .header-nav.sp nav a .nav-title-icon::after {
  content: "";
  color: #00479D;
  width: 10px;
  height: 6px;
  background-image: url("../../images/common/arrow-right-blue.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
header .header-nav.sp .mobile-cta {
  margin-top: 40px;
  display: flex;
  gap: 12px;
}
header .header-nav.sp .mobile-cta .header-cta {
  width: 100%;
  justify-content: center;
}
header .header-cta {
  min-width: 120px;
  padding: 10px 24px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 26px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}
header .header-cta--outline {
  border: 1px solid #00479D;
  color: #00479D;
  background: transparent;
}
header .header-cta--outline:hover {
  background: #00479D;
  color: #ffffff;
}
header .header-cta--primary {
  border: 1px solid #00479D;
  background: #00479D;
  color: #ffffff;
}
header .header-cta--primary:hover {
  background: #ffffff;
  color: #00479D;
}

.recruit-header {
  backdrop-filter: blur(10px) brightness(120%);
  -webkit-backdrop-filter: blur(10px) brightness(120%);
  background: rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}
.recruit-header.scrolled {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.recruit-header .header-container {
  margin: 0 auto;
  padding: 24px min(40px, 5%);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.recruit-header .header-logo img {
  height: 32px;
  width: auto;
}
.recruit-header .header-navbar-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.recruit-header .header-navbar-container nav {
  display: flex;
  gap: 20px;
}
.recruit-header .header-navbar-container .navbar-link-text {
  font-size: 18px;
  line-height: 26px;
  color: #333333;
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.1em;
}
.recruit-header .header-navbar-container .navbar-link-text:hover {
  color: #5687c1;
}
.recruit-header .header-navbar-container .navbar-link-text[href*="/interview"] {
  position: relative;
  padding-right: 24px;
}
.recruit-header .header-navbar-container .navbar-link-text[href*="/interview"]::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #00479D;
}
.recruit-header .header-navbar-container .navbar-link-text[href*="/interview"]:hover::after {
  color: #00479D;
}
.recruit-header .header-navbar-container .header-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 24px;
  background-color: #5687c1;
  border: 1px solid #5687c1;
  border-radius: 20px;
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 0.1em;
}
.recruit-header .header-navbar-container .header-contact-button:hover {
  background-color: #ffffff;
  color: #5687c1;
}
.recruit-header .header-navbar-container .header-contact-button:last-child {
  background-color: #3381CE;
  color: #ffffff;
}
.recruit-header .header-navbar-container .header-contact-button:last-child:hover {
  background-color: #ffffff;
  color: #3381CE;
}
@media (max-width: 1150px) {
  .recruit-header .header-container {
    padding: 16px min(20px, 5%);
  }
  .recruit-header .header-logo img {
    height: 24px;
  }
  .recruit-header .header-navbar-container {
    display: none;
  }
  .recruit-header .menu-button {
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    position: relative;
    cursor: pointer;
  }
  .recruit-header .menu-button span::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url("../../images/common/menu-icon.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.recruit-header .mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-color: #ffffff;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1150px) {
  .recruit-header .mobile-menu.active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
.recruit-header .mobile-menu-container {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0));
  min-height: 100%;
  box-sizing: border-box;
}
.recruit-header .mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.recruit-header .mobile-menu-header .header-logo img {
  height: 20px;
  width: auto;
}
.recruit-header .mobile-menu-header .close-button {
  width: 40px;
  height: 40px;
  border: 1px solid #00479D;
  background-color: #00479D;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.recruit-header .mobile-menu-header .close-button::before {
  content: "×";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
}
.recruit-header .mobile-menu nav {
  flex: 1 1 auto;
  overflow-y: auto;
  margin-bottom: 20px;
}
.recruit-header .mobile-menu nav .menu-item {
  border-bottom: 1px solid #B7B7B7;
}
.recruit-header .mobile-menu nav .menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
}
.recruit-header .mobile-menu nav .menu-item-header > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.recruit-header .mobile-menu nav .menu-item-header span:first-child {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.recruit-header .mobile-menu nav .menu-item-header span.menu-link-en {
  font-size: 13px;
  line-height: 16px;
  color: #00479D;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1em;
}
.recruit-header .mobile-menu nav .menu-item-header .toggle-button {
  width: 32px;
  height: 32px;
  border: 1px solid #4186d8;
  background-color: #ffffff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
}
.recruit-header .mobile-menu nav .menu-item-header .toggle-button::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4186d8;
  width: 12px;
  height: 12px;
  font-size: 16px;
  line-height: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.recruit-header .mobile-menu nav .menu-item-header .toggle-button.active::after {
  content: "";
  display: block;
  color: #4186d8;
  width: 12px;
  height: 1px;
  background-image: none;
  background-color: #4186d8;
  border-radius: 1px;
  transform: translate(-50%, -50%);
  min-width: 12px;
  opacity: 1;
  visibility: visible;
}
.recruit-header .mobile-menu nav .menu-item-content {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  padding: 0 0 0 20px;
}
.recruit-header .mobile-menu nav .menu-item-content.active {
  height: auto;
  padding: 16px 0 16px 20px;
}
.recruit-header .mobile-menu nav .menu-item-content a {
  display: block;
  color: #333333;
  text-decoration: none;
  font-size: 14px;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.recruit-header .mobile-menu nav .menu-item-content a:hover {
  color: #00479D;
}
.recruit-header .mobile-menu nav .menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  text-decoration: none;
  border-bottom: 1px solid #B7B7B7;
}
.recruit-header .mobile-menu nav .menu-link div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.recruit-header .mobile-menu nav .menu-link div span:first-child {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}
.recruit-header .mobile-menu nav .menu-link .nav-title-icon {
  width: 32px;
  height: 32px;
  border: 1px solid #4186d8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4186d8;
  position: relative;
}
.recruit-header .mobile-menu nav .menu-link .nav-title-icon::after {
  content: "→";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4186d8;
  width: 10px;
  height: 6px;
  font-size: 14px;
  line-height: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recruit-header .mobile-menu nav .menu-link[href*="/interview"] .nav-title-icon {
  position: relative;
}
.recruit-header .mobile-menu nav .menu-link[href*="/interview"] .nav-title-icon::after {
  content: "";
  display: block;
  color: #333333;
  width: 12px;
  height: 12px;
  background-image: url("../../images/common/icon-plus.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.recruit-header .mobile-menu-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-bottom: env(safe-area-inset-bottom, 0);
  position: relative;
}
.recruit-header .mobile-menu-buttons .header-contact-button {
  width: 100%;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border-radius: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.recruit-header .mobile-menu-buttons .header-contact-button:first-child {
  background-color: #5687c1;
  border: 1px solid #5687c1;
  color: #ffffff;
}
.recruit-header .mobile-menu-buttons .header-contact-button:last-child {
  background-color: #3381CE;
  border: 1px solid #3381CE;
  color: #ffffff;
  margin-bottom: env(safe-area-inset-bottom, 0);
}

.interview-dropdown {
  position: static;
}
.interview-dropdown .interview-toggle {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
}
.interview-dropdown .interview-toggle::after {
  content: "+";
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4186d8;
  width: 12px;
  height: 12px;
  font-size: 16px;
  line-height: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  left: auto;
}
.interview-dropdown .interview-toggle.active {
  color: #00479D;
}
.interview-dropdown .interview-toggle.active::after {
  content: "";
  background-image: none;
  width: 12px;
  height: 2px;
  background-color: #00479D;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.interview-dropdown .interview-content {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  width: 100vw;
  background-color: #5687c1;
  padding: 32px 0;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
  transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease;
  z-index: 99;
}
@media (max-width: 1150px) {
  .interview-dropdown .interview-content {
    top: 60px;
  }
}
.interview-dropdown .interview-content.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}
.interview-dropdown .interview-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 24px;
  width: 100%;
  padding: 0 min(320px, 22%);
  justify-content: space-between;
}
@media (max-width: 1150px) {
  .interview-dropdown .interview-cards {
    grid-template-columns: 1fr;
    padding: 0 min(20px, 5%);
  }
}
.interview-dropdown .interview-card {
  width: 100%;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
  overflow: hidden;
}
.interview-dropdown .interview-card:hover {
  opacity: 0.8;
}
.interview-dropdown .interview-card .card-image {
  width: 100%;
  min-height: 155px;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.interview-dropdown .interview-card .card-content {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.interview-dropdown .interview-card .card-content .text-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.interview-dropdown .interview-card .department {
  font-size: 12px;
  color: #333333;
}
.interview-dropdown .interview-card .members {
  color: #333333;
  font-size: 16px;
  font-weight: bold;
}
.interview-dropdown .interview-card .arrow-icon {
  flex-shrink: 0;
  content: "";
  width: 24px;
  height: 24px;
  font-size: 10px;
  background-color: #00479D;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview-dropdown .interview-card .arrow-icon::after {
  content: "";
  color: #333333;
  width: 10px;
  height: 6px;
  background-image: url("../../images/common/arrow-right-black.svg");
  background-size: contain;
  background-position: center;
}/*# sourceMappingURL=header.css.map */