@charset "UTF-8";

:root {
  /* 色管理用の変数 */
  --black-color: #3b4043;
  --white-color: #ffffff;
  --primary-color: #12298c;
  --accsent-color: #f3ee4f;
  --sub-color01: #f0f2f9;
  --sub-color02: #f8f8f8;
}

:root {
  /* コンテンツ幅管理用の変数 */
  --content-width-sm: 960px;
  --content-width: 1200px;
  --content-width-lg: 1320px;
}

:root {
  /* z-index管理用の変数 */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-header: 100;
  --z-index-menu: 150;
  --z-index-modal: 200;
}

:root {
  /* フォントファミリー管理用 */
  --font-family-en: "Inter", sans-serif;
  --font-family-jp: "Noto Sans JP", sans-serif;
}

:root {
  /* 背景管理用 */
  --polka-bg-image: radial-gradient(rgb(214, 225, 245) 28%, transparent 28%);
  /* --polka-bg-image: radial-gradient(rgb(190, 205, 235) 28%, transparent 28%); */
  --polka-bg-position: 2px 2px;
  --polka-bg-size: 4px 5px;
  --polka-bg-color: rgb(247, 247, 247);
}

@media screen and (max-width: 600px) {
  :root {
    --polka-bg-size: 3px 3px;
  }
}

/* ---------- base ---------- */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  color: var(--black-color);
  background-image: var(--polka-bg-image);
  background-position: var(--polka-bg-position);
  background-size: var(--polka-bg-size);
  background-color: var(--polka-bg-color);
  font-size: 16px;
  font-family: var(--font-family-jp);
  line-height: 1.8;
  letter-spacing: 0.1rem;
}

/* クリックした際の青い枠線を削除 */
*:focus {
  outline: none;
}

/* タップした際の青い四角を削除 */
button,
span {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

/* 固定ヘッダー分だけスクロール位置を余白にする */
html {
  scroll-padding-top: var(--header-height, 60px);
}
/* ブラウザ互換と確実性のため、見出し系にもマージントップを付与 */
.m_section_title,
h1,
h2,
h3,
h4 {
  scroll-margin-top: calc(var(--header-height, 60px) + 8px);
}

/* ---------- utility ---------- */

/* ---------- js ---------- */
.js_body.is-active,
body.no-scroll,
html.no-scroll,
.js_body.no-scroll {
  overflow: hidden;
  height: 100%;
}

.js_nav {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s;
}

.js_nav.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
  transform: translateX(0);
}

.js_ham.is-active .l_header-ham_inner:first-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(45deg);
  background: var(--primary-color);
}

.js_ham.is-active .l_header-ham_inner:nth-child(2) {
  opacity: 0;
}

.js_ham.is-active .l_header-ham_inner:last-child {
  top: 50%;
  transform: translate(-50%, 0) rotate(-45deg);
  background: var(--primary-color);
}

/* ---------- module ---------- */
/* 背景白・青枠 → ホバーで左から青が流れるスライド */
.m_cta_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(4px, 1vw, 8px) clamp(3px, 1.5vw, 6px) clamp(4px, 1vw, 8px);
  background: var(--white-color);
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  text-decoration: none;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: bold;
  white-space: nowrap;
  letter-spacing: 0.01em;
  overflow: hidden;
  position: relative;
  z-index: 1;
  transition: color 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}

.m_cta_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-color);
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.m_cta_btn:hover {
  color: var(--white-color);
  
}

.m_cta_btn:hover::after {
  transform: scale(1, 1);
}

/* ホバー時は矢印を白にして青背景で見えるように */
.m_cta_btn:hover .m_cta_btn-arrow::before,
.m_cta_btn:hover .m_cta_btn-arrow::after {
  background: var(--white-color);
}

.m_cta_btn-arrow {
  display: none; /* ボタン内の＞を非表示 */
}

.m_cta_btn-arrow::before {
  content: "";
  position: absolute;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 6px;
  height: 2.5px;
  background: var(--primary-color);
}

.m_cta_btn-arrow::after {
  content: "";
  position: absolute;
  top: 55%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(135deg);
  width: 6px;
  height: 2.5px;
  background: var(--primary-color);
}

/* タイピングアニメーション */
.m_typing {
  overflow: hidden;
  white-space: nowrap;
  width: var(--typing-width, 0);
  animation-fill-mode: forwards;
  display: inline-block;
  position: relative;
  padding-right: var(--typing-caret-gap, 0.35em);
}
.m_typing_s {
  --typing-caret-width: 2px;
}

.m_typing.is-typing {
  animation: typing var(--typing-duration, 3s) steps(var(--typing-steps), end)
    forwards;
}

.m_typing::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: var(--typing-caret-width, 4px);
  height: var(--typing-caret-height, 1.1em);
  background: currentColor;
  transform: translateY(-50%);
}

.m_typing.is-typing::after {
  animation: typing-caret-blink 1.2s step-end infinite;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: var(--typing-width);
  }
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

@keyframes typing-caret-blink {
  50% {
    opacity: 0;
  }
}

/* section title */
.m_section_title-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.m_section_decor {
  width: 100%;
  height: 1px;
  background: #cdd6dd;
  margin-bottom: clamp(6px, 1.11vw, 16px);
}

.m_section_title {
  font-size: clamp(32px, 6vw, 54px);
  font-family: var(--font-family-en);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--primary-color);
  margin-top: clamp(6px, 1.11vw, 16px);
}

.m_section_subtitle {
  font-size: clamp(14px, 1.5vw, 20px);
  color: var(--primary-color);
  font-weight: 600;
}

/* セクション内テキスト */
.m_section_text-title {
  font-size: clamp(22px, 2vw, 29px);
  font-weight: bold;
  display: block;
  width: auto;
}

.m_section_text {
  font-size: clamp(16px, 2vw, 17px);
  font-weight: bold;
  line-height: 2.3;
}
@media screen and (max-width: 600px) {
  .m_section_text {
    line-height: 2;
  }
}

/* ---------- layout ---------- */
.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 clamp(16px, 3vw, 32px);
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .l_contents {
    padding: 40px 0;
  }
}

/* header */
.l_header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 17px clamp(18px, 2.78vw, 40px) 17px clamp(18px, 2.78vw, 40px);
  background: var(--white-color);
  display: flex;
  align-items: center;
  z-index: var(--z-index-header);
}

.l_header-title {
	width:50%;
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.21vw, 3px);
  margin: 0;
}

.l_header-title_link {
	width:100%;
  display: flex;
  align-items: center;
  gap: clamp(2px, 0.21vw, 3px);
  text-decoration: none;
  color: var(--black-color);
}

.l_header-logo {
  height: auto;
  width: 224px;
  display: block;
}
@media screen and (max-width: 600px) {
  .l_header-logo {
    width: 100%;
  }
}

.l_header-contact_cta {
  margin-left: auto;
  margin-right: clamp(2px, 1vw, 20px);
  width: clamp(130px, 14vw, 168px);
}

/* header hamburger */
.l_header-ham {
  width: clamp(30px, 3.5vw, 40px);
  height: clamp(30px, 3.5vw, 40px);
  border-radius: 999px;
  border: 2px solid var(--primary-color);
  background: var(--white-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

.l_header-ham_inner {
  width: clamp(12px, 1.5vw, 20px);
  height: clamp(1.5px, 0.3vw, 3px);
  position: absolute;
  background: var(--primary-color);
  left: 50%;
  transition: 0.3s;
  border-radius: 999px;
}

.l_header-ham_inner:first-child {
  top: clamp(8px, 1vw, 11px);
  transform: translate(-50%, 0);
}

.l_header-ham_inner:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}

.l_header-ham_inner:last-child {
  bottom: clamp(8px, 1vw, 11px);
  transform: translate(-50%, 0);
}

/* header nav */
.l_header-nav {
  position: fixed;
  top: var(--header-height, clamp(50px, 5.21vw, 75px));
  right: 0;
  width: clamp(340px, 85vw, 800px);
  /* max-height: 700px; */
  /* 内部をスクロール */
  max-height: calc(95vh - var(--header-height, 60px));
  background: var(--white-color);
  padding: clamp(16px, 5vw, 80px) clamp(88px, 15.28vw, 220px)
    clamp(80px, 8.33vw, 120px) clamp(64px, 11.11vw, 160px);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: var(--z-index-menu);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; /* iOSでスムーズに内部スクロールできるように */
  border-radius: 0 0 0 clamp(80px, 13.89vw, 200px);
}

.l_header-nav_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(12px, 1.81vw, 26px) clamp(32px, 6.39vw, 92px);
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .l_header-nav_list {
    grid-template-columns: 1fr;
  }
}

.l_header-nav_link {
  text-decoration: none;
  color: var(--primary-color);
  font-size: clamp(20px, 2vw, 26px);
  font-family: var(--font-family-en);
  line-height: 1.2;
  display: block;
  padding: clamp(6px, 1vw, 10px) 0;
  min-height: 36px;
}

.l_header-nav_item span {
  display: block;
  font-size: clamp(12px, 1vw, 15px);
  font-weight: bold;
  color: var(--black-color);
  margin-top: 4px;
}

