@charset "UTF-8";
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
          user-select: none !important;
}

html {
  font-size: var(--ja-text-base, 16px);
  color: var(--ja-color-black);
}

body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  background: #fff;
  font-family: var(--ja-font-base);
  font-weight: 400;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
}

button {
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
  inset: 0;
}

:where(a) {
  text-decoration: none;
  color: currentColor;
}

:where(img) {
  vertical-align: top;
}

:root {
  --ja-container-base: 400px;
  --ja-width-ratio: calc(400 / var(--ja-container-base) * 100%);
  --ja-vw: calc(100vw / var(--ja-container-base));
  --ja-text-base: calc(16 / var(--ja-width-ratio));
  --ja-font-base: "DNP 秀英丸ゴシック Std", "DNP Shuei Mgothic Std", "MFW-UDShinGoNTPr6N-Light", "MFW-UDShinGoHangKoc-Lig", "Zen Maru Gothic", "Yu Gothic", "YuGothic", "Meiryo", sans-serif;
  --ja-font-en: "New Hero", "Outfit", "Arial", sans-serif;
  --ja-color-black: #000000;
  --ja-color-1: #503F20;
  --ja-color-2: #F4EED1;
  --ja-color-3: #78CA74;
  --ja-color-4: #F0AF3B;
  --ja-color-5: #21A3BD;
  --ja-color-primary: #058673;
  --ja-z-header: 10;
  --ja-z-menu: 9;
  --ja-hover-opacity: 0.6;
}
@media (min-width: 768px) {
  :root {
    --ja-width-ratio: calc(375 / var(--ja-container-base) * 100%);
    --ja-vw: calc(400px / var(--ja-container-base));
  }
}
@media (min-width: 1500px) {
  :root {
    --ja-vw: calc(580px / var(--ja-container-base));
  }
}

.siteContainer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas: "main";
  background: var(--ja-color-3);
}
@media (min-width: 768px) {
  .siteContainer {
    grid-template-columns: 1fr auto;
    grid-template-areas: "nav main";
  }
}
@media (min-width: 1160px) {
  .siteContainer {
    grid-template-columns: 1fr auto 1fr;
    grid-template-areas: "nav main kv";
  }
}
@media (min-width: 1500px) {
  .siteContainer {
    grid-template-columns: 1fr auto 1fr;
  }
}

.siteNav {
  position: relative;
  z-index: 3;
  display: none;
  grid-area: nav;
  position: sticky;
  top: 0;
  height: 100dvh;
}
@media (min-width: 768px) {
  .siteNav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: calc(75 / 1920 * 100vw) 0 calc(75 / 1920 * 100vw) calc(64 / 1920 * 100vw);
  }
}

.siteKv {
  grid-area: kv;
  display: none;
  position: sticky;
  top: 0;
  height: 100dvh;
}
@media (min-width: 1160px) {
  .siteKv {
    display: block;
  }
}

.siteMain {
  position: relative;
  z-index: 3;
  container-type: main;
  grid-area: main;
  opacity: 0;
  transition: opacity 0.7s 0.5s ease;
  width: 100%;
}
@media (min-width: 768px) {
  .siteMain {
    width: 400px;
    margin-inline: calc(64 / 1920 * 100vw);
  }
}
@media (min-width: 1500px) {
  .siteMain {
    width: 580px;
    margin-inline: calc(64 / 1920 * 100vw);
  }
}
body.is-ready .siteMain {
  opacity: 1;
}

.hover-opacity {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .hover-opacity:hover {
    opacity: var(--ja-hover-opacity);
  }
}

.c-section {
  position: relative;
}
.c-section::before {
  content: "";
  position: absolute;
  top: calc(20px * var(--ja-vw));
  left: 0;
  width: 100%;
  height: calc(100% - 20px * var(--ja-vw));
  background: var(--ja-color-3);
  border-radius: calc(40px * var(--ja-vw));
}
.c-section .c-section_container {
  position: relative;
  z-index: 1;
  padding-bottom: calc(36px * var(--ja-vw));
}

