@charset "UTF-8";

@font-face {
  font-family: "LINE Seed JP";
  src: url(../font/LINESeedJP_OTF_Eb.woff2) format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "LINE Seed JP";
  src: url(../font/LINESeedJP_OTF_Bd.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "LINE Seed JP";
  src: url(../font/LINESeedJP_OTF_Rg.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap
}

@font-face {
  font-family: "LINE Seed JP";
  src: url(../font/LINESeedJP_OTF_Th.woff2) format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap
}

:root {
  --fv-img-webp: url(../img/common/site-fv.webp);
  --recruit-white: #fff;
  --accent: #FF5800;
  --recruit-header-h: 103px;
  --ease: cubic-bezier(.2, .6, 0, 1);
  --cta-overlap: 56px;
  --gap: 16px;
  --col: 532px;
  --half: 258px;
  --people-gap: 24px;
  --about-pad: clamp(20px, 5vw, 60px);
  --about-gap: clamp(20px, 4vw, 40px);
  --about-card-min: 260px;
  --about-card-max: 340px;
  --about-oval-w-pc: 334px;
  --about-oval-h-pc: 418px;
  --about-oval-w-sp: 262px;
  --about-oval-h-sp: 330px;
  --about-gap-fixed: 39px;
  --about-pad-fixed: 20px;
  --about-oval-ratio: calc(var(--about-oval-h-pc) / var(--about-oval-w-pc));
  --about-oval-w-fluid: clamp(220px, 26vw, var(--about-oval-w-pc));
  --ratio-gap: 4px;
  --ratio-mini-mt: 2px
}

html {
  height: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  scroll-behavior: smooth;
  touch-action: manipulation;
  user-select: auto;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--recruit-header-h, 72px) + 8px)
}

*,
*::before,
*::after {
  box-sizing: inherit
}

body {
  min-height: 100vh;
  font-family: "LINE Seed JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 2;
  color: #333;
  cursor: default;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden
}

.recruit-header {
  position: fixed;
  top: env(safe-area-inset-top, 0);
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(16px, 4vw, 4rem);
  background: color-mix(in srgb, #000 28%, transparent);
  -webkit-backdrop-filter: blur(8px) saturate(140%);
  backdrop-filter: blur(8px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .12)
}

.recruit-header__brand-link {
  display: flex;
  align-items: center;
  gap: 0;
  color: #fff;
  text-decoration: none
}

.recruit-header__brand-img {
  width: auto;
  height: auto
}

.recruit-header__site {
  font-size: 1.3rem;
  font-weight: 800
}

.recruit-header__actions {
  display: flex;
  align-items: center;
  gap: 40px
}

.recruit-header__entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 160px;
  height: 48px;
  font-size: 2rem;
  font-family: "Lato", sans-serif;
  color: #fff;
  font-weight: 700;
  background: #EB222D;
  border-radius: 32px;
  text-decoration: none
}

.recruit-header__entry-footer {
  display: none
}

.recruit-header__menu {
  position: relative;
  width: 32px;
  height: 22px;
  display: inline-block;
  border-radius: 10px;
  cursor: pointer
}

.recruit-header__menu>span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .22s var(--ease), opacity .22s var(--ease), top .22s var(--ease), background-color .22s var(--ease)
}

.recruit-header__menu>span:nth-child(1) {
  top: 0
}

.recruit-header__menu>span:nth-child(2) {
  top: 10px
}

.recruit-header__menu>span:nth-child(3) {
  top: 20px
}

body.is-nav-open {
  overflow: hidden;
  touch-action: none
}

body.is-nav-open .recruit-header {
  background: #fff !important;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
  border-radius: 0 0 40px 40px
}

body.is-nav-open .recruit-header__brand-link,
body.is-nav-open .recruit-header__site {
  color: #111
}

body.is-nav-open .recruit-header__menu>span {
  background: #333;
}

body.is-nav-open .recruit-header__menu>span:nth-child(1) {
  top: 10px;
  transform: rotate(45deg)
}

body.is-nav-open .recruit-header__menu>span:nth-child(2) {
  opacity: 0
}

body.is-nav-open .recruit-header__menu>span:nth-child(3) {
  top: 10px;
  transform: rotate(-45deg)
}

.recruit-global-nav {
  position: fixed;
  inset: auto 0 0 0;
  top: var(--recruit-header-h);
  height: calc(100dvh - var(--recruit-header-h));
  z-index: 1500;
  background: var(--accent);
  color: #fff;
  transform: translateY(-8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s
}

.recruit-global-nav.is-open {
  transform: none;
  opacity: 1;
  visibility: visible;
  transition: opacity .25s var(--ease), transform .25s var(--ease)
}

#global-nav[hidden] {
  display: none !important
}

.recruit-global-nav__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 80px 20px 76px;
  overflow: auto;
  -webkit-overflow-scrolling: touch
}

.recruit-global-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.recruit-global-nav__item {
  border-bottom: 1px solid rgba(255, 255, 255, .28);
}

.recruit-global-nav__item:last-of-type {}

.recruit-global-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 27px 4px;
  color: #fff;
  text-decoration: none;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  letter-spacing: .02em
}

.recruit-global-nav__link:hover {
  opacity: .9
}

.recruit-global-nav__link:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px
}

.recruit-global-nav__cta {
  padding-top: 20px;
  text-align: center
}

.recruit-global-nav__ctaLabel {
  margin: 0 0 12px;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 3rem
}

.recruit-global-nav__entryBtn {
  display: inline-flex;
  min-width: 308px;
  height: 64px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .14)
}

.recruit-global-nav__entryBtn:active {
  transform: translateY(1px)
}

body.is-nav-open .recruit-global-nav {
  top: 0;
  height: 100dvh
}