.l_header-nav_line {
  display: inline-block;
  width: 5px;
  height: 1.5px;
  background: #707070;
  vertical-align: middle;
  margin-right: 9px;
}

.l_header-nav_link__corporate {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
  color: var(--black-color);
}

.l_header-nav_item--corporate .l_header-nav_link {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: auto;
}

.l_header-nav_icon {
  width: clamp(8px, 0.8vw, 12px);
  height: auto;
  margin-left: clamp(2px, 0.5vw, 3px);
  vertical-align: middle;
}

.l_main {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-top: 100vh; /* FVの高さ分だけ下から開始 */
  background-image: var(--polka-bg-image);
  background-position: var(--polka-bg-position);
  background-size: var(--polka-bg-size);
  background-color: var(--white-color);
}

/* footer */
.l_footer {
  background: #f0f2f9;
  padding-top: 71px;
  padding-bottom: 50px;
}

.footer__in {
  padding: 24px 0 0px;
  width: 90%;
  margin: 0 auto;
}

.footer__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 87px;
}
@media screen and (max-width: 600px) {
  .footer__top {
    align-items: flex-end;
  }
}

.footernav__list {
  display: flex;
}
@media screen and (max-width: 600px) {
  .footernav__list {
    flex-direction: column;
    gap: 12px;
  }
}

.footernav__link-icon {
  width: 10px;
  height: 10px;
  aspect-ratio: 1 / 1;
  margin-top: 10px;
  vertical-align: top;
}

.footernav .footernav__list a {
  padding: 0 clamp(8px, 1.2vw, 15px);
  font-size: clamp(10px, 1vw, 14px);
  font-weight: bold;
}

.footernav .footernav__list a:hover {
  text-decoration: underline;
}

.footernav .footernav__list:first-child {
  margin-bottom: 20px;
}

.footernav .footernav__list:first-child li a {
  color: #3b4043;
  border-right: 1px solid #3b4043;
}
@media screen and (max-width: 600px) {
  .footernav .footernav__list:first-child li a {
    border-right: none;
  }
}

.footernav .footernav__list:first-child li:last-child a {
  border-right: none;
}

.footernav .footernav__list:last-child li a {
  color: #707f88;
  border-right: 1px solid #707f88;
  font-weight: normal;
}
@media screen and (max-width: 600px) {
  .footernav .footernav__list:last-child li a {
    border-right: none;
  }
}

.footernav .footernav__list:last-child li:last-child a {
  border-right: none;
}

.footer__logo {
  width: 10%;
  position: relative;
}
@media screen and (max-width: 600px) {
  .footer__logo {
    width: 20%;
  }
}

.footer__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  display: block;
  transition: 0.5s;
}
.footer__logo:hover img:nth-of-type(2) {
  opacity: 0;
}

.footer__bottom {
  border-top: 1px solid #707f88;
  padding-top: 8px;
}

.footer__bottom .footer__bottom_in {
  text-align: right;
}

.footer__bottom .footer__bottom_in small {
  color: #707f88;
  font-size: clamp(11px, 1vw, 13px);
}

.sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp {
    display: block;
  }
}

/* fv */
.recruit-fv {
  background: var(--white-color);
  padding: calc(clamp(50px, 5.21vw, 75px) + clamp(40px, 6.25vw, 90px)) 0
    clamp(48px, 8.33vw, 120px);
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recruit-fv.is-unfixed {
  position: absolute;
  top: 0;
  left: 0;
}

.recruit-fv_logo-wrap {
  width: clamp(120px, 16.32vw, 235px);
  height: auto;
  margin: 0 auto;
}

.recruit-fv_title-wrap {
  width: 100%;
  overflow: hidden;
  margin: clamp(12px, 1.67vw, 24px) auto 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.recruit-fv_title {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  width: 0;
  line-height: 1.25;
  padding-bottom: 0.12em; /* descender(y,g,p等)の見切れ防止 */
  font-size: clamp(32px, 5.56vw, 80px);
  font-weight: bold;
  letter-spacing: -0.02em;
  /* color: var(--black-color); アニメーション時*/
  color: var(--white-color);
}

.recruit-fv_subtitle {
  margin-top: clamp(8px, 0.97vw, 14px);
  font-size: clamp(16px, 2vw, 34px);
  letter-spacing: -0.01em;
  font-weight: bold;
}

/* fv bg */

@keyframes recruit-bgcycle {
  0% {
    background-color: #ffffff;
    background-image: none;
    color: var(--black-color);
  }
  35% {
    background-color: rgb(0, 179, 138);
    background-image: var(--polka-bg-image);
    color: var(--white-color);
  } /* 緑 */
  45% {
    background-color: rgb(253, 187, 0);
    background-image: var(--polka-bg-image);
    color: var(--white-color);
  } /* 黄 */
  60% {
    background-color: rgb(247, 32, 58);
    background-image: var(--polka-bg-image);
    color: var(--white-color);
  } /* 赤 */
  75% {
    background-color: rgb(250, 91, 150);
    background-image: var(--polka-bg-image);
    color: var(--white-color);
  } /* ピンク */
  90% {
    background-color: rgb(0, 165, 238);
    background-image: var(--polka-bg-image);
    color: var(--white-color);
  } /* 青 */
  100% {
    background-color: #ffffff;
    background-image: none;
    color: var(--black-color);
  }
}

/* fv video */
.recruit-fv--video {
  overflow: hidden;
  isolation: isolate;
}

.recruit-fv--video .recruit-fv_video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.recruit-fv--video .recruit-fv_video-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: url(../img/kv-bg.png);
  background-size: 3px auto;
  background-repeat: repeat;
}

.recruit-fv--video .recruit-fv_video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* FV サムネイル（動画なし時） */
.recruit-fv--video .recruit-fv_thumb-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.recruit-fv--video .recruit-fv_thumb-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image: url(../img/kv-bg.png);
  background-size: 3px auto;
  background-repeat: repeat;
}

.recruit-fv--video .recruit-fv_thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.recruit-fv--video .recruit-fv_logo-wrap,
.recruit-fv--video .recruit-fv_title-wrap {
  position: relative;
  z-index: 2;
}

.recruit-fv_title,
.recruit-fv_subtitle {
  color: #fff;
}

/* about us */
.recruit-aboutus {
  width: 100%;
}

.recruit-aboutus_content {
  display: flex;
  align-items: flex-end;
  gap: clamp(24px, 8vw, 129px);
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_content {
    flex-direction: column;
    text-align: center;
    align-items: center;
    margin-top: 40px;
  }
}

.recruit-aboutus_img-wrap {
  width: clamp(300px, 40vw, 480px);
  height: auto;
  flex-shrink: 0;
  margin-right: 1rem;
	margin: auto;
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_img-wrap {
    width: 100%;
  }
}

.recruit-aboutus_text-wrap {
  width: clamp(300px, 50vw, 612px);
  text-align: left;
  background: var(--sub-color01);
  border-radius: 20px;
  padding: clamp(52px, 2vw, 20px) clamp(44px, 2.5vw, 30px)
    clamp(16px, 2vw, 20px) clamp(43px, 2vw, 20px);
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_text-wrap {
    width: 100%;
    background: transparent;
    padding: 0;
  }
}

.recruit-aboutus_text-title {
  font-size: clamp(20px, 2vw, 29px);
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_text-title {
    font-size: clamp(24px, 2vw, 29px);
  }
}

.recruit-aboutus_text-scroll {
  margin-top: clamp(16px, 2vw, 30px);
  width: clamp(320px, 40vw, 520px);
  height: 362px;
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-gutter: stable;

  /* スクロールは残してバーだけ隠す（Messageと同じ） */
  -ms-overflow-style: none; /* IE/旧Edge */
  scrollbar-width: none; /* Firefox */
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_text-scroll {
    width: 100%;
  }
}

.recruit-aboutus_text-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.recruit-aboutus_text-scroll-area {
  position: relative;
}

.recruit-aboutus_scroll-indicator {
  position: absolute;
  right: clamp(0px, 0vw, 15px);
  top: -44px;
  transform: translateX(clamp(12px, 1.5vw, 20px));
  width: 1px;
  height: clamp(72px, 10vw, 130px);
  pointer-events: none;
}

.recruit-aboutus_scroll-indicator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--black-color);
  border-radius: 999px;
}

.recruit-aboutus_scroll-indicator-text {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0) rotate(90deg);
  transform-origin: center;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family-en);
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--black-color);
  white-space: nowrap;
}

.recruit-aboutus_scroll-indicator-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(6px, 0.4vw, 8px);
  height: clamp(6px, 0.4vw, 8px);
  background: var(--black-color);
  border-radius: 999px;
  transform: translate(-50%, 0);
}

.recruit-aboutus_scroll-indicator.is-hidden {
  display: none;
}

.recruit-aboutus_text {
  margin-top: 0;
  text-align: justify;
}

@media screen and (max-width: 600px) {
  .recruit-aboutus_text-scroll {
    height: auto;
    overflow: visible;
  }

  .recruit-aboutus_scroll-indicator {
    display: none;
  }
}