.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(20px * var(--ja-vw));
}
.c-heading .c-heading_sub {
  position: relative;
  font-size: calc(10px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--ja-color-5);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: calc(-4px * var(--ja-vw));
}
.c-heading .c-heading_title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: calc(138px * var(--ja-vw));
  height: calc(32px * var(--ja-vw));
  padding-inline: 1.5em;
  font-size: calc(16px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.1em;
  background: #fff;
  border-radius: 100vmax;
}

.c-buttonWrapper {
  display: flex;
  justify-content: center;
  gap: calc(6px * var(--ja-vw));
}
.c-buttonWrapper:not(:first-child) {
  margin-top: calc(28px * var(--ja-vw));
}

.c-button {
  all: unset;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5em 2em;
  min-width: calc(110px * var(--ja-vw));
  min-height: calc(28px * var(--ja-vw));
  font-size: calc(10px * var(--ja-vw));
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--ja-color-4);
  border-radius: 100vmax;
  box-shadow: 3px 5px #ffffff;
  transition: 0.3s ease;
  line-height: 1.3;
  cursor: pointer;
}
.c-button.--primary {
  background-color: var(--ja-color-primary);
}
@media (any-hover: hover) {
  .c-button:hover {
    opacity: var(--ja-hover-opacity);
    box-shadow: 0 0;
  }
}

.c-squereButton {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 235/67;
  width: calc(235 / 1920 * 100vw);
  text-align: center;
  font-size: calc(20 / 1920 * 100vw);
  font-weight: bold;
  color: #fff;
  background: var(--ja-color-4);
  border-radius: calc(25 / 1920 * 100vw);
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .c-squereButton:hover {
    opacity: var(--ja-hover-opacity);
  }
}
.c-squereButton.--primary {
  background-color: var(--ja-color-primary);
}

.c-link {
  color: var(--ja-color-5);
}
@media (any-hover: hover) {
  .c-link:hover {
    text-decoration: underline;
  }
}

.c-dot {
  margin-inline: -0.2em;
}

.nav {
  padding: 0;
  max-height: 100%;
}
.nav .container {
  width: 100%;
  margin-inline: auto;
  padding: calc(24 / 1920 * 100vw) calc(45 / 1920 * 100vw);
  border-radius: min(20 / 1920 * 100vw, 20px);
  background: #fff;
  overflow: auto;
  max-height: calc(100dvh - 128 / 1920 * 100vw);
}
.nav .heading {
  display: flex;
  align-items: baseline;
  justify-content: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.nav .heading .heading_logo {
  width: calc(320 / 1920 * 100vw);
}
.nav .heading .heading_text {
  width: calc(200 / 1920 * 100vw);
}
.nav .navSection {
  display: grid;
  justify-content: center;
}
.nav .navSection:not(:first-child) {
  margin-top: calc(40 / 1920 * 100vw);
}
.nav .navHeading {
  margin-bottom: calc(6 / 1920 * 100vw);
  font-size: max(18 / 1920 * 100vw, 16px);
  font-weight: bold;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ja-color-5);
}
.nav .menu_list {
  display: grid;
  row-gap: min(30 / 1920 * 100vw, 20px);
}
.nav .menu_list li {
  line-height: 1;
}
.nav .menu_list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 1.94em;
  padding-inline: 1em;
  font-size: clamp(14px, 18 / 1920 * 100vw, 18px);
  font-weight: bold;
  background: #fff;
  border-radius: 100vmax;
  border: 2px solid #000;
}
.nav .recruit .recruit_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: calc(19 / 1920 * 100vw);
}
.nav .recruit .recruit_button {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 235/67;
  width: 11.75em;
  font-size: max(20 / 1920 * 100vw, 18px);
  color: #fff;
  font-weight: bold;
  background: var(--ja-color-4);
  border-radius: calc(20 / 1920 * 100vw);
}
.nav .recruit .recruit_banner {
  width: calc(280 / 1920 * 100vw);
}
.nav .sns .sns_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: calc(8 / 1920 * 100vw);
}
.nav .sns .sns_list a {
  display: block;
  width: 57px;
}
@media (min-width: 768px) {
  .nav {
    width: 100%;
    max-width: 417px;
  }
}
@media (min-width: 1160px) {
  .nav {
    width: auto;
  }
  .nav .heading .heading_logo {
    width: calc(185 / 1920 * 100vw);
  }
  .nav .heading .heading_text {
    width: calc(133 / 1920 * 100vw);
  }
  .nav .recruit .recruit_banner {
    width: calc(205 / 1920 * 100vw);
  }
  .nav .sns .sns_list a {
    width: calc(57 / 1920 * 100vw);
  }
}