body.is-nav-open .recruit-global-nav__inner {
  padding-top: calc(80px + var(--recruit-header-h))
}

.recruit-cta {
  position: relative;
  background: #fff;
  /* padding: 32px 0 0; */
  padding: 0;
  padding-bottom: var(--cta-overlap)
}

.recruit-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: max(140px, calc(var(--cta-overlap) + 60px));
  background: #E04C00;
  z-index: 0;
  pointer-events: none
}

.recruit-cta__panel {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  background: #FF5800;
  color: #fff;
  border-radius: 28px;
  padding: 125px 20px 120px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  transform: translateY(var(--cta-overlap))
}

.recruit-footer__wapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto
}

.recruit-cta__title {
  margin: 0;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 800;
  font-size: 6.4rem;
  line-height: 1;
  letter-spacing: .02em
}

.recruit-cta__sub {
  margin: .6rem 0 0;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  opacity: .96
}

.recruit-cta__go {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: #fff;
  color: #FF5800;
  text-decoration: none;
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
  transition: transform .15s ease
}

.recruit-cta__go:hover {
  transform: translateX(2px)
}

.recruit-cta__go:active {
  transform: translateX(2px) scale(.98)
}

.recruit-cta__go:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .75);
  outline-offset: 3px
}

.site-footer {
  position: relative;
  z-index: 1;
  background: #E04C00;
  color: #fff;
  height: 225px;
  padding: 100px 20px 0;
  margin-top: 0;
  display: flex;
  align-items: center
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 700;
  font-size: 16px
}

.site-footer__links a {
  color: #fff;
  text-decoration: none
}

.site-footer__links a:hover {
  text-decoration: underline
}

.site-footer__links li+li {
  position: relative;
  padding-left: 18px
}

.site-footer__links li+li::before {
  content: "｜";
  position: absolute;
  left: -10px;
  top: 0;
  opacity: 1
}

.site-footer__copy {
  font-family: "Montserrat", system-ui, sans-serif;
  font-weight: 700;
  font-size: 16px
}

.site-footer {
  padding: 140px 20px 120px
}

.recruit-links {
  width: 100%;
  margin: 80px 0 140px;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap
}

.recruit-linkcard {
  position: relative;
  display: block;
  width: 520px;
  height: 320px;
  border-radius: 16px;
  overflow: hidden;
}

.recruit-linkcard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block
}

.recruit-linkcard::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .28)
}

.recruit-linkcard__label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  margin: 0;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 3.2rem;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .25)
}

.pc-hidden {
  display: none;
}

.sp-hidden {
  display: block;
}

@media (min-width:960px) {
  .recruit-global-nav__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    gap: 80px;
    padding: 80px 80px 76px
  }

  .recruit-global-nav__list {
    flex: 0 0 360px;
    max-width: 360px
  }

  .recruit-global-nav__cta {
    flex: 0 0 auto;
    padding-top: 0;
    text-align: center;
    align-self: center
  }
}

@media (max-width:780px) {
  .site-footer__links {
    flex-direction: column;
    gap: 0;
    text-align: center
  }

  .site-footer__links li+li::before {
    display: none
  }

  .site-footer__inner {
    flex-direction: column
  }

  .site-footer__copy {
    font-size: 1.1rem
  }
}

@media (max-width:640px) {
  :root {
    --recruit-header-h: 56px
  }

  .recruit-header__entry {
    display: none;
  }

  .recruit-global-nav {
    top: var(--recruit-header-h);
    height: calc(100dvh - var(--recruit-header-h))
  }

  .recruit-global-nav__link {
    padding: 16px 4px;
  }

  .recruit-global-nav__entryBtn {
    min-width: 100%;
    height: 48px
  }

  .recruit-global-nav__ctaLabel {
    font-size: 2.4rem;
  }

  body.is-nav-open .recruit-header {
    border-radius: 0;
  }
}

@media (max-width:580px) {
  .recruit-cta__panel {
    padding: 8.3rem 2rem 8rem
  }

  .recruit-cta__title {
    font-size: 2.6rem
  }

  .recruit-cta__sub {
    font-size: 1.6rem;
    margin: 1rem 0 0
  }

  .recruit-cta__go {
    width: 40px;
    height: 40px;
    font-size: 2.4rem;
  }
}

@media (max-width:560px) {
  .recruit-header__brand-img {
    max-width: 80px;
  }

  .recruit-links {
    flex-direction: column;
    align-items: center;
    margin: 30px 0 20px;
  }

  .recruit-header__entry-footer {
    position: fixed;
    bottom: 0;
    height: 48px;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 10px 0;
    background: #EB222D;
    color: #fff;
    text-decoration: none;
    font-family: "Lato", "LINE Seed JP", sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    border-radius: 16px 16px 0 0;
    z-index: 1000;
    pointer-events: auto;
    transition: transform .15s var(--ease), opacity .15s var(--ease)
  }

  body.is-nav-open .recruit-header__entry-footer {
    transform: translateY(150%);
    opacity: 0;
    pointer-events: none
  }

  .recruit-links {
    gap: 1rem;
  }

  .recruit-linkcard {
    width: 350px;
    max-width: 100%;
    height: auto;
    max-height: 180px;
    aspect-ratio: 350 /180;
  }

  .recruit-linkcard__label {
    font-size: 2rem;
  }

  .pc-hidden {
    display: block;
  }

  .sp-hidden {
    display: none;
  }
}

@media (prefers-reduced-motion:reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important
  }

  .recruit-global-nav,
  .recruit-header__menu>span {
    transition: none !important
  }
}

/* ダークモード対応 */
@media (prefers-color-scheme: dark) {
  body {
    background-color: #111;
    color: #f0f0f0;
  }

  .recruit-cta {
    background-color: #111;
  }
}