@charset "UTF-8";
:root {
  /* --- 固定サイズ (Fixed) --- */
  --fz-14: 0.875rem; /* 14px */
  --fz-16: 1rem; /* 16px */
  --fz-18: 1.125rem; /* 18px */
  /* --- レスポンシブサイズ (PC → スマホ) --- */
  /* clamp(最小値, 推奨値, 最大値) 
     推奨値には vw（ビューポート幅）を使い、画面サイズに合わせて滑らかに変化させます。
  */
  /* 18px → 16px */
  --fz-r-18-16: clamp(1rem, 0.9rem + 0.4vw, 1.125rem);
  /* 24px → 20px */
  --fz-r-24-20: clamp(1.25rem, 1.1rem + 0.8vw, 1.5rem);
  /* 32px → 24px */
  --fz-r-32-24: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  /* 40px → 32px */
  --fz-r-40-32: clamp(2rem, 1.6rem + 1.6vw, 2.5rem);
  /* 56px → 40px */
  --fz-r-56-40: clamp(2.5rem, 1.8rem + 3vw, 3.5rem);
  /* 72px → 48px */
  --fz-r-72-48: clamp(3rem, 2.1rem + 4.5vw, 4.5rem);
  /* --- レスポンシブ・スペーシング (PC → スマホ) --- */
  /* clamp(最小値, 推奨値, 最大値) */
  /* 24px → 20px */
  --space-24-20: clamp(1.25rem, 1.15rem + 0.4vw, 1.5rem);
  /* 32px → 24px */
  --space-32-24: clamp(1.5rem, 1.3rem + 0.8vw, 2rem);
  /* 40px → 32px */
  --space-40-32: clamp(2rem, 1.8rem + 0.8vw, 2.5rem);
  /* 48px → 40px */
  --space-48-40: clamp(2.5rem, 2.3rem + 0.8vw, 3rem);
  /* 56px → 48px */
  --space-56-48: clamp(3rem, 2.8rem + 0.8vw, 3.5rem);
  /* 64px → 56px */
  --space-64-56: clamp(3.5rem, 3.3rem + 0.8vw, 4rem);
  /* 72px → 64px */
  --space-72-64: clamp(4rem, 3.8rem + 0.8vw, 4.5rem);
}

/*-----------------------------------------------------------------*
mixin
*-----------------------------------------------------------------*/
/*-----------------------------------------------------------------*
utiryty
*-----------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
@media screen and (max-width: 767px) {
  html html {
    scroll-padding-top: 110px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #313131;
  font-weight: 500;
  font-kerning: normal;
  font-style: normal;
  word-wrap: break-word;
  background-color: #f4f8ff;
  font-size: var(--fz-base);
}

*:focus {
  outline: none;
}

a {
  text-decoration: none;
}

img {
  width: 100%;
  vertical-align: bottom;
}

p {
  line-height: 2;
}

.br-pc {
  display: block;
}

.br-sp {
  display: none;
}

.pc-no {
  display: none;
}

.sp-no {
  display: block;
}

.md-block {
  display: block;
}

.md-only {
  display: none;
}

@media screen and (max-width: 820px) {
  .md-block {
    display: block;
  }
  .md-only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 15px;
  }
  body {
    min-height: 100vh;
    min-height: -webkit-fill-available;
  }
  .br-pc {
    display: none;
  }
  .br-sp {
    display: block;
  }
  .pc-no {
    display: block;
  }
  .sp-no {
    display: none;
  }
  .md-only {
    display: none;
  }
}
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.text-loader {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 24px;
  color: #002666;
  display: flex;
  align-items: center;
  position: relative;
}
.text-loader::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: currentColor;
  margin-left: 3px;
  animation: text-dot 1.5s infinite;
  color: #f9b900;
}

@keyframes text-dot {
  0%,
  20% {
    opacity: 0;
    transform: translateY(0);
  }
  40% {
    opacity: 1;
    transform: translateY(-5px);
  }
  60% {
    opacity: 1;
    transform: translateY(0);
  }
  80%,
  100% {
    opacity: 0;
  }
}
/*-----------------------------------------------------------------*
  汎用：GSAP + ScrollTrigger 用フェードアップ（.fade-in-on-view）
  画面下から約80%の位置に到達した時に、ゆっくりふんわり浮かび上がる（フェードイン＋フェードアップ）
  初期状態のみCSSで指定（アニメーションはJSで実行）
*-----------------------------------------------------------------*/
.fade-in-on-view {
  opacity: 0;
  transform: translateY(60px);
}

/*-----------------------------------------------------------------*
common
*-----------------------------------------------------------------*/
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #f4f8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/*-----------------------------------
  header
-----------------------------------*/
.header-left {
  background-color: #fff;
  width: 24vw;
  min-width: 340px;
  position: fixed;
  top: 0;
  left: 0;
  padding: 32px 48px 32px 32px;
  border-radius: 0 0 50px 0;
  z-index: 99;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 820px) {
  .header-left {
    width: 340px;
    min-width: auto;
    padding: 24px 40px 24px 24px;
    border-radius: 0 0 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .header-left {
    width: 220px;
    padding: 24px 32px 24px 16px;
    border-radius: 0 0 30px 0;
  }
}
.header-right {
  z-index: 50;
  top: 0;
  right: 0;
  position: fixed;
}
.header-right__recruit {
  position: absolute;
  top: 16px;
  right: 140px;
  z-index: 50;
}
.header-right__recruit .btn-recruit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 50px;
  background-color: #002666;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .header-right__recruit .btn-recruit {
    line-height: 1.5;
  }
}
.header-right__recruit .btn-recruit {
  font-size: 18px;
  width: 200px;
  border: 1px solid #fff;
}
.header-right__recruit .btn-recruit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: #2157b2;
  transition: width 0.35s ease;
  z-index: 0;
}
.header-right__recruit .btn-recruit:hover::before {
  width: 100%;
}
.header-right__recruit .btn-recruit .btn-recruit__text,
.header-right__recruit .btn-recruit .btn-recruit__icon {
  position: relative;
  z-index: 1;
}
.header-right__recruit .btn-recruit .btn-recruit__icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-right__recruit .btn-recruit .btn-recruit__arrow {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}
.header-right__recruit .btn-recruit:hover .btn-recruit__arrow {
  transform: translateX(4px);
}

/*-----------------------------------
  hamburger menu (BEM)
-----------------------------------*/
.hamburger-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 20px 8px;
  background-color: #fff;
  border: none;
  border-radius: 16px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 110;
  box-shadow: 0 2px 12px rgba(0, 38, 102, 0.12);
  transition: box-shadow 0.2s ease;
}
@media screen and (max-width: 820px) {
  .hamburger-btn {
    top: 16px;
    right: 20px;
    padding: 12px 18px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger-btn {
    top: 14px;
    right: 16px;
    padding: 10px 16px;
    gap: 5px;
    border-radius: 12px;
  }
}
.hamburger-btn:hover {
  box-shadow: 0 4px 16px rgba(0, 38, 102, 0.18);
}
.hamburger-btn:focus-visible {
  outline: 2px solid #002666;
  outline-offset: 2px;
}
.hamburger-btn__lines {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 48px;
  height: 14px;
}
.hamburger-btn__line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #002666;
  border-radius: 1px;
  transform-origin: center center;
}
@media screen and (max-width: 767px) {
  .hamburger-btn__line {
    height: 2px;
  }
}
.hamburger-btn__text {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #002666;
}
@media screen and (max-width: 767px) {
  .hamburger-btn__text {
    font-size: 11px;
  }
}
.hamburger-btn.is-animating {
  pointer-events: none;
}

/* オーバーレイメニュー（画像デザイン: ぼかし背景 + 白パネル） */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  visibility: hidden;
}
.menu-overlay.is-open {
  pointer-events: auto;
  visibility: visible;
}
.menu-overlay {
  /* 背景: 半透明ネイビー + ぼかし */
}
.menu-overlay__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 38, 102, 0.3);
  filter: blur(2px);
  will-change: opacity;
}
.menu-overlay__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 65vh;
  max-height: 500px;
  border-radius: 0 0 16px 16px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 24px 24px 40px;
  overflow-y: auto;
  background-color: #f4f8ff;
  box-shadow: 0 -4px 24px rgba(0, 38, 102, 0.15);
}
@media screen and (max-width: 767px) {
  .menu-overlay__content {
    padding: 24px 16px 40px;
    height: 90vh;
    max-height: none;
  }
}
.menu-overlay__inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.menu-overlay__logo {
  margin-left: auto;
  padding-bottom: 16px;
}
.menu-overlay__logo img {
  width: 240px;
}
@media screen and (max-width: 767px) {
  .menu-overlay__logo img {
    width: 180px;
  }
}
.menu-overlay__nav {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 24px;
  /* 各リンク・見出しの表示はGSAP（linkItems の y / opacity）で制御 */
}
@media screen and (max-width: 820px) {
  .menu-overlay__nav {
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .menu-overlay__nav {
    display: block;
    gap: 28px;
    padding: 40px 0;
  }
}
.menu-overlay__nav {
  /* オーバーレイ内のナビはネイビー文字（白パネル上） */
}
.menu-overlay__nav .header__nav-head,
.menu-overlay__nav .header__nav-head a,
.menu-overlay__nav .header__nav-list a {
  color: #002666;
  position: relative;
}
.menu-overlay__nav .header__nav-head a,
.menu-overlay__nav .header__nav-list a {
  color: #002666;
  position: relative;
}
.menu-overlay__nav .header__nav-head a::after,
.menu-overlay__nav .header__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.menu-overlay__nav .header__nav-head a:hover::after,
.menu-overlay__nav .header__nav-list a:hover::after {
  width: 100%;
}
.menu-overlay__nav .header__nav-head a::after,
.menu-overlay__nav .header__nav-list a::after {
  background-color: #002666;
}
.menu-overlay__nav .header__nav-head {
  font-size: clamp(18px, 2.2vw, 22px);
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .menu-overlay__nav .header__nav-head {
    line-height: 1.5;
  }
}
.menu-overlay__nav .header__nav-head {
  margin-bottom: 16px;
}
.menu-overlay__nav .header__nav-head::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 16px;
  display: inline-block;
  margin-right: 4px;
}
.menu-overlay__nav .header__new-graduate {
  margin-bottom: 0;
}
.menu-overlay__nav .header__nav-list {
  margin-left: 0;
  margin-top: 8px;
}
.menu-overlay__nav .header__nav-list li {
  margin: 0 0 8px 32px;
}
.menu-overlay__nav .header__nav-list a {
  font-size: clamp(15px, 1.8vw, 18px);
}
.menu-overlay__nav .header__nav-col {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .menu-overlay__nav .header__nav-col {
    margin-bottom: 24px;
  }
}
.menu-overlay__nav .header__nav-group {
  margin-bottom: 16px;
}

/* メニュー開時: CLOSEボタンをオーバーレイより前面に（z-indexで隠れないように） */
body.menu-is-open .header-right {
  z-index: 101;
}

/* メニュー開時: 採用情報ボタンは非表示（同親内でz-indexだけでは採用だけ背面にできないため visibility で対応） */
body.menu-is-open .header-right__recruit {
  visibility: hidden;
  pointer-events: none;
}

/* メニュー開時: CLOSEボタンはネイビー背景・白アイコン・白テキスト */
.hamburger-btn.is-open {
  box-shadow: none;
}
/* ヘッダー内 nav の配置（ボタン表示用） */
.header__menu-btn {
  position: absolute;
  top: 16px;
  right: 24px;
  z-index: 110;
}
@media screen and (max-width: 820px) {
  .header__menu-btn {
    top: 16px;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .header__menu-btn {
    top: 14px;
    right: 16px;
  }
}

/*-----------------------------------
  footer
-----------------------------------*/
.footer__top {
  position: relative;
  padding-bottom: 116px;
  background-color: #f4f8ff;
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding-bottom: 0;
  }
}
.footer__bg-images {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  height: 70vh;
  max-height: 980px;
}
@media screen and (max-width: 820px) {
  .footer__bg-images {
    min-height: auto;
    height: 50vh;
  }
}
@media screen and (max-width: 767px) {
  .footer__bg-images {
    height: 320px;
  }
}
.footer__bg-images .section-header {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  z-index: 2;
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer__bg-images .section-header {
    width: 90%;
  }
}
.footer__bg-list {
  display: flex;
  height: 100%;
}
.footer__bg-list li {
  flex: 1;
}
.footer__bg-list li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer__recruit-card {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1000px;
  background: #fff;
  border-radius: 20px;
  z-index: 3;
  overflow: hidden;
}
@media screen and (max-width: 820px) {
  .footer__recruit-card {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .footer__recruit-card {
    position: relative;
    transform: none;
    top: -40px;
    left: 0;
    margin: 0 auto;
  }
}
.footer__recruit-row {
  display: flex;
  align-items: center;
  padding: 24px 64px;
}
.footer__recruit-row:first-child {
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 820px) {
  .footer__recruit-row {
    padding: 24px 32px;
  }
}
@media screen and (max-width: 767px) {
  .footer__recruit-row {
    display: block;
    padding: 32px 24px;
  }
}
.footer__recruit-title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .footer__recruit-title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.footer__recruit-title {
  font-size: var(--fz-r-40-32);
  color: #002666;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .footer__recruit-title {
    padding-bottom: 24px;
  }
}
.footer__recruit-links {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 820px) {
  .footer__recruit-links {
    display: block;
  }
  .footer__recruit-links li:not(:last-child) {
    margin-bottom: 16px;
  }
}
.footer__bottom {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 80px 0 24px;
  background-color: #f4f8ff;
}
@media screen and (max-width: 1024px) {
  .footer__bottom {
    padding: 64px 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .footer__bottom {
    padding: 24px 0;
  }
}
.footer__bottom .bg-organic__footer {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
.footer__bottom .bg-organic__footer__shape {
  position: absolute;
  filter: blur(20px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.footer__bottom .bg-organic__footer__shape--navy {
  bottom: -10%;
  right: 0;
  width: 15vw;
  height: 15vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .footer__bottom .bg-organic__footer__shape--navy {
    width: 40vw;
    height: 40vw;
    bottom: 0;
  }
}
.footer__bottom .bg-organic__footer__shape--yellow {
  bottom: 20%;
  right: -5%;
  width: 12vw;
  height: 12vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
@media screen and (max-width: 767px) {
  .footer__bottom .bg-organic__footer__shape--yellow {
    width: 20vw;
    height: 20vw;
  }
}
.footer__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    width: 90%;
  }
}
.footer__inner {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__inner {
    flex-direction: column;
    gap: 64px;
  }
}
.footer__site-info {
  width: 35vw;
  min-width: 250px;
}
@media screen and (max-width: 1440px) {
  .footer__site-info {
    width: 32%;
  }
}
@media screen and (max-width: 1024px) {
  .footer__site-info {
    width: auto;
    order: 2;
    margin: 0 auto;
  }
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  width: 50%;
  max-width: 350px;
  min-width: 240px;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__sub-links {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1024px) {
  .footer__sub-links {
    justify-content: center;
  }
}
.footer__sub-links li::after {
  content: "|";
  display: inline-block;
}
.footer__sub-links li a {
  margin: 0 4px;
}
.footer__sub-links li:last-of-type::after {
  content: "";
  display: none;
}
.footer__sub-links a {
  color: #002666;
  position: relative;
}
.footer__sub-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.footer__sub-links a:hover::after {
  width: 100%;
}
.footer__nav {
  display: flex;
  gap: 80px;
  flex: 1;
  justify-content: flex-end;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .footer__nav {
    justify-content: space-evenly;
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: block;
  }
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer__nav-col.footer__about-us,
.footer__nav-col.footer__works {
  gap: 12px;
}
@media screen and (max-width: 767px) {
  .footer__nav-col.footer__about-us,
  .footer__nav-col.footer__works {
    margin-bottom: 24px;
  }
}
.footer__nav-col .footer__new-graduate {
  padding-bottom: 12px;
}
.footer__nav-head {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .footer__nav-head {
    line-height: 1.5;
  }
}
.footer__nav-head {
  font-size: 20px;
  color: #002666;
}
.footer__nav-head a {
  color: #002666;
  position: relative;
}
.footer__nav-head a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.footer__nav-head a:hover::after {
  width: 100%;
}
.footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 16px;
}
.footer__nav-list a {
  color: #002666;
  position: relative;
}
.footer__nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.footer__nav-list a:hover::after {
  width: 100%;
}
.footer__copyright {
  width: 90%;
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  text-align: center;
  font-size: 12px;
  color: #002666;
  padding-top: 16px;
  border-top: 1px solid #002666;
  margin: 64px auto 0;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    margin: 24px auto 0;
  }
}

/*-----------------------------------
  共通装飾
-----------------------------------*/
.section-header {
  margin-bottom: var(--space-48-40);
}
.section-header__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #fff;
  font-size: var(--fz-16);
  white-space: nowrap;
}
.section-header__sub-title::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: rgb(255, 255, 255);
}
.section-header__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .section-header__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.section-header__title {
  margin-top: 16px;
  color: #fff;
  font-size: var(--fz-r-56-40);
}
.section-header__navy .section-header__sub-title {
  color: #002666;
}
.section-header__navy .section-header__sub-title::after {
  background-color: #002666;
}
.section-header__navy .section-header__title {
  color: #002666;
}

.btn-circle-arrow {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  cursor: pointer;
}
.btn-circle-arrow:hover .btn-circle-arrow__icon {
  background-color: #e8effa;
  border: 1px solid #002666;
}
.btn-circle-arrow__text {
  font-size: var(--fz-r-24-20);
  color: #002666;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .btn-circle-arrow__text {
    line-height: 1.5;
  }
}
.btn-circle-arrow__icon {
  position: relative;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid #d5d5d5;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .btn-circle-arrow__icon {
    width: 48px;
    height: 48px;
  }
}
.btn-circle-arrow .arrow {
  position: absolute;
  width: 32px;
  height: 32px;
  color: #002666;
  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .btn-circle-arrow .arrow {
    width: 24px;
    height: 24px;
  }
}
.btn-circle-arrow .arrow--main {
  transform: translateX(0);
  opacity: 1;
}
.btn-circle-arrow .arrow--hover {
  transform: translateX(-100%);
  opacity: 0;
}
.btn-circle-arrow:hover .arrow--main {
  transform: translateX(100%);
  opacity: 0;
}
.btn-circle-arrow:hover .arrow--hover {
  transform: translateX(0);
  opacity: 1;
}
.btn-circle-arrow:hover__icon {
  border-color: #002666;
}

/*-----------------------------------
  about-card：親aホバーでボタン連動（光洋を知る・数字で見る光洋）
-----------------------------------*/
.about-card__link:hover .btn-circle-arrow__icon {
  background-color: #e8effa;
  border-color: #002666;
}
.about-card__link:hover .btn-circle-arrow .arrow--main {
  transform: translateX(100%);
  opacity: 0;
}
.about-card__link:hover .btn-circle-arrow .arrow--hover {
  transform: translateX(0);
  opacity: 1;
}