.kv {
  position: relative;
  height: 100%;
  position: relative;
}
.kv .kvImage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kv .kvImage::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  mix-blend-mode: multiply;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease-in;
}
.kv .kvImage:hover::before {
  opacity: 0.3;
}
.kv .kvImage_text {
  position: absolute;
  z-index: 1;
  top: calc(30 / 1920 * 100vw);
  width: 26.8656716418%;
  opacity: 0;
  transform: translateY(5px);
  transition: 0.8s 0.8s ease-in-out;
  transition-property: opacity, transform;
  will-change: transform;
}
.kv .kvImage_text:is(.kvImage.--left *) {
  left: calc(30 / 1920 * 100vw);
}
.kv .kvImage_text:is(.kvImage.--right *) {
  right: calc(30 / 1920 * 100vw);
}
.kv .kvImage_src {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  will-change: scale;
  backface-visibility: hidden;
}
.kv .kvLogo {
  position: absolute;
  z-index: 2;
  bottom: calc(53 / 1920 * 100vw);
  left: 50%;
  transform: translateX(-50%);
  width: 82.7%;
}
.kv .splide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.kv .splide__slide {
  height: 100dvh;
}
.kv .splide__slide.is-active .kvImage .kvImage_text, .kv .splide__slide.is-prev .kvImage .kvImage_text, .kv .splide__slide .kvImage.is-prev .kvImage_text {
  opacity: 1;
  transform: none;
}
.kv .splide__slide.is-active .kvImage .kvImage_src, .kv .splide__slide.is-prev .kvImage .kvImage_src, .kv .splide__slide .kvImage.is-prev .kvImage_src {
  animation: kv-scale 12s linear forwards;
}
.kv .kvPointer {
  position: fixed;
  left: calc(-72.5 / 1920 * 100vw);
  top: calc(-72.5 / 1920 * 100vw);
  pointer-events: none;
  opacity: 0;
  transition: 0.2s ease-out;
  z-index: 2;
  pointer-events: none;
}
.kv .kvPointer img {
  display: block;
  width: calc(145 / 1920 * 100vw);
  height: calc(145 / 1920 * 100vw);
  -o-object-fit: contain;
     object-fit: contain;
}
.kv .kvPointer.is-active {
  opacity: 1;
  transition: opacity 0.3s 0.5s ease-out, transform 0.3s ease-out;
}
@keyframes kv-scale {
  0% {
    scale: 1;
  }
  0% {
    scale: 1.08;
  }
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ja-color-2);
  min-height: var(--ja-vh);
}
.page > *:not(.footerBefore):nth-last-child(2) {
  padding-bottom: calc(96 / 1920 * 100vw);
}
.page .header {
  position: sticky;
  z-index: var(--ja-z-header);
  top: 0;
}
.page .header .container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: calc(4px * var(--ja-vw));
       column-gap: calc(4px * var(--ja-vw));
  padding: calc(12px * var(--ja-vw)) calc(8px * var(--ja-vw)) calc(12px * var(--ja-vw));
  background: #fff;
}
.page .header .logo {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(4px * var(--ja-vw));
       column-gap: calc(4px * var(--ja-vw));
  margin-left: 0;
  margin-right: auto;
  padding-inline: calc(8px * var(--ja-vw));
}
.page .header .logo_main {
  width: calc(120px * var(--ja-vw));
}
.page .header .logo_theme {
  width: calc(38px * var(--ja-vw));
}
.page .header .link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(36px * var(--ja-vw));
  padding: calc(5px * var(--ja-vw)) calc(10px * var(--ja-vw));
  font-size: max(14px, 9px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.075em;
  color: #fff;
  background: var(--ja-color-3);
  border-radius: calc(16px * var(--ja-vw));
}
.page .header .menu {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: calc(5px * var(--ja-vw));
  width: calc(40px * var(--ja-vw));
  aspect-ratio: 1/1;
  border-radius: 100%;
  background: #000;
}
@media (min-width: 768px) {
  .page .header .menu {
    display: none;
  }
}
.page .header .menu .menu_bar {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(18px * var(--ja-vw));
  height: 2px;
  background: #fff;
  border-radius: 100vmax;
  transition: 0.3s;
}
.page .header .menu .menu_bar:nth-child(1) {
  top: calc(50% - 6px);
}
.page .header .menu .menu_bar:nth-child(3) {
  top: calc(50% + 6px);
}
body.is-open-menu .page .header .menu .menu_bar:nth-child(1) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.is-open-menu .page .header .menu .menu_bar:nth-child(2) {
  opacity: 0;
}
body.is-open-menu .page .header .menu .menu_bar:nth-child(3) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.page .header .headerNav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100dvh;
  background: #fff;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .page .header .headerNav {
    display: none !important;
  }
}
.page .header .headerNav .navList {
  padding: calc(80px * var(--ja-vw)) calc(26px * var(--ja-vw)) calc(40px * var(--ja-vw));
}
.page .header .headerNav .navList_item {
  padding-left: calc(26px * var(--ja-vw));
  border-bottom: 1px solid var(--ja-color-3);
}
.page .header .headerNav .navList_item > a {
  display: flex;
  align-items: center;
  min-height: 3.89em;
  padding: 0.25em 0;
  font-size: calc(18px * var(--ja-vw));
  font-weight: bold;
  line-height: 1.3;
}
.page .header .headerNav .navSubList {
  display: grid;
  row-gap: calc(10px * var(--ja-vw));
  padding-bottom: calc(28px * var(--ja-vw));
}
.page .header .headerNav .navSubList_item {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(14px * var(--ja-vw));
       column-gap: calc(14px * var(--ja-vw));
  font-size: max(14px, 9px * var(--ja-vw));
}
.page .header .headerNav .navSubList_item::before {
  content: "";
  aspect-ratio: 12/9;
  width: 1.167em;
  background: url("/recruit/assets/images/icon_arrow.svg") 0 0 no-repeat;
  background-size: contain;
}
.page .header .headerNav .navSubList_item > a {
  flex: 1;
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.3;
  padding-block: 0.25em;
}
body.is-open-menu .page .header .headerNav {
  opacity: 1;
  transform: none;
  transition: 0.5s 0.2s ease;
  pointer-events: all;
}
.page .footer {
  margin: auto 0 0;
  padding: calc(16px * var(--ja-vw));
  background: #fff;
}
.page .footer .head {
  display: flex;
  align-items: center;
  -moz-column-gap: calc(10px * var(--ja-vw));
       column-gap: calc(10px * var(--ja-vw));
  margin-inline: calc(-4px * var(--ja-vw));
}
.page .footer .head_logo img {
  display: block;
  width: calc(166px * var(--ja-vw));
}
.page .footer .head_text {
  width: calc(110px * var(--ja-vw));
}
.page .footer .address {
  margin-top: calc(10px * var(--ja-vw));
  font-style: normal;
  font-size: calc(10px * var(--ja-vw));
  line-height: 1.4;
}
.page .footer .bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.page .footer .copy {
  font-size: calc(10px * var(--ja-vw));
  letter-spacing: -0.025em;
}
.page .footer .sns {
  display: flex;
  -moz-column-gap: calc(8px * var(--ja-vw));
       column-gap: calc(8px * var(--ja-vw));
}
.page .footer .sns a {
  display: block;
  aspect-ratio: 1/1;
  width: calc(50px * var(--ja-vw));
}
.page .visual {
  width: 100%;
}
.page .visual video {
  display: block;
  width: 100%;
}

