/* Placeholder animation */
  @keyframes aip-placeholder-fade {
    0% {
      opacity: 1;
    }
    100% {
      opacity: 0;
    }
  }

  /* Assign placeholder animation using CSS variable */
  :root {
    --aip-placeholder-animation-name: aip-placeholder-hidden;
  }

  /* element */
  :where(.aip-elm-img) {
    display: inline-block;
    overflow: clip;
    /* contain: paint; Disabled because sub-pixel processing is different from overflow */
    vertical-align: middle;
    background-repeat: no-repeat;
  }
  :where(.aip-elm-picture) {
    display: inline-block;
    position: relative;
    --aip-placeholder-animation-state: paused;
    background-repeat: no-repeat;
  }
  :where(.aip-elm-picture)::after {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    animation-name: var(--aip-placeholder-animation-name);
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-play-state: var(--aip-placeholder-animation-state);
    background-repeat: no-repeat;
  }
  :where(.aip-elm-container) {
    position: relative;
    background-repeat: no-repeat;
  }
  :where(.aip-elm-as-background) {
    position: absolute;
    inset: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    max-width: unset;
  }

  /* layout */
  /* :where(.aip-elm-picture.aip-layout-constrained) {} */
  :where(.aip-elm-img.aip-layout-constrained) {
    /* `width` is set to the resoved value as scoped style */
    max-width: 100%;
    height: auto;
  }
  /*
  :where(.aip-elm-picture.aip-layout-fixed) {
    `width` is set to the resoved value as scoped style
  }
  */
  /* :where(.aip-elm-img.aip-layout-fixed) {} */
  :where(.aip-elm-picture.aip-layout-fullWidth) {
    width: 100%;
    height: auto;
  }
  :where(.aip-elm-img.aip-layout-fullWidth) {
    width: 100%;
    height: auto;
  }
  :where(.aip-elm-picture.aip-layout-fill) {
    width: 100%;
    height: 100%;
  }
  :where(.aip-elm-img.aip-layout-fill) {
    width: 100%;
    height: 100%;
  }a {
  cursor: revert;
  outline: revert;
}

button {
  outline: revert;
}

input,
textarea,
keygen,
select {
  all: revert;
  box-sizing: border-box;
  font: unset;
}

html {
  scroll-behavior: smooth;
  font-family: "Noto Sans JP", system-ui;
  font-optical-sizing: auto;
  scroll-padding-top: var(--header-height);
}
html:has(dialog[open]) {
  overflow: hidden;
}

body {
  position: relative;
  line-height: 1;
  color: var(--text-color);
}

img,
svg {
  vertical-align: bottom;
}

a[href]:focus-visible,
area[href]:focus-visible,
button:not([disabled]):focus-visible,
input:not([disabled]):focus-visible,
select:not([disabled]):focus-visible,
textarea:not([disabled]):focus-visible,
[tabindex]:focus-visible,
[contentEditable=true]:focus-visible {
  outline: 2px solid var(--focus-outline-color, var(--color-black));
  outline-offset: var(--focus-outline-offset, 0);
}

a[href],
button:not([disabled]) {
  transition: opacity 0.3s ease;
}