/*-----------------------------------------------------------------*
  オーガニックシェイプ（背景アニメーション）
*-----------------------------------------------------------------*/
/*-----------------------------------
  アニメーションのキーフレーム
-----------------------------------*/
@keyframes morph {
  0% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
  33% {
    border-radius: 30% 60% 70% 40%/50% 60% 30% 60%;
  }
  66% {
    border-radius: 50% 50% 20% 80%/20% 80% 50% 50%;
  }
  100% {
    border-radius: 60% 40% 30% 70%/60% 30% 70% 40%;
  }
}
@keyframes drift {
  0% {
    transform: rotate(0deg) translate(0, 0) scale(1);
  }
  33% {
    transform: rotate(120deg) translate(50px, -50px) scale(1.1);
  }
  66% {
    transform: rotate(240deg) translate(-30px, 50px) scale(0.9);
  }
  100% {
    transform: rotate(360deg) translate(0, 0) scale(1);
  }
}
/*-----------------------------------------------------------------*
top
*-----------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  margin-top: 24px;
  background-color: #f4f8ff;
}
@media screen and (max-width: 1024px) {
  .hero {
    height: 50vh;
  }
}
@media screen and (max-width: 820px) {
  .hero {
    height: 60vh;
  }
}
@media screen and (max-width: 767px) {
  .hero {
    height: 90vh;
  }
}
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
}
.hero__slider {
  display: flex;
  width: 100%;
  height: 100%;
  /* 読み込み時のちらつき防止：GSAPオープニングと同じ初期状態をCSSで指定 */
  opacity: 0;
  transform: translateX(-8%);
  z-index: -1;
}
.hero__track {
  display: flex;
  gap: 0;
  animation: infinity-loop 60s linear infinite;
  width: -moz-fit-content;
  width: fit-content;
  will-change: transform;
  backface-visibility: hidden;
}
.hero__tiles {
  display: grid;
  flex-shrink: 0;
  grid-template-columns: 350px 450px 350px;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  padding: 0 10px;
  align-content: center;
}
.hero__tile {
  border-radius: 24px;
  overflow: hidden;
  /* FVオープニング：clip-path でスワイプ出現用 */
  transform-origin: center center;
}
.hero__tile img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  /* Ken Burns用：スケールの起点 */
  transform-origin: center center;
}
.hero__tile--type1 {
  grid-row: 1/2;
}
.hero__tile--type2 {
  grid-row: 1/3;
}
.hero__tile--type3 {
  grid-row: 1/2;
}
.hero__tile--type4 {
  grid-row: 2/3;
  grid-column: span 2;
}
.hero__tile--type5 {
  grid-row: 2/3;
}
@media screen and (max-width: 820px) {
  .hero__tile--type2 {
    order: -1;
  }
}
.hero {
  /* キャッチコピー部分 */
}
.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #f4f8ff;
  /* 読み込み時のちらつき防止：メッセージも初期非表示 */
}
.hero__content .hero-message__small,
.hero__content .hero-message__big {
  opacity: 0;
  transform: translateY(30px);
}
.hero__content {
  padding: 40px 5%;
  border-radius: 0 100px 0 0;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .hero__content {
    width: 92%;
    border-radius: 0 64px 0 0;
    padding: 24px 5%;
  }
}
.hero__content .hero-message__small {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .hero__content .hero-message__small {
    line-height: 1.5;
  }
}
.hero__content .hero-message__small {
  font-size: var(--fz-r-24-20);
}
.hero__content .hero-message__big {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .hero__content .hero-message__big {
    font-weight: 700;
    line-height: 1.5;
  }
}
.hero__content .hero-message__big {
  color: #002666;
  font-size: 72px;
}
@media screen and (max-width: 820px) {
  .hero__content .hero-message__big {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .hero__content .hero-message__big {
    line-height: 1.2;
  }
}
@media screen and (max-width: 820px) {
  .hero__content .hero-message__big {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .hero__content .hero-message__small {
    padding-bottom: 8px;
  }
}
.hero__content {
  --_corner-radius: 36px;
  --mask-inverted-radius: radial-gradient(
    circle at 100% 0,
    transparent var(--_corner-radius),
    #000 calc(var(--_corner-radius) + 0.5px)
  );
}
.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--_corner-radius);
  height: var(--_corner-radius);
  background-color: #f4f8ff;
  -webkit-mask-image: var(--mask-inverted-radius);
  mask-image: var(--mask-inverted-radius);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}
.hero__content::before {
  bottom: 100%;
  left: 0;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}
.hero__content::after {
  bottom: 0;
  left: 100%;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}

/* 無限ループアニメーション（4ブロック [1,2,1,2] のうち -50% で同じ見た目に） */
@keyframes infinity-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
.message {
  margin: 180px 0 240px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .message {
    margin: 100px 0 280px;
  }
}
@media screen and (max-width: 820px) {
  .message {
    margin: 100px 0 0px;
  }
}
.message__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .message__inner {
    width: 90%;
  }
}
.message__inner {
  position: relative;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .message__inner {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .message__inner {
    display: flex;
    flex-direction: column;
  }
}
.message__content {
  width: 64vw;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1024px) {
  .message__content {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .message__content {
    display: contents;
  }
}
.message__heading {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .message__heading {
    line-height: 1.5;
  }
}
.message__heading {
  font-size: var(--fz-r-32-24);
  padding-bottom: var(--space-56-48);
}
@media screen and (max-width: 767px) {
  .message__heading {
    text-align: justify;
    text-justify: inter-character;
    order: 1;
    line-height: 1.7;
  }
}
.message__text-group {
  font-size: var(--fz-18);
}
@media screen and (max-width: 767px) {
  .message__text-group {
    order: 3;
    margin-bottom: 64px;
  }
}
.message__text-group .message__text {
  padding-bottom: var(--space-32-24);
}
@media screen and (max-width: 1024px) {
  .message__text-group .message__text {
    width: 64%;
  }
}
@media screen and (max-width: 820px) {
  .message__text-group .message__text {
    width: 100%;
    text-align: justify;
    text-justify: inter-character;
  }
}
.message__image-unit {
  width: 20%;
  position: absolute;
  right: -5%;
}
@media screen and (max-width: 1024px) {
  .message__image-unit {
    right: 0;
    top: 40%;
  }
}
@media screen and (max-width: 820px) {
  .message__image-unit {
    position: static;
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .message__image-unit {
    order: 2;
    width: 100%;
    margin: 0 auto;
  }
}
.message__img {
  position: absolute;
}
@media screen and (max-width: 820px) {
  .message__img {
    position: static;
  }
}
.message__img img {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.message__img--male {
  top: -50px;
  right: 0;
  width: 300px;
}
@media screen and (max-width: 1200px) {
  .message__img--male {
    width: 250px;
  }
}
@media screen and (max-width: 820px) {
  .message__img--male {
    margin-left: 12vw;
    width: 270px;
  }
}
@media screen and (max-width: 767px) {
  .message__img--male {
    margin-left: 137px;
    width: 180px;
  }
}
.message__img--female {
  top: 360px;
  right: 340px;
  width: 220px;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .message__img--female {
    width: 200px;
    top: 330px;
    right: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .message__img--female {
    top: 250px;
    right: 190px;
  }
}
@media screen and (max-width: 820px) {
  .message__img--female {
    margin-left: 75vw;
    position: relative;
    top: -120px;
    width: 220px;
  }
}
@media screen and (max-width: 767px) {
  .message__img--female {
    margin-left: auto;
    width: 130px;
    top: -60px;
  }
}

/*-----------------------------------------------------------------*
  オーガニックシェイプ（背景アニメーション）
*-----------------------------------------------------------------*/
.bg-organic__top {
  position: absolute;
  pointer-events: none;
  top: -150px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}
.bg-organic__top__shape {
  position: absolute;
  filter: blur(20px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.bg-organic__top__shape--navy {
  width: 35vw;
  height: 35vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
.bg-organic__top__shape--yellow {
  width: 25vw;
  height: 25vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
.bg-organic__top__shape--navy {
  top: -5%;
  left: -10%;
}
@media screen and (max-width: 767px) {
  .bg-organic__top__shape--navy {
    width: 50vw;
    height: 50vw;
    left: -15%;
  }
}
.bg-organic__top__shape--yellow {
  top: 15%;
  left: 10%;
}
@media screen and (max-width: 767px) {
  .bg-organic__top__shape--yellow {
    top: 8%;
    left: 15%;
  }
}

.about-us {
  background-color: #002666;
  border-radius: 0 100px 0 100px;
  padding: 125px 0;
}
@media screen and (max-width: 767px) {
  .about-us {
    border-radius: 0 64px 0 64px;
    padding: 100px 0;
  }
}
.about-us__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .about-us__inner {
    width: 90%;
  }
}
.about-us__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .about-us__grid {
    display: block;
  }
}
.about-us__grid .about-card__text {
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .about-us__grid .about-card__text {
    font-size: 14px;
  }
}
.about-us__grid .about-card__text-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .about-us__grid .about-card__text-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .about-us__grid .about-card__text-group .btn-circle-arrow {
    align-self: flex-end;
    text-align: right;
  }
}
@media screen and (max-width: 767px) {
  .about-us__grid .about-card {
    margin-bottom: 32px;
  }
}
.about-us__grid .about-card a {
  display: block;
}
.about-us__grid .about-card a:hover .about-card__img-wrapper img {
  transform: scale(1.05);
}
.about-us__grid .about-card__img-wrapper {
  margin-bottom: 24px;
  overflow: hidden;
  height: 100%;
  border-radius: 16px;
}
.about-us__grid .about-card__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.7s ease-out;
}
.about-us__grid .about-card__img-wrapper .number-card__img {
  background-color: #4d658e;
}
.about-us__grid .about-card__body {
  color: #fff;
}
.about-us__grid .about-card__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-us__grid .about-card__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.about-us__grid .about-card__title {
  font-size: var(--fz-r-24-20);
  padding-bottom: 12px;
}
.about-us__grid .about-card:nth-child(2) {
  margin-top: -64px;
}
@media screen and (max-width: 767px) {
  .about-us__grid .about-card:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

/*-----------------------------------------------------------------*
works (仕事を知る)
*-----------------------------------------------------------------*/
.works {
  padding: 125px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 100px 0;
  }
}
.works .bg-organic__works {
  position: absolute;
  pointer-events: none;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
}
.works .bg-organic__works__shape {
  position: absolute;
  filter: blur(20px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.works .bg-organic__works__shape--navy {
  width: 35vw;
  height: 35vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
.works .bg-organic__works__shape--yellow {
  width: 25vw;
  height: 25vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
.works .bg-organic__works__shape--navy {
  top: 0;
  left: -10%;
  width: 25vw;
  height: 25vw;
}
@media screen and (max-width: 767px) {
  .works .bg-organic__works__shape--navy {
    width: 50vw;
    height: 50vw;
    left: -15%;
  }
}
.works .bg-organic__works__shape--yellow {
  top: 10%;
  left: 10%;
  width: 20vw;
  height: 20vw;
}
@media screen and (max-width: 767px) {
  .works .bg-organic__works__shape--yellow {
    width: 25vw;
    height: 25vw;
    top: 15%;
  }
}
.works__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .works__inner {
    width: 90%;
  }
}
.works__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .works__inner {
    display: block;
  }
}
.works__content {
  z-index: 20;
}
@media screen and (max-width: 767px) {
  .works__content {
    margin-bottom: 32px;
  }
}
.works__content .section-header__works {
  margin-bottom: var(--space-24-20);
}
.works__content .section-header__sub-title {
  color: #002666;
}
.works__content .section-header__sub-title::after {
  background-color: #002666;
}
.works__content .section-header__title {
  color: #002666;
  margin-top: 32px;
}
.works__text {
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .works__text {
    padding-bottom: 24px;
  }
}
.works__img-container {
  position: relative;
  border-radius: 16px 16px 16px 0;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.works__img-container:hover .works__slider-img {
  transform: scale(1.08);
}
.works__label {
  --_corner-radius: 36px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px 16px 16px;
  background: #f4f8ff;
  border-radius: 0 var(--_corner-radius) 0 0;
  --mask-inverted-radius: radial-gradient(
    circle at 100% 0,
    transparent var(--_corner-radius),
    #000 calc(var(--_corner-radius) + 0.5px)
  );
}
.works__label::before,
.works__label::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--_corner-radius);
  height: var(--_corner-radius);
  background-color: #f4f8ff;
  -webkit-mask-image: var(--mask-inverted-radius);
  mask-image: var(--mask-inverted-radius);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}
.works__label::before {
  bottom: 100%;
  left: 0;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}
.works__label::after {
  bottom: 0;
  left: 100%;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}
.works__label-number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  background: #002666;
  color: #fff;
  font-size: var(--fz-r-18-16);
  border-radius: 100px;
  padding: 18px;
}
.works__label-text {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .works__label-text {
    line-height: 1.5;
  }
}
.works__label-text {
  color: #002666;
  font-size: var(--fz-r-24-20);
}
.works__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}
.works__pagination {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  position: static !important;
  width: auto !important;
  background: #fff;
  padding: 20px;
  border-radius: 100px;
  color: #002666;
  font-size: var(--fz-r-18-16);
  display: inline-block;
}
.works .swiper-navigation-icon {
  display: none;
}
.works__arrow {
  position: static !important;
  margin: 0 !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #102e5d;
  transition: opacity 0.3s;
}
.works__arrow:hover {
  opacity: 0.6;
}
.works__arrow::after {
  display: none !important;
}
.works__arrow .material-symbols-outlined {
  font-size: 24px;
  font-variation-settings:
    "FILL" 0,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

.works__slider {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  overflow: hidden !important;
}
.works__slider .swiper-slide {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.works__slider .swiper-slide-active {
  opacity: 1;
}
.works__slider-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px 16px 16px 50px;
  transition: transform 0.7s ease;
}

.work-style {
  background-color: #fff;
  border-radius: 0 100px 0 0;
  padding: 120px 0;
}
@media screen and (max-width: 767px) {
  .work-style {
    border-radius: 0 64px 0 0;
    padding: 100px 0;
  }
}
.work-style .section-header__navy {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .work-style .section-header__navy {
    width: 90%;
  }
}
.work-style .section-header__navy {
  margin-bottom: 32px;
}
.work-style__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  gap: 64px;
}
@media screen and (max-width: 1200px) {
  .work-style__inner {
    gap: 48px;
  }
}
@media screen and (max-width: 820px) {
  .work-style__inner {
    display: block;
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .work-style__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.work-style .gallery__left {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 16px;
  width: 100%;
}
@media screen and (max-width: 820px) {
  .work-style .gallery__left {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style .gallery__left {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
.work-style .gallery__right {
  height: 100%;
}
.work-style .gallery__right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 820px) {
  .work-style .gallery__right img {
    height: 30vh;
    border-radius: 16px;
  }
}
.work-style__header {
  align-self: center;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .work-style__header {
    padding: 48px 24px;
  }
}
.work-style__header .section-header__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-style__header .section-header__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.work-style__header .section-header__title {
  color: #002666;
  font-size: 48px;
  padding-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .work-style__header .section-header__title {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .work-style__header .section-header__title {
    font-size: 40px;
  }
}
.work-style__text {
  text-align: justify;
  text-justify: inter-character;
  padding-bottom: 40px;
}
.work-style__img-item {
  line-height: 0;
}
.work-style__img-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 820px) {
  .work-style__img-item img {
    height: 30vh;
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__img-item img {
    height: 20vh;
  }
}
.work-style__img-item:first-child img {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 820px) {
  .work-style__img-item:first-child img {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__img-item:first-child {
    order: 2;
  }
}
@media screen and (max-width: 767px) {
  .work-style__img-item:nth-child(2) {
    order: 3;
  }
}
.work-style__img-item--large {
  grid-column: span 2;
}
.work-style__img-item--large img {
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 820px) {
  .work-style__img-item--large {
    grid-column: span 1;
  }
  .work-style__img-item--large img {
    border-radius: 16px;
  }
}
@media screen and (max-width: 767px) {
  .work-style__img-item--large {
    grid-column: span 2;
    grid-row: span 2;
    order: 1;
  }
  .work-style__img-item--large img {
    height: 30vh;
  }
}

/*-----------------------------------------------------------------*
works
*-----------------------------------------------------------------*/
/*---職種一覧---*/
.works-main .page-full {
  background-color: #e8effa;
  position: relative;
}
.works-main .page-full::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #f4f8ff;
  position: absolute;
  bottom: 0;
}
.works-main .page-full__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .works-main .page-full__inner {
    display: block;
  }
}
.works-main .page-full__inner p {
  padding-bottom: 24px;
  color: #002666;
}
.works-main .page-full__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.works-main .page-full__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.works-main .page-full__inner .bread-crumbs li {
  color: #002666;
}
.works-main .page-full__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.works-main .page-full__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.works-main .page-full__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.works-main .page-full__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.works-main .page-full__right {
  width: 50%;
  padding-right: 64px;
  padding-left: 8%;
  padding-top: 12%;
}
.works-main .page-full__right p {
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 1024px) {
  .works-main .page-full__right {
    width: auto;
    padding-top: 140px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .works-main .page-full__right {
    padding: 140px 24px 0;
    margin-bottom: 64px;
  }
}
.works-main .page-full__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .works-main .page-full__left {
    width: 100%;
  }
  .works-main .page-full__left img {
    height: 40vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.works-main .page-full__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.works-main .page-full__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .works-main .page-full__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.works-main .page-full__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}

.works-list {
  padding: 80px 0 140px;
}
.works-list__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .works-list__inner {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .works-list__inner {
    width: 85%;
  }
}
.works-list__inner ul {
  display: grid;
  gap: 40px 24px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  .works-list__inner ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .works-list__inner ul {
    grid-template-columns: 1fr;
  }
}
.works-list__img-container {
  position: relative;
  border-radius: 16px 16px 16px 0;
  overflow: hidden;
  line-height: 0;
  display: block;
}
.works-list__img-container:hover .works-list__slider-img {
  transform: scale(1.08);
}
.works-list__slider-img {
  border-radius: 16px;
  transition: transform 0.7s ease;
}
.works-list__label {
  --_corner-radius: 36px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px 16px 16px;
  background: #f4f8ff;
  border-radius: 0 var(--_corner-radius) 0 0;
  --mask-inverted-radius: radial-gradient(
    circle at 100% 0,
    transparent var(--_corner-radius),
    #000 calc(var(--_corner-radius) + 0.5px)
  );
}
.works-list__label::before,
.works-list__label::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--_corner-radius);
  height: var(--_corner-radius);
  background-color: #f4f8ff;
  -webkit-mask-image: var(--mask-inverted-radius);
  mask-image: var(--mask-inverted-radius);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}
.works-list__label::before {
  bottom: 100%;
  left: 0;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}
.works-list__label::after {
  bottom: 0;
  left: 100%;
  /* マスクの削り位置を左下にする */
  transform: rotate(360deg);
}
.works-list__label-number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  background: #002666;
  color: #fff;
  font-size: 14px;
  border-radius: 100px;
  padding: 18px;
}
.works-list__label-text {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .works-list__label-text {
    line-height: 1.5;
  }
}
.works-list__label-text {
  color: #002666;
  font-size: 18px;
}

/*---職種詳細---*/
.work-category .page-visual {
  background-color: #e8effa;
  position: relative;
}
.work-category .page-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #f4f8ff;
  position: absolute;
  bottom: 0;
}
.work-category .page-visual__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .work-category .page-visual__inner {
    display: block;
  }
}
.work-category .page-visual__inner p {
  padding-bottom: 24px;
  color: #002666;
}
.work-category .page-visual__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.work-category .page-visual__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.work-category .page-visual__inner .bread-crumbs li {
  color: #002666;
}
.work-category .page-visual__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.work-category .page-visual__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.work-category .page-visual__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.work-category .page-visual__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.work-category .page-visual__right {
  width: 55%;
  padding-right: 64px;
  padding-left: 8%;
  padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  .work-category .page-visual__right {
    width: auto;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .work-category .page-visual__right {
    padding: 140px 24px 0;
    margin-bottom: 64px;
  }
}
.work-category .page-visual__left {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .work-category .page-visual__left {
    width: 100%;
  }
  .work-category .page-visual__left img {
    height: 640px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}
@media screen and (max-width: 767px) {
  .work-category .page-visual__left img {
    height: 45vh;
    -o-object-position: center;
    object-position: center;
  }
}
.work-category .page-visual__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.work-category .page-visual__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-category .page-visual__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.work-category .page-visual__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .work-category .page-visual__title {
    font-size: 32px;
  }
}

.work-detail {
  padding: 80px 0 140px;
}
@media screen and (max-width: 820px) {
  .work-detail {
    width: 90%;
    margin: 0 auto;
    padding: 0 0 80px;
  }
}
.work-detail__inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 820px) {
  .work-detail__inner {
    display: block;
  }
}
.work-detail__left {
  width: 45%;
  margin: 0 5% 0 10%;
}
@media screen and (max-width: 820px) {
  .work-detail__left {
    width: 100%;
    margin: 0 auto 16px;
  }
}
.work-detail__right {
  width: 50%;
}
.work-detail__right img {
  border-radius: 16px 0 0 16px;
}
@media screen and (max-width: 820px) {
  .work-detail__right {
    width: 100%;
  }
  .work-detail__right img {
    border-radius: 16px;
  }
}
.work-detail__title {
  padding: 0 0 24px 18px;
  border-bottom: 1px solid #002666;
}
.work-detail__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-detail__title h3 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.work-detail__title h3 {
  color: #002666;
  font-size: var(--fz-r-40-32);
}
.work-detail__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.work-detail__text {
  text-align: justify;
  text-justify: inter-character;
  padding: 24px 18px;
}

.work-interview {
  padding-bottom: 200px;
}
@media screen and (max-width: 767px) {
  .work-interview {
    padding-bottom: 160px;
  }
}
.work-interview__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .work-interview__inner {
    width: 90%;
  }
}
.work-interview__inner {
  background-color: #fff;
  border-radius: 24px;
}
.work-interview__title {
  text-align: center;
  padding: 32px 24px;
  border-bottom: 1px solid #d5d5d5;
}
.work-interview__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-interview__title h3 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.work-interview__title h3 {
  color: #002666;
  font-size: var(--fz-r-40-32);
}
.work-interview__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.work-interview__content {
  padding: 40px;
  display: flex;
  align-items: center;
}
.work-interview__content:nth-child(3) {
  padding-top: 0;
}
@media screen and (max-width: 820px) {
  .work-interview__content {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .work-interview__content {
    padding: 32px 16px;
  }
  .work-interview__content:nth-child(3) {
    padding-top: 16px;
  }
}
.work-interview__img {
  width: 35%;
  margin-right: 32px;
}
.work-interview__img img {
  border-radius: 16px;
}
@media screen and (max-width: 820px) {
  .work-interview__img {
    width: 80%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 767px) {
  .work-interview__img {
    width: 90%;
  }
}
.work-interview__text {
  width: 65%;
}
.work-interview__text p {
  text-align: justify;
  text-justify: inter-character;
  padding: 16px 16px 0;
}
@media screen and (max-width: 820px) {
  .work-interview__text {
    width: 100%;
  }
}
.work-interview__name {
  border-bottom: 1px solid #d5d5d5;
  padding: 0 16px 16px;
}
.work-interview__name dt {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-r-24-20);
  padding-bottom: 8px;
  display: flex;
  align-items: center;
}
.work-interview__name dt span {
  font-family: initial;
  background-color: #f4f8ff;
  padding: 6px 12px;
  border-radius: 24px;
  font-size: 14px;
  margin-right: 12px;
}
@media screen and (max-width: 767px) {
  .work-interview__name dt {
    justify-content: center;
  }
}
.work-interview__name dd {
  font-size: 14px;
}
.work-interview__name dd span {
  padding-right: 4px;
}
@media screen and (max-width: 820px) {
  .work-interview__name {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .work-interview__name dd span {
    padding-right: 0;
    display: block;
    padding-bottom: 4px;
  }
}

.work-others {
  background-color: #e8effa;
  padding: 30px 0 140px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .work-others {
    padding: 0 0 140px;
  }
}
.work-others::before {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #e8effa;
  position: absolute;
  top: -90px;
}
.work-others__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .work-others__inner {
    width: 90%;
  }
}
.work-others__inner {
  width: 90%;
}
.work-others__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}
@media screen and (max-width: 1024px) {
  .work-others__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .work-others__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.work-others__list li {
  border-radius: 16px;
}
.work-others__list li:first-child {
  background-color: #002666;
  display: grid;
  place-items: center;
}
.work-others__list li:first-child h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-others__list li:first-child h3 {
    line-height: 1.5;
  }
}
.work-others__list li:first-child h3 {
  color: #fff;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .work-others__list li:first-child {
    padding: 24px 0;
  }
}
@media screen and (max-width: 767px) {
  .work-others__list li:first-child {
    padding: 16px 0;
  }
}
.work-others__btn a {
  background-color: #fff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  padding: 16px;
  transition: background-color 0.3s ease-out;
}
.work-others__btn a:hover {
  background-color: #f4f8ff;
}
.work-others__btn a:hover .work-others__img img {
  transform: scale(1.2);
}
.work-others__btn a:hover .btn-circle-arrow__icon {
  background-color: #e8effa;
  border-color: #002666;
}
.work-others__btn a:hover .btn-circle-arrow .arrow--main {
  transform: translateX(100%);
  opacity: 0;
}
.work-others__btn a:hover .btn-circle-arrow .arrow--hover {
  transform: translateX(0);
  opacity: 1;
}
.work-others__btn p {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-others__btn p {
    line-height: 1.5;
  }
}
.work-others__btn p {
  color: #002666;
  font-size: 18px;
}
@media screen and (max-width: 820px) {
  .work-others__btn p {
    font-size: 15px;
  }
}
.work-others__btn .btn-circle-arrow {
  margin-left: auto;
}
.work-others__btn .btn-circle-arrow__icon {
  width: 48px;
  height: 48px;
}
@media screen and (max-width: 767px) {
  .work-others__btn .btn-circle-arrow__icon {
    width: 40px;
    height: 40px;
  }
}
.work-others__btn .btn-circle-arrow .arrow {
  width: 24px;
  height: 24px;
}
.work-others__img {
  width: 30%;
  margin-right: 16px;
  overflow: hidden;
  border-radius: 8px;
}
.work-others__img img {
  border-radius: 8px;
  transition: transform 0.7s ease-out;
}

/*-----------------------------------------------------------------*
work-style
*-----------------------------------------------------------------*/
/*------*/
.workstyle-main .page-full {
  background-color: #e8effa;
  position: relative;
}
.workstyle-main .page-full::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #002666;
  position: absolute;
  bottom: 0;
}
.workstyle-main .page-full__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .workstyle-main .page-full__inner {
    display: block;
  }
}
.workstyle-main .page-full__inner p {
  padding-bottom: 24px;
  color: #002666;
}
.workstyle-main .page-full__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.workstyle-main .page-full__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.workstyle-main .page-full__inner .bread-crumbs li {
  color: #002666;
}
.workstyle-main .page-full__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.workstyle-main .page-full__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.workstyle-main .page-full__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.workstyle-main .page-full__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.workstyle-main .page-full__right {
  width: 50%;
  padding-right: 64px;
  padding-left: 8%;
  padding-top: 12%;
}
.workstyle-main .page-full__right p {
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 1024px) {
  .workstyle-main .page-full__right {
    width: auto;
    padding-top: 140px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .workstyle-main .page-full__right {
    padding: 140px 24px 0;
    margin-bottom: 64px;
  }
}
.workstyle-main .page-full__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .workstyle-main .page-full__left {
    width: 100%;
  }
  .workstyle-main .page-full__left img {
    height: 40vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.workstyle-main .page-full__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.workstyle-main .page-full__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workstyle-main .page-full__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.workstyle-main .page-full__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}
.workstyle__links {
  float: left;
  width: 300px;
  position: sticky;
  top: 120px;
  z-index: 10;
  padding-left: 50px;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 40px;
}
.workstyle__links ul li {
  padding-bottom: 16px;
}
.workstyle__links ul li a {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workstyle__links ul li a {
    line-height: 1.5;
  }
}
.workstyle__links ul li a {
  color: #fff;
  transition:
    color 0.25s ease,
    opacity 0.3s;
}
.workstyle__links ul li a span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  padding-right: 4px;
}
.workstyle__links ul li a:hover {
  color: #2157b2 !important;
}
@media screen and (min-width: 821px) {
  .workstyle__links ul li a.is-in-view {
    opacity: 0.5 !important;
  }
}
@media screen and (max-width: 820px) {
  .workstyle__links {
    float: none;
    position: initial;
    width: auto;
    background-color: #002666;
    padding-top: 0;
  }
  .workstyle__links ul li a {
    color: #fff;
  }
}
.workstyle__layout {
  position: relative;
}
.workstyle__layout[data-active-section="work-life"] .workstyle__links ul li a,
.workstyle__layout[data-active-section="growth"] .workstyle__links ul li a,
.workstyle__layout[data-active-section="workspace"] .workstyle__links ul li a {
  color: #002666;
}
.workstyle__layout[data-active-section="work-life"]
  .workstyle__links
  ul
  li
  a:hover,