#news {
  margin-top: calc(36px * var(--ja-vw));
}
#news .container {
  padding-inline: calc(36px * var(--ja-vw));
}
#news .newsList {
  position: relative;
}
#news .newsList:after {
  content: "";
  position: absolute;
  bottom: calc(-2px * var(--ja-vw));
  left: calc(-4px * var(--ja-vw));
  background: radial-gradient(circle farthest-side, var(--ja-color-5), var(--ja-color-5) 30%, transparent 30%, transparent);
  background-size: calc(8px * var(--ja-vw));
  display: inline-block;
  height: calc(4px * var(--ja-vw));
  width: calc(100% + 8px * var(--ja-vw));
}
#news .newsList .newsList_item {
  position: relative;
  display: grid;
  grid-template-columns: calc(80px * var(--ja-vw)) 1fr;
  -moz-column-gap: 0.25em;
       column-gap: 0.25em;
  padding: calc(10px * var(--ja-vw)) calc(8px * var(--ja-vw)) calc(10px * var(--ja-vw)) calc(10px * var(--ja-vw));
  font-size: max(14px, 9px * var(--ja-vw));
  background: #fff;
}
#news .newsList .newsList_item:after {
  content: "";
  position: absolute;
  top: calc(-2px * var(--ja-vw));
  left: calc(-4px * var(--ja-vw));
  background: radial-gradient(circle farthest-side, var(--ja-color-5), var(--ja-color-5) 30%, transparent 30%, transparent);
  background-size: calc(8px * var(--ja-vw));
  display: inline-block;
  height: calc(4px * var(--ja-vw));
  width: calc(100% + 8px * var(--ja-vw));
}
#news .newsList .newsList_date,
#news .newsList .newsList_title {
  font-size: inherit;
  font-weight: 500;
  text-wrap: initial;
}