@media screen and (min-width: 1920px) {
  .recruit-aboutus_text-wrap {
    width: 693px;
  }
}

.recruit-aboutus_movie-wrap {
  width: 100%;
  margin-top: clamp(24px, 3.5vw, 40px);
}

.recruit-aboutus_movie-title {
  font-size: clamp(56px, 17vw, 175px);
  font-weight: 300;
  font-family: var(--font-family-en);
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-align: center;
  color: var(--white-color);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  text-shadow: 4px 8px 24px rgba(214, 225, 245, 0.5);
  -webkit-font-smoothing: antialiased;
}

.recruit-aboutus_movie-title {
  display: inline-block;
  white-space: nowrap;
}

.recruit-aboutus_movie {
  width: 80%;
  max-width: 960px;
  height: clamp(300px, 45vw, 540px);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 600px) {
  .recruit-aboutus_movie {
    width: 100%;
    height: clamp(200px, 56.25vw, 400px);
  }
}

.recruit-aboutus_movie-wrap iframe {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  border-radius: 20px;
}

/* --- About us movie popup --- */
body.is-aboutus-movie-open .l_header {
  opacity: 0;
  pointer-events: none;
}

body.is-pitchdeck-popup-open .l_header {
  opacity: 0;
  pointer-events: none;
}

.aboutus-movie-thumb-wrap {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
  background: var(--black-color);
  overflow: hidden;
  border-radius: inherit;
}
.aboutus-movie-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.aboutus-movie-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  width: clamp(36px, 7vw, 64px);
  height: clamp(36px, 7vw, 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}
.aboutus-movie-thumb-wrap:hover .aboutus-movie-play-btn {
  opacity: 1;
  pointer-events: auto;
}

/* SP時のみ初期表示 */
@media screen and (max-width: 600px) {
  .aboutus-movie-thumb-wrap .aboutus-movie-play-btn {
    opacity: 1;
    pointer-events: auto;
  }
}
.aboutus-movie-play-icon {
  display: block;
  width: 0;
  height: 0;
  border-top: clamp(6px, 2vw, 16px) solid transparent;
  border-bottom: clamp(6px, 2vw, 16px) solid transparent;
  border-left: clamp(10px, 3vw, 24px) solid #fff;
  margin-left: clamp(3px, 1vw, 10px);
}

.aboutus-movie-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16/9;
  background: rgb(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 36px 16px;
  margin: 0 auto;
}
.aboutus-movie-popup-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: #707070;
  opacity: 0.95;
  z-index: 0;
}
.aboutus-movie-popup-inner {
  position: relative;
  z-index: 1;
  background: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 1120px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .aboutus-movie-popup-inner {
    width: 100%;
  }
}

.aboutus-movie-popup-close {
  position: absolute;
  top: 88px;
  right: 32px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: clamp(36px, 7vw, 64px);
  height: clamp(36px, 7vw, 64px);
  font-size: clamp(18px, 2vw, 28px);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .aboutus-movie-popup-close {
    top: 54px;
    right: 24px;
  }
}
@media screen and (max-width: 600px) {
  .aboutus-movie-popup-close {
    top: -16px;
    right: 16px;
  }
}

.aboutus-movie-popup-iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

/* message */
.recruit-message {
  width: 100%;
}

.recruit-message_content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
  margin-top: clamp(32px, 7vw, 78px);
}
@media screen and (max-width: 600px) {
  .recruit-message_content {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vw, 24px);
  }
}

.recruit-message_img-wrap {
  width: clamp(343px, 40vw, 577px);
  height: auto;
  flex-shrink: 0;
  /* position: sticky; */
  border-radius: 4px;
  overflow: hidden;
}

@media screen and (max-width: 1080px) {
  .recruit-message_img-wrap {
    grid-column: 1 / 2;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .recruit-message_img-wrap {
    width: 100%;
  }
}
.recruit-message_img {
  display: block;
  width: 100%;
  height: auto;
}

.recruit-message_img-caption {
  /* position: absolute;
  left: clamp(16px, 2.92vw, 40px);
  bottom: clamp(20px, 2.5vw, 36px);
  margin: 0;
  padding: 0;
  color: var(--white-color); */
  color: var(--black-color);
  line-height: 1.2;
  letter-spacing: 0.02em;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
  width: fit-content;
}

.recruit-message_img-caption-role {
  font-size: clamp(12px, 1.04vw, 15px);
  font-weight: 700;
  line-height: 1.2;
  display: block;
}

.recruit-message_img-caption-name {
  font-size: clamp(14px, 1.32vw, 19px);
  font-weight: 600;
  line-height: 1.2;
  display: block;
}

.recruit-message_text-wrap {
  margin-top: clamp(24px, 6vw, 64px);
  width: clamp(300px, 42vw, 576px);
  position: relative;
	    padding: clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px) clamp(0px, 0vw, 0px) clamp(23px, 0vw, 27px);
}
}
@media screen and (max-width: 600px) {
  .recruit-message_text-wrap {
    width: 100%;
    margin-left: 0;
    margin-top: 24px;
  }
}

.recruit-message_text-wrap::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -16px;
  width: clamp(360px, 47vw, 670px);
  height: clamp(320px, 44vw, 640px);
  background: var(--sub-color01);
  border-radius: 20px;
  z-index: -1;
}
@media screen and (max-width: 1080px) {
  .recruit-message_text-wrap::before {
    height: clamp(455px, 36vw, 600px);
    width: clamp(340px, 45vw, 500px);
  }
}

@media screen and (max-width: 600px) {
  .recruit-message_text-wrap::before {
    background: transparent;
  }
}
.recruit-message_text-scroll {
  height: clamp(360px, 36vw, 515px);
  overflow-y: auto;
  overscroll-behavior-y: auto;
  scrollbar-gutter: stable;
  display: flex;
  flex-direction: column;
  gap: 10px;

  /* スクロールは残してバーだけ隠す */
  -ms-overflow-style: none; /* IE/旧Edge */
  scrollbar-width: none; /* Firefox */
}

.recruit-message_text-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

@media screen and (max-width: 600px) {
  .recruit-message_text-scroll {
    height: auto;
    overflow: visible;
    padding-right: 0;
  }
}

.recruit-message_scroll-indicator {
  position: absolute;
	right: -4px;
    top: 10px;
  transform: translateX(clamp(12px, 1.5vw, 20px));
  width: 1px;
  height: clamp(72px, 10vw, 130px);
  pointer-events: none;
}

.recruit-message_scroll-indicator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--black-color);
  border-radius: 999px;
}

.recruit-message_scroll-indicator-text {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0) rotate(90deg);
  transform-origin: center;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family-en);
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--black-color);
  white-space: nowrap;
}

.recruit-message_scroll-indicator-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(6px, 0.4vw, 8px);
  height: clamp(6px, 0.4vw, 8px);
  background: var(--black-color);
  border-radius: 999px;
  transform: translate(-50%, 0);
}

.recruit-message_scroll-indicator.is-hidden {
  display: none;
}

@media screen and (max-width: 600px) {
  .recruit-message_scroll-indicator {
    display: none;
  }
}

.recruit-message_text-title {
  font-size: clamp(22px, 4vw, 29px);
  font-weight: bold;
  line-height: 1.2;
  display: block;
  width: auto;
  margin-bottom: 18px;
}

.recruit-message_text-title span {
  display: block;
  background: var(--accsent-color);
}

.recruit-message_text-title span:first-child {
  margin-bottom: clamp(2px, 0.5vw, 3px);
  text-indent: -0.45em;
}

.recruit-message_text {
  /* font-size: 16px; */
  line-height: 2.3;
  letter-spacing: 0.01em;
  text-align: justify;
}

/* Pitch Deck */
.recruit-pitchdeck {
  width: 100%;
  margin: 0 auto;
}

.recruit-pitchdeck_contents {
  padding: 80px 0 130px;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_contents {
    padding: 40px 0 60px;
  }
}

.recruit-pitchdeck_img-wrap {
  width: 100%;
  margin-top: clamp(16px, 2vw, 28px);
}

.recruit-pitchdeck_slider {
  background: #cdd6dd;
  width: 80%;
  max-width: 1008px;
  height: clamp(260px, 46vw, 460px);
  margin: 0 auto;
  border-radius: 20px;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_slider {
    width: 100%;
  }
}

.recruit-pitchdeck_slide {
  width: 100%;
  height: auto;
  display: block;
}

