.recruit-header {
	font-family: serif;
  background: linear-gradient(
    to right,
    #fbfcfe,
    #dae6f3,
    #d9eaf1
  );
  backdrop-filter: blur(0.375rem);
  border-bottom: 1px solid #e5eaf0;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.recruit-header__inner {
  max-width: 75rem; /* 1200px */
  margin: 0 auto;
  padding: 1.25rem 1.5rem; /* 20px 24px */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.recruit-header__logo img {
  max-height: 2.625rem; /* 42px */
  width: auto;
  display: block;
}

.recruit-header__right {
  display: flex;
  align-items: center;
  gap: 1.75rem; /* 28px */
}

.recruit-menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-menu > li {
  position: relative;
}

.recruit-menu > li > a {
  display: inline-block;
  text-decoration: none;
  color: #033c67;
  font-size: 0.9375rem; /* 15px */
  font-weight: 500;
  padding: 0.625rem 0; /* 10px */
}

.recruit-menu > li > a:hover {
  opacity: 0.7;
}

/* ドロップダウン本体 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 13.75rem; /* 220px */
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0,0,0,0.08);
  padding: 0.625rem 0;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
}

/* hoverで表示 */
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: calc(100% + 0.5rem);
}

.dropdown li a {
  display: block;
  padding: 0.75rem 1.125rem; /* 12px 18px */
  text-decoration: none;
  color: #222;
  font-size: 0.875rem; /* 14px */
  line-height: 1.5;
  white-space: nowrap;
}

.dropdown li a:hover {
  background: #f7f7f7;
}

/* ENTRYボタン */
.recruit-header__entry a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 8.75rem; /* 140px */
  height: 2.875rem; /* 46px */
  background: #f08a24;
  color: #fff;
  text-decoration: none;
  font-size: 0.9375rem; /* 15px */
  font-weight: 700;
  border-radius: 0.375rem;
  transition: 0.2s;
}

.recruit-header__entry a:hover {
  opacity: 0.9;
  box-shadow: 0 0.25rem 0.75rem rgba(240, 138, 36, 0.3);
}



.recruit-footer {
	font-family: serif;
  background: #d8f3f8;
  background: radial-gradient(
    circle at center,
    #ebfdfd 0%,
    #d2feff 40%,
    #0490bc 100%
  );
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "YuMincho", serif;
}

.recruit-footer a {
  color: #163b67;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.recruit-footer a:hover {
  opacity: 0.7;
}

.recruit-footer__main {
  padding: 70px 20px 40px;
}

.recruit-footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.5fr;
  gap: 60px;
  align-items: start;
}

.recruit-footer__en {
  color: #ef6b22;
  font-size: 1.8rem;
  margin: 0 0 24px;
  font-weight: 600;
}

.recruit-footer__block {
  margin-bottom: 42px;
}

.recruit-footer__block h3 {
  font-size: 1.5rem;
  line-height: 1.4;
  margin: 0 0 18px;
  font-weight: 700;
  color: #003965;
}

.recruit-footer__block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-footer__block li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  line-height: 1.9;
  font-size: 1rem;
}

.recruit-footer__block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.95em;
  width: 12px;
  height: 2px;
  background: #ef6b22;
}

.recruit-footer__brand {
  text-align: center;
  margin-top: 20px;
}

.recruit-footer__logo img {
  max-width: 220px;
  height: auto;
}

.recruit-footer__company {
  margin-top: 24px;
  font-size: 1rem;
  line-height: 1.9;
  color: #444;
}

.recruit-footer__company p {
  margin: 0;
}

.recruit-footer__sns {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.recruit-footer__sns img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.recruit-footer__bottom {
  background: #b9ced6;
  padding: 16px 20px;
}

.recruit-footer__bottom-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.recruit-footer__links {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

.recruit-footer__links a,
.recruit-footer__copy {
  font-size: 1rem;
  color: #3f5f86;
}

.recruit-footer__copy {
  margin: 0;
}

@media (max-width: 900px) {
  .recruit-footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .recruit-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .recruit-footer__links {
    justify-content: center;
  }
}