#intro {
  position: relative;
  margin-top: calc(40px * var(--ja-vw));
  padding-top: calc(40px * var(--ja-vw));
}
#intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18%;
  aspect-ratio: 1/1;
  width: 65%;
  background: #fff;
  border-radius: 50%;
}
#intro .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: calc(312px * var(--ja-vw));
  margin-inline: auto;
}
#intro .heading {
  grid-column: span 2;
}
#intro .text {
  padding-top: calc(20px * var(--ja-vw));
  font-size: max(14px, 9px * var(--ja-vw));
  letter-spacing: 0.1em;
}
#intro .map {
  padding-top: calc(12px * var(--ja-vw));
  padding-left: calc(16px * var(--ja-vw));
}
#intro .map img {
  display: block;
  aspect-ratio: 55.474/87.3515;
  width: calc(110px * var(--ja-vw));
}

#business {
  margin-top: calc(40px * var(--ja-vw));
}
#business .container {
  padding-inline: calc(20px * var(--ja-vw));
}
#business .lead {
  width: calc(246px * var(--ja-vw));
  margin-inline: auto;
  font-size: max(14px, 9px * var(--ja-vw));
  text-align: center;
  letter-spacing: 0.1em;
}
#business .businessList {
  display: grid;
  row-gap: calc(14px * var(--ja-vw));
  margin-top: calc(16px * var(--ja-vw));
}
#business .businessList .link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: calc(138px * var(--ja-vw));
  padding: calc(5px * var(--ja-vw)) calc(28px * var(--ja-vw));
  background: #fff;
  border-radius: calc(40px * var(--ja-vw));
}
#business .businessList .left {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: calc(10px * var(--ja-vw));
}
#business .businessList .icon {
  position: relative;
  aspect-ratio: 1/1;
  width: calc(76px * var(--ja-vw));
}
#business .businessList .icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--ja-color-3);
}
#business .businessList .icon img {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
  width: calc(80px * var(--ja-vw));
  height: calc(76px * var(--ja-vw));
}
#business .businessList .title {
  font-size: calc(16px * var(--ja-vw));
  letter-spacing: 0.05em;
  line-height: 1.25;
  text-align: center;
  color: var(--ja-color-primary);
}
#business .businessList .text {
  font-size: max(14px, 9px * var(--ja-vw));
  letter-spacing: 0.1em;
  line-height: 1.5;
}
#business .businessList .item.--item03 .icon img {
  top: calc(50% - 8px * var(--ja-vw));
}
#business .businessList .item.--item04 .left {
  row-gap: 0;
}