.recruit-pitchdeck_nav {
  margin-top: clamp(10px, 2vw, 20px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 80%;
  max-width: 1008px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.recruit-pitchdeck_nav-btn-wrap {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1vw, 39px);
}

.recruit-pitchdeck_nav-btn {
  width: 39px;
  height: 39px;
  border-radius: 999px;
  background: var(--primary-color);
  color: var(--white-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
}

.recruit-pitchdeck_nav-btn::before,
.recruit-pitchdeck_nav-btn::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 2.5px;
  background: var(--white-color);
}

.recruit-pitchdeck_nav-btn--prev::before {
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.recruit-pitchdeck_nav-btn--prev::after {
  top: 55%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.recruit-pitchdeck_nav-btn--next::before {
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.recruit-pitchdeck_nav-btn--next::after {
  top: 55%;
  left: 52%;
  transform: translate(-50%, -50%) rotate(135deg);
}

/* page indicator (左下の 6 ― 20) */
.recruit-pitchdeck_nav-page {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--primary-color);
  margin-left: 26px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-page {
    margin-left: 8px;
  }
}

.recruit-pitchdeck_nav-current,
.recruit-pitchdeck_nav-total {
  font-size: 20px;
  font-weight: var(--font-family-en);
  letter-spacing: -0.02em;
}

.recruit-pitchdeck_nav-sep {
  width: 39px;
  height: 1px;
  background: var(--primary-color);
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-sep {
    width: 20px;
  }
}

/* Full Screen pill button (右下の丸長) */
/*.recruit-pitchdeck_nav-view-btn {
  min-width: 180px;
  height: 53px;
  border-radius: 999px;
  border: none;
  background: var(--black-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 22px;
  cursor: pointer;
  margin-right: 0;
  margin-left: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-view-btn {
    margin-left: 0;
    margin-top: clamp(4px, 1vw, 8px);
    min-width: 120px;
    width: 160px;
  }
}

.recruit-pitchdeck_nav-view-btn:hover {
  opacity: 0.7;
}

.recruit-pitchdeck_nav-view-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.recruit-pitchdeck_nav-view-line {
  width: 90px;
  height: 1px;
  background: var(--white-color);
  position: relative;
}

.recruit-pitchdeck_nav-view-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--white-color);
}*/

/* =========================
   既存スタイル（提供済み）
   ========================= */
.recruit-pitchdeck_nav-view-btn {
  min-width: 180px;
  height: 53px;
  border-radius: 999px;
  border: none;
  background: var(--black-color);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0 22px;
  cursor: pointer;
  margin-right: 0;
  margin-left: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-view-btn {
    margin-left: 0;
    margin-top: clamp(4px, 1vw, 8px);
    min-width: 120px;
    width: 160px;
  }
}

.recruit-pitchdeck_nav-view-btn:hover {
  opacity: 0.7;
}

.recruit-pitchdeck_nav-view-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

/* ────── 修正用（そのまま貼ってください） ────── */

/* 1) コンテナの白背景を完全に消す（これが白四角の主因） */
.recruit-pitchdeck_nav-view-line {
  background: none !important;
  width: auto !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  position: relative !important;
  overflow: visible !important;
}

/* 2) 元の丸（::before）を確実に無効化 */
.recruit-pitchdeck_nav-view-line::before {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  content: none !important;
}

/* 3) アイコンラッパーを固定サイズにして flex の影響を受けないようにする */
.recruit-pitchdeck_nav-view-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;    /* 必要に応じて 18〜24 で調整 */
  height: 20px !important;
  flex: none !important;     /* 親の gap や flex による伸縮を防ぐ */
  background: transparent !important;
  line-height: 0 !important;
  overflow: visible !important;
}

/* 4) SVG 自体の余白や表示を安定させる */
.recruit-pitchdeck_nav-view-icon svg {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  vertical-align: middle !important;
}

/* 5) SVG 内の透明矩形（.cls-1）が原因の可能性があるので非表示にする（安全策） */
.recruit-pitchdeck_nav-view-icon svg .cls-1,
.recruit-pitchdeck_nav-view-icon svg rect.cls-1 {
  display: none !important;
  opacity: 0 !important;
}

/* 6) 表示切替ルール（既存の body クラス連動） */
.recruit-pitchdeck_nav-view-text.text-open { display: inline; }
.recruit-pitchdeck_nav-view-text.text-close { display: none; }

.svg-expand { display: inline-flex !important; }
.svg-collapse { display: none !important; }

body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-text.text-open { display: none; }
body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-text.text-close { display: inline; }

body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-line .svg-expand { display: none !important; }
body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-line .svg-collapse { display: inline-flex !important; }

/* 7) ボタン内の gap を微調整（任意） */
.recruit-pitchdeck_nav-view-btn { gap: 16px; }

/* 8) レスポンシブ（任意） */
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-view-icon { width: 18px !important; height: 18px !important; }
  .recruit-pitchdeck_nav-view-line { padding-left: 6px !important; padding-right: 4px !important; }
  .recruit-pitchdeck_nav-view-btn { gap: 2px; }
}



body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-text.text-open { display: none; }
body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-text.text-close { display: inline; }

body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-line .svg-expand { display: none; }
body.is-pitchdeck-popup-open .recruit-pitchdeck_nav-view-line .svg-collapse { display: inline-flex; }

/* 押下時/フォーカス時（JSがクラスを付ける前でも一時的に切替） */
/* :active はクリックしている間のみ、:focus-visible はキーボードフォーカス用 */
.recruit-pitchdeck_nav-view-btn:active .svg-expand,
.recruit-pitchdeck_nav-view-btn:focus-visible .svg-expand {
  display: none;
}
.recruit-pitchdeck_nav-view-btn:active .svg-collapse,
.recruit-pitchdeck_nav-view-btn:focus-visible .svg-collapse {
  display: inline-flex;
}
.recruit-pitchdeck_nav-view-btn:active .recruit-pitchdeck_nav-view-text.text-open,
.recruit-pitchdeck_nav-view-btn:focus-visible .recruit-pitchdeck_nav-view-text.text-open {
  display: none;
}
.recruit-pitchdeck_nav-view-btn:active .recruit-pitchdeck_nav-view-text.text-close,
.recruit-pitchdeck_nav-view-btn:focus-visible .recruit-pitchdeck_nav-view-text.text-close {
  display: inline;
}

/* レスポンシブ調整（既存 @media と矛盾しないように） */
@media screen and (max-width: 600px) {
  .recruit-pitchdeck_nav-view-icon { width: 18px; height: 18px; }
  .recruit-pitchdeck_nav-view-line { padding-left: 6px; }
}

/* 補足：SVG の色を CSS 管理したい場合（推奨）
   現状 SVG は fill="#FFFFFF" 等を内蔵しています。将来 currentColor を使って
   ボタンの color プロパティで色を統一管理したい場合は、
   SVG 内の path 等の fill/stroke を 'currentColor' に書き換える必要があります。
*/



/* ポップアップ内はドットをライン右端へ */
.pitchdeck-img-popup .recruit-pitchdeck_nav-view-line::before {
  left: auto;
  right: 0;
}

/* Pitch Deck ポップアップ */
.pitchdeck-img-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  aspect-ratio: 16/9;
  background: rgb(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 36px 16px;
  margin: 0 auto;
}
.pitchdeck-img-popup .pitchdeck-img-popup-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: #707070;
  opacity: 0.95;
  z-index: 0;
}
.pitchdeck-img-popup .pitchdeck-img-popup-inner {
  position: relative;
  z-index: 1;
  background: none;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80%;
  max-width: 1120px;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 600px) {
  .pitchdeck-img-popup .pitchdeck-img-popup-inner {
    width: 100%;
  }
}
.pitchdeck-img-popup .pitchdeck-img-popup-close {
  position: absolute;
  top: 55px;
  right: 40px;
  background: var(--primary-color);
  color: var(--white-color);
  border: none;
  border-radius: 50%;
  width: clamp(36px, 7vw, 64px);
  height: clamp(36px, 7vw, 64px);
  font-size: clamp(18px, 2vw, 28px);
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1080px) {
  .pitchdeck-img-popup .pitchdeck-img-popup-close {
    top: 54px;
    right: 24px;
  }
}
@media screen and (max-width: 600px) {
  .pitchdeck-img-popup .pitchdeck-img-popup-close {
    top: -16px;
    right: 16px;
  }
}
.pitchdeck-img-popup .recruit-pitchdeck_slider {
  width: 100%;
  max-width: 1120px;
  height: 100%;
  border: none;
  border-radius: 20px;
  aspect-ratio: 16/9;
}

.pitchdeck-img-popup .recruit-pitchdeck_nav {
  max-width: 1120px;
  width: 100%;
}

/* Pitch Deck ポップアップ時：ナビ（前後ボタン＋ページ表示）を青/白反転 */
.pitchdeck-img-popup .recruit-pitchdeck_nav-btn {
  background: var(--white-color);
}

.pitchdeck-img-popup .recruit-pitchdeck_nav-btn::before,
.pitchdeck-img-popup .recruit-pitchdeck_nav-btn::after {
  background: var(--primary-color);
}

.pitchdeck-img-popup .recruit-pitchdeck_nav-page {
  color: var(--white-color);
}

.pitchdeck-img-popup .recruit-pitchdeck_nav-sep {
  background: var(--white-color);
}

.recruit-pitchdeck_slider.swiper {
  overflow: hidden; /* 重要 */
}

.recruit-pitchdeck_slider .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recruit-pitchdeck_slide {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--white-color);
}