:root {
  --color-blue: #2a74d5;
  --color-blue-alt: #508cdc;
  --color-navy: #0c2f54;
  --color-sky: #d8f3ff;
  --color-teal: #129cd8;
  --color-teal-alt: #61a7f0;
  --color-navy-alt: #204185;
  --color-muted: #8596a9;
  --color-cream: #fffbf7;
  --color-black: #000;
  --color-grey: #707070;
  --color-light-grey: #c8c8c8;
  --color-mist: #e6e6ed;
  --color-haze: #f2f2f6;
  --color-white: #fff;
  --color-error: #d30000;
  --text-color: #000;
  --text-color-muted: ;
  --text-color-invert: #fff;
  --line-height-sm: 1.25;
  --line-height-md: 1.5;
  --line-height-lg: 1.75;
  --line-height-xl: 2;
  --line-height-none: 1;
  --font-size-xxs: 10px;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-2-5xl: 28px;
  --font-size-3xl: 30px;
  --font-size-3-5xl: 32px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --radius-full: calc(infinity * 1px);
  --radius-lg: 8px;
  --radius-md: 4px;
  --radius-sm: 2px;
  --radius-none: 0;
  --space-0-5: 2px;
  --space-1: 4px;
  --space-1-5: 6px;
  --space-2: 8px;
  --space-2-5: 10px;
  --space-3: 12px;
  --space-3-5: 14px;
  --space-4: 16px;
  --space-4-5: 18px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-28: 112px;
  --space-32: 128px;
  --shadow-flat: 0 4px 0 0 rgba(0, 0, 0, 0.2);
  --shadow-s: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  --shadow-m: 0 5px 10px 0 rgba(0, 0, 0, 0.15);
  --shadow-l: 0 30px 60px 0 rgba(0, 0, 0, 0.15);
  --z-index-contents: 100;
  --z-index-breadcrumbs: 200;
  --z-index-footer: 300;
  --z-index-header: 400;
  --z-index-floating: 500;
  --z-index-gnav: 600;
  --z-index-logo: 700;
  --z-index-modal: 800;
  --leading-trim: calc((1em - 1lh) / 2);
  --leading-trim-negative: calc((1em - 1lh) / -2);
  --container-desktop: 1280px;
  --container-mobile: 375px;
  --container-max: 1920px;
}