#job {
  margin-top: calc(40px * var(--ja-vw));
}
#job .jobList {
  display: grid;
  row-gap: calc(40px * var(--ja-vw));
  padding-inline: calc(32px * var(--ja-vw));
}
#job .jobList .item {
  display: flex;
  flex-wrap: wrap;
  gap: calc(10px * var(--ja-vw)) calc(24px * var(--ja-vw));
}
#job .jobList .thumb img {
  aspect-ratio: 1/1;
  width: calc(130px * var(--ja-vw));
  border-radius: 20px;
}
#job .jobList .content {
  flex: 1;
}
#job .jobList .title {
  display: flex;
  align-items: baseline;
  font-size: calc(24px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.5;
  margin-top: -0.25em;
}
#job .jobList .title small {
  font-size: max(14px, 9px * var(--ja-vw));
  letter-spacing: 0;
  margin-left: -0.5em;
}
#job .jobList .text {
  font-size: max(14px, 14px * var(--ja-vw));
  line-height: 1.75;
}
#job .jobList .bottom {
  width: 100%;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: calc(24px * var(--ja-vw));
       column-gap: calc(24px * var(--ja-vw));
}
#job .jobList .c-button {
  min-width: auto;
  font-size: calc(16px * var(--ja-vw));
}

#recruit {
  margin-top: calc(40px * var(--ja-vw));
}
#recruit .flow {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: calc(20px * var(--ja-vw));
       column-gap: calc(20px * var(--ja-vw));
  margin-top: calc(30px * var(--ja-vw));
  padding: 0 calc(14px * var(--ja-vw)) 0 calc(20px * var(--ja-vw));
}
#recruit .flow .flow_img {
  grid-column: 1/2;
  grid-row: 1/6;
  margin: auto 0 0 0;
}
#recruit .flow .flow_img img {
  width: calc(150px * var(--ja-vw));
}
#recruit .flow .flow_row {
  position: relative;
  display: flex;
  align-items: center;
  padding-block: calc(10px * var(--ja-vw));
  font-size: max(12px, 9.5px * var(--ja-vw));
  line-height: 1.5;
}
#recruit .flow .flow_row:not(:first-of-type):after {
  content: "";
  position: absolute;
  top: calc(-2px * var(--ja-vw));
  left: calc(-4px * var(--ja-vw));
  background: radial-gradient(circle farthest-side, #fff, #fff 30%, transparent 30%, transparent);
  background-size: calc(8px * var(--ja-vw));
  display: inline-block;
  height: calc(4px * var(--ja-vw));
  width: calc(100% + 8px * var(--ja-vw));
}
#recruit .flow .flow_row.--row01 {
  grid-row: 1/2;
  margin-top: -3em;
}
#recruit .flow .flow_row.--row02 {
  grid-row: 2/5;
}
#recruit .flow .flow_row.--row03 {
  grid-row: 5/6;
}

#question {
  margin-top: calc(60px * var(--ja-vw));
}
#question .container {
  padding-inline: calc(32px * var(--ja-vw));
}
#question .qaList {
  counter-reset: qa;
  position: relative;
}
#question .qaList:after {
  content: "";
  position: absolute;
  bottom: calc(-2px * var(--ja-vw));
  left: calc(-4px * var(--ja-vw));
  background: radial-gradient(circle farthest-side, var(--ja-color-5), var(--ja-color-5) 30%, transparent 30%, transparent);
  background-size: calc(8px * var(--ja-vw));
  display: inline-block;
  height: calc(4px * var(--ja-vw));
  width: calc(100% + 8px * var(--ja-vw));
}
#question .qaList .item {
  counter-increment: qa;
  position: relative;
  display: grid;
  row-gap: calc(12px * var(--ja-vw));
  padding: calc(10px * var(--ja-vw)) calc(32px * var(--ja-vw)) calc(10px * var(--ja-vw)) calc(20px * var(--ja-vw));
  font-size: max(14px, 9px * var(--ja-vw));
  background: #fff;
}
#question .qaList .item::after {
  content: "";
  position: absolute;
  top: calc(-2px * var(--ja-vw));
  left: calc(-4px * var(--ja-vw));
  background: radial-gradient(circle farthest-side, var(--ja-color-5), var(--ja-color-5) 30%, transparent 30%, transparent);
  background-size: calc(8px * var(--ja-vw));
  display: inline-block;
  height: calc(4px * var(--ja-vw));
  width: calc(100% + 8px * var(--ja-vw));
}
#question .qaList .item .q,
#question .qaList .item .a {
  display: grid;
  grid-template-columns: calc(30px * var(--ja-vw)) 1fr;
  -moz-column-gap: calc(16px * var(--ja-vw));
       column-gap: calc(16px * var(--ja-vw));
  line-height: 1.45;
}
#question .qaList .item .q::before,
#question .qaList .item .a::before {
  font-family: var(--ja-font-en);
  font-weight: 600;
  font-size: min(20px, 2em);
  line-height: 1;
}
#question .qaList .item .q::before {
  content: "Q" counter(qa);
  color: var(--ja-color-primary);
  margin-left: -0.09em;
}
#question .qaList .item .a::before {
  content: "A" counter(qa);
  color: var(--ja-color-4);
}
#question .qaButtons {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: calc(14px * var(--ja-vw));
  margin-top: calc(44px * var(--ja-vw));
}
#question .qaButtons .c-squereButton {
  width: calc(300px * var(--ja-vw));
  font-size: calc(20px * var(--ja-vw));
}
#question .qaButtons .banner {
  width: calc(162px * var(--ja-vw));
}