.workstyle__layout[data-active-section="growth"]
  .workstyle__links
  ul
  li
  a:hover,
.workstyle__layout[data-active-section="workspace"]
  .workstyle__links
  ul
  li
  a:hover {
  color: #2157b2;
}
.workstyle__layout[data-active-section="philosophy"] .workstyle__links ul li a,
.workstyle__layout[data-active-section="voice"] .workstyle__links ul li a {
  color: #fff;
}
.workstyle__layout[data-active-section="philosophy"]
  .workstyle__links
  ul
  li
  a:hover,
.workstyle__layout[data-active-section="voice"]
  .workstyle__links
  ul
  li
  a:hover {
  opacity: 0.85;
}
.workstyle__content {
  width: 100%;
}
.workstyle__section {
  width: 100%;
  padding-left: 300px;
}
@media screen and (max-width: 820px) {
  .workstyle__section {
    padding-left: 6%;
  }
}
.workstyle__title {
  text-align: center;
  color: #002666;
}
.workstyle__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workstyle__title h3 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.workstyle__title h3 {
  font-size: var(--fz-r-40-32);
  word-break: auto-phrase;
}
.workstyle__number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: var(--fz-r-18-16);
}
.workstyle__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.workstyle__card {
  padding: var(--space-40-32) var(--space-32-24);
  border-bottom: 1px solid #002666;
}
.workstyle__icon {
  width: 40%;
  max-width: 180px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 767px) {
  .workstyle__icon {
    width: 50%;
  }
}
.workstyle__text dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workstyle__text dt {
    line-height: 1.5;
  }
}
.workstyle__text dt {
  padding-bottom: 16px;
  font-size: var(--fz-r-32-24);
  text-align: center;
  word-break: auto-phrase;
}
.workstyle__text dd {
  text-align: justify;
  text-justify: inter-character;
  line-height: 2;
}

.philosophy {
  background-color: #002666;
  padding-top: 40px;
  padding-bottom: 180px;
  padding-right: 6%;
}
.philosophy__inner {
  background-color: #fff;
  border-radius: 24px;
}
.philosophy__inner {
  background-color: #fff;
  border-radius: 24px;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
.philosophy__slider {
  overflow: hidden;
  width: 100%;
  margin-top: 32px;
}
.philosophy__slider--inner {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: loop-animation 40s linear infinite;
}
.philosophy__slider--list {
  display: flex;
  list-style: none;
}
.philosophy__slider--list li {
  width: 340px;
}
.philosophy__slider--list li img {
  width: 100%;
}
.philosophy__text {
  padding: 32px 6% 0;
}
.philosophy__text dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .philosophy__text dt {
    line-height: 1.5;
  }
}
.philosophy__text dt {
  padding-bottom: 16px;
  font-size: var(--fz-r-32-24);
  text-align: center;
  word-break: auto-phrase;
}
.philosophy__text dd {
  text-align: justify;
  text-justify: inter-character;
  line-height: 2;
}

@keyframes loop-animation {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.work-life,
.growth {
  padding-bottom: 100px;
  padding-right: 6%;
}
.work-life .workstyle__title,
.growth .workstyle__title {
  padding-bottom: 24px;
  border-bottom: 1px solid #002666;
}

.work-life {
  position: relative;
}
.work-life::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #f4f8ff;
  position: absolute;
  top: -90px;
  left: 0;
}

.growth {
  background-color: #fff;
  position: relative;
}
.growth::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #fff;
  position: absolute;
  top: -90px;
  left: 0;
}

.workspace {
  padding-bottom: 100px;
  padding-right: 6%;
  position: relative;
}
.workspace::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #f4f8ff;
  position: absolute;
  top: -90px;
  left: 0;
}
.workspace .workstyle__title {
  padding-bottom: var(--space-40-32);
  border-bottom: 1px solid #002666;
}
.workspace__card {
  padding: var(--space-40-32) var(--space-32-24);
  border-bottom: 1px solid #002666;
}
.workspace__title {
  text-align: center;
  margin-bottom: var(--space-24-20);
}
.workspace__title h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workspace__title h4 {
    line-height: 1.5;
  }
}
.workspace__title h4 {
  font-size: var(--fz-r-32-24);
  word-break: auto-phrase;
}
.workspace__sub-title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .workspace__sub-title {
    line-height: 1.5;
  }
}
.workspace__sub-title {
  color: #002666;
  font-size: var(--fz-r-18-16);
  padding-bottom: 8px;
}
.workspace__img {
  width: 70%;
  margin: 0 auto var(--space-32-24);
}
.workspace__img img {
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .workspace__img {
    width: 100%;
  }
}
.workspace__text {
  width: 85%;
  margin: 0 auto;
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .workspace__text {
    width: 100%;
  }
}

.voice {
  background-color: #002666;
  padding-bottom: 160px;
  padding-right: 6%;
  position: relative;
}
.voice::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #002666;
  position: absolute;
  top: -90px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-bottom: 60px;
  }
}
.voice .workstyle__title {
  color: #fff;
}
.voice__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.voice__content li {
  background-color: #fff;
  padding: 32px 24px;
  border-radius: 16px;
}
@media screen and (max-width: 1024px) {
  .voice__content {
    display: block;
  }
  .voice__content li {
    padding: 32px;
    margin-bottom: 24px;
  }
}
.voice__number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 20px;
  color: #002666;
  font-size: 14px;
  white-space: nowrap;
  padding-bottom: 24px;
}
.voice__number::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #002666;
}
.voice__img {
  width: 50%;
  max-width: 180px;
  margin: 0 auto 16px;
}
.voice__info {
  padding-bottom: 16px;
  text-align: center;
}
.voice__info dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .voice__info dt {
    line-height: 1.5;
  }
}
.voice__info dt {
  color: #002666;
  font-size: var(--fz-r-24-20);
  padding-bottom: 8px;
  word-break: auto-phrase;
}
.voice__info dd {
  font-size: 12px;
}
.voice__info dd:nth-of-type(2) {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 18px;
  padding-top: 8px;
}
.voice__text {
  text-align: justify;
  text-justify: inter-character;
}

/*-----------------------------------------------------------------*
 about-us
*-----------------------------------------------------------------*/
.aboutus-main .page-full {
  background-color: #e8effa;
  position: relative;
}
.aboutus-main .page-full::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}
.aboutus-main .page-full__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .aboutus-main .page-full__inner {
    display: block;
  }
}
.aboutus-main .page-full__inner p {
  padding-bottom: 24px;
  color: #002666;
}
.aboutus-main .page-full__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.aboutus-main .page-full__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.aboutus-main .page-full__inner .bread-crumbs li {
  color: #002666;
}
.aboutus-main .page-full__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.aboutus-main .page-full__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.aboutus-main .page-full__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.aboutus-main .page-full__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.aboutus-main .page-full__right {
  width: 50%;
  padding-right: 64px;
  padding-left: 8%;
  padding-top: 12%;
}
.aboutus-main .page-full__right p {
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 1024px) {
  .aboutus-main .page-full__right {
    width: auto;
    padding-top: 140px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .aboutus-main .page-full__right {
    padding: 140px 24px 0;
    margin-bottom: 64px;
  }
}
.aboutus-main .page-full__left {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .aboutus-main .page-full__left {
    width: 100%;
  }
  .aboutus-main .page-full__left img {
    height: 40vh;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.aboutus-main .page-full__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.aboutus-main .page-full__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .aboutus-main .page-full__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.aboutus-main .page-full__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}

.company {
  background-color: #fff;
  padding-bottom: 90px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .company {
    padding-bottom: 64px;
  }
}
.company__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .company__inner {
    width: 90%;
  }
}
.company__title {
  position: relative;
  color: #002666;
  border: 1px solid #002666;
  background-color: #fff;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  margin: 0 auto var(--space-48-40);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .company__title {
    width: 120px;
    height: 120px;
  }
}
.company__title::before,
.company__title::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35vw;
  height: 1px;
  background-color: #002666;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .company__title::before,
  .company__title::after {
    width: 30vw;
  }
}
.company__title::before {
  right: 100%;
}
.company__title::after {
  left: 100%;
}
.company__title h2 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .company__title h2 {
    line-height: 1.5;
  }
}
.company__title h2 {
  font-size: var(--fz-r-32-24);
  line-height: 1;
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.company__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.company__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 14px;
}
.company__container {
  margin-bottom: 100px;
}
.company__container h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .company__container h3 {
    line-height: 1.5;
  }
}
.company__container h3 {
  font-size: var(--fz-r-32-24);
  text-align: center;
  padding-bottom: var(--space-64-56);
}
.company {
  /*-----------------------------------
   メインレイアウト (Grid Group)
  -----------------------------------*/
}
.company__group {
  display: grid;
  grid-template-columns: 1fr minmax(0, 600px) minmax(0, 600px) 1fr;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  align-items: center;
  gap: 0 60px;
  /*-----------------------------------
   スマホ・タブレット共通 (lg以下)
  -----------------------------------*/
}
@media screen and (max-width: 1024px) {
  .company__group {
    grid-template-columns: 1fr;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    gap: 40px;
    align-items: start;
  }
}
.company__group {
  /*-----------------------------------
   HISTORY セクション (画像左・テキスト右)
  -----------------------------------*/
}
.company__group .history__img {
  grid-column: 1/3;
}
@media screen and (max-width: 1024px) {
  .company__group .history__img {
    grid-column: 1/-1;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .company__group .history__img {
    padding: 0;
  }
}
.company__group .history__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0 16px 16px 0;
}
@media screen and (max-width: 1024px) {
  .company__group .history__img img {
    border-radius: 16px;
  }
}
.company__group .history__text {
  grid-column: 3/4;
  padding-right: 20px;
}
@media screen and (max-width: 1024px) {
  .company__group .history__text {
    grid-column: 1/-1;
    padding: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .company__group .history__text {
    padding: 0 12px;
  }
}
.company__group .history__text p {
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-character;
}
.company__group .history__text p:not(:last-child) {
  margin-bottom: 24px;
}
.company__group {
  /*-----------------------------------
   ORIGIN セクション (テキスト左・画像3枚右)
  -----------------------------------*/
}
.company__group .origin__text {
  grid-column: 2/3;
  padding-left: 20px;
  grid-row: 1;
}
@media screen and (max-width: 1024px) {
  .company__group .origin__text {
    grid-column: 1/-1;
    padding: 0 20px;
    order: 2;
    grid-row: auto;
  }
}
@media screen and (max-width: 767px) {
  .company__group .origin__text {
    padding: 0 12px;
  }
}
.company__group .origin__text p {
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-character;
}
.company__group .origin__text p:not(:last-child) {
  margin-bottom: 24px;
}
.company__group .origin__strong-text {
  position: relative;
  padding: 24px;
  margin: 32px 0;
}
.company__group .origin__strong-text p {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .company__group .origin__strong-text {
    padding: 24px 16px;
  }
}
.company__group .origin__strong-text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
}
.company__group .origin__strong-text::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 20px;
  height: 20px;
  border-bottom: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
.company__group .origin__img {
  grid-column: 3/-1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  grid-row: 1;
}
@media screen and (max-width: 1024px) {
  .company__group .origin__img {
    grid-column: 1/-1;
    padding: 0 20px;
    order: 1;
    grid-row: auto;
  }
}
@media screen and (max-width: 767px) {
  .company__group .origin__img {
    gap: 4px;
    padding: 0;
  }
}
.company__group .origin__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.company__group .origin__img img:nth-child(1) {
  grid-column: 1/-1;
  aspect-ratio: 16/9;
  border-radius: 16px 0 0 0;
}
@media screen and (max-width: 1024px) {
  .company__group .origin__img img:nth-child(1) {
    border-radius: 16px 16px 0 0;
  }
}
.company__group .origin__img img:nth-child(2),
.company__group .origin__img img:nth-child(3) {
  aspect-ratio: 4/3;
}
.company__group .origin__img img:nth-child(2) {
  border-radius: 0 0 0 16px;
}
.company__group .origin__img img:nth-child(3) {
  border-radius: 0;
}
@media screen and (max-width: 1024px) {
  .company__group .origin__img img:nth-child(3) {
    border-radius: 0 0 16px 0;
  }
}
@media screen and (max-width: 1024px) {
  .company__group .origin__img img:nth-child(2) {
    border-radius: 0 0 0 16px;
  }
}