@supports not (margin-top: 1lh) {
  :root {
    /* stylelint-disable-next-line length-zero-no-unit */
    --leading-trim: 0px;
    /* stylelint-disable-next-line length-zero-no-unit */
    --leading-trim-negative: 0px;
  }
}
@keyframes slide-mask-reveal-from-left {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slide-mask-reveal-from-top {
  from {
    clip-path: inset(0 0 100% 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes slide-in-from-bottom-10rem {
  from {
    opacity: 0;
    transform: translateY(10rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slide-in-from-left-10rem {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slide-in-from-right-10rem {
  from {
    opacity: 0;
    transform: translateX(10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.skipLink:not(:focus, :active) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}
.skipLink:focus, .skipLink:active {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 1rem 2rem;
  font-weight: bold;
  color: var(--color-white);
  text-decoration: none;
  background-color: var(--color-blue);
}

.jsSlideInFromBottom10rem {
  opacity: 0;
  transform: translateY(10rem);
}
.jsSlideInFromBottom10rem.jsSlideInFromBottom10remActive {
  animation: slide-in-from-bottom-10rem 0.6s ease both;
}

.jsSlideInFromLeft10rem {
  opacity: 0;
  transform: translateX(-10rem);
}
.jsSlideInFromLeft10rem.jsSlideInFromLeft10remActive {
  animation: slide-in-from-left-10rem 0.6s ease both;
}

.jsSlideInFromRight10rem {
  opacity: 0;
  transform: translateX(10rem);
}
.jsSlideInFromRight10rem.jsSlideInFromRight10remActive {
  animation: slide-in-from-right-10rem 0.6s ease both;
}

.jsSlideInFromLeft {
  clip-path: inset(0 100% 0 0);
}
.jsSlideInFromLeft.jsSlideInFromLeftActive {
  animation: slide-mask-reveal-from-left 0.6s ease both;
}

.jsSlideInFromTop {
  clip-path: inset(0 0 100% 0);
}
.jsSlideInFromTop.jsSlideInFromTopActive {
  animation: slide-mask-reveal-from-top 0.6s ease both;
}

.u-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  white-space: nowrap;
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
}

@media screen and (min-width: 768px) {
  :root {
    --header-height: 7rem;
  }
  .spOnly {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  html {
    font-size: 0.78125vw;
  }
}

@media screen and (min-width: 1920px) {
  html {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
  }
  html.isMenuScrollLocked {
    overflow: hidden;
  }
  html.isMenuScrollLocked body {
    padding-right: var(--menu-scroll-lock-padding, 0);
  }
  :root {
    --header-height: 8.8rem;
  }
  .pcOnly {
    display: none !important;
  }
}

@media (any-hover: hover) {
  a[href]:where(:hover),
  button:not([disabled]):where(:hover) {
    opacity: 0.7;
  }
}

@media (prefers-contrast: more) {
  :root {
    --color-blue: #2058a2;
    --color-muted: #4c5a6b;
    --color-error: #b30000;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jsSlideInFromBottom10rem {
    opacity: 1;
    transform: none;
  }
  .jsSlideInFromBottom10rem.jsSlideInFromBottom10remActive {
    animation: none;
  }
  .jsSlideInFromLeft10rem {
    opacity: 1;
    transform: none;
  }
  .jsSlideInFromLeft10rem.jsSlideInFromLeft10remActive {
    animation: none;
  }
  .jsSlideInFromRight10rem {
    opacity: 1;
    transform: none;
  }
  .jsSlideInFromRight10rem.jsSlideInFromRight10remActive {
    animation: none;
  }
  .jsSlideInFromLeft {
    clip-path: inset(0 0 0 0);
  }
  .jsSlideInFromLeft.jsSlideInFromLeftActive {
    animation: none;
  }
  .jsSlideInFromTop {
    clip-path: inset(0 0 0 0);
  }
  .jsSlideInFromTop.jsSlideInFromTopActive {
    animation: none;
  }
}
.corporate[data-astro-cid-zjep7q4n] {
  background: linear-gradient(0deg, var(--color-cream) 0%, #e6faff 100%);
}

.corporateReverse[data-astro-cid-zjep7q4n] {
  background: linear-gradient(180deg, var(--color-cream) 0%, #e6faff 100%);
}

.relative[data-astro-cid-zjep7q4n] {
  position: relative;
}

.overflowHidden[data-astro-cid-zjep7q4n] {
  overflow: hidden;
}

.misc[data-astro-cid-zjep7q4n] {
  position: relative;
}

.miscBg[data-astro-cid-zjep7q4n] {
  position: absolute;
  bottom: 0;
  z-index: -1;
  width: 100%;
}

.stretch[data-astro-cid-zjep7q4n] {
  height: 100%;
}

@media screen and (min-width: 768px) {
  .container[data-astro-cid-zjep7q4n] {
    max-width: var(--container-max);
    padding-inline: 16.5rem;
    margin-inline: auto;
  }

  .container[data-astro-cid-zjep7q4n].lastChild {
    padding-bottom: 10rem;
  }

  .flow[data-astro-cid-zjep7q4n] {
    background: linear-gradient(180deg, var(--color-cream) 40rem, #e6faff 100%);
  }

  .recruitMisc[data-astro-cid-zjep7q4n] {
    background-image: radial-gradient(circle farthest-side at 80% 0, #cef5ff 0%, #0000 40rem);
  }
}

@media screen and (min-width: 1920px) {
  .miscBg[data-astro-cid-zjep7q4n] {
    left: 50%;
    width: var(--container-max);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 1919px) {
  .miscBg[data-astro-cid-zjep7q4n] {
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .container[data-astro-cid-zjep7q4n] {
    padding-inline: 1.5rem;
  }

  .container[data-astro-cid-zjep7q4n].lastChild {
    padding-bottom: 5rem;
  }

  .flow[data-astro-cid-zjep7q4n] {
    background: linear-gradient(180deg, var(--color-cream) 25rem, #e6faff 100%);
  }

  .recruitMisc[data-astro-cid-zjep7q4n] {
    background-image: radial-gradient(circle farthest-side at 90% 5rem, #cef5ff 0%, #0000 20rem);
  }
}
.overlay[data-astro-cid-plakmlc5] {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  margin-inline: auto;
  pointer-events: none;
}

.corporate[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
  --svg-color-primary: var(--color-white);
}

.recruit[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
  --svg-color-primary: var(--color-blue-alt);
}

.footer[data-astro-cid-plakmlc5] {
  position: relative;
  z-index: var(--z-index-footer);
  width: 100%;
  background-color: var(--color-white);
}

.logoSvg[data-astro-cid-plakmlc5] {
  height: auto;
}

.address[data-astro-cid-plakmlc5] {
  margin-top: 3rem;
  line-height: var(--line-height-md);
}

.marks[data-astro-cid-plakmlc5] {
  display: grid;
  margin-top: 3rem;
}

.mark[data-astro-cid-plakmlc5] {
  display: grid;
  gap: 1.6rem;
  align-items: center;
}

.markImage[data-astro-cid-plakmlc5] {
  flex-shrink: 0;
}

.markText[data-astro-cid-plakmlc5] {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  line-height: var(--line-height-lg);
}

.link[data-astro-cid-plakmlc5] {
  font-size: 1.4rem;
}

.linkTop[data-astro-cid-plakmlc5] {
  margin-top: 2rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.linkTop[data-astro-cid-plakmlc5] a[data-astro-cid-plakmlc5] {
  display: inline-flex;
  align-items: center;
}

.linkBottom[data-astro-cid-plakmlc5] {
  font-weight: bold;
}

.icon[data-astro-cid-plakmlc5] {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: .6rem;
}

.copyright[data-astro-cid-plakmlc5] {
  display: block;
  margin-top: 1.6rem;
  font-family: Barlow, system-ui;
  font-size: 1.2rem;
  font-weight: 500;
}

.corporate[data-astro-cid-plakmlc5] {
  color: var(--text-color);
  background-color: var(--color-white);
}

.corporate[data-astro-cid-plakmlc5] .logoSvg[data-astro-cid-plakmlc5] {
  color: var(--color-navy);
}

.recruit[data-astro-cid-plakmlc5] {
  color: var(--text-color-invert);
  background-color: var(--color-blue-alt);
}

.recruit[data-astro-cid-plakmlc5] .logoSvg[data-astro-cid-plakmlc5] {
  color: var(--color-white);
}

.recruit[data-astro-cid-plakmlc5] .logoSvg[data-astro-cid-plakmlc5] path[data-astro-cid-plakmlc5], .recruit[data-astro-cid-plakmlc5] .logoSvg[data-astro-cid-plakmlc5] polygon[data-astro-cid-plakmlc5] {
  fill: var(--color-white);
}

@media screen and (min-width: 768px) {
  .footer[data-astro-cid-plakmlc5] {
    padding-bottom: 3.2rem;
  }

  .footer[data-astro-cid-plakmlc5].corporate {
    padding-top: 3.5rem;
  }

  .footer[data-astro-cid-plakmlc5].recruit {
    padding-top: 2rem;
  }

  .grid[data-astro-cid-plakmlc5] {
    display: grid;
    grid-template-rows: auto auto;
  }

  .corporate[data-astro-cid-plakmlc5] .grid[data-astro-cid-plakmlc5] {
    grid-template-columns: 60rem 1fr;
  }

  .recruit[data-astro-cid-plakmlc5] .grid[data-astro-cid-plakmlc5] {
    grid-template-columns: 1fr 1fr;
  }

  .logo[data-astro-cid-plakmlc5] {
    grid-column: 1;
  }

  .logoSvg[data-astro-cid-plakmlc5] {
    width: 18.9rem;
  }

  .nav[data-astro-cid-plakmlc5] {
    display: flex;
    flex-direction: column;
    grid-row: 1 / 3;
    grid-column: 2;
    justify-content: flex-end;
  }

  .address[data-astro-cid-plakmlc5] {
    grid-column: 1;
    font-size: 1.4rem;
  }

  .marks[data-astro-cid-plakmlc5] {
    grid-template-columns: 3fr 2fr 2fr;
    gap: 4.2rem;
  }

  .mark[data-astro-cid-plakmlc5] {
    grid-template-columns: repeat(2, auto);
  }

  .markImage[data-astro-cid-plakmlc5] {
    width: auto;
    height: 4.8rem;
  }

  .markImage[data-astro-cid-plakmlc5].pMark {
    height: 6.8rem;
  }

  .links[data-astro-cid-plakmlc5] {
    margin-top: 3.2rem;
  }

  .linkBottom[data-astro-cid-plakmlc5] {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1919px) {
  .overlay[data-astro-cid-plakmlc5] {
    width: 100%;
    height: auto;
  }

  .corporate[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -12.8rem;
    aspect-ratio: 1280 / 130;
  }

  .recruit[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -23.8rem;
  }
}

@media screen and (min-width: 1920px) {
  .overlay[data-astro-cid-plakmlc5] {
    width: 100%;
    -o-object-fit: fill;
    object-fit: fill;
  }

  .corporate[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -13rem;
    height: 13.1rem;
  }

  .recruit[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -24.2rem;
    height: 24.3rem;
  }
}

@media screen and (max-width: 767px) {
  .overlay[data-astro-cid-plakmlc5] {
    width: 100%;
    height: auto;
  }

  .corporate[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -4.8rem;
  }

  .recruit[data-astro-cid-plakmlc5] .overlay[data-astro-cid-plakmlc5] {
    top: -6.2rem;
  }

  .overlay[data-astro-cid-plakmlc5].pcOnly {
    display: none;
  }

  .footer[data-astro-cid-plakmlc5] {
    padding-bottom: 2rem;
  }

  .grid[data-astro-cid-plakmlc5] {
    display: grid;
    grid-template-rows: repeat(3, auto);
  }

  .logo[data-astro-cid-plakmlc5] {
    padding-top: 2rem;
    text-align: center;
  }

  .logoSvg[data-astro-cid-plakmlc5] {
    width: 11.7rem;
  }

  .address[data-astro-cid-plakmlc5] {
    font-size: 1.2rem;
  }

  .marks[data-astro-cid-plakmlc5] {
    grid-template-rows: repeat(3, auto);
    gap: 2.4rem;
  }

  .mark[data-astro-cid-plakmlc5] {
    grid-template-columns: 5.5rem auto;
  }

  .markImage[data-astro-cid-plakmlc5] {
    display: block;
    width: 5rem;
    height: auto;
    margin-inline: auto;
  }

  .markImage[data-astro-cid-plakmlc5].pMark {
    width: 5.5rem;
  }

  .links[data-astro-cid-plakmlc5] {
    display: flex;
    gap: 1.6rem;
    justify-content: center;
    margin-top: 4rem;
  }

  .link[data-astro-cid-plakmlc5] {
    text-align: center;
  }

  .linkTop[data-astro-cid-plakmlc5] {
    display: none;
  }

  .copyright[data-astro-cid-plakmlc5] {
    text-align: center;
  }
}
.blue[data-astro-cid-dsg3jbzm].contained {
  --text-color: var(--color-white);
  --background-color: var(--color-blue);
  --border-color: var(--color-blue);
  --svg-color-primary: var(--color-navy);
  --svg-color-secondary: var(--color-white);
}

.blue[data-astro-cid-dsg3jbzm].outlined {
  --text-color: var(--color-navy);
  --background-color: var(--color-white);
  --border-color: var(--color-blue);
  --svg-color-primary: var(--color-white);
  --svg-color-secondary: var(--color-blue);
}

.navy[data-astro-cid-dsg3jbzm].contained {
  --text-color: var(--color-white);
  --background-color: var(--color-navy);
  --border-color: var(--color-navy);
  --svg-color-primary: var(--color-navy);
  --svg-color-secondary: var(--color-white);
}

.navy[data-astro-cid-dsg3jbzm].outlined {
  --text-color: var(--color-navy);
  --background-color: var(--color-white);
  --border-color: var(--color-navy);
  --svg-color-primary: var(--color-white);
  --svg-color-secondary: var(--color-navy);
}

.button[data-astro-cid-dsg3jbzm] {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .4rem .9rem .4rem 1.1rem;
  line-height: 1;
  color: var(--text-color);
  text-decoration: none;
  background-color: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
}

.button[data-astro-cid-dsg3jbzm].md {
  width: 17rem;
}

.button[data-astro-cid-dsg3jbzm].lg {
  width: 24rem;
}

.button[data-astro-cid-dsg3jbzm].corporateHeader {
  font-weight: bold;
}

.button[data-astro-cid-dsg3jbzm].recruitFooter {
  width: 22.4rem;
}

[data-astro-cid-dsg3jbzm]:where(.text) {
  flex-grow: 1;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: .05em;
}

.icon[data-astro-cid-dsg3jbzm] {
  flex-shrink: 0;
  width: 3.1rem;
  height: 3.1rem;
}

.iconSvg[data-astro-cid-dsg3jbzm] {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 768px) {
  .button[data-astro-cid-dsg3jbzm].company {
    width: 15rem;
  }

  .button[data-astro-cid-dsg3jbzm].corporateHeader {
    width: 15.7rem;
  }

  .button[data-astro-cid-dsg3jbzm].recruitHeader {
    width: 22.4rem;
  }
}

@media screen and (max-width: 767px) {
  .button[data-astro-cid-dsg3jbzm].company {
    width: 17rem;
  }

  .button[data-astro-cid-dsg3jbzm].corporateHeader {
    width: 14.7rem;
  }

  .button[data-astro-cid-dsg3jbzm].corporateHeader .icon[data-astro-cid-dsg3jbzm] {
    width: 2.4rem;
    height: 2.4rem;
  }

  .button[data-astro-cid-dsg3jbzm].recruitHeader {
    width: 17.9rem;
    padding-left: .5rem;
  }

  .button[data-astro-cid-dsg3jbzm].recruitHeader .text[data-astro-cid-dsg3jbzm] {
    font-size: 1.2rem;
  }

  .button[data-astro-cid-dsg3jbzm].recruitHeader .icon[data-astro-cid-dsg3jbzm] {
    width: 2.4rem;
    height: 2.4rem;
  }
}
@property --menu-toggle-icon-color {
  syntax: "<color>";
  inherits: false;
  initial-value: #000;
}

.header[data-astro-cid-vqhb33ao] {
  position: sticky;
  top: 0;
  z-index: var(--z-index-header);
  height: var(--header-height);
  background-color: var(--color-white);
  box-shadow: 0 .3rem .6rem #00000029;
}

.container[data-astro-cid-vqhb33ao] {
  height: 100%;
}

.grid[data-astro-cid-vqhb33ao] {
  display: grid;
  height: 100%;
}

.logo[data-astro-cid-vqhb33ao] {
  position: relative;
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-available;
  height: -webkit-fill-available;
  height: stretch;
  color: var(--color-navy);
}

.logoSvg[data-astro-cid-vqhb33ao] {
  width: auto;
  height: 5rem;
}

.link[data-astro-cid-vqhb33ao] {
  display: flex;
  gap: .5rem;
  align-items: center;
  height: 2.1rem;
  font-weight: bold;
  letter-spacing: .05em;
}

.link[data-astro-cid-vqhb33ao]:before {
  display: block;
  align-self: start;
  width: 1rem;
  height: 1rem;
  content: "";
}

.icon[data-astro-cid-vqhb33ao] {
  width: 1.2rem;
  height: 1.2rem;
}

.button[data-astro-cid-vqhb33ao] {
  display: flex;
  align-items: center;
  height: -moz-available;
  height: -webkit-fill-available;
  height: stretch;
}

.toggleButton[data-astro-cid-vqhb33ao] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.4rem;
  height: 5.4rem;
  color: var(--text-color-invert);
  cursor: pointer;
}

.toggleIcon[data-astro-cid-vqhb33ao] {
  width: 2.4rem;
  height: 2.4rem;
}

@media screen and (min-width: 768px) {
  .container[data-astro-cid-vqhb33ao] {
    max-width: var(--container-max);
    padding-inline: 16.5rem;
    margin-inline: auto;
  }

  .grid[data-astro-cid-vqhb33ao] {
    grid-template-columns: 1fr auto auto auto;
  }

  .stage[data-astro-cid-vqhb33ao] {
    height: 100%;
  }

  .items[data-astro-cid-vqhb33ao] {
    display: flex;
    gap: 3rem;
    align-items: center;
    height: 100%;
  }

  .link[data-astro-cid-vqhb33ao] {
    font-size: 1.4rem;
    color: var(--color-navy);
  }

  .link[data-astro-cid-vqhb33ao]:before {
    background-color: var(--color-mist);
  }

  .button[data-astro-cid-vqhb33ao] {
    padding-left: 3rem;
  }

  .toggle[data-astro-cid-vqhb33ao] {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .container[data-astro-cid-vqhb33ao] {
    padding-left: 1.5rem;
  }

  .grid[data-astro-cid-vqhb33ao] {
    grid-template-columns: 1fr auto auto;
  }

  .logo[data-astro-cid-vqhb33ao] {
    z-index: 3;
    width: 10rem;
  }

  .header[data-astro-cid-vqhb33ao].isMenuOpen .logoSvg[data-astro-cid-vqhb33ao] {
    --svg-color-primary: #fff;
  }

  .menu[data-astro-cid-vqhb33ao] {
    position: fixed;
    inset: 0;
    z-index: 2;
    visibility: hidden;
    padding-left: 3.3rem;
    pointer-events: none;
    background: linear-gradient(-90deg, #b8e8fd 0%, #508cdc 100%);
    opacity: 0;
    transition: opacity .3s, visibility 0s linear .3s;
  }

  .menu[data-astro-cid-vqhb33ao].isOpen {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
    transition: opacity .3s, visibility;
  }

  .stage[data-astro-cid-vqhb33ao] {
    max-height: 100vh;
    padding-top: 8rem;
  }

  .items[data-astro-cid-vqhb33ao] {
    display: grid;
    grid-auto-flow: row;
    gap: 2rem;
    max-height: calc(100vh - 8rem);
    padding-block: 3rem;
    overflow-y: auto;
  }

  .link[data-astro-cid-vqhb33ao] {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.6rem;
    color: var(--text-color-invert);
  }

  .link[data-astro-cid-vqhb33ao]:before {
    background-color: #ffffff4f;
  }

  .button[data-astro-cid-vqhb33ao] {
    margin-right: .6rem;
  }

  .toggle[data-astro-cid-vqhb33ao] {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
  }

  .toggleIcon[data-astro-cid-vqhb33ao] {
    --menu-toggle-icon-color: var(--color-blue);
    --svg-color-primary: var(--menu-toggle-icon-color);
    transition: --menu-toggle-icon-color .3s;
  }

  .header[data-astro-cid-vqhb33ao].isMenuOpen .toggleIcon[data-astro-cid-vqhb33ao] {
    --menu-toggle-icon-color: #fff;
  }
}

@media (prefers-reduced-motion: reduce) {
  .menu[data-astro-cid-vqhb33ao], .toggleIcon[data-astro-cid-vqhb33ao] {
    transition: none;
  }
}
.footerNav[data-astro-cid-6lojvkcz] {
  display: grid;
}

.category[data-astro-cid-6lojvkcz] {
  padding-bottom: .6rem;
  font-family: Barlow, system-ui;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid var(--text-color-invert);
}

.items[data-astro-cid-6lojvkcz] {
  display: flex;
  margin-top: 1.4rem;
}

.link[data-astro-cid-6lojvkcz] {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .footerNav[data-astro-cid-6lojvkcz] {
    grid-template-rows: auto auto;
    gap: 4rem;
    width: 37.3rem;
  }

  .items[data-astro-cid-6lojvkcz] {
    gap: 2.5rem;
    justify-content: center;
    margin-top: 1.6rem;
  }

  .link[data-astro-cid-6lojvkcz] {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .footerNav[data-astro-cid-6lojvkcz] {
    gap: 1.6rem;
    margin-top: 1rem;
  }

  .items[data-astro-cid-6lojvkcz] {
    justify-content: space-between;
  }

  .link[data-astro-cid-6lojvkcz] {
    font-size: 1.6rem;
  }
}
.recruitLayout[data-astro-cid-4oi4oiij] {
  position: relative;
  z-index: var(--z-index-contents);
  color: var(--color-navy);
}