/* CTA */
.recruit-cta {
  position: relative;
  overflow: hidden;
  background: url("../img/cat-bg.webp") center / cover no-repeat;
  height: clamp(600px, 90vw, 1040px);
}
@media screen and (max-width: 600px) {
  .recruit-cta {
    height: clamp(700px, 200vw, 1040px);
  }
}

.recruit-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(103, 142, 149, 0.4);
  z-index: 0;
}

.recruit-cta_decor-text {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: clamp(43px, 11vw, 160px);
  font-weight: 300;
  font-family: var(--font-family-en);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white-color);
  white-space: nowrap;
}

.recruit-cta .recruit-cta_decor-text {
  top: 16px;
}

.recruit-cta_contents {
  position: relative;
  top: clamp(74px, 12vw, 160px);
  z-index: 1;
}

.recruit-cta_content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: clamp(32px, 5vw, 110px);
}
@media screen and (max-width: 600px) {
  .recruit-cta_content {
    flex-direction: column;
    margin-top: 0;
  }
}

.recruit-cta_content-left {
  max-width: clamp(300px, 50vw, 554px);
}
@media screen and (max-width: 600px) {
  .recruit-cta_content-left {
    display: contents;
    max-width: 100%;
  }
}

.recruit-cta_title {
  font-size: clamp(24px, 3.8vw, 55px);
  font-weight: bold;
  line-height: 1.3;
  color: var(--black-color);
  background: var(--accsent-color);
  margin-top: 43px;
}
@media screen and (max-width: 600px) {
  .recruit-cta_title {
    margin-top: 0;
  }
}

.recruit-cta_text {
  margin-top: clamp(8px, 2vw, 32px);
  font-size: clamp(13px, 1.25vw, 18px);
  font-weight: bold;
  line-height: 1.8;
  color: var(--white-color);
}

.recruit-cta_btn-wrap {
  width: clamp(270px, 30vw, 365px);
  margin: clamp(48px, 8vw, 80px) auto clamp(18px, 4vw, 30px) 0;
}

.recruit-cta_btn-wrap .m_cta_btn {
  font-size: clamp(15px, 1.5vw, 20px);
  padding: clamp(12px, 1.5vw, 16px) clamp(5px, 0.75vw, 10px)
    clamp(12px, 1.5vw, 16px);
}

@media screen and (max-width: 600px) {
  .recruit-cta_btn-wrap {
    order: 4;
    margin: clamp(24px, 6vw, 40px) auto 0;
  }
}

.recruit-cta_content-right {
  display: flex;
  width: clamp(280px, 50vw, 603px);
  height: clamp(280px, 50vw, 603px);
  /* margin-right: clamp(16px, 7vw, 100px); */
}
@media screen and (max-width: 600px) {
  .recruit-cta_content-right {
    order: 3;
    width: 100%;
    height: 100vw;
    aspect-ratio: 1 / 1;
    margin-right: 0;
    margin-top: clamp(24px, 4vw, 56px);
  }
}

.recruit-cta_slider {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.recruit-cta_image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.recruit-cta_slider .recruit-cta_image + .recruit-cta_image {
  display: none;
}

.recruit-cta_slider.swiper {
  overflow: hidden;
}

.recruit-cta_slider .swiper-wrapper {
  height: 100%;
  transition-timing-function: ease;
}

/* iPhone Safari（Swiper + auto + transform）での拡大/ズレ対策 */
@supports (-webkit-touch-callout: none) {
  .recruit-cta_slider .swiper-wrapper {
    will-change: transform;
  }

  .recruit-cta_slider .swiper-slide,
  .recruit-cta_slider .recruit-cta_image {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
}

.recruit-cta_slider .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.recruit-cta_image {
  display: block;
}

/* iPhone：枠内で画像が拡大しないよう制御 */
@media screen and (max-width: 600px) {
  .recruit-cta_slider .swiper-slide {
    overflow: hidden;
  }

  .recruit-cta_slider .swiper-slide .recruit-cta_image {
    width: auto;
    height: 100%;
    max-width: none;
    max-height: 100%;
  }
}

/* Work Style */
.recruit-workstyle {
  padding: clamp(56px, 6vw, 80px) 0 0;
}

.recruit-workstyle_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: clamp(48px, 6vw, 77px);
  gap: clamp(24px, 2vw, 93px);
}
@media screen and (max-width: 600px) {
  .recruit-workstyle_content {
    flex-direction: column;
    gap: clamp(8px, 1vw, 50px);
  }

  /* SP: 左側のメイン画像エリアを非表示 */
  .recruit-workstyle_img-wrap {
    display: none;
  }
}

.recruit-workstyle_img-wrap {
  position: sticky;
  top: clamp(72px, 8vw, 110px);
  border-radius: clamp(8px, 1vw, 10px);
  overflow: hidden;
  width: clamp(200px, 35vw, 446px);
  margin-top: clamp(24px, 5vw, 80px);
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
}

@media screen and (max-width: 600px) {
  .recruit-workstyle_img-wrap {
    width: 100%;
  }
}


/* figure を重ねる */
.recruit-workstyle_fig {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* 画像の上でクリックが邪魔しない */
}

.recruit-workstyle_fig.is-active {
  opacity: 1;
}

.recruit-workstyle_img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.recruit-workstyle_list-wrap {
  width: clamp(300px, 50vw, 700px);
  border-radius: 20px;
  /* 右だけスクロール */
  max-height: clamp(560px, 45vh, 660px);
  overflow-y: scroll;
  padding: clamp(32px, 5vw, 57px) clamp(20px, 3.5vw, 37px);
  background: transparent;

  /* スクロールは残してバーだけ隠す */
  -ms-overflow-style: none; /* IE/旧Edge */
  scrollbar-width: none; /* Firefox */
}

.recruit-workstyle_list-wrap::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.recruit-workstyle_scroll-area {
  position: relative;
  background: #f0f2f9;
  border-radius: 20px;
  padding-right: clamp(11px, 0vw, 56px);
  display: inline-block;
	padding-left: 7px;
}

@media screen and (max-width: 600px) {
  .recruit-workstyle_scroll-area {
    padding-right: 0;
  }
}
.recruit-workstyle_scroll-indicator {
  position: absolute;
  right: clamp(44px, 0vw, 80px);
  top: clamp(35px, 8.5vw, 80px);
  transform: translateX(clamp(12px, 1.5vw, 20px));
  width: 1px;
  height: clamp(72px, 10vw, 130px);
  pointer-events: none;
}

.recruit-workstyle_scroll-indicator::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: var(--black-color);
  border-radius: 999px;
}

.recruit-workstyle_scroll-indicator-text {
  position: absolute;
  left: 50%;
  top: -40px;
  transform: translate(-50%, 0) rotate(90deg);
  transform-origin: center;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font-family-en);
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--black-color);
  white-space: nowrap;
}

.recruit-workstyle_scroll-indicator-dot {
  position: absolute;
  left: 50%;
  top: 0;
  width: clamp(6px, 0.4vw, 8px);
  height: clamp(6px, 0.4vw, 8px);
  background: var(--black-color);
  border-radius: 999px;
  transform: translate(-50%, 0);
}

.recruit-workstyle_scroll-indicator.is-hidden {
  display: none;
}
@media screen and (max-width: 600px) {
  .recruit-workstyle_list-wrap {
    width: 100%;
    max-height: none;
    overflow-y: visible;
  }

  .recruit-workstyle_scroll-indicator {
    display: none;
  }
}

.recruit-workstyle_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(24px, 4vw, 28px);
}

.recruit-workstyle_item {
  background: var(--white-color);
  border-radius: 10px;
  padding: clamp(14px, 2.4vw, 21px) clamp(12px, 2vw, 18px);
  box-shadow: 0 4px 1px rgba(0, 0, 0, 0.16);
}

/* li内画像：PCでは非表示、SPでのみ表示 */
.recruit-workstyle_item-img--sp {
  display: none;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .recruit-workstyle_item-img--sp {
    display: block;
  }

  .recruit-workstyle_item-img--sp img {
    width: 90%;
    aspect-ratio: 1 / 0.65;
    object-fit: cover;
    object-position: top;
    display: block;
    margin: 16px auto 0;
    border-radius: 6px;
  }

  /* SP: liを画像＋テキストの縦並びに */
  .recruit-workstyle_item {
    overflow: hidden;
  }

  .recruit-workstyle_item-img--sp {
    margin: calc(-1 * clamp(14px, 2.4vw, 21px))
      calc(-1 * clamp(12px, 2vw, 18px)) clamp(16px, 2.5vw, 20px);
  }
}

.recruit-workstyle_item-title {
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 600;
  line-height: 1.3;
  position: relative;
  padding-left: clamp(20px, 3vw, 27px);
}

.recruit-workstyle_item-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(14px, 2.4vw, 18px);
  height: clamp(14px, 2.4vw, 18px);
  background: var(--primary-color);
}

.recruit-workstyle_item-decor {
  width: 100%;
  height: 0;
  border-top: 1.5px dashed #cdd6dd;
  margin-top: clamp(10px, 1.8vw, 16px);
}