#ad {
  margin-top: calc(30px * var(--ja-vw));
  padding-bottom: calc(100px * var(--ja-vw));
}
#ad .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ad .c-squereButton {
  width: calc(300px * var(--ja-vw));
  font-size: calc(20px * var(--ja-vw));
}

.newsDetail {
  padding: calc(24px * var(--ja-vw)) calc(20px * var(--ja-vw));
}
.newsDetail .newsDetail_container {
  padding: calc(16px * var(--ja-vw)) calc(30px * var(--ja-vw));
  background: #fff;
}
.newsDetail .newsDetail_container .head {
  margin-bottom: calc(20px * var(--ja-vw));
}
.newsDetail .newsDetail_container .head_date {
  display: block;
  padding-bottom: calc(8px * var(--ja-vw));
  font-size: calc(12px * var(--ja-vw));
  font-weight: 500;
  line-height: 1;
  border-bottom: 1px solid var(--ja-color-5);
}
.newsDetail .newsDetail_container .head_title {
  display: block;
  padding: calc(10px * var(--ja-vw)) calc(8px * var(--ja-vw));
  font-size: calc(16px * var(--ja-vw));
  font-weight: 500;
  line-height: 1.5;
  border-bottom: 1px solid var(--ja-color-5);
}
.newsDetail .newsDetail_container .text {
  font-size: calc(12px * var(--ja-vw));
  line-height: 1.86;
  word-break: inherit;
}
.newsDetail .newsDetail_container .text:not(:first-child) {
  margin-top: calc(20px * var(--ja-vw));
}
.newsDetail .newsDetail_container .image img {
  width: 100%;
  height: auto;
}
.newsDetail .newsDetail_container .image:not(:first-child) {
  margin-top: calc(20px * var(--ja-vw));
}
.newsDetail .newsDetail_container .c-buttonWrapper {
  margin-top: calc(40px * var(--ja-vw));
}
.newsDetail .newsDetail_container .c-button {
  width: calc(110px * var(--ja-vw));
}