.business {
  position: relative;
}
.business::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #f4f8ff;
  position: absolute;
  top: -90px;
  left: 0;
}
.business {
  padding-top: 48px;
}
@media screen and (max-width: 767px) {
  .business {
    padding-top: 24px;
  }
}
.business .bg-organic__works {
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow-x: hidden;
}
.business .bg-organic__works__shape {
  position: absolute;
  filter: blur(20px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.business .bg-organic__works__shape--navy {
  width: 35vw;
  height: 35vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
.business .bg-organic__works__shape--yellow {
  width: 25vw;
  height: 25vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
.business .bg-organic__works__shape--navy {
  top: 2%;
  right: -10%;
  left: auto;
  width: 25vw;
  height: 25vw;
}
@media screen and (max-width: 820px) {
  .business .bg-organic__works__shape--navy {
    width: 35vw;
    height: 35vw;
    right: -15%;
    top: -2%;
  }
}
.business .bg-organic__works__shape--yellow {
  top: 10%;
  right: 10%;
  left: auto;
  width: 20vw;
  height: 20vw;
}
@media screen and (max-width: 820px) {
  .business .bg-organic__works__shape--yellow {
    top: -1%;
    right: 20%;
  }
}
.business__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .business__inner {
    width: 90%;
  }
}
.business__inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 820px) {
  .business__inner {
    margin: 0 auto 140px;
  }
}
.business__title {
  color: #002666;
  text-align: center;
  padding-bottom: var(--space-64-56);
}
.business__title h2 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .business__title h2 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.business__title h2 {
  font-size: var(--fz-r-40-32);
  line-height: 1;
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.business__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
.business__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 140px;
}
@media screen and (max-width: 820px) {
  .business__container {
    display: block;
    margin-bottom: 48px;
  }
}
.business__name {
  position: sticky;
  top: 50px;
  width: 45%;
}
@media screen and (max-width: 820px) {
  .business__name {
    position: relative;
    width: 80%;
    margin: 0 auto;
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .business__name {
    width: 100%;
  }
}
.business__name h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .business__name h3 {
    line-height: 1.5;
  }
}
.business__name h3 {
  color: #002666;
  font-size: var(--fz-r-32-24);
  --_corner-radius: 36px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: 16px 32px 16px 16px;
  background: #f4f8ff;
  border-radius: 0 0 var(--_corner-radius) 0;
  --mask-inverted-radius: radial-gradient(
    circle at 100% 0,
    transparent var(--_corner-radius),
    #000 calc(var(--_corner-radius) + 0.5px)
  );
}
.business__name h3::before,
.business__name h3::after {
  content: "";
  position: absolute;
  display: block;
  width: var(--_corner-radius);
  height: var(--_corner-radius);
  background-color: #f4f8ff;
  -webkit-mask-image: var(--mask-inverted-radius);
  mask-image: var(--mask-inverted-radius);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  pointer-events: none;
}
.business__name h3::before {
  top: 86px;
  left: 0;
  transform: rotate(90deg);
}
@media screen and (max-width: 820px) {
  .business__name h3::before {
    top: 78px;
  }
}
@media screen and (max-width: 767px) {
  .business__name h3::before {
    top: 100%;
  }
}
.business__name h3::after {
  top: 0;
  left: 100%;
  transform: rotate(90deg);
}
.business__img img {
  border-radius: 16px;
}
.business__items {
  width: 45%;
  margin-top: var(--space-48-40);
}
.business__items dl {
  margin-bottom: 80px;
}
.business__items dl dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .business__items dl dt {
    line-height: 1.5;
  }
}
.business__items dl dt {
  color: #002666;
  font-size: var(--fz-r-32-24);
  margin-bottom: 32px;
  border-bottom: 1px solid #002666;
  padding: 0 24px 32px;
}
@media screen and (max-width: 820px) {
  .business__items dl dt {
    text-align: center;
  }
}
.business__items dl dd {
  line-height: 2;
  padding: 0 24px;
  text-align: justify;
  text-justify: inter-character;
}
.business__items dl dd:not(:last-of-type) {
  padding-bottom: var(--space-32-24);
}
@media screen and (max-width: 820px) {
  .business__items {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .business__items dl dt {
    margin-bottom: 24px;
    padding: 0 16px 24px;
  }
  .business__items dl dd {
    padding: 0 16px;
  }
}

/*-----------------------------------------------------------------*
work-style
*-----------------------------------------------------------------*/
/*------*/
.new-graduate-main .page-simple {
  background-color: #e8effa;
  padding: 180px 0;
  position: relative;
  top: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .new-graduate-main .page-simple {
    padding: 140px 0;
  }
}
.new-graduate-main .page-simple .bg-organic__page {
  z-index: 0;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.new-graduate-main .page-simple .bg-organic__page__shape {
  position: absolute;
  filter: blur(30px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.new-graduate-main .page-simple .bg-organic__page__shape--navy {
  top: -20%;
  right: -10%;
  width: 35vw;
  height: 35vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .new-graduate-main .page-simple .bg-organic__page__shape--navy {
    width: 50vw;
    height: 50vw;
  }
}
.new-graduate-main .page-simple .bg-organic__page__shape--yellow {
  top: 30%;
  right: 20%;
  width: 20vw;
  height: 20vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
@media screen and (max-width: 767px) {
  .new-graduate-main .page-simple .bg-organic__page__shape--yellow {
    top: 20%;
    width: 30vw;
    height: 30vw;
  }
}
.new-graduate-main .page-simple::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #f4f8ff;
  position: absolute;
  bottom: 0;
}
.new-graduate-main .page-simple__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .new-graduate-main .page-simple__inner {
    width: 90%;
  }
}
.new-graduate-main .page-simple__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.new-graduate-main .page-simple__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.new-graduate-main .page-simple__inner .bread-crumbs li {
  color: #002666;
}
.new-graduate-main .page-simple__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.new-graduate-main .page-simple__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.new-graduate-main .page-simple__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.new-graduate-main
  .page-simple__inner
  .bread-crumbs
  li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.new-graduate-main .page-simple__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.new-graduate-main .page-simple__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .new-graduate-main .page-simple__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.new-graduate-main .page-simple__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}
.new-graduate__layout {
  position: relative;
}
.new-graduate__links {
  float: left;
  width: 300px;
  position: sticky;
  top: 120px;
  z-index: 10;
  padding-left: 50px;
  height: -moz-fit-content;
  height: fit-content;
  padding-top: 40px;
}
.new-graduate__links ul li {
  padding-bottom: 16px;
}
.new-graduate__links ul li a {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .new-graduate__links ul li a {
    line-height: 1.5;
  }
}
.new-graduate__links ul li a {
  color: #002666;
  transition: opacity 0.3s;
}
.new-graduate__links ul li a span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  padding-right: 4px;
}
.new-graduate__links ul li a:hover {
  color: #2157b2;
}
@media screen and (min-width: 821px) {
  .new-graduate__links ul li a.is-in-view {
    opacity: 0.5 !important;
  }
}
@media screen and (max-width: 820px) {
  .new-graduate__links {
    float: none;
    position: initial;
    width: auto;
    padding-top: 0;
  }
}
.new-graduate__content {
  width: 100%;
}
.new-graduate__section {
  width: 100%;
  padding-left: 300px;
}
@media screen and (max-width: 820px) {
  .new-graduate__section {
    padding-left: 6%;
  }
}
.new-graduate__title {
  text-align: center;
  color: #002666;
}
.new-graduate__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .new-graduate__title h3 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.new-graduate__title h3 {
  font-size: var(--fz-r-40-32);
}
.new-graduate__number {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: var(--fz-r-18-16);
}

.statue {
  padding-top: 40px;
  padding-bottom: 180px;
  padding-right: 6%;
}
.statue__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.statue__content {
  position: relative;
  border-radius: 24px;
  background-color: #fff;
  padding: 10% 0 80px;
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .statue__content {
    padding: 24px 0 64px;
    margin-top: 100px;
  }
}
.statue__image {
  width: 70%;
  position: absolute;
  top: -8%;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .statue__image {
    width: 90%;
    top: -64px;
  }
}
.statue__text {
  padding: 40px 6% 64px;
  border-bottom: 1px solid #d5d5d5;
}
.statue__text dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .statue__text dt {
    line-height: 1.5;
  }
}
.statue__text dt {
  padding-bottom: var(--space-24-20);
  font-size: var(--fz-r-32-24);
  text-align: center;
  color: #002666;
}
.statue__text dd {
  text-align: justify;
  text-justify: inter-character;
  line-height: 2;
  padding-bottom: 16px;
}
.statue__text dd:last-of-type {
  padding-bottom: 0;
}
.statue .keyword__container {
  padding: var(--space-64-56) 6% 0;
}
.statue .keyword__container h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .statue .keyword__container h4 {
    line-height: 1.5;
  }
}
.statue .keyword__container h4 {
  padding-bottom: var(--space-32-24);
  font-size: var(--fz-r-24-20);
  text-align: center;
  color: #002666;
}
.statue .keyword__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 16px 0;
}
@media screen and (max-width: 767px) {
  .statue .keyword__list {
    display: block;
  }
}
.statue .keyword__items {
  width: 48%;
  margin: 0 auto;
  background-color: #f4f8ff;
  border-radius: 8px;
  padding: var(--space-32-24) var(--space-24-20);
}
.statue .keyword__items dt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: var(--space-24-20);
}
.statue .keyword__items dt p {
  color: #002666;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .statue .keyword__items dt p {
    line-height: 1.5;
  }
}
.statue .keyword__items dt p {
  font-size: var(--fz-r-24-20);
}
.statue .keyword__items--icon {
  width: 50px;
  background-color: #fff;
  border-radius: 50px;
  padding: 8px;
  margin-right: 16px;
}
.statue .keyword__items dd {
  line-height: 2;
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .statue .keyword__items {
    width: 100%;
    margin-bottom: 16px;
  }
  .statue .keyword__items:last-of-type {
    margin-bottom: 0;
  }
}

.selection {
  background-color: #fff;
  position: relative;
}
.selection::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #fff;
  position: absolute;
  top: -90px;
  left: 0;
}
.selection {
  padding-right: 6%;
}
.selection__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.selection__container {
  padding: var(--space-64-56) 0;
}
.selection__items {
  border: 1px solid #002666;
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
}
.selection__items dt {
  width: 30%;
  padding: 24px 16px;
  text-align: center;
  display: grid; /* Gridレイアウトにする */
  place-items: center; /* 上下左右ど真ん中に配置 */
}
.selection__items dt .selection__step {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: 14px;
  background-color: #f4f8ff;
  padding: 6px 16px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 8px;
}
.selection__items dt p {
  color: #002666;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .selection__items dt p {
    line-height: 1.5;
  }
}
.selection__items dt p {
  font-size: var(--fz-r-24-20);
}
.selection__items dt p span {
  font-size: 14px;
  display: block;
}
.selection__items dd {
  font-size: 14px;
  width: 70%;
  padding: var(--space-32-24);
  line-height: 2;
  text-align: justify;
  text-justify: inter-character;
  border-left: 1px solid #d5d5d5;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .selection__items {
    display: block;
  }
  .selection__items dt {
    width: 100%;
  }
  .selection__items dd {
    width: 100%;
    border-left: none;
    border-top: 1px solid #d5d5d5;
  }
}

/*-----------------------------------------------------------------*
page-joblist
*-----------------------------------------------------------------*/
.job-list .page-simple {
  background-color: #e8effa;
  padding: 180px 0;
  position: relative;
  top: 0;
  right: 0;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .job-list .page-simple {
    padding: 140px 0;
  }
}
.job-list .page-simple .bg-organic__page {
  z-index: 0;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}
.job-list .page-simple .bg-organic__page__shape {
  position: absolute;
  filter: blur(30px);
  animation:
    morph 10s ease-in-out infinite,
    drift 20s linear infinite;
}
.job-list .page-simple .bg-organic__page__shape--navy {
  top: -20%;
  right: -10%;
  width: 35vw;
  height: 35vw;
  max-width: 800px;
  max-height: 800px;
  background-color: rgba(0, 38, 102, 0.2);
}
@media screen and (max-width: 767px) {
  .job-list .page-simple .bg-organic__page__shape--navy {
    width: 50vw;
    height: 50vw;
  }
}
.job-list .page-simple .bg-organic__page__shape--yellow {
  top: 30%;
  right: 20%;
  width: 20vw;
  height: 20vw;
  max-width: 600px;
  max-height: 600px;
  background-color: rgba(255, 217, 0, 0.2);
  animation-delay:
    -3s,
    -5s;
  animation-duration: 12s, 25s;
}
@media screen and (max-width: 767px) {
  .job-list .page-simple .bg-organic__page__shape--yellow {
    top: 20%;
    width: 30vw;
    height: 30vw;
  }
}
.job-list .page-simple::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #f4f8ff;
  position: absolute;
  bottom: 0;
}
.job-list .page-simple__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .job-list .page-simple__inner {
    width: 90%;
  }
}
.job-list .page-simple__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.job-list .page-simple__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.job-list .page-simple__inner .bread-crumbs li {
  color: #002666;
}
.job-list .page-simple__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.job-list .page-simple__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.job-list .page-simple__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.job-list .page-simple__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.job-list .page-simple__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.job-list .page-simple__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .job-list .page-simple__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.job-list .page-simple__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}

.search-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .search-layout {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .search-layout {
    display: block;
  }
}

.joblist__search {
  margin: 0 0 64px;
  position: sticky;
  top: 80px;
}
@media screen and (max-width: 1024px) {
  .joblist__search {
    position: static;
  }
}
.joblist__search .container {
  margin: 0 auto;
}
.joblist__search .container #om-forms-container .joblist__search--topparts h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .joblist__search
    .container
    #om-forms-container
    .joblist__search--topparts
    h3 {
    line-height: 1.5;
  }
}
.joblist__search .container #om-forms-container .joblist__search--topparts h3 {
  color: #002666;
  font-size: 18px;
  padding-bottom: 16px;
}
.joblist__search .container #om-forms-container select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #313131;
  padding: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(../images/job/arrow_icon.svg);
  background-position: right 24px center;
  background-repeat: no-repeat;
  background-size: 13px 13px;
  margin-bottom: 18px;
  font-size: 16px;
  background-color: #fff;
}
.joblist__search .container #om-forms-container input[type="text"] {
  width: 100%;
  font-size: 16px;
  border: 1px solid #d9d9d9;
  border-radius: 8px;
  color: #313131;
  padding: 16px;
  margin-bottom: 24px;
}
.joblist__search
  .container
  #om-forms-container
  input[type="text"]::-moz-placeholder {
  color: #d9d9d9;
}
.joblist__search
  .container
  #om-forms-container
  input[type="text"]::placeholder {
  color: #d9d9d9;
}
.joblist__search .container #om-forms-container input[type="checkbox"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
  vertical-align: middle;
  position: relative;
  margin-right: 8px;
}
.joblist__search .container #om-forms-container input[type="checkbox"]::before,
.joblist__search .container #om-forms-container input[type="checkbox"]::after {
  content: "";
  display: block;
  position: absolute;
}
.joblist__search .container #om-forms-container input[type="checkbox"]::before {
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  width: 20px; /*チェックボックスの横幅*/
  height: 20px; /*チェックボックスの縦幅*/
  transform: translateY(-50%);
  top: 50%;
  left: 5px;
}
.joblist__search .container #om-forms-container input[type="checkbox"]::after {
  border-bottom: 3px solid #002666; /*チェックの太さ*/
  border-left: 3px solid #002666; /*チェックの太さ*/
  opacity: 0; /*チェック前は非表示*/
  height: 6px; /*チェックの高さ*/
  width: 11px; /*チェックの横幅*/
  transform: rotate(-45deg);
  top: -7px; /*チェック時の位置調整*/
  left: 10px; /*チェック時の位置調整*/
}
@media screen and (max-width: 820px) {
  .joblist__search
    .container
    #om-forms-container
    input[type="checkbox"]::after {
    top: 0px;
  }
}
.joblist__search
  .container
  #om-forms-container
  input[type="checkbox"]:checked::after {
  opacity: 1; /*チェック後表示*/
}
.joblist__search .container #om-forms-container label {
  display: block;
  margin-bottom: 8px;
}
.joblist__search .container #om-forms-container button[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: 50px;
  background-color: #002666;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .joblist__search .container #om-forms-container button[type="submit"] {
    line-height: 1.5;
  }
}
.joblist__search .container #om-forms-container button[type="submit"] {
  font-size: 16px;
  color: #fff;
  text-align: center;
  width: 100%;
  padding: 8px 0;
  cursor: pointer;
}
.joblist__search .container #om-forms-container button[type="submit"]::before {
  content: "";
  display: inline-block;
  background-image: url(../images/job/search_icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  position: relative;
  top: 2px;
}
.joblist__search
  .container
  #om-forms-container
  .joblist__search--bottomparts
  .joblist__search--hiring {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .joblist__search .container #om-forms-container .joblist__search--topparts {
    display: block;
  }
  .joblist__search
    .container
    #om-forms-container
    .joblist__search--topparts
    select {
    margin-bottom: 16px;
    padding: 16px;
  }
  .joblist__search .container #om-forms-container input[type="text"] {
    padding: 16px;
  }
  .joblist__search .container #om-forms-container .joblist__search--prefecture,
  .joblist__search .container #om-forms-container .joblist__search--jobtype {
    width: 100%;
  }
  .joblist__search
    .container
    #om-forms-container
    .joblist__search--bottomparts {
    display: block;
  }
  .joblist__search
    .container
    #om-forms-container
    .joblist__search--bottomparts
    .joblist__search--hiring {
    width: 100%;
    margin-bottom: 24px;
    margin-right: 0;
  }
  .joblist__search
    .container
    #om-forms-container
    .joblist__search--bottomparts
    .joblist__search--hiring
    p {
    margin-bottom: 8px;
  }
  .joblist__search .container #om-forms-container button[type="submit"] {
    width: 100%;
  }
}

