.job-page .content {
  position: relative;
  overflow: hidden;
}

.job-logo {
  max-width: 12.1875rem;
  width: fit-content;
  margin-inline: auto;
}

.job-page .footer__inner {
  padding-bottom: 8.75rem;
}


@media (min-width: 960px) {
  .job-page .main {
    position: relative;
    height: 100%;
    overflow-y: auto;
    z-index: 1;
    padding-top: 1.25rem;
  }

}

/* 固定ボタン */
.fix-buttons {
  position: fixed;
  display: flex;
  gap: 0.75rem;
  width: 100%;
  justify-content: flex-end;
  bottom: 1.5rem;
  z-index: var(--z-fix-button);
  pointer-events: none;
}

.fix-button-link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 4rem;
  width: 10.875rem;
  pointer-events: all;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 100vmax;
}

.fix-button-link::after {
  content: '';
  position: absolute;
  top: -0.1rem;
  left: -0.390625rem;
  width: 2.1875rem;
  aspect-ratio: 35/36;
  background: center/ contain no-repeat url('../images/job/bird.webp');
  transform: rotate(30deg);
}

.fix-button-trigger {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 4rem;
  padding-inline: calc(4.625rem - 2px) calc(1.5625rem - 2px);
  pointer-events: all;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--color-white);
  border: 2px solid var(--color-black);
  border-right: none;
  border-top-left-radius: 100vmax;
  border-bottom-left-radius: 100vmax;
}

.fix-button-trigger::after {
  content: '';
  position: absolute;
  bottom: 0.75rem;
  left: 0.625rem;
  width: 3.5625rem;
  aspect-ratio: 57/80;
  background: center/ contain no-repeat url('../images/job/poikusan.webp');
}

@media (min-width: 960px) {
  .fix-buttons {
    position: absolute;
    right: 3px;
    width: calc(100% - 6px);
  }
}

/* 絞り込みメニュー */

.nav {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: var(--color-white);
  z-index: var(--z-navigation);
  overscroll-behavior: contain;
  transition: transform 0.75s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.nav::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--color-white);
}

.nav[aria-hidden="true"] {
  transform: translateX(100%);
}

.nav[aria-hidden="false"] {
  transform: translateX(0);
}



.nav__inner {
  height: 100%;
  padding: 4.5rem var(--gutter-x);
  overflow-y: auto;
}

.nav-section:not(:first-child) {
  margin-top: 2.5rem;
}

.nav-section:last-child {
  padding-bottom: 6.875rem;
}

.nav-section__title {
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--color-orange);
  line-height: 1.8;
}

.nav-section__body {
  margin-top: 1rem;
}

.nav-section-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.nav-checkbox-button:has(.nav-checkbox-button-input:disabled) {
  cursor: not-allowed;
}


.nav-checkbox-button-input {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.nav-checkbox-button-label {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.1em;
  line-height: 1.8;
  border: 2px solid var(--color-border);
  border-radius: 100vmax;
  cursor: pointer;
}

.nav-checkbox-button-input:checked+.nav-checkbox-button-label {
  color: var(--color-white);
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.nav-checkbox-button-input:disabled+.nav-checkbox-button-label {
  opacity: 0.2;
  pointer-events: none;
  cursor: not-allowed;
}


.nav__submit-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
}

.nav-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 6.875rem;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--color-white) 100%);
}

.nav-bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.625rem;
  display: block;
  width: 4.5rem;
  aspect-ratio: 72/88;
  background: center / contain no-repeat url('../images/job/poikusan02.webp');
}

.nav-bottom-button {
  display: grid;
  place-items: center;
  width: 12.375rem;
  height: 4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-white);
  background: var(--color-black);
  border-radius: 100vmax;
  pointer-events: all;
}

.nav__close-button {
  position: absolute;
  top: 1.375rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
}

.nav__close-button::after {
  content: '';
  display: block;
  width: 3.125rem;
  aspect-ratio: 1;
  background: center / contain no-repeat url('../images/common/icon_menu_close.svg');
}

@media (min-width: 960px) {
  .nav {
    position: absolute;

  }
}