.recruit-workstyle_item-subtext {
  font-size: clamp(13px, 1.2vw, 16px);
  font-weight: 600;
  line-height: 1.8;
  margin-top: clamp(10px, 1.8vw, 16px);
}

/* リスト下端でさらにスクロールしたらページがスクロールするように */
.recruit-workstyle_list-wrap {
  overscroll-behavior-y: auto;
}

/* Open Positions */
.recruit-openpositions_list-wrap {
  margin: clamp(48px, 6vw, 77px) auto 0;
  display: flex;
  justify-content: center;
  align-self: center;
  flex-direction: column;
  gap: clamp(10px, 2vw, 16px);
}

.recruit-openpositions_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 2vw, 16px);
}

.recruit-openpositions_item {
  background: #fff;
  border: 2px solid #707f88;
  border-radius: 10px;
  position: relative;
}
.single-openpositions_item {
  border: none;
  padding: clamp(32px, 6.3vw, 63px) clamp(24px, 5.4vw, 54px)
    clamp(40px, 10.4vw, 104px);
  margin: 0;
}

.recruit-openpositions_item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(8px, 2vw, 16px);
}

.recruit-openpositions_item-link {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: clamp(20px, 4.5vw, 45px) clamp(8px, 4vw, 40px);
}

.recruit-openpositions_item-title-text {
  margin: 0;
  font-size: clamp(16px, 2.8vw, 21px);
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}

.recruit-openpositions_item-subtext {
  margin: clamp(10px, 1.8vw, 16px) 0 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1px, 0.3vw, 2px) clamp(12px, 2.4vw, 18px);
  border-radius: 999px;
  font-size: clamp(12px, 1.8vw, 14px);
  font-weight: 600;
  line-height: 1.3;
  color: var(--white-color);
  background: var(--primary-color);
}

/* 右側 */
.recruit-openpositions_item-recruit {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 1.5vw, 24px);
}

.recruit-openpositions_item-recruit-text {
  margin: 0;
  font-size: clamp(12px, 2.6vw, 20px);
  font-weight: 600;
  color: var(--primary-color);
  /* white-space: nowrap; */
}

/* 募集停止中（現在募集は行なっておりません） */
.recruit-openpositions_item-link.is-disabled
  .recruit-openpositions_item-recruit-text {
  color: #98a6b5;
}

.recruit-openpositions_item-link.is-disabled
  .recruit-openpositions_item-subtext {
  background: #707f89;
}

/* ＋ボタン */
.recruit-openpositions_item-title-icon {
  /* width: clamp(44px, 7vw, 64px);
  height: clamp(44px, 7vw, 64px); */
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;
  padding: 0;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  /* background: var(--primary-color); */
  background: url(../img/icon.svg) center / contain no-repeat;
  cursor: pointer;
  position: relative;
}

@media screen and (max-width: 600px) {
  .recruit-openpositions_item-title-icon {
    width: 14px;
    height: 14px;
  }
}

/* plus */
/* .recruit-openpositions_item-title-icon::before,
.recruit-openpositions_item-title-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(16px, 2.8vw, 24px);
  height: clamp(2px, 0.5vw, 3px);
  background: var(--white-color);
  transform: translate(-50%, -50%);
} */

/* .recruit-openpositions_item-title-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
} */

/* 開いている時（is-openをliにつける想定） */
/* .recruit-openpositions_item.is-open
  .recruit-openpositions_item-title-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
} */

/* panel */
.recruit-openpositions_item-panel {
  grid-column: 1 / -1;
  margin-top: clamp(28px, 5vw, 47px);
  padding: 0 clamp(20px, 4vw, 40px);
}

.recruit-openpositions_item-panel-text {
  font-size: clamp(13px, 2vw, 15px);
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: -0.05em;
}

.recruit-openpositions_item-panel-table {
  width: 100%;
  border-collapse: collapse;
  font-size: clamp(12px, 1.8vw, 14px);
  line-height: 1.9;
  margin: clamp(32px, 6vw, 53px) 0 0;
}

.recruit-openpositions_item-panel-table th,
.recruit-openpositions_item-panel-table td {
  padding: clamp(24px, 4vw, 40px) 0;
  border-bottom: 1px solid #cdd6dd;
  vertical-align: top;
}

.recruit-openpositions_item-panel-table th {
  width: clamp(120px, 24vw, 210px);
  color: var(--primary-color);
  white-space: nowrap;
}

.recruit-openpositions_item-panel-table td p {
  margin: 0 0 clamp(8px, 1.8vw, 14px);
}
.recruit-openpositions_item-panel-table td p:last-child {
  margin-bottom: 0;
}

/* 求人詳細（single）: SP時はテーブルを縦並びに */
@media screen and (max-width: 600px) {
  .single-recruit_job .recruit-openpositions_item-panel-table,
  .single-recruit_job .recruit-openpositions_item-panel-table tbody,
  .single-recruit_job .recruit-openpositions_item-panel-table tr,
  .single-recruit_job .recruit-openpositions_item-panel-table th,
  .single-recruit_job .recruit-openpositions_item-panel-table td {
    display: block;
    width: 100%;
  }

  .single-recruit_job .recruit-openpositions_item-panel-table tr {
    border-bottom: 1px solid #cdd6dd;
    padding: clamp(16px, 3.2vw, 20px) 0;
  }

  .single-recruit_job .recruit-openpositions_item-panel-table th,
  .single-recruit_job .recruit-openpositions_item-panel-table td {
    border-bottom: none;
    padding: 0;
  }

  .single-recruit_job .recruit-openpositions_item-panel-table th {
    width: auto;
    white-space: normal;
    margin: 0 0 8px;
  }
}

/* FAQ */
.recruit-faq_list-wrap {
  margin-top: clamp(48px, 8vw, 80px);
}

.recruit-faq_list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: clamp(12px, 2.8vw, 20px);
}

.recruit-faq_item {
  position: relative;
  background: #fff;
  border: 2px solid #707f88;
  border-radius: 10px;
  padding: clamp(12px, 2vw, 16px) clamp(50px, 10vw, 57px) clamp(12px, 2vw, 16px)
    clamp(12px, 2.2vw, 18px); /* 右の＋ボタン分あける */
}

.recruit-faq_item-question-icon {
  font-size: clamp(20px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-family: var(--font-family-en);
}

/* Q行の並び（ラッパー内のQアイコン） */
.recruit-faq_item
  > div.recruit-faq_item-question
  > .recruit-faq_item-question-icon {
  position: absolute;
  left: clamp(12px, 2vw, 16px);
  top: 50%;
  transform: translateY(-50%);
}

/* 質問エリアのコンテンツラッパー（+ボタンと区別してリセット） */
.recruit-faq_item > div.recruit-faq_item-question {
  position: relative;
  top: auto;
  right: auto;
  width: auto;
  height: auto;
  background: transparent;
  cursor: default;
}

.recruit-faq_item > div.recruit-faq_item-question::before,
.recruit-faq_item > div.recruit-faq_item-question::after {
  display: none;
}

.recruit-faq_item-question-decor {
  width: 1px;
  height: clamp(20px, 3.5vw, 30px);
  background: #cdd6dd;
  position: absolute;
  left: clamp(33px, 6vw, 58px);
  top: 50%;
  transform: translateY(-50%);
}

/* Qデコレーション：質問エリア内で上下中央 */
.recruit-faq_item
  > div.recruit-faq_item-question
  .recruit-faq_item-question-decor {
  top: 50%;
  transform: translateY(-50%);
}

/* A行の並び：Qと同じ位置にAと｜を配置 */
.recruit-faq_item-answer .recruit-faq_item-question-icon {
  position: absolute;
  left: clamp(12px, 2vw, 16px);
  top: 50%;
  transform: translateY(-50%);
  margin-top: clamp(4px, 1.6vw, 8px);
}

.recruit-faq_item-answer .recruit-faq_item-question-decor__a {
  left: clamp(33px, 6vw, 58px);
  top: 50%;
  transform: translateY(-50%);
  margin-top: clamp(4px, 1.6vw, 8px);
}

.recruit-faq_item-question-text {
  margin: 0;
  padding-left: clamp(40px, 7vw, 74px); /* Q分 */
  font-size: clamp(12px, 2vw, 15px);
  font-weight: 600;
  line-height: 1.8;
}

.recruit-faq_item-question {
  position: absolute;
  top: clamp(6px, 1.2vw, 8px);
  right: clamp(8px, 1.4vw, 10px);
  width: clamp(34px, 5vw, 43px);
  height: clamp(34px, 5vw, 43px);
  background: var(--primary-color);
  cursor: pointer;
}

.recruit-faq_item-question::before,
.recruit-faq_item-question::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(12px, 2vw, 16px);
  height: clamp(2px, 0.5vw, 3px);
  background: var(--white-color);
  transform: translate(-50%, -50%);
}

.recruit-faq_item-question::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* 開いたら「×」にする（aria-expanded=true） */
.recruit-faq_item-question[aria-expanded="true"]::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