.joblist {
  background-color: #f4f8ff;
  padding: 0 0 120px;
}
.joblist .container {
  max-width: 1200px;
  margin: 0 auto;
}
.joblist .container .joblist__result {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.joblist .container .joblist__result p {
  font-size: 14px;
}
.joblist .container .joblist__result p span {
  color: #002666;
  font-weight: bold;
  margin: 0 3px;
}
.joblist .container .joblist__result .joblist__result--number {
  font-size: 14px;
  color: #d5d5d5;
}
.joblist .container .joblist__items .om-joblist-empty {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .joblist .container .joblist__items .om-joblist-empty {
    font-weight: 700;
    line-height: 1.5;
  }
}
.joblist .container .joblist__items .om-joblist-empty {
  font-size: 18px;
  display: block;
  margin: 40px 0 0;
  text-align: center;
}
.joblist .container .joblist__items .joblist__card {
  background-color: #fff;
  padding: 24px 32px;
  align-items: center;
  position: relative;
  margin-bottom: 24px;
  border-radius: 16px;
  transition: 0.3s;
}
.joblist .container .joblist__items .joblist__card:hover {
  background-color: #e8effa;
}
.joblist .container .joblist__items .joblist__card--inner {
  display: flex;
  align-items: center;
  color: #313131;
}
.joblist
  .container
  .joblist__items
  .joblist__card--inner:hover
  .btn-circle-arrow__icon {
  background-color: #e8effa;
  border-color: #002666;
}
.joblist
  .container
  .joblist__items
  .joblist__card--inner:hover
  .btn-circle-arrow
  .arrow--main {
  transform: translateX(100%);
  opacity: 0;
}
.joblist
  .container
  .joblist__items
  .joblist__card--inner:hover
  .btn-circle-arrow
  .arrow--hover {
  transform: translateX(0);
  opacity: 1;
}
.joblist .container .joblist__items .joblist__card .joblist__image {
  width: 35%;
  margin-right: 24px;
}
.joblist .container .joblist__items .joblist__card .joblist__image img {
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 160px;
}
.joblist .container .joblist__items .joblist__card .joblist__info {
  width: 65%;
}
.joblist .container .joblist__items .joblist__card .joblist__card--title p {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .joblist .container .joblist__items .joblist__card .joblist__card--title p {
    line-height: 1.5;
  }
}
.joblist .container .joblist__items .joblist__card .joblist__card--title p {
  font-size: 12px;
  color: #002666;
  background-color: #f4f8ff;
  padding: 4px 8px;
  border-radius: 5px;
  margin-bottom: 4px;
  display: inline-block;
}
.joblist .container .joblist__items .joblist__card .joblist__card--title h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .joblist .container .joblist__items .joblist__card .joblist__card--title h4 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.joblist .container .joblist__items .joblist__card .joblist__card--title h4 {
  font-size: 18px;
  padding-bottom: 4px;
}
.joblist .container .joblist__items .joblist__card .joblist__card--info {
  margin-right: 5%;
}
.joblist .container .joblist__items .joblist__card .joblist__card--info li {
  font-size: 14px;
  line-height: 170%;
  margin-bottom: 4px;
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--info
  li::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 16px;
  height: 16px;
  vertical-align: sub;
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--info
  li:first-child::before {
  background-image: url(../images/job/map_icon.svg);
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--info
  li:nth-child(2)::before {
  background-image: url(../images/job/salary_icon.svg);
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--info
  li:last-child::before {
  background-image: url(../images/job/hiring_icon.svg);
  margin-right: 3px;
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--info
  li:last-child {
  margin-bottom: 0;
}
.joblist .container .joblist__items .joblist__card .joblist__card--btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--btn
  .btn-circle-arrow
  .btn-circle-arrow__icon {
  width: 48px;
  height: 48px;
}
.joblist
  .container
  .joblist__items
  .joblist__card
  .joblist__card--btn
  .btn-circle-arrow
  .btn-circle-arrow__icon
  .arrow {
  width: 24px;
  height: 24px;
}
.joblist .container .joblist__pagination {
  display: flex;
  justify-content: center;
  margin: 64px;
}
.joblist .container .joblist__pagination > div {
  color: #002666;
  border: 1px solid #002666;
  border-radius: 4px;
  padding: 12px 20px;
  margin: 0 12px;
  cursor: pointer;
  background-color: #fff;
  transition: 0.3s;
}
.joblist
  .container
  .joblist__pagination
  > div[data-jobs-page-status="current"] {
  background-color: #002666;
  color: #fff;
  pointer-events: none;
}
.joblist .container .joblist__pagination > div:hover {
  background-color: #f4f8ff;
}
@media screen and (max-width: 820px) {
  .joblist .container .joblist__items .joblist__card .joblist__card--title {
    width: 100%;
    margin-bottom: 8px;
  }
  .joblist .container .joblist__items .joblist__card .joblist__card--info {
    width: 100%;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .joblist .container .joblist__items .joblist__card {
    padding: 24px 24px 32px;
  }
  .joblist .container .joblist__items .joblist__card--inner {
    display: block;
  }
  .joblist .container .joblist__items .joblist__card .joblist__image {
    width: 100%;
    padding-bottom: 16px;
    margin-right: 0;
  }
  .joblist .container .joblist__items .joblist__card .joblist__info {
    width: 100%;
  }
  .joblist .container .joblist__items .joblist__card .joblist__card--title h4 {
    font-size: 16px;
    padding-bottom: 0;
  }
  .joblist .container .joblist__items .joblist__card--info {
    margin-right: 0;
  }
  .joblist .container .joblist__items .joblist__card .joblist__card--btn a {
    font-size: 16px;
  }
  .joblist .container .joblist__pagination {
    margin: 64px 0 0;
    flex-wrap: wrap;
  }
  .joblist .container .joblist__pagination > div {
    padding: 8px 16px;
    margin: 0 12px 14px;
  }
}

#om-jobs-container .om-joblist-empty {
  margin-top: 220px;
  position: relative;
}
#om-jobs-container .om-joblist-empty::before {
  content: "";
  background-image: url(../images/job/empty_icon.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: inline-block;
  width: 120px;
  height: 120px;
  position: absolute;
  top: -160px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

/*-----------------------------------------------------------------*
page-requirements
*-----------------------------------------------------------------*/
.om-swiper-root img {
  height: 300px;
  -o-object-fit: cover;
  object-fit: cover;
}

.requirements__head {
  background-color: #f4f8ff;
}
.requirements__head .container {
  width: 85%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 42px 0;
}
.requirements__head .container .page__breadcrumb {
  padding-top: 80px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.requirements__head .container .page__breadcrumb::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 8px;
}
.requirements__head .container .page__breadcrumb li {
  color: #002666;
}
.requirements__head .container .page__breadcrumb li a {
  color: #002666;
  padding-right: 12px;
  transition: 0.3s;
}
.requirements__head .container .page__breadcrumb li a:hover {
  color: #002666;
}
.requirements__head .container .page__breadcrumb li::after {
  content: "-";
  display: inline-block;
  margin-right: 12px;
  color: #002666;
}
.requirements__head .container .page__breadcrumb li:last-child {
  padding-right: 0;
}
.requirements__head .container .page__breadcrumb li:last-child::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .requirements__head .container {
    width: 90%;
  }
  .requirements__head .container .page__breadcrumb {
    font-size: 12px;
    margin-bottom: 0;
    padding-top: 56px;
  }
}

.om-movie-area-root {
  margin: 120px auto;
  text-align: center;
}

.requirements {
  margin-bottom: 180px;
}
.requirements__inner {
  background-color: #fff;
  border-radius: 16px;
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .requirements__inner {
    width: 90%;
  }
}
.requirements__inner {
  max-width: 1000px;
}
.requirements__top {
  border-bottom: 1px solid #d5d5d5;
  padding: 40px 32px 32px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .requirements__top {
    padding: 40px 18px;
  }
}
.requirements__bottom {
  padding: 0 32px 40px;
}
@media screen and (max-width: 767px) {
  .requirements__bottom {
    padding: 0 18px 40px;
  }
}
.requirements iframe {
  width: 65%;
  height: 470px;
}
@media screen and (max-width: 820px) {
  .requirements iframe {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .requirements iframe {
    height: 240px;
  }
}

.om-image-area-root .om-image-area {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.om-image-area-root .om-image-area img {
  border-radius: 16px;
  width: 90%;
  margin: 0 auto;
  vertical-align: bottom;
}
@media screen and (max-width: 767px) {
  .om-image-area-root .om-image-area {
    width: 100%;
  }
}

.om-job_type-area-root .om-job_type2-area {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.om-job_type-area-root .om-job_type2-area div {
  color: #002666;
  border: 1px solid #002666;
  border-radius: 4px;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .om-job_type-area-root .om-job_type2-area {
    width: 100%;
  }
}

.om-title-area-root .om-title-area {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.om-title-area-root .om-title-area div {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 24px;
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .om-title-area-root .om-title-area {
    width: 100%;
  }
  .om-title-area-root .om-title-area div {
    font-size: 24px;
    padding-bottom: 16px;
  }
}

.om-header-area-root .om-header-area {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.om-header-area-root .om-header-area div {
  font-size: 18px;
  line-height: 170%;
  margin-bottom: 8px;
}
.om-header-area-root .om-header-area div::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  margin-right: 6px;
  vertical-align: text-bottom;
}
.om-header-area-root .om-header-area div:first-child::before {
  background-image: url(../images/job/map_icon.svg);
}
.om-header-area-root .om-header-area div:nth-child(2)::before {
  background-image: url(../images/job/salary_icon.svg);
}
.om-header-area-root .om-header-area div:last-child::before {
  background-image: url(../images/job/hiring_icon.svg);
}
.om-header-area-root .om-header-area div:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .om-header-area-root .om-header-area {
    width: 100%;
  }
  .om-header-area-root .om-header-area div {
    font-size: 16px;
  }
  .om-header-area-root .om-header-area div::before {
    width: 20px;
    height: 20px;
    margin-right: 4px;
  }
}

.om-about-job-area-root .om-about-job-area,
.om-about-job-area-root .om-salary-area,
.om-about-job-area-root .om-job-description-area,
.om-about-job-area-root .om-about-application-area,
.om-about-job-area-root .om-company-information-area,
.om-about-job-area-root .om-other-area,
.om-salary-area-root .om-about-job-area,
.om-salary-area-root .om-salary-area,
.om-salary-area-root .om-job-description-area,
.om-salary-area-root .om-about-application-area,
.om-salary-area-root .om-company-information-area,
.om-salary-area-root .om-other-area,
.om-job-description-area-root .om-about-job-area,
.om-job-description-area-root .om-salary-area,
.om-job-description-area-root .om-job-description-area,
.om-job-description-area-root .om-about-application-area,
.om-job-description-area-root .om-company-information-area,
.om-job-description-area-root .om-other-area,
.om-about-application-area-root .om-about-job-area,
.om-about-application-area-root .om-salary-area,
.om-about-application-area-root .om-job-description-area,
.om-about-application-area-root .om-about-application-area,
.om-about-application-area-root .om-company-information-area,
.om-about-application-area-root .om-other-area,
.om-company-information-area-root .om-about-job-area,
.om-company-information-area-root .om-salary-area,
.om-company-information-area-root .om-job-description-area,
.om-company-information-area-root .om-about-application-area,
.om-company-information-area-root .om-company-information-area,
.om-company-information-area-root .om-other-area,
.om-other-area-root .om-about-job-area,
.om-other-area-root .om-salary-area,
.om-other-area-root .om-job-description-area,
.om-other-area-root .om-about-application-area,
.om-other-area-root .om-company-information-area,
.om-other-area-root .om-other-area {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .om-about-job-area-root .om-about-job-area,
  .om-about-job-area-root .om-salary-area,
  .om-about-job-area-root .om-job-description-area,
  .om-about-job-area-root .om-about-application-area,
  .om-about-job-area-root .om-company-information-area,
  .om-about-job-area-root .om-other-area,
  .om-salary-area-root .om-about-job-area,
  .om-salary-area-root .om-salary-area,
  .om-salary-area-root .om-job-description-area,
  .om-salary-area-root .om-about-application-area,
  .om-salary-area-root .om-company-information-area,
  .om-salary-area-root .om-other-area,
  .om-job-description-area-root .om-about-job-area,
  .om-job-description-area-root .om-salary-area,
  .om-job-description-area-root .om-job-description-area,
  .om-job-description-area-root .om-about-application-area,
  .om-job-description-area-root .om-company-information-area,
  .om-job-description-area-root .om-other-area,
  .om-about-application-area-root .om-about-job-area,
  .om-about-application-area-root .om-salary-area,
  .om-about-application-area-root .om-job-description-area,
  .om-about-application-area-root .om-about-application-area,
  .om-about-application-area-root .om-company-information-area,
  .om-about-application-area-root .om-other-area,
  .om-company-information-area-root .om-about-job-area,
  .om-company-information-area-root .om-salary-area,
  .om-company-information-area-root .om-job-description-area,
  .om-company-information-area-root .om-about-application-area,
  .om-company-information-area-root .om-company-information-area,
  .om-company-information-area-root .om-other-area,
  .om-other-area-root .om-about-job-area,
  .om-other-area-root .om-salary-area,
  .om-other-area-root .om-job-description-area,
  .om-other-area-root .om-about-application-area,
  .om-other-area-root .om-company-information-area,
  .om-other-area-root .om-other-area {
    width: 100%;
  }
}
.om-about-job-area-root .om-about-job-area .om-job-container,
.om-about-job-area-root .om-salary-area .om-job-container,
.om-about-job-area-root .om-job-description-area .om-job-container,
.om-about-job-area-root .om-about-application-area .om-job-container,
.om-about-job-area-root .om-company-information-area .om-job-container,
.om-about-job-area-root .om-other-area .om-job-container,
.om-salary-area-root .om-about-job-area .om-job-container,
.om-salary-area-root .om-salary-area .om-job-container,
.om-salary-area-root .om-job-description-area .om-job-container,
.om-salary-area-root .om-about-application-area .om-job-container,
.om-salary-area-root .om-company-information-area .om-job-container,
.om-salary-area-root .om-other-area .om-job-container,
.om-job-description-area-root .om-about-job-area .om-job-container,
.om-job-description-area-root .om-salary-area .om-job-container,
.om-job-description-area-root .om-job-description-area .om-job-container,
.om-job-description-area-root .om-about-application-area .om-job-container,
.om-job-description-area-root .om-company-information-area .om-job-container,
.om-job-description-area-root .om-other-area .om-job-container,
.om-about-application-area-root .om-about-job-area .om-job-container,
.om-about-application-area-root .om-salary-area .om-job-container,
.om-about-application-area-root .om-job-description-area .om-job-container,
.om-about-application-area-root .om-about-application-area .om-job-container,
.om-about-application-area-root .om-company-information-area .om-job-container,
.om-about-application-area-root .om-other-area .om-job-container,
.om-company-information-area-root .om-about-job-area .om-job-container,
.om-company-information-area-root .om-salary-area .om-job-container,
.om-company-information-area-root .om-job-description-area .om-job-container,
.om-company-information-area-root .om-about-application-area .om-job-container,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container,
.om-company-information-area-root .om-other-area .om-job-container,
.om-other-area-root .om-about-job-area .om-job-container,
.om-other-area-root .om-salary-area .om-job-container,
.om-other-area-root .om-job-description-area .om-job-container,
.om-other-area-root .om-about-application-area .om-job-container,
.om-other-area-root .om-company-information-area .om-job-container,
.om-other-area-root .om-other-area .om-job-container {
  padding: 32px 0;
  border-bottom: 1px solid #d5d5d5;
}
.om-about-job-area-root .om-about-job-area .om-job-container dt,
.om-about-job-area-root .om-salary-area .om-job-container dt,
.om-about-job-area-root .om-job-description-area .om-job-container dt,
.om-about-job-area-root .om-about-application-area .om-job-container dt,
.om-about-job-area-root .om-company-information-area .om-job-container dt,
.om-about-job-area-root .om-other-area .om-job-container dt,
.om-salary-area-root .om-about-job-area .om-job-container dt,
.om-salary-area-root .om-salary-area .om-job-container dt,
.om-salary-area-root .om-job-description-area .om-job-container dt,
.om-salary-area-root .om-about-application-area .om-job-container dt,
.om-salary-area-root .om-company-information-area .om-job-container dt,
.om-salary-area-root .om-other-area .om-job-container dt,
.om-job-description-area-root .om-about-job-area .om-job-container dt,
.om-job-description-area-root .om-salary-area .om-job-container dt,
.om-job-description-area-root .om-job-description-area .om-job-container dt,
.om-job-description-area-root .om-about-application-area .om-job-container dt,
.om-job-description-area-root .om-company-information-area .om-job-container dt,
.om-job-description-area-root .om-other-area .om-job-container dt,
.om-about-application-area-root .om-about-job-area .om-job-container dt,
.om-about-application-area-root .om-salary-area .om-job-container dt,
.om-about-application-area-root .om-job-description-area .om-job-container dt,
.om-about-application-area-root .om-about-application-area .om-job-container dt,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container
  dt,
.om-about-application-area-root .om-other-area .om-job-container dt,
.om-company-information-area-root .om-about-job-area .om-job-container dt,
.om-company-information-area-root .om-salary-area .om-job-container dt,
.om-company-information-area-root .om-job-description-area .om-job-container dt,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container
  dt,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container
  dt,
.om-company-information-area-root .om-other-area .om-job-container dt,
.om-other-area-root .om-about-job-area .om-job-container dt,
.om-other-area-root .om-salary-area .om-job-container dt,
.om-other-area-root .om-job-description-area .om-job-container dt,
.om-other-area-root .om-about-application-area .om-job-container dt,
.om-other-area-root .om-company-information-area .om-job-container dt,
.om-other-area-root .om-other-area .om-job-container dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .om-about-job-area-root .om-about-job-area .om-job-container dt,
  .om-about-job-area-root .om-salary-area .om-job-container dt,
  .om-about-job-area-root .om-job-description-area .om-job-container dt,
  .om-about-job-area-root .om-about-application-area .om-job-container dt,
  .om-about-job-area-root .om-company-information-area .om-job-container dt,
  .om-about-job-area-root .om-other-area .om-job-container dt,
  .om-salary-area-root .om-about-job-area .om-job-container dt,
  .om-salary-area-root .om-salary-area .om-job-container dt,
  .om-salary-area-root .om-job-description-area .om-job-container dt,
  .om-salary-area-root .om-about-application-area .om-job-container dt,
  .om-salary-area-root .om-company-information-area .om-job-container dt,
  .om-salary-area-root .om-other-area .om-job-container dt,
  .om-job-description-area-root .om-about-job-area .om-job-container dt,
  .om-job-description-area-root .om-salary-area .om-job-container dt,
  .om-job-description-area-root .om-job-description-area .om-job-container dt,
  .om-job-description-area-root .om-about-application-area .om-job-container dt,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-job-description-area-root .om-other-area .om-job-container dt,
  .om-about-application-area-root .om-about-job-area .om-job-container dt,
  .om-about-application-area-root .om-salary-area .om-job-container dt,
  .om-about-application-area-root .om-job-description-area .om-job-container dt,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container
    dt,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-about-application-area-root .om-other-area .om-job-container dt,
  .om-company-information-area-root .om-about-job-area .om-job-container dt,
  .om-company-information-area-root .om-salary-area .om-job-container dt,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container
    dt,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container
    dt,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-company-information-area-root .om-other-area .om-job-container dt,
  .om-other-area-root .om-about-job-area .om-job-container dt,
  .om-other-area-root .om-salary-area .om-job-container dt,
  .om-other-area-root .om-job-description-area .om-job-container dt,
  .om-other-area-root .om-about-application-area .om-job-container dt,
  .om-other-area-root .om-company-information-area .om-job-container dt,
  .om-other-area-root .om-other-area .om-job-container dt {
    line-height: 1.5;
  }
}
.om-about-job-area-root .om-about-job-area .om-job-container dt,
.om-about-job-area-root .om-salary-area .om-job-container dt,
.om-about-job-area-root .om-job-description-area .om-job-container dt,
.om-about-job-area-root .om-about-application-area .om-job-container dt,
.om-about-job-area-root .om-company-information-area .om-job-container dt,
.om-about-job-area-root .om-other-area .om-job-container dt,
.om-salary-area-root .om-about-job-area .om-job-container dt,
.om-salary-area-root .om-salary-area .om-job-container dt,
.om-salary-area-root .om-job-description-area .om-job-container dt,
.om-salary-area-root .om-about-application-area .om-job-container dt,
.om-salary-area-root .om-company-information-area .om-job-container dt,
.om-salary-area-root .om-other-area .om-job-container dt,
.om-job-description-area-root .om-about-job-area .om-job-container dt,
.om-job-description-area-root .om-salary-area .om-job-container dt,
.om-job-description-area-root .om-job-description-area .om-job-container dt,
.om-job-description-area-root .om-about-application-area .om-job-container dt,
.om-job-description-area-root .om-company-information-area .om-job-container dt,
.om-job-description-area-root .om-other-area .om-job-container dt,
.om-about-application-area-root .om-about-job-area .om-job-container dt,
.om-about-application-area-root .om-salary-area .om-job-container dt,
.om-about-application-area-root .om-job-description-area .om-job-container dt,
.om-about-application-area-root .om-about-application-area .om-job-container dt,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container
  dt,
.om-about-application-area-root .om-other-area .om-job-container dt,
.om-company-information-area-root .om-about-job-area .om-job-container dt,
.om-company-information-area-root .om-salary-area .om-job-container dt,
.om-company-information-area-root .om-job-description-area .om-job-container dt,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container
  dt,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container
  dt,
.om-company-information-area-root .om-other-area .om-job-container dt,
.om-other-area-root .om-about-job-area .om-job-container dt,
.om-other-area-root .om-salary-area .om-job-container dt,
.om-other-area-root .om-job-description-area .om-job-container dt,
.om-other-area-root .om-about-application-area .om-job-container dt,
.om-other-area-root .om-company-information-area .om-job-container dt,
.om-other-area-root .om-other-area .om-job-container dt {
  color: #002666;
  font-size: 20px;
  font-weight: bold;
  padding: 0 24px 16px;
}
.om-about-job-area-root .om-about-job-area .om-job-container dd,
.om-about-job-area-root .om-salary-area .om-job-container dd,
.om-about-job-area-root .om-job-description-area .om-job-container dd,
.om-about-job-area-root .om-about-application-area .om-job-container dd,
.om-about-job-area-root .om-company-information-area .om-job-container dd,
.om-about-job-area-root .om-other-area .om-job-container dd,
.om-salary-area-root .om-about-job-area .om-job-container dd,
.om-salary-area-root .om-salary-area .om-job-container dd,
.om-salary-area-root .om-job-description-area .om-job-container dd,
.om-salary-area-root .om-about-application-area .om-job-container dd,
.om-salary-area-root .om-company-information-area .om-job-container dd,
.om-salary-area-root .om-other-area .om-job-container dd,
.om-job-description-area-root .om-about-job-area .om-job-container dd,
.om-job-description-area-root .om-salary-area .om-job-container dd,
.om-job-description-area-root .om-job-description-area .om-job-container dd,
.om-job-description-area-root .om-about-application-area .om-job-container dd,
.om-job-description-area-root .om-company-information-area .om-job-container dd,
.om-job-description-area-root .om-other-area .om-job-container dd,
.om-about-application-area-root .om-about-job-area .om-job-container dd,
.om-about-application-area-root .om-salary-area .om-job-container dd,
.om-about-application-area-root .om-job-description-area .om-job-container dd,
.om-about-application-area-root .om-about-application-area .om-job-container dd,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container
  dd,
.om-about-application-area-root .om-other-area .om-job-container dd,
.om-company-information-area-root .om-about-job-area .om-job-container dd,
.om-company-information-area-root .om-salary-area .om-job-container dd,
.om-company-information-area-root .om-job-description-area .om-job-container dd,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container
  dd,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container
  dd,
.om-company-information-area-root .om-other-area .om-job-container dd,
.om-other-area-root .om-about-job-area .om-job-container dd,
.om-other-area-root .om-salary-area .om-job-container dd,
.om-other-area-root .om-job-description-area .om-job-container dd,
.om-other-area-root .om-about-application-area .om-job-container dd,
.om-other-area-root .om-company-information-area .om-job-container dd,
.om-other-area-root .om-other-area .om-job-container dd {
  padding: 0 24px;
  text-align: justify;
  text-justify: inter-character;
  line-height: 170%;
  white-space: pre-wrap;
}
.om-about-job-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-job-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-job-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-job-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-job-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-job-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-salary-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-job-description-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-about-application-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-company-information-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-about-job-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-salary-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-job-description-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-about-application-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-company-information-area
  .om-job-container[data-job-company_address="true"]
  dd,
.om-other-area-root
  .om-other-area
  .om-job-container[data-job-company_address="true"]
  dd {
  white-space: normal;
}
.om-about-job-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-job-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-job-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-job-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-job-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-job-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-salary-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-job-description-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-about-application-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-company-information-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-about-job-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-salary-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-job-description-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-about-application-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-company-information-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3),
.om-other-area-root
  .om-other-area
  .om-job-container[data-job-place_work="true"]
  dd:nth-child(3) {
  padding-top: 0;
}
@media screen and (max-width: 767px) {
  .om-about-job-area-root .om-about-job-area .om-job-container,
  .om-about-job-area-root .om-salary-area .om-job-container,
  .om-about-job-area-root .om-job-description-area .om-job-container,
  .om-about-job-area-root .om-about-application-area .om-job-container,
  .om-about-job-area-root .om-company-information-area .om-job-container,
  .om-about-job-area-root .om-other-area .om-job-container,
  .om-salary-area-root .om-about-job-area .om-job-container,
  .om-salary-area-root .om-salary-area .om-job-container,
  .om-salary-area-root .om-job-description-area .om-job-container,
  .om-salary-area-root .om-about-application-area .om-job-container,
  .om-salary-area-root .om-company-information-area .om-job-container,
  .om-salary-area-root .om-other-area .om-job-container,
  .om-job-description-area-root .om-about-job-area .om-job-container,
  .om-job-description-area-root .om-salary-area .om-job-container,
  .om-job-description-area-root .om-job-description-area .om-job-container,
  .om-job-description-area-root .om-about-application-area .om-job-container,
  .om-job-description-area-root .om-company-information-area .om-job-container,
  .om-job-description-area-root .om-other-area .om-job-container,
  .om-about-application-area-root .om-about-job-area .om-job-container,
  .om-about-application-area-root .om-salary-area .om-job-container,
  .om-about-application-area-root .om-job-description-area .om-job-container,
  .om-about-application-area-root .om-about-application-area .om-job-container,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container,
  .om-about-application-area-root .om-other-area .om-job-container,
  .om-company-information-area-root .om-about-job-area .om-job-container,
  .om-company-information-area-root .om-salary-area .om-job-container,
  .om-company-information-area-root .om-job-description-area .om-job-container,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container,
  .om-company-information-area-root .om-other-area .om-job-container,
  .om-other-area-root .om-about-job-area .om-job-container,
  .om-other-area-root .om-salary-area .om-job-container,
  .om-other-area-root .om-job-description-area .om-job-container,
  .om-other-area-root .om-about-application-area .om-job-container,
  .om-other-area-root .om-company-information-area .om-job-container,
  .om-other-area-root .om-other-area .om-job-container {
    padding: 24px 0;
  }
  .om-about-job-area-root .om-about-job-area .om-job-container dt,
  .om-about-job-area-root .om-salary-area .om-job-container dt,
  .om-about-job-area-root .om-job-description-area .om-job-container dt,
  .om-about-job-area-root .om-about-application-area .om-job-container dt,
  .om-about-job-area-root .om-company-information-area .om-job-container dt,
  .om-about-job-area-root .om-other-area .om-job-container dt,
  .om-salary-area-root .om-about-job-area .om-job-container dt,
  .om-salary-area-root .om-salary-area .om-job-container dt,
  .om-salary-area-root .om-job-description-area .om-job-container dt,
  .om-salary-area-root .om-about-application-area .om-job-container dt,
  .om-salary-area-root .om-company-information-area .om-job-container dt,
  .om-salary-area-root .om-other-area .om-job-container dt,
  .om-job-description-area-root .om-about-job-area .om-job-container dt,
  .om-job-description-area-root .om-salary-area .om-job-container dt,
  .om-job-description-area-root .om-job-description-area .om-job-container dt,
  .om-job-description-area-root .om-about-application-area .om-job-container dt,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-job-description-area-root .om-other-area .om-job-container dt,
  .om-about-application-area-root .om-about-job-area .om-job-container dt,
  .om-about-application-area-root .om-salary-area .om-job-container dt,
  .om-about-application-area-root .om-job-description-area .om-job-container dt,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container
    dt,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-about-application-area-root .om-other-area .om-job-container dt,
  .om-company-information-area-root .om-about-job-area .om-job-container dt,
  .om-company-information-area-root .om-salary-area .om-job-container dt,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container
    dt,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container
    dt,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container
    dt,
  .om-company-information-area-root .om-other-area .om-job-container dt,
  .om-other-area-root .om-about-job-area .om-job-container dt,
  .om-other-area-root .om-salary-area .om-job-container dt,
  .om-other-area-root .om-job-description-area .om-job-container dt,
  .om-other-area-root .om-about-application-area .om-job-container dt,
  .om-other-area-root .om-company-information-area .om-job-container dt,
  .om-other-area-root .om-other-area .om-job-container dt {
    padding: 0 8px 8px;
  }
  .om-about-job-area-root .om-about-job-area .om-job-container dd,
  .om-about-job-area-root .om-salary-area .om-job-container dd,
  .om-about-job-area-root .om-job-description-area .om-job-container dd,
  .om-about-job-area-root .om-about-application-area .om-job-container dd,
  .om-about-job-area-root .om-company-information-area .om-job-container dd,
  .om-about-job-area-root .om-other-area .om-job-container dd,
  .om-salary-area-root .om-about-job-area .om-job-container dd,
  .om-salary-area-root .om-salary-area .om-job-container dd,
  .om-salary-area-root .om-job-description-area .om-job-container dd,
  .om-salary-area-root .om-about-application-area .om-job-container dd,
  .om-salary-area-root .om-company-information-area .om-job-container dd,
  .om-salary-area-root .om-other-area .om-job-container dd,
  .om-job-description-area-root .om-about-job-area .om-job-container dd,
  .om-job-description-area-root .om-salary-area .om-job-container dd,
  .om-job-description-area-root .om-job-description-area .om-job-container dd,
  .om-job-description-area-root .om-about-application-area .om-job-container dd,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container
    dd,
  .om-job-description-area-root .om-other-area .om-job-container dd,
  .om-about-application-area-root .om-about-job-area .om-job-container dd,
  .om-about-application-area-root .om-salary-area .om-job-container dd,
  .om-about-application-area-root .om-job-description-area .om-job-container dd,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container
    dd,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container
    dd,
  .om-about-application-area-root .om-other-area .om-job-container dd,
  .om-company-information-area-root .om-about-job-area .om-job-container dd,
  .om-company-information-area-root .om-salary-area .om-job-container dd,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container
    dd,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container
    dd,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container
    dd,
  .om-company-information-area-root .om-other-area .om-job-container dd,
  .om-other-area-root .om-about-job-area .om-job-container dd,
  .om-other-area-root .om-salary-area .om-job-container dd,
  .om-other-area-root .om-job-description-area .om-job-container dd,
  .om-other-area-root .om-about-application-area .om-job-container dd,
  .om-other-area-root .om-company-information-area .om-job-container dd,
  .om-other-area-root .om-other-area .om-job-container dd {
    padding: 0 8px;
  }
}
.om-about-job-area-root .om-about-job-area .om-job-container-list,
.om-about-job-area-root .om-salary-area .om-job-container-list,
.om-about-job-area-root .om-job-description-area .om-job-container-list,
.om-about-job-area-root .om-about-application-area .om-job-container-list,
.om-about-job-area-root .om-company-information-area .om-job-container-list,
.om-about-job-area-root .om-other-area .om-job-container-list,
.om-salary-area-root .om-about-job-area .om-job-container-list,
.om-salary-area-root .om-salary-area .om-job-container-list,
.om-salary-area-root .om-job-description-area .om-job-container-list,
.om-salary-area-root .om-about-application-area .om-job-container-list,
.om-salary-area-root .om-company-information-area .om-job-container-list,
.om-salary-area-root .om-other-area .om-job-container-list,
.om-job-description-area-root .om-about-job-area .om-job-container-list,
.om-job-description-area-root .om-salary-area .om-job-container-list,
.om-job-description-area-root .om-job-description-area .om-job-container-list,
.om-job-description-area-root .om-about-application-area .om-job-container-list,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list,
.om-job-description-area-root .om-other-area .om-job-container-list,
.om-about-application-area-root .om-about-job-area .om-job-container-list,
.om-about-application-area-root .om-salary-area .om-job-container-list,
.om-about-application-area-root .om-job-description-area .om-job-container-list,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list,
.om-about-application-area-root .om-other-area .om-job-container-list,
.om-company-information-area-root .om-about-job-area .om-job-container-list,
.om-company-information-area-root .om-salary-area .om-job-container-list,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list,
.om-company-information-area-root .om-other-area .om-job-container-list,
.om-other-area-root .om-about-job-area .om-job-container-list,
.om-other-area-root .om-salary-area .om-job-container-list,
.om-other-area-root .om-job-description-area .om-job-container-list,
.om-other-area-root .om-about-application-area .om-job-container-list,
.om-other-area-root .om-company-information-area .om-job-container-list,
.om-other-area-root .om-other-area .om-job-container-list {
  padding: 32px 0;
  border-bottom: 1px solid #d5d5d5;
}
.om-about-job-area-root .om-about-job-area .om-job-container-list dt,
.om-about-job-area-root .om-salary-area .om-job-container-list dt,
.om-about-job-area-root .om-job-description-area .om-job-container-list dt,
.om-about-job-area-root .om-about-application-area .om-job-container-list dt,
.om-about-job-area-root .om-company-information-area .om-job-container-list dt,
.om-about-job-area-root .om-other-area .om-job-container-list dt,
.om-salary-area-root .om-about-job-area .om-job-container-list dt,
.om-salary-area-root .om-salary-area .om-job-container-list dt,
.om-salary-area-root .om-job-description-area .om-job-container-list dt,
.om-salary-area-root .om-about-application-area .om-job-container-list dt,
.om-salary-area-root .om-company-information-area .om-job-container-list dt,
.om-salary-area-root .om-other-area .om-job-container-list dt,
.om-job-description-area-root .om-about-job-area .om-job-container-list dt,
.om-job-description-area-root .om-salary-area .om-job-container-list dt,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-job-description-area-root .om-other-area .om-job-container-list dt,
.om-about-application-area-root .om-about-job-area .om-job-container-list dt,
.om-about-application-area-root .om-salary-area .om-job-container-list dt,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-about-application-area-root .om-other-area .om-job-container-list dt,
.om-company-information-area-root .om-about-job-area .om-job-container-list dt,
.om-company-information-area-root .om-salary-area .om-job-container-list dt,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-company-information-area-root .om-other-area .om-job-container-list dt,
.om-other-area-root .om-about-job-area .om-job-container-list dt,
.om-other-area-root .om-salary-area .om-job-container-list dt,
.om-other-area-root .om-job-description-area .om-job-container-list dt,
.om-other-area-root .om-about-application-area .om-job-container-list dt,
.om-other-area-root .om-company-information-area .om-job-container-list dt,
.om-other-area-root .om-other-area .om-job-container-list dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .om-about-job-area-root .om-about-job-area .om-job-container-list dt,
  .om-about-job-area-root .om-salary-area .om-job-container-list dt,
  .om-about-job-area-root .om-job-description-area .om-job-container-list dt,
  .om-about-job-area-root .om-about-application-area .om-job-container-list dt,
  .om-about-job-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-about-job-area-root .om-other-area .om-job-container-list dt,
  .om-salary-area-root .om-about-job-area .om-job-container-list dt,
  .om-salary-area-root .om-salary-area .om-job-container-list dt,
  .om-salary-area-root .om-job-description-area .om-job-container-list dt,
  .om-salary-area-root .om-about-application-area .om-job-container-list dt,
  .om-salary-area-root .om-company-information-area .om-job-container-list dt,
  .om-salary-area-root .om-other-area .om-job-container-list dt,
  .om-job-description-area-root .om-about-job-area .om-job-container-list dt,
  .om-job-description-area-root .om-salary-area .om-job-container-list dt,
  .om-job-description-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-job-description-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-job-description-area-root .om-other-area .om-job-container-list dt,
  .om-about-application-area-root .om-about-job-area .om-job-container-list dt,
  .om-about-application-area-root .om-salary-area .om-job-container-list dt,
  .om-about-application-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-about-application-area-root .om-other-area .om-job-container-list dt,
  .om-company-information-area-root
    .om-about-job-area
    .om-job-container-list
    dt,
  .om-company-information-area-root .om-salary-area .om-job-container-list dt,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-company-information-area-root .om-other-area .om-job-container-list dt,
  .om-other-area-root .om-about-job-area .om-job-container-list dt,
  .om-other-area-root .om-salary-area .om-job-container-list dt,
  .om-other-area-root .om-job-description-area .om-job-container-list dt,
  .om-other-area-root .om-about-application-area .om-job-container-list dt,
  .om-other-area-root .om-company-information-area .om-job-container-list dt,
  .om-other-area-root .om-other-area .om-job-container-list dt {
    line-height: 1.5;
  }
}
.om-about-job-area-root .om-about-job-area .om-job-container-list dt,
.om-about-job-area-root .om-salary-area .om-job-container-list dt,
.om-about-job-area-root .om-job-description-area .om-job-container-list dt,
.om-about-job-area-root .om-about-application-area .om-job-container-list dt,
.om-about-job-area-root .om-company-information-area .om-job-container-list dt,
.om-about-job-area-root .om-other-area .om-job-container-list dt,
.om-salary-area-root .om-about-job-area .om-job-container-list dt,
.om-salary-area-root .om-salary-area .om-job-container-list dt,
.om-salary-area-root .om-job-description-area .om-job-container-list dt,
.om-salary-area-root .om-about-application-area .om-job-container-list dt,
.om-salary-area-root .om-company-information-area .om-job-container-list dt,
.om-salary-area-root .om-other-area .om-job-container-list dt,
.om-job-description-area-root .om-about-job-area .om-job-container-list dt,
.om-job-description-area-root .om-salary-area .om-job-container-list dt,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-job-description-area-root .om-other-area .om-job-container-list dt,
.om-about-application-area-root .om-about-job-area .om-job-container-list dt,
.om-about-application-area-root .om-salary-area .om-job-container-list dt,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-about-application-area-root .om-other-area .om-job-container-list dt,
.om-company-information-area-root .om-about-job-area .om-job-container-list dt,
.om-company-information-area-root .om-salary-area .om-job-container-list dt,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list
  dt,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list
  dt,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list
  dt,
.om-company-information-area-root .om-other-area .om-job-container-list dt,
.om-other-area-root .om-about-job-area .om-job-container-list dt,
.om-other-area-root .om-salary-area .om-job-container-list dt,
.om-other-area-root .om-job-description-area .om-job-container-list dt,
.om-other-area-root .om-about-application-area .om-job-container-list dt,
.om-other-area-root .om-company-information-area .om-job-container-list dt,
.om-other-area-root .om-other-area .om-job-container-list dt {
  color: #002666;
  font-size: 20px;
  padding: 0 24px 16px;
}
.om-about-job-area-root .om-about-job-area .om-job-container-list dd,
.om-about-job-area-root .om-salary-area .om-job-container-list dd,
.om-about-job-area-root .om-job-description-area .om-job-container-list dd,
.om-about-job-area-root .om-about-application-area .om-job-container-list dd,
.om-about-job-area-root .om-company-information-area .om-job-container-list dd,
.om-about-job-area-root .om-other-area .om-job-container-list dd,
.om-salary-area-root .om-about-job-area .om-job-container-list dd,
.om-salary-area-root .om-salary-area .om-job-container-list dd,
.om-salary-area-root .om-job-description-area .om-job-container-list dd,
.om-salary-area-root .om-about-application-area .om-job-container-list dd,
.om-salary-area-root .om-company-information-area .om-job-container-list dd,
.om-salary-area-root .om-other-area .om-job-container-list dd,
.om-job-description-area-root .om-about-job-area .om-job-container-list dd,
.om-job-description-area-root .om-salary-area .om-job-container-list dd,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container-list
  dd,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container-list
  dd,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list
  dd,
.om-job-description-area-root .om-other-area .om-job-container-list dd,
.om-about-application-area-root .om-about-job-area .om-job-container-list dd,
.om-about-application-area-root .om-salary-area .om-job-container-list dd,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container-list
  dd,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list
  dd,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list
  dd,
.om-about-application-area-root .om-other-area .om-job-container-list dd,
.om-company-information-area-root .om-about-job-area .om-job-container-list dd,
.om-company-information-area-root .om-salary-area .om-job-container-list dd,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list
  dd,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list
  dd,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list
  dd,
.om-company-information-area-root .om-other-area .om-job-container-list dd,
.om-other-area-root .om-about-job-area .om-job-container-list dd,
.om-other-area-root .om-salary-area .om-job-container-list dd,
.om-other-area-root .om-job-description-area .om-job-container-list dd,
.om-other-area-root .om-about-application-area .om-job-container-list dd,
.om-other-area-root .om-company-information-area .om-job-container-list dd,
.om-other-area-root .om-other-area .om-job-container-list dd {
  white-space: normal;
}
.om-about-job-area-root .om-about-job-area .om-job-container-list dd ul,
.om-about-job-area-root .om-salary-area .om-job-container-list dd ul,
.om-about-job-area-root .om-job-description-area .om-job-container-list dd ul,
.om-about-job-area-root .om-about-application-area .om-job-container-list dd ul,
.om-about-job-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul,
.om-about-job-area-root .om-other-area .om-job-container-list dd ul,
.om-salary-area-root .om-about-job-area .om-job-container-list dd ul,
.om-salary-area-root .om-salary-area .om-job-container-list dd ul,
.om-salary-area-root .om-job-description-area .om-job-container-list dd ul,
.om-salary-area-root .om-about-application-area .om-job-container-list dd ul,
.om-salary-area-root .om-company-information-area .om-job-container-list dd ul,
.om-salary-area-root .om-other-area .om-job-container-list dd ul,
.om-job-description-area-root .om-about-job-area .om-job-container-list dd ul,
.om-job-description-area-root .om-salary-area .om-job-container-list dd ul,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul,
.om-job-description-area-root .om-other-area .om-job-container-list dd ul,
.om-about-application-area-root .om-about-job-area .om-job-container-list dd ul,
.om-about-application-area-root .om-salary-area .om-job-container-list dd ul,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul,
.om-about-application-area-root .om-other-area .om-job-container-list dd ul,
.om-company-information-area-root
  .om-about-job-area
  .om-job-container-list
  dd
  ul,
.om-company-information-area-root .om-salary-area .om-job-container-list dd ul,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul,
.om-company-information-area-root .om-other-area .om-job-container-list dd ul,
.om-other-area-root .om-about-job-area .om-job-container-list dd ul,
.om-other-area-root .om-salary-area .om-job-container-list dd ul,
.om-other-area-root .om-job-description-area .om-job-container-list dd ul,
.om-other-area-root .om-about-application-area .om-job-container-list dd ul,
.om-other-area-root .om-company-information-area .om-job-container-list dd ul,
.om-other-area-root .om-other-area .om-job-container-list dd ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 24px 0;
}
.om-about-job-area-root .om-about-job-area .om-job-container-list dd ul li,
.om-about-job-area-root .om-salary-area .om-job-container-list dd ul li,
.om-about-job-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-job-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-job-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-job-area-root .om-other-area .om-job-container-list dd ul li,
.om-salary-area-root .om-about-job-area .om-job-container-list dd ul li,
.om-salary-area-root .om-salary-area .om-job-container-list dd ul li,
.om-salary-area-root .om-job-description-area .om-job-container-list dd ul li,
.om-salary-area-root .om-about-application-area .om-job-container-list dd ul li,
.om-salary-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-salary-area-root .om-other-area .om-job-container-list dd ul li,
.om-job-description-area-root
  .om-about-job-area
  .om-job-container-list
  dd
  ul
  li,
.om-job-description-area-root .om-salary-area .om-job-container-list dd ul li,
.om-job-description-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul
  li,
.om-job-description-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul
  li,
.om-job-description-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-job-description-area-root .om-other-area .om-job-container-list dd ul li,
.om-about-application-area-root
  .om-about-job-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-application-area-root .om-salary-area .om-job-container-list dd ul li,
.om-about-application-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-application-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-application-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-about-application-area-root .om-other-area .om-job-container-list dd ul li,
.om-company-information-area-root
  .om-about-job-area
  .om-job-container-list
  dd
  ul
  li,
.om-company-information-area-root
  .om-salary-area
  .om-job-container-list
  dd
  ul
  li,
.om-company-information-area-root
  .om-job-description-area
  .om-job-container-list
  dd
  ul
  li,
.om-company-information-area-root
  .om-about-application-area
  .om-job-container-list
  dd
  ul
  li,
.om-company-information-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-company-information-area-root
  .om-other-area
  .om-job-container-list
  dd
  ul
  li,
.om-other-area-root .om-about-job-area .om-job-container-list dd ul li,
.om-other-area-root .om-salary-area .om-job-container-list dd ul li,
.om-other-area-root .om-job-description-area .om-job-container-list dd ul li,
.om-other-area-root .om-about-application-area .om-job-container-list dd ul li,
.om-other-area-root
  .om-company-information-area
  .om-job-container-list
  dd
  ul
  li,
.om-other-area-root .om-other-area .om-job-container-list dd ul li {
  color: #002666;
  display: inline-block;
  padding: 4px 8px;
  background-color: #f1f1f1;
  border-radius: 4px;
  border: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .om-about-job-area-root .om-about-job-area .om-job-container-list,
  .om-about-job-area-root .om-salary-area .om-job-container-list,
  .om-about-job-area-root .om-job-description-area .om-job-container-list,
  .om-about-job-area-root .om-about-application-area .om-job-container-list,
  .om-about-job-area-root .om-company-information-area .om-job-container-list,
  .om-about-job-area-root .om-other-area .om-job-container-list,
  .om-salary-area-root .om-about-job-area .om-job-container-list,
  .om-salary-area-root .om-salary-area .om-job-container-list,
  .om-salary-area-root .om-job-description-area .om-job-container-list,
  .om-salary-area-root .om-about-application-area .om-job-container-list,
  .om-salary-area-root .om-company-information-area .om-job-container-list,
  .om-salary-area-root .om-other-area .om-job-container-list,
  .om-job-description-area-root .om-about-job-area .om-job-container-list,
  .om-job-description-area-root .om-salary-area .om-job-container-list,
  .om-job-description-area-root .om-job-description-area .om-job-container-list,
  .om-job-description-area-root
    .om-about-application-area
    .om-job-container-list,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container-list,
  .om-job-description-area-root .om-other-area .om-job-container-list,
  .om-about-application-area-root .om-about-job-area .om-job-container-list,
  .om-about-application-area-root .om-salary-area .om-job-container-list,
  .om-about-application-area-root
    .om-job-description-area
    .om-job-container-list,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container-list,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container-list,
  .om-about-application-area-root .om-other-area .om-job-container-list,
  .om-company-information-area-root .om-about-job-area .om-job-container-list,
  .om-company-information-area-root .om-salary-area .om-job-container-list,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container-list,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container-list,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container-list,
  .om-company-information-area-root .om-other-area .om-job-container-list,
  .om-other-area-root .om-about-job-area .om-job-container-list,
  .om-other-area-root .om-salary-area .om-job-container-list,
  .om-other-area-root .om-job-description-area .om-job-container-list,
  .om-other-area-root .om-about-application-area .om-job-container-list,
  .om-other-area-root .om-company-information-area .om-job-container-list,
  .om-other-area-root .om-other-area .om-job-container-list {
    padding: 24px 0;
  }
  .om-about-job-area-root .om-about-job-area .om-job-container-list dt,
  .om-about-job-area-root .om-salary-area .om-job-container-list dt,
  .om-about-job-area-root .om-job-description-area .om-job-container-list dt,
  .om-about-job-area-root .om-about-application-area .om-job-container-list dt,
  .om-about-job-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-about-job-area-root .om-other-area .om-job-container-list dt,
  .om-salary-area-root .om-about-job-area .om-job-container-list dt,
  .om-salary-area-root .om-salary-area .om-job-container-list dt,
  .om-salary-area-root .om-job-description-area .om-job-container-list dt,
  .om-salary-area-root .om-about-application-area .om-job-container-list dt,
  .om-salary-area-root .om-company-information-area .om-job-container-list dt,
  .om-salary-area-root .om-other-area .om-job-container-list dt,
  .om-job-description-area-root .om-about-job-area .om-job-container-list dt,
  .om-job-description-area-root .om-salary-area .om-job-container-list dt,
  .om-job-description-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-job-description-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-job-description-area-root .om-other-area .om-job-container-list dt,
  .om-about-application-area-root .om-about-job-area .om-job-container-list dt,
  .om-about-application-area-root .om-salary-area .om-job-container-list dt,
  .om-about-application-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-about-application-area-root .om-other-area .om-job-container-list dt,
  .om-company-information-area-root
    .om-about-job-area
    .om-job-container-list
    dt,
  .om-company-information-area-root .om-salary-area .om-job-container-list dt,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container-list
    dt,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container-list
    dt,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container-list
    dt,
  .om-company-information-area-root .om-other-area .om-job-container-list dt,
  .om-other-area-root .om-about-job-area .om-job-container-list dt,
  .om-other-area-root .om-salary-area .om-job-container-list dt,
  .om-other-area-root .om-job-description-area .om-job-container-list dt,
  .om-other-area-root .om-about-application-area .om-job-container-list dt,
  .om-other-area-root .om-company-information-area .om-job-container-list dt,
  .om-other-area-root .om-other-area .om-job-container-list dt {
    padding: 0 8px 8px;
  }
  .om-about-job-area-root .om-about-job-area .om-job-container-list dd,
  .om-about-job-area-root .om-salary-area .om-job-container-list dd,
  .om-about-job-area-root .om-job-description-area .om-job-container-list dd,
  .om-about-job-area-root .om-about-application-area .om-job-container-list dd,
  .om-about-job-area-root
    .om-company-information-area
    .om-job-container-list
    dd,
  .om-about-job-area-root .om-other-area .om-job-container-list dd,
  .om-salary-area-root .om-about-job-area .om-job-container-list dd,
  .om-salary-area-root .om-salary-area .om-job-container-list dd,
  .om-salary-area-root .om-job-description-area .om-job-container-list dd,
  .om-salary-area-root .om-about-application-area .om-job-container-list dd,
  .om-salary-area-root .om-company-information-area .om-job-container-list dd,
  .om-salary-area-root .om-other-area .om-job-container-list dd,
  .om-job-description-area-root .om-about-job-area .om-job-container-list dd,
  .om-job-description-area-root .om-salary-area .om-job-container-list dd,
  .om-job-description-area-root
    .om-job-description-area
    .om-job-container-list
    dd,
  .om-job-description-area-root
    .om-about-application-area
    .om-job-container-list
    dd,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container-list
    dd,
  .om-job-description-area-root .om-other-area .om-job-container-list dd,
  .om-about-application-area-root .om-about-job-area .om-job-container-list dd,
  .om-about-application-area-root .om-salary-area .om-job-container-list dd,
  .om-about-application-area-root
    .om-job-description-area
    .om-job-container-list
    dd,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container-list
    dd,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container-list
    dd,
  .om-about-application-area-root .om-other-area .om-job-container-list dd,
  .om-company-information-area-root
    .om-about-job-area
    .om-job-container-list
    dd,
  .om-company-information-area-root .om-salary-area .om-job-container-list dd,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container-list
    dd,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container-list
    dd,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container-list
    dd,
  .om-company-information-area-root .om-other-area .om-job-container-list dd,
  .om-other-area-root .om-about-job-area .om-job-container-list dd,
  .om-other-area-root .om-salary-area .om-job-container-list dd,
  .om-other-area-root .om-job-description-area .om-job-container-list dd,
  .om-other-area-root .om-about-application-area .om-job-container-list dd,
  .om-other-area-root .om-company-information-area .om-job-container-list dd,
  .om-other-area-root .om-other-area .om-job-container-list dd {
    padding: 0 8px;
  }
  .om-about-job-area-root .om-about-job-area .om-job-container-list dd ul,
  .om-about-job-area-root .om-salary-area .om-job-container-list dd ul,
  .om-about-job-area-root .om-job-description-area .om-job-container-list dd ul,
  .om-about-job-area-root
    .om-about-application-area
    .om-job-container-list
    dd
    ul,
  .om-about-job-area-root
    .om-company-information-area
    .om-job-container-list
    dd
    ul,
  .om-about-job-area-root .om-other-area .om-job-container-list dd ul,
  .om-salary-area-root .om-about-job-area .om-job-container-list dd ul,
  .om-salary-area-root .om-salary-area .om-job-container-list dd ul,
  .om-salary-area-root .om-job-description-area .om-job-container-list dd ul,
  .om-salary-area-root .om-about-application-area .om-job-container-list dd ul,
  .om-salary-area-root
    .om-company-information-area
    .om-job-container-list
    dd
    ul,
  .om-salary-area-root .om-other-area .om-job-container-list dd ul,
  .om-job-description-area-root .om-about-job-area .om-job-container-list dd ul,
  .om-job-description-area-root .om-salary-area .om-job-container-list dd ul,
  .om-job-description-area-root
    .om-job-description-area
    .om-job-container-list
    dd
    ul,
  .om-job-description-area-root
    .om-about-application-area
    .om-job-container-list
    dd
    ul,
  .om-job-description-area-root
    .om-company-information-area
    .om-job-container-list
    dd
    ul,
  .om-job-description-area-root .om-other-area .om-job-container-list dd ul,
  .om-about-application-area-root
    .om-about-job-area
    .om-job-container-list
    dd
    ul,
  .om-about-application-area-root .om-salary-area .om-job-container-list dd ul,
  .om-about-application-area-root
    .om-job-description-area
    .om-job-container-list
    dd
    ul,
  .om-about-application-area-root
    .om-about-application-area
    .om-job-container-list
    dd
    ul,
  .om-about-application-area-root
    .om-company-information-area
    .om-job-container-list
    dd
    ul,
  .om-about-application-area-root .om-other-area .om-job-container-list dd ul,
  .om-company-information-area-root
    .om-about-job-area
    .om-job-container-list
    dd
    ul,
  .om-company-information-area-root
    .om-salary-area
    .om-job-container-list
    dd
    ul,
  .om-company-information-area-root
    .om-job-description-area
    .om-job-container-list
    dd
    ul,
  .om-company-information-area-root
    .om-about-application-area
    .om-job-container-list
    dd
    ul,
  .om-company-information-area-root
    .om-company-information-area
    .om-job-container-list
    dd
    ul,
  .om-company-information-area-root .om-other-area .om-job-container-list dd ul,
  .om-other-area-root .om-about-job-area .om-job-container-list dd ul,
  .om-other-area-root .om-salary-area .om-job-container-list dd ul,
  .om-other-area-root .om-job-description-area .om-job-container-list dd ul,
  .om-other-area-root .om-about-application-area .om-job-container-list dd ul,
  .om-other-area-root .om-company-information-area .om-job-container-list dd ul,
  .om-other-area-root .om-other-area .om-job-container-list dd ul {
    padding: 0;
    gap: 8px;
  }
}
@media screen and (max-width: 767px) {
  .om-about-job-area-root,
  .om-salary-area-root,
  .om-job-description-area-root,
  .om-about-application-area-root,
  .om-company-information-area-root,
  .om-other-area-root {
    width: 100%;
    margin: 0;
  }
  .om-about-job-area-root .container .requirements__items dl dt,
  .om-salary-area-root .container .requirements__items dl dt,
  .om-job-description-area-root .container .requirements__items dl dt,
  .om-about-application-area-root .container .requirements__items dl dt,
  .om-company-information-area-root .container .requirements__items dl dt,
  .om-other-area-root .container .requirements__items dl dt {
    font-size: 18px;
    padding: 16px;
  }
  .om-about-job-area-root .container .requirements__items dl dd,
  .om-salary-area-root .container .requirements__items dl dd,
  .om-job-description-area-root .container .requirements__items dl dd,
  .om-about-application-area-root .container .requirements__items dl dd,
  .om-company-information-area-root .container .requirements__items dl dd,
  .om-other-area-root .container .requirements__items dl dd {
    line-height: 2;
    padding: 24px 16px 0 16px;
  }
  .om-about-job-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span,
  .om-salary-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span,
  .om-job-description-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span,
  .om-about-application-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span,
  .om-company-information-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span,
  .om-other-area-root
    .container
    .requirements__items.items__workstyle
    dd
    .items__workstyle--parts
    li
    span {
    margin-bottom: 8px;
  }
  .om-about-job-area-root .container .requirements__btn,
  .om-salary-area-root .container .requirements__btn,
  .om-job-description-area-root .container .requirements__btn,
  .om-about-application-area-root .container .requirements__btn,
  .om-company-information-area-root .container .requirements__btn,
  .om-other-area-root .container .requirements__btn {
    width: 100%;
  }
  .om-about-job-area-root .container .requirements__btn a,
  .om-salary-area-root .container .requirements__btn a,
  .om-job-description-area-root .container .requirements__btn a,
  .om-about-application-area-root .container .requirements__btn a,
  .om-company-information-area-root .container .requirements__btn a,
  .om-other-area-root .container .requirements__btn a {
    font-size: 18px;
    padding: 24px 0;
  }
}

.om-apply_button-root {
  width: 32%;
  max-width: 320px;
  margin: 0 auto;
  padding-top: 32px;
}
.om-apply_button-root a {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .om-apply_button-root a {
    line-height: 1.5;
  }
}
.om-apply_button-root a {
  font-size: 24px;
  text-align: center;
  color: #fff;
  background-color: #002666;
  padding: 16px 0;
  border-radius: 50px;
  display: inline-block;
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.om-apply_button-root a:hover {
  background-color: #2157b2;
}
@media screen and (max-width: 767px) {
  .om-apply_button-root {
    width: 80%;
  }
  .om-apply_button-root a {
    font-size: 20px;
  }
}

.om-swiper-root {
  width: 85%;
  max-width: 1440px;
  margin: 120px auto 0;
}
@media screen and (max-width: 820px) {
  .om-swiper-root {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
  }
}
[data-job-container-sub_title="true"],
[data-job-url="true"] {
  display: none;
}

[data-job-created_at="true"],
[data-job-updated_at="true"] {
  display: none;
}

/*-----------------------------------------------------------------*
number
*-----------------------------------------------------------------*/
/*------*/
.number-main .page-visual {
  background-color: #e8effa;
  position: relative;
}
.number-main .page-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 0 100px 0 0;
  background-color: #f4f8ff;
  position: absolute;
  bottom: 0;
}
.number-main .page-visual__inner {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .number-main .page-visual__inner {
    display: block;
  }
}
.number-main .page-visual__inner p {
  padding-bottom: 24px;
  color: #002666;
}
.number-main .page-visual__inner .bread-crumbs {
  display: flex;
  align-items: center;
}
.number-main .page-visual__inner .bread-crumbs::before {
  content: "⚫︎";
  color: #f9b900;
  font-size: 10px;
  display: inline-block;
  margin-right: 4px;
}
.number-main .page-visual__inner .bread-crumbs li {
  color: #002666;
}
.number-main .page-visual__inner .bread-crumbs li a {
  color: #002666;
  position: relative;
}
.number-main .page-visual__inner .bread-crumbs li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: #002666;
  transition: width 0.3s ease;
}
.number-main .page-visual__inner .bread-crumbs li a:hover::after {
  width: 100%;
}
.number-main .page-visual__inner .bread-crumbs li:not(:last-child)::after {
  content: "-";
  display: inline-block;
  margin: 0 8px;
}
.number-main .page-visual__right {
  width: 55%;
  padding-right: 64px;
  padding-left: 8%;
  padding-top: 180px;
}
@media screen and (max-width: 1024px) {
  .number-main .page-visual__right {
    width: auto;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  .number-main .page-visual__right {
    padding: 140px 24px 0;
    margin-bottom: 64px;
  }
}
.number-main .page-visual__left {
  width: 45%;
}
@media screen and (max-width: 1024px) {
  .number-main .page-visual__left {
    width: 100%;
  }
  .number-main .page-visual__left img {
    height: 640px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
  }
}
@media screen and (max-width: 767px) {
  .number-main .page-visual__left img {
    height: 45vh;
    -o-object-position: center;
    object-position: center;
  }
}
.number-main .page-visual__sub-title {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: var(--fz-16);
}
.number-main .page-visual__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .number-main .page-visual__title {
    font-weight: 700;
    line-height: 1.5;
  }
}
.number-main .page-visual__title {
  color: #002666;
  font-size: var(--fz-r-56-40);
  margin-bottom: 16px;
}
.number__title {
  text-align: center;
  color: #002666;
}
.number__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 900;
  font-style: normal;
  line-height: 1.5;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .number__title h3 {
    font-weight: 700;
    line-height: 1.5;
  }
}
.number__title h3 {
  font-size: var(--fz-r-40-32);
}
.number__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.number__card {
  padding: var(--space-40-32) var(--space-32-24);
  border-bottom: 1px solid #002666;
}
.number__text dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .number__text dt {
    line-height: 1.5;
  }
}
.number__text dt {
  padding-bottom: 16px;
  font-size: var(--fz-r-32-24);
  text-align: center;
}
.number__text dd {
  text-align: justify;
  text-justify: inter-character;
  line-height: 2;
}

.about-koyo {
  margin-bottom: 180px;
}
.about-koyo__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .about-koyo__inner {
    width: 90%;
  }
}
.about-koyo__inner {
  width: 90%;
}
.about-koyo__title {
  text-align: center;
  margin-bottom: var(--space-40-32);
}
.about-koyo__title h3 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo__title h3 {
    line-height: 1.5;
  }
}
.about-koyo__title h3 {
  color: #002666;
  font-size: var(--fz-r-40-32);
}
.about-koyo__title p {
  font-size: 14px;
}
.about-koyo__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32-24);
  width: 100%;
}
@media screen and (max-width: 820px) {
  .about-koyo__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-koyo__content > *:nth-child(1) {
    order: 0;
  }
  .about-koyo__content > *:nth-child(2) {
    order: 1;
  }
  .about-koyo__content > .age-composition {
    order: 2;
  }
  .about-koyo__content > .about-koyo__items:nth-child(3) {
    order: 3;
  }
  .about-koyo__content > *:nth-child(5) {
    order: 4;
  }
  .about-koyo__content > *:nth-child(6) {
    order: 5;
  }
  .about-koyo__content > *:nth-child(7) {
    order: 6;
  }
  .about-koyo__content > *:nth-child(8) {
    order: 7;
  }
}
@media screen and (max-width: 767px) {
  .about-koyo__content {
    grid-template-columns: 1fr;
  }
  .about-koyo__content > .age-composition {
    order: 3;
  }
  .about-koyo__content > .about-koyo__items:nth-child(3) {
    order: 2;
  }
}
.about-koyo__items {
  grid-column: span 1;
  background-color: #fff;
  border-radius: 8px;
  padding: var(--space-40-32) var(--space-32-24);
  text-align: center;
}
@media screen and (max-width: 820px) {
  .about-koyo__items {
    padding: var(--space-40-32) 0;
  }
}
@media screen and (max-width: 767px) {
  .about-koyo__items {
    grid-column: 1/-1;
  }
}
.about-koyo__items h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo__items h4 {
    line-height: 1.5;
  }
}
.about-koyo__items h4 {
  color: #002666;
  font-size: var(--fz-r-24-20);
  padding: 4px 20px;
  border: 1px solid #002666;
  border-radius: 50px;
  margin-bottom: 16px;
  display: inline-block;
}
.about-koyo__image {
  width: 60%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 767px) {
  .about-koyo__image {
    width: 45%;
    margin: 0 auto;
  }
}
.about-koyo__info p {
  text-align: center;
}
.about-koyo__info p:first-child {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: 64px;
  line-height: 1.2;
}
.about-koyo__info p:first-child span {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo__info p:first-child span {
    line-height: 1.5;
  }
}
.about-koyo__info p:first-child span {
  font-size: var(--fz-r-32-24);
  color: #313131;
  margin-left: 4px;
}
@media screen and (max-width: 1024px) {
  .about-koyo__info p:first-child {
    font-size: 48px;
  }
}
.about-koyo .age-composition {
  background-color: #fff;
  border-radius: 8px;
  padding: var(--space-40-32);
  grid-column: span 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about-koyo .age-composition {
    grid-column: span 1;
  }
}
.about-koyo .age-composition h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition h4 {
    line-height: 1.5;
  }
}
.about-koyo .age-composition h4 {
  color: #002666;
  font-size: var(--fz-r-24-20);
  padding: 4px 20px;
  border: 1px solid #002666;
  border-radius: 50px;
  display: inline-block;
  position: absolute;
  top: 32%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .about-koyo .age-composition h4 {
    position: static;
    margin: 0 auto 24px;
    transform: none;
  }
}
.about-koyo .age-composition__image {
  width: 100%;
  position: relative;
}
.about-koyo .age-composition__image .employees__info {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about-koyo .age-composition__image .employees__info {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.about-koyo .age-composition__image .employees__info p {
  text-align: center;
}
.about-koyo .age-composition__image .employees__info p:first-child {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: 64px;
  line-height: 1.2;
}
.about-koyo .age-composition__image .employees__info p:first-child span {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__image .employees__info p:first-child span {
    line-height: 1.5;
  }
}
.about-koyo .age-composition__image .employees__info p:first-child span {
  font-size: var(--fz-r-32-24);
  color: #313131;
  margin-left: 4px;
}
@media screen and (max-width: 1024px) {
  .about-koyo .age-composition__image .employees__info p:first-child {
    font-size: 48px;
  }
}
.about-koyo .age-composition__image .employees__info p:nth-child(2) {
  font-size: 14px;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__image {
    width: 100%;
    margin-right: 0;
  }
}
.about-koyo .age-composition__data {
  width: 40%;
  background-color: #f4f8ff;
  padding: 16px;
  border-radius: 8px;
}
.about-koyo .age-composition__data p {
  text-align: left;
  color: #002666;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__data p {
    line-height: 1.5;
  }
}
.about-koyo .age-composition__data p {
  font-size: 18px;
  padding-bottom: 8px;
  padding-left: 8px;
}
@media screen and (max-width: 1024px) {
  .about-koyo .age-composition__data {
    width: 45%;
  }
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__data {
    width: 100%;
    margin-top: 32px;
  }
}
.about-koyo .age-composition__data dl {
  display: flex;
  align-items: baseline;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__data dl {
    margin-bottom: 8px;
  }
}
.about-koyo .age-composition__data dl::before {
  content: "⚫︎";
  margin-right: 8px;
  font-size: var(--fz-r-24-20);
}
.about-koyo .age-composition__data dl:first-of-type::before {
  color: #f9b900;
}
.about-koyo .age-composition__data dl:nth-of-type(2)::before {
  color: #5b69ab;
}
.about-koyo .age-composition__data dl:nth-of-type(3)::before {
  color: #8fd35b;
}
.about-koyo .age-composition__data dl:nth-of-type(4)::before {
  color: #55aee4;
}
.about-koyo .age-composition__data dl:nth-of-type(5)::before {
  color: #002666;
}
.about-koyo .age-composition__data dl dt {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__data dl dt {
    line-height: 1.5;
  }
}
.about-koyo .age-composition__data dl dt::after {
  content: ":";
  display: inline-block;
  font-size: var(--fz-r-24-20);
  margin: 0 8px;
}
.about-koyo .age-composition__data dl dt span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: var(--fz-r-24-20);
}
.about-koyo .age-composition__data dl dd {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .age-composition__data dl dd {
    line-height: 1.5;
  }
}
.about-koyo .age-composition__data dl dd span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: var(--fz-r-24-20);
}
.about-koyo .gender {
  grid-column: span 1;
  background-color: #fff;
  border-radius: 8px;
  padding: var(--space-40-32);
  text-align: center;
}
.about-koyo .gender h4 {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .gender h4 {
    line-height: 1.5;
  }
}
.about-koyo .gender h4 {
  color: #002666;
  font-size: var(--fz-r-24-20);
  padding: 4px 20px;
  border: 1px solid #002666;
  border-radius: 50px;
  margin-bottom: 24px;
  display: inline-block;
}
.about-koyo .gender__image {
  width: 90%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 820px) {
  .about-koyo .gender__image {
    width: 80%;
  }
}
.about-koyo .gender__info p {
  text-align: center;
}
.about-koyo .gender__info p:first-child {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  color: #002666;
  font-size: 64px;
  line-height: 1.2;
}
.about-koyo .gender__info p:first-child span {
  padding: 0 8px;
  position: relative;
  top: -5px;
}
.about-koyo .gender__info p:nth-child(2) span {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .about-koyo .gender__info p:nth-child(2) span {
    line-height: 1.5;
  }
}
.about-koyo .gender__info p:nth-child(2) span {
  color: #002666;
  background-color: #f4f8ff;
  padding: 4px 14px;
  margin: 0 10px;
  border-radius: 50px;
  font-size: 14px;
}
.about-koyo .gender__info p:nth-child(2) span:nth-child(2) {
  background-color: #fffadb;
}