.article {
  padding: calc(20px * var(--ja-vw)) calc(32px * var(--ja-vw)) calc(32px * var(--ja-vw));
  background: var(--ja-color-3);
}
.article > *:last-child {
  padding-bottom: calc(86px * var(--ja-vw));
}
.article .kv {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.article .kv .image {
  position: relative;
  width: calc(186px * var(--ja-vw));
}
.article .kv .image img {
  width: 100%;
}
.article .kv .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: calc(4px * var(--ja-vw));
  width: 86.9%;
  margin-top: calc(-36px * var(--ja-vw));
  padding: calc(40px * var(--ja-vw)) calc(16px * var(--ja-vw)) calc(10px * var(--ja-vw));
  background: var(--ja-color-2);
  border-radius: calc(60px * var(--ja-vw));
  text-align: center;
  color: var(--ja-color-primary);
  font-weight: bold;
}
.article .kv .title {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  font-size: calc(32px * var(--ja-vw));
  line-height: 1.1;
  letter-spacing: 0.1em;
}
.article .kv .title small {
  font-size: 0.6em;
}
.article .kv .text {
  font-size: max(14px, 9px * var(--ja-vw));
  line-height: 1.428;
  letter-spacing: 0.1em;
}
.article .unitWrapper {
  display: grid;
  row-gap: calc(32px * var(--ja-vw));
  margin-top: calc(23px * var(--ja-vw));
}
.article .unit {
  display: flex;
  flex-direction: column;
  row-gap: calc(10px * var(--ja-vw));
  padding-inline: calc(12px * var(--ja-vw));
}
.article .unit .unit_item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: calc(10px * var(--ja-vw)) calc(20px * var(--ja-vw));
  border-radius: calc(12px * var(--ja-vw));
  text-align: center;
}
.article .unit .unit_item::before {
  content: "";
  position: absolute;
  top: calc(10px * var(--ja-vw));
  aspect-ratio: 15/13;
  width: calc(15px * var(--ja-vw));
  -webkit-mask-image: url("/recruit/assets/images/job/job_attach_01.svg");
          mask-image: url("/recruit/assets/images/job/job_attach_01.svg");
  -webkit-mask-position: 0 0;
          mask-position: 0 0;
  -webkit-mask-size: contain;
          mask-size: contain;
}
.article .unit .unit_item.--right {
  background: var(--ja-color-primary);
  font-size: calc(16px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  align-items: center;
}
.article .unit .unit_item.--right::before {
  right: calc(-10px * var(--ja-vw));
  background: var(--ja-color-primary);
}
.article .unit .unit_item.--left {
  font-size: max(14px, 9px * var(--ja-vw));
  text-align: left;
  background: var(--ja-color-2);
}
.article .unit .unit_item.--left::before {
  left: calc(-10px * var(--ja-vw));
  transform: rotateY(180deg);
  background: var(--ja-color-2);
}
.article .unit .unit_image {
  display: block;
  width: 83.3%;
  margin-inline: auto;
}
.article .schedule {
  margin-top: calc(60px * var(--ja-vw));
}
.article .schedule img {
  display: block;
}
.article .movie {
  margin-top: calc(80px * var(--ja-vw));
}
.article .movie iframe {
  display: block;
  aspect-ratio: 16/9;
  width: calc(320px * var(--ja-vw));
  height: 100%;
  margin-inline: auto;
}
.article.--job04 .kv .title {
  font-size: calc(28px * var(--ja-vw));
  letter-spacing: 0.025em;
}

.footerBefore {
  width: 100%;
  background: var(--ja-color-3);
  overflow: hidden;
}
.footerBefore .splide {
  padding-inline: calc(8px * var(--ja-vw));
}
.footerBefore .splide .splide-wrapper {
  position: relative;
  padding-inline: calc(32px * var(--ja-vw));
}
.footerBefore .splide .splide__arrows {
  position: absolute;
  left: 0;
  top: calc(36px * var(--ja-vw));
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.footerBefore .splide .splide__arrow {
  aspect-ratio: 26/56;
  width: calc(26px * var(--ja-vw));
  pointer-events: all;
  background: center no-repeat;
  transition: 0.3s ease;
}
.footerBefore .splide .splide__arrow svg {
  display: none;
}
.footerBefore .splide .splide__arrow.splide__arrow--prev {
  background-image: url("/recruit/assets/images/icon_prev.svg");
}
.footerBefore .splide .splide__arrow.splide__arrow--next {
  background-image: url("/recruit/assets/images/icon_next.svg");
}
@media (any-hover: hover) {
  .footerBefore .splide .splide__arrow:hover {
    opacity: var(--ja-hover-opacity);
  }
}
.footerBefore .splide .splide__track {
  max-width: calc(100vw - 80px * var(--ja-vw));
}
.footerBefore .container {
  padding: calc(20px * var(--ja-vw)) 0 calc(32px * var(--ja-vw));
  border-radius: calc(44px * var(--ja-vw)) calc(44px * var(--ja-vw)) 0 0;
  background: var(--ja-color-2);
}
.footerBefore .link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footerBefore .icon img {
  aspect-ratio: 69/64;
  width: 100%;
}
.footerBefore .title {
  margin-top: calc(10px * var(--ja-vw));
  text-align: center;
  font-size: calc(24px * var(--ja-vw));
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--ja-color-primary);
}
.footerBefore .title small {
  display: block;
  margin-top: calc(4px * var(--ja-vw));
  font-size: 0.7em;
  letter-spacing: 0;
  line-height: 1.3;
}/*# sourceMappingURL=common.css.map */