/* Answer */
.recruit-faq_item-answer {
  margin-top: clamp(8px, 1.6vw, 12px);
  padding-top: clamp(8px, 1.6vw, 12px);
  border-top: 1px solid rgba(13, 43, 107, 0.12);
  display: flex;
  align-items: center;
  position: relative;
}

/* [hidden]属性を持つ要素を確実に非表示にする */
[hidden] {
  display: none !important;
}

.recruit-faq_item-answer-text {
  font-size: clamp(11px, 1.7vw, 13px);
  line-height: 1.5;
  padding-left: clamp(40px, 7vw, 74px); /* Qと同位置 */
}

/* Selection Process slider */
.recruit-selection {
  width: 100%;
  /* タイトル（l_container-lg）と同じ左端位置を再現するための基準 */
  --selection-container-pad: clamp(16px, 3vw, 32px);
  --selection-container-max: calc(var(--content-width-lg) + 32px);
  --selection-container-gutter: max(
    var(--selection-container-pad),
    calc(
      (100vw - var(--selection-container-max)) / 2 +
        var(--selection-container-pad)
    )
  );
}

.recruit-selection_slider-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
  height: clamp(320px, 45vw, 400px);
}

@media screen and (max-width: 1024px) {
  .recruit-selection {
    --selection-container-gutter: clamp(8px, 2vw, 20px);
  }
  .recruit-selection_slider-wrap {
    overflow: hidden;
    padding-bottom: clamp(20px, 8vw, 80px);
    height: clamp(250px, 47vw, 360px);
  }
  .recruit-selection_slider {
    overflow-x: auto;
    overflow-y: hidden;
  }
}

@media screen and (max-width: 600px) {
  .recruit-selection_slider-wrap {
    height: clamp(255px, 53vw, 325px);
    /* padding-bottom: 56px; */
  }
}

/* 横スライド本体 */
.recruit-selection_slider {
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  padding-inline: 0; /* 端余白はスペーサーで作る */
  scroll-padding-inline: 0;

  display: flex;
  gap: clamp(28px, 6vw, 56px);
  align-items: flex-start;

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  /* 上下余白 + 左右はタイトル開始位置に揃える */
  padding-block: clamp(20px, 3vw, 32px);
  padding-inline: var(--selection-container-gutter);
  scroll-padding-inline: var(--selection-container-gutter);

  /* スクロールバー非表示（任意） */
  scrollbar-width: none;
}
.recruit-selection_slider::before,
.recruit-selection_slider::after {
  content: "";
  flex: 0 0 0;
}

/* 端のステップは、拡大しても外側にはみ出さないようにする */
/* .recruit-selection_step:first-child .recruit-selection_step-circle {
  transform-origin: left center;
} */

/* .recruit-selection_step:last-child .recruit-selection_step-circle {
  transform-origin: right center;
} */

.recruit-selection_slider::-webkit-scrollbar {
  display: none;
}

/* 1ステップ */
.recruit-selection_step {
  flex: 0 0 auto;
  scroll-snap-align: center;
}

@media screen and (max-width: 1024px) {
  .recruit-selection_step:last-child {
    scroll-snap-align: end;
  }
}

/* 円 */
.recruit-selection_step-circle {
  width: clamp(230px, 22vw, 290px);
  height: clamp(230px, 22vw, 290px);
  border-radius: 50%;
  border: 1px solid var(--primary-color);
  background: var(--white-color);

  display: grid;
  place-content: center;
  text-align: left;
  justify-content: start;

  padding: clamp(20px, 3vw, 45px) clamp(34px, 3vw, 18px) clamp(20px, 3vw, 45px)
    clamp(20px, 3vw, 40px);
  box-sizing: border-box;

  transition: 0.25s ease;
}
@media screen and (max-width: 1024px) {
  .recruit-selection_step-circle {
    width: clamp(200px, 28vw, 228px);
    height: clamp(200px, 28vw, 228px);
  }
}
/* 600px以下: 円を小さくして隣のステップがなるべく見えるように（見切れ軽減） */
@media screen and (max-width: 600px) {
  .recruit-selection_step-circle {
    width: clamp(180px, 35vw, 240px);
    height: clamp(180px, 35vw, 240px);
    padding: clamp(18px, 3vw, 32px) clamp(16px, 2.5vw, 20px)
      clamp(18px, 3vw, 32px) clamp(24px, 3vw, 30px);
    margin-right: clamp(20px, 2vw, 40px);
  }
  .recruit-selection_step-label {
    font-size: clamp(11px, 2.8vw, 14px);
  }
  .recruit-selection_step-title {
    font-size: clamp(13px, 3.5vw, 18px);
    margin-bottom: clamp(4px, 1vw, 8px);
  }
  .recruit-selection_step-desc {
    font-size: clamp(8px, 1vw, 11px);
    line-height: 1.35;
  }
}

/* テキスト */
.recruit-selection_step-label {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--primary-color);
  font-family: var(--font-family-en);
  font-weight: 600;
  letter-spacing: -0.02rem;
}

.recruit-selection_step-title {
  font-size: clamp(20px, 2.1vw, 25.5px);
  margin-bottom: clamp(6px, 1.5vw, 10px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-weight: 600;
}

.recruit-selection_step-desc {
  margin: 0;
  font-size: clamp(8px, 1vw, 12px);
  line-height: 1.4;
  color: var(--white-color);
  display: none;
  font-weight: 500;
}

/* 横の線（円のつながり） */
.recruit-selection_step {
  position: relative;
}
.recruit-selection_step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(clamp(28px, 6vw, 56px) * -1);
  width: clamp(47px, 6vw, 56px);
  height: 1px;
  background: var(--primary-color);
  transform: translateY(-50%);
}

/* アクティブ（青） */
.recruit-selection_step.is-active .recruit-selection_step-circle {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.2);
}

/* 1024px以下: Flow6（最後）のとき拡大で右側が見切れないよう、最後のステップに右マージン（scale 1.2 + 縦スクロールバー分も考慮） */
@media screen and (max-width: 1024px) {
  .recruit-selection_step:last-child {
    margin-right: 64px;
  }
}

.recruit-selection_step.is-active .recruit-selection_step-label {
  color: #ffef5a; /* Flowの黄色っぽい */
}

.recruit-selection_step.is-active .recruit-selection_step-title,
.recruit-selection_step.is-active .recruit-selection_step-desc {
  color: #fff;
}

.recruit-selection_step.is-active .recruit-selection_step-desc {
  display: block;
}

/* PC: hoverでもアクティブ同様に拡大・配色 */
@media (hover: hover) and (pointer: fine) {
  /* ホバー中は、選択中（is-active）を通常表示に戻す（ホバー中の要素は除外） */
  .recruit-selection_slider:hover
    .recruit-selection_step.is-active:not(:hover)
    .recruit-selection_step-circle {
    background: var(--white-color);
    border-color: var(--primary-color);
    transform: none;
  }

  .recruit-selection_slider:hover
    .recruit-selection_step.is-active:not(:hover)
    .recruit-selection_step-label {
    color: var(--primary-color);
  }

  .recruit-selection_slider:hover
    .recruit-selection_step.is-active:not(:hover)
    .recruit-selection_step-title,
  .recruit-selection_slider:hover
    .recruit-selection_step.is-active:not(:hover)
    .recruit-selection_step-desc {
    color: inherit;
  }

  .recruit-selection_slider:hover
    .recruit-selection_step.is-active:not(:hover)
    .recruit-selection_step-desc {
    display: none;
  }

  .recruit-selection_step:hover .recruit-selection_step-circle {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: scale(1.2);
  }

  .recruit-selection_step:hover .recruit-selection_step-label {
    color: #ffef5a; /* Flowの黄色っぽい */
  }

  .recruit-selection_step:hover .recruit-selection_step-title,
  .recruit-selection_step:hover .recruit-selection_step-desc {
    color: #fff;
  }

  .recruit-selection_step:hover .recruit-selection_step-desc {
    display: block;
  }
}

/* ナビボタン */
.recruit-selection_slider-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  bottom: 0;
  display: flex;
  justify-content: flex-end;
  padding-right: clamp(16px, 5vw, 90px);
  gap: clamp(6px, 1.5vw, 10px);
  z-index: 2;
}

/* 1440px以上：navの右余白・下位置を「1440px時点」で固定 */
@media screen and (min-width: 1440px) {
  .recruit-selection_slider-nav {
    padding-right: 120px;
    bottom: -24px;
  }
}

.recruit-selection_slider-btn {
  width: clamp(32px, 4.5vw, 56px);
  height: clamp(32px, 4.5vw, 56px);
  border-radius: 999px;
  background: var(--white-color);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.3s ease;
  position: relative;
}

/* 矢印を疑似要素で表示 */
.recruit-selection_slider-btn::before,
.recruit-selection_slider-btn::after {
  content: "";
  position: absolute;
  width: 7.5px;
  height: 2px;
}

.recruit-selection_slider-btn--prev::before,
.recruit-selection_slider-btn--prev::after {
  background: #bababa;
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
}

.recruit-selection_slider-btn--prev::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.recruit-selection_slider-btn--prev::after {
  top: 55%;
  transform: translate(-50%, -50%) rotate(225deg);
}

