/* 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);
  }
}