.employee-survey {
  padding: 40px 0 140px;
  position: relative;
}
.employee-survey::after {
  content: "";
  display: block;
  width: 100%;
  height: 90px;
  border-radius: 100px 0 0 0;
  background-color: #fff;
  position: absolute;
  top: -90px;
  left: 0;
}
.employee-survey {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .employee-survey {
    padding: 0 0 140px;
  }
}
.employee-survey__inner {
  max-width: 1440px;
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .employee-survey__inner {
    width: 90%;
  }
}
.employee-survey__inner {
  width: 90%;
}
.employee-survey__inner h3 {
  text-align: center;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .employee-survey__inner h3 {
    line-height: 1.5;
  }
}
.employee-survey__inner h3 {
  color: #002666;
  font-size: var(--fz-r-40-32);
  margin-bottom: var(--space-40-32);
}
.employee-survey .middle-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-32-24);
}
@media screen and (max-width: 1024px) {
  .employee-survey .middle-layout {
    display: block;
  }
}

.holiday-style {
  background-color: #f4f8ff;
  border-radius: 8px;
  position: relative;
  padding: 9% var(--space-32-24);
  margin-bottom: var(--space-32-24);
}
@media screen and (max-width: 1024px) {
  .holiday-style {
    padding: 14% var(--space-32-24);
  }
}
@media screen and (max-width: 820px) {
  .holiday-style {
    padding: 40px var(--space-32-24);
  }
}
@media screen and (max-width: 767px) {
  .holiday-style {
    margin-top: 110px;
  }
}
.holiday-style::before {
  content: "";
  display: inline-block;
  background-image: url(../images/number/holiday-style_img.webp);
  background-size: contain;
  background-repeat: no-repeat;
  width: 165px;
  height: 230px;
  position: absolute;
  left: 16px;
  top: -130px;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .holiday-style::before {
    width: 100px;
    height: 140px;
    top: -90px;
    left: 0;
  }
}
.holiday-style__title {
  text-align: center;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .holiday-style__title {
    line-height: 1.5;
  }
}
.holiday-style__title {
  color: #002666;
  font-size: var(--fz-r-32-24);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 820px) {
  .holiday-style__title {
    top: 17%;
  }
}
@media screen and (max-width: 767px) {
  .holiday-style__title {
    top: 16%;
    width: 100%;
  }
}
.holiday-style figure {
  width: 35%;
  margin: 0 auto;
}
@media screen and (max-width: 820px) {
  .holiday-style figure {
    width: 60%;
    margin: 0 auto 32px;
  }
}
@media screen and (max-width: 767px) {
  .holiday-style figure {
    width: 95%;
  }
}
.holiday-style__content {
  background-color: #fff;
  padding: 16px;
  border-radius: 8px;
  width: 30%;
  position: absolute;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .holiday-style__content {
    position: static;
    width: 90%;
    margin: 0 auto 24px;
  }
}
@media screen and (max-width: 767px) {
  .holiday-style__content {
    width: 100%;
  }
}
.holiday-style__content .holiday-style__sub-title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .holiday-style__content .holiday-style__sub-title {
    line-height: 1.5;
  }
}
.holiday-style__content .holiday-style__sub-title {
  font-size: var(--fz-r-24-20);
  display: inline-block;
  border-radius: 50px;
  border: 1px solid #002666;
  padding: 4px 16px;
  margin-bottom: 12px;
}
.holiday-style__content .holiday-style__items {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.holiday-style__content .holiday-style__items .holiday-style__info {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
  font-size: 64px;
  line-height: 1.2;
}
.holiday-style__content .holiday-style__items .holiday-style__info span {
  font-size: var(--fz-r-32-24);
}
@media screen and (max-width: 767px) {
  .holiday-style__content .holiday-style__items .holiday-style__info {
    font-size: 48px;
  }
}
.holiday-style__content.active-style {
  top: 24px;
  right: 24px;
}
.holiday-style__content.active-style .holiday-style__sub-title {
  color: #55aee4;
  border: 1px solid #55aee4;
}
.holiday-style__content.active-style
  .holiday-style__items
  .holiday-style__info {
  color: #55aee4;
}
.holiday-style__content.active-style::before {
  content: "";
  background-image: url(../images/number/holiday_border_01.svg);
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  top: 20px;
  left: -100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 820px) {
  .holiday-style__content.active-style::before {
    display: none;
  }
}
.holiday-style__content.family-style {
  bottom: 24px;
  right: 24px;
}
.holiday-style__content.family-style .holiday-style__sub-title {
  color: #f9b900;
  border: 1px solid #f9b900;
}
.holiday-style__content.family-style
  .holiday-style__items
  .holiday-style__info {
  color: #f9b900;
}
.holiday-style__content.family-style::before {
  content: "";
  background-image: url(../images/number/holiday_border_02.svg);
  display: inline-block;
  width: 80px;
  height: 80px;
  position: absolute;
  bottom: 30px;
  left: -100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .holiday-style__content.family-style::before {
    display: none;
  }
}
.holiday-style__content.refresh-style {
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
.holiday-style__content.refresh-style .holiday-style__sub-title {
  color: #5b69ab;
  border: 1px solid #5b69ab;
}
.holiday-style__content.refresh-style
  .holiday-style__items
  .holiday-style__info {
  color: #5b69ab;
}
@media screen and (max-width: 1024px) {
  .holiday-style__content.refresh-style {
    transform: none;
    margin-bottom: 0;
  }
}
.holiday-style__content.refresh-style::before {
  content: "";
  background-image: url(../images/number/holiday_border_03.svg);
  display: inline-block;
  width: 120px;
  height: 80px;
  position: absolute;
  top: -80px;
  right: -80px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .holiday-style__content.refresh-style::before {
    display: none;
  }
}
.holiday-style__image {
  width: 24%;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .holiday-style__image {
    margin-right: 16px;
  }
}
.holiday-style__text {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 12px;
}

.join-reason {
  background-color: #f4f8ff;
  padding: var(--space-32-24) var(--space-32-24) 200px;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .join-reason {
    padding: var(--space-32-24) var(--space-32-24) 48px;
    margin-bottom: var(--space-32-24);
  }
}
@media screen and (max-width: 767px) {
  .join-reason {
    padding-bottom: 160px;
  }
}
.join-reason__inner h4 {
  text-align: center;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .join-reason__inner h4 {
    line-height: 1.5;
  }
}
.join-reason__inner h4 {
  color: #002666;
  font-size: var(--fz-r-32-24);
  margin-bottom: var(--space-32-24);
}
.join-reason::after {
  content: "";
  display: inline-block;
  background-image: url(../images/number/join-reason_img.webp);
  background-size: contain;
  height: 190px;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  background-position: center;
}
@media screen and (max-width: 1024px) {
  .join-reason::after {
    background-position: right;
  }
}
@media screen and (max-width: 767px) {
  .join-reason::after {
    height: 150px;
    background-position: center;
  }
}

.bar-chart {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.bar-chart__item {
  margin-bottom: 32px;
}
.bar-chart__item:last-child {
  margin-bottom: 0;
}
.bar-chart__title {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .bar-chart__title {
    line-height: 1.5;
  }
}
.bar-chart__title {
  font-size: 20px;
  color: #002666;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .bar-chart__title {
    font-size: 14px;
  }
}
.bar-chart__row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bar-chart__bar {
  height: 16px;
  border-radius: 100px;
  transform-origin: left;
  animation: bar-grow 1s ease-out forwards;
}
.bar-chart__bar--navy {
  background-color: #002666;
}
.bar-chart__bar--yellow {
  background-color: #ffd900;
}
.bar-chart__bar--gold {
  background-color: #f9b900;
}
.bar-chart__bar--purple {
  background-color: #5b69ab;
}
.bar-chart__bar--light-blue {
  background-color: #c6d5f0;
}
.bar-chart__value {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 1;
}
.bar-chart__value .num {
  font-size: 32px;
  margin-right: 4px;
}
.bar-chart__value .unit {
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .bar-chart__value .num {
    font-size: 24px;
  }
  .bar-chart__value .unit {
    font-size: 14px;
  }
}

@keyframes bar-grow {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
.work-appeal {
  background-color: #f4f8ff;
  padding: var(--space-32-24);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .work-appeal {
    padding: 40px 16px;
  }
}
.work-appeal__inner h4 {
  text-align: center;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-appeal__inner h4 {
    line-height: 1.5;
  }
}
.work-appeal__inner h4 {
  color: #002666;
  font-size: var(--fz-r-32-24);
  margin-bottom: var(--space-32-24);
}
.work-appeal__image {
  width: 85%;
  margin: 0 auto var(--space-32-24);
}
@media screen and (max-width: 1024px) {
  .work-appeal__image {
    width: 45%;
    min-width: 400px;
  }
}
@media screen and (max-width: 820px) {
  .work-appeal__image {
    width: 50%;
    min-width: 280px;
  }
}
.work-appeal__items li {
  background-color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .work-appeal__items li {
    display: block;
    margin: 0 auto 16px;
  }
}
.work-appeal__number {
  background-color: #f4f8ff;
  border-radius: 50px;
  padding: 4px 0;
  color: #002666;
  margin-right: 16px;
  width: 76px;
  text-align: center;
}
.work-appeal__number span {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .work-appeal__number {
    margin: 0 auto 8px;
  }
}
.work-appeal__text {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .work-appeal__text {
    line-height: 1.5;
  }
}
.work-appeal__text {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .work-appeal__text {
    font-size: 18px;
    text-align: center;
  }
}

.one-word {
  background-color: #f4f8ff;
  padding: var(--space-40-32) var(--space-32-24);
  border-radius: 8px;
  margin-top: var(--space-32-24);
}
@media screen and (max-width: 1024px) {
  .one-word {
    padding: var(--space-40-32) 16px;
  }
}
.one-word__inner h4 {
  text-align: center;
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .one-word__inner h4 {
    line-height: 1.5;
  }
}
.one-word__inner h4 {
  color: #002666;
  font-size: var(--fz-r-32-24);
  margin-bottom: var(--space-32-24);
}
.one-word__content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .one-word__content {
    display: block;
  }
}
.one-word__items {
  width: calc(50% - 20px);
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8px;
  flex-direction: row-reverse;
}
.one-word__items:nth-child(even) {
  flex-direction: unset;
}
.one-word__items:nth-child(even) .one-word__image {
  margin-right: 0;
}
@media screen and (max-width: 820px) {
  .one-word__items {
    flex-direction: column;
    padding: 24px 8px 0;
  }
  .one-word__items:nth-child(even) {
    flex-direction: column;
  }
  .one-word__items:nth-child(even) .one-word__image {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .one-word__items {
    width: 100%;
    margin-bottom: 16px;
  }
}
.one-word__image {
  width: 20%;
  margin-right: 24px;
}
@media screen and (max-width: 820px) {
  .one-word__image {
    width: 30%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .one-word__image {
    width: 25%;
  }
}
.one-word__text {
  font-family:
    "Zen Kaku Gothic New",
    "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic ProN",
    sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    Roboto,
    "Segoe UI",
    "Helvetica Neue",
    HelveticaNeue;
  font-weight: 700;
  font-style: normal;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 820px) {
  .one-word__text {
    line-height: 1.5;
  }
}
.one-word__text {
  font-size: 18px;
  width: 60%;
}
@media screen and (max-width: 1024px) {
  .one-word__text {
    width: 67%;
  }
}
@media screen and (max-width: 820px) {
  .one-word__text {
    width: 100%;
    text-align: center;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 767px) {
  .one-word__text {
    font-size: 16px;
  }
}