.recruit-selection_slider-btn--next::before,
.recruit-selection_slider-btn--next::after {
  background: var(--white-color);
  top: 45%;
  left: 52%;
  transform: translate(-50%, -50%);
}

.recruit-selection_slider-btn--next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.recruit-selection_slider-btn--next::after {
  top: 55%;
  transform: translate(-50%, -50%) rotate(135deg);
}

.recruit-selection_slider-btn:hover {
  transform: translateY(-1px);
}

/* PCのみ：ボタンhoverで透過（opacity 0.7 / 0.3s） */
@media (hover: hover) and (pointer: fine) {
  .recruit-pitchdeck_nav-btn {
    transition: opacity 0.3s ease;
  }

  .recruit-pitchdeck_nav-btn:hover,
  .recruit-selection_slider-btn:hover {
    opacity: 0.7;
  }
}

.recruit-selection_slider-btn--next {
  background: var(--primary-color);
  color: var(--white-color);
}

/* 無効 */
.recruit-selection_slider-btn:disabled {
  cursor: not-allowed;
}

/* Entry Form */
.recruit-entryform {
  padding: 0 0 clamp(72px, 12vw, 120px);
  background: #f8f8f8;
  overflow: hidden;

  --entry-container-pad: clamp(16px, 3vw, 32px);
  --entry-container-max: calc(var(--content-width-lg) + 32px);
  --entry-container-gutter: max(
    var(--entry-container-pad),
    calc((100vw - var(--entry-container-max)) / 2 + var(--entry-container-pad))
  );
}

/* 上部：青い帯 */
.recruit-entryform_band {
  height: clamp(130px, 34vw, 376px);
  background: var(--primary-color);
  position: relative;
}

.recruit-entryform_band::before {
  content: "";
  position: absolute;
  bottom: clamp(-210px, -14vw, -120px);
  right: 0;
  width: 100%;
  height: clamp(120px, 14vw, 210px);
  background: var(--primary-color);
  z-index: 0;
}

.recruit-entryform_band__radius {
  position: relative;
  border-radius: 0 clamp(120px, 14vw, 200px) 0 0;
  background: #f8f8f8;
  z-index: 1;
}

.recruit-entryform_decor-text {
  top: 50%;
  transform: translate(-50%, -50%);
  color: #fef9d6;
}

.recruit-entryform_subtitle__white {
  color: var(--white-color);
  position: absolute;
  top: 75%;
  left: var(--entry-container-gutter);
}

/* タイトルエリア */
.recruit-entryform_title-wrap {
  position: relative;
  z-index: 2;
  padding-bottom: clamp(18px, 3vw, 28px);
}

.recruit-entryform_title {
  margin: 0 0 clamp(6px, 1.2vw, 8px);
}

.recruit-entryform_subtitle {
  margin: 0;
}

/* フォーム枠 */
.recruit-entryform_form {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

/* 注意文 */
.recruit-entryform_notice {
  padding: clamp(8px, 1.6vw, 10px) 0 clamp(10px, 2vw, 14px);
  margin-bottom: clamp(6px, 1.2vw, 8px);
}

.recruit-entryform_notice-text {
  margin: 0;
  font-size: clamp(13px, 1.5vw, 14px);
  font-weight: bold;
  line-height: 1.7;
}

.recruit-entryform_notice-text span {
  display: inline-block;
  margin: clamp(10px, 2vw, 16px) clamp(2px, 0.8vw, 4px);
  padding: clamp(1px, 0.4vw, 2px) clamp(4px, 1vw, 6px);
  font-size: clamp(12px, 1.4vw, 13px);
  font-weight: 700;
  color: var(--white-color);
  background: #e60013;
}

/* 1行（label + input） */
.recruit-entryform_form-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: clamp(8px, 1.8vw, 12px);
  padding: clamp(8px, 1.8vw, 12px) 0;
}

.recruit-entryform_form-group:last-of-type {
  border-bottom: none;
}

/* label */
.recruit-entryform_form-label {
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.5;
}

/* 必須バッジ */
.recruit-entryform_form-label-required {
  display: inline-block;
  margin-left: clamp(4px, 1vw, 6px);
  padding: clamp(1px, 0.4vw, 2px) clamp(4px, 1vw, 6px);
  font-size: clamp(12px, 1.4vw, 13px);
  font-weight: 700;
  color: var(--white-color);
  background: #e60013;
  vertical-align: middle;
}

/* input / select / textarea */
.recruit-entryform_form-input {
  width: 100%;
  font-size: 16px;
  color: var(--text-color);
  background: var(--white-color);

  border: none;
  border-bottom: 1px solid rgba(13, 43, 107, 0.18);
  padding: clamp(10px, 1.6vw, 18px) clamp(16px, 1.2vw, 25px);
  outline: none;

  transition: border-color 0.2s ease;
}

.recruit-entryform_form-input::placeholder {
  color: rgba(13, 43, 107, 0.35);
}

.recruit-entryform_form-input:focus {
  border-bottom-color: rgba(13, 43, 107, 0.75);
}

/* textareaは下線＋少し高さ */
textarea.recruit-entryform_form-input {
  resize: vertical;
  min-height: clamp(200px, 18vw, 380px);
  padding-top: clamp(8px, 1.8vw, 12px);
  padding-bottom: clamp(8px, 1.8vw, 12px);
}

/* file input の見た目調整（最低限） */
input[type="file"].recruit-entryform_form-input {
  padding: clamp(10px, 1.6vw, 18px) clamp(16px, 1.2vw, 25px);
  border-bottom: none;
}

/* policy */
.recruit-entryform_form-group--policy {
  grid-template-columns: 1fr;
  gap: clamp(6px, 1.2vw, 8px);
  align-items: start;
  padding: clamp(10px, 2.4vw, 16px) 0 clamp(8px, 1.6vw, 10px);
  border-bottom: none;
}

.recruit-entryform_form-policy {
  font-size: clamp(10px, 1.5vw, 12px);
  line-height: 1.7;
  color: rgba(13, 43, 107, 0.9);
  display: flex;
  gap: clamp(6px, 1.6vw, 10px);
  align-items: center;
}

.recruit-entryform_form-policy input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: checkbox;
  width: clamp(14px, 2vw, 16px);
  height: clamp(14px, 2vw, 16px);
  accent-color: var(--primary-color, #0d2b6b);
}

.recruit-entryform_policy-link {
  color: #0084ac;
  text-decoration: underline;
  text-underline-offset: clamp(2px, 0.4vw, 3px);
}

.recruit-entryform_form-policy-desc {
  margin: 0;
  font-size: clamp(10px, 1.4vw, 11px);
  line-height: 1.7;
  color: #707f89;
}

/* ボタン */
.recruit-entryform_btn-wrap {
  margin-top: clamp(10px, 2.2vw, 16px);
  display: flex;
  justify-content: center;
}

.recruit-entryform_btn {
  min-width: clamp(270px, 36vw, 365px);
  font-size: clamp(15px, 1.5vw, 20px);
  padding: clamp(8px, 1.5vw, 16px) clamp(5px, 0.75vw, 10px)
    clamp(8px, 1.5vw, 16px);
}
@media screen and (max-width: 600px) {
  .recruit-entryform_btn {
    min-width: 60%;
  }
}

.recruit-entryform_btn-submit {
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.recruit-entryform_btn-arrow {
  flex-shrink: 0;
}

.wpcf7-form-control-wrap {
  width: 100% !important;
}

.recruit-entryform_form-group--policy .wpcf7-form-control-wrap {
  width: auto !important;
}

.wpcf7-list-item {
  margin: 0.5em 0 0 0;
}

.wpcf7-spinner {
  display: none !important;
}

/* =========================
  codedropz upload 調整
========================= */
.codedropz-upload-handler {
  background: var(--white-color);
}

.codedropz-upload-inner {
  text-align: left;
  background-image: url(../img/upload.svg);
  background-repeat: no-repeat;
  background-position: center bottom 15px;
  background-size: 45px;
}

.codedropz-upload-inner h3 {
  font-size: 13px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.codedropz-upload-inner span {
  font-size: 13px;
  letter-spacing: 0.04em;
}

.codedropz-btn-wrap a {
  border: 1px solid var(--black-color);
  padding: 0 4px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.dnd-upload-counter {
  display: none;
}

/* 採用フォームの送信ボタンだけ個別調整 */
input.recruit-entryform_btn {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--white-color);
  background-image: linear-gradient(var(--primary-color), var(--primary-color));
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 0% 100%;

  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  border-radius: 999px;
  cursor: pointer;

  transition:
    background-size 0.25s cubic-bezier(0.45, 0, 0.55, 1),
    color 0.25s cubic-bezier(0.45, 0, 0.55, 1),
    border-color 0.25s cubic-bezier(0.45, 0, 0.55, 1);
}

/* 共通の疑似要素演出をこのボタンだけ止める */
input.recruit-entryform_btn::after {
  content: none;
}

/* hover時 */
input.recruit-entryform_btn:hover {
  background-size: 100% 100%;
  color: var(--white-color);
}