@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

/* ============================================
   テーマ共通要素を完全非表示
   LP は header/footer タグを使わず div で実装しているため
   テーマ共通のタグセレクタ干渉を回避済み
   ============================================ */
.recruitment-sy-page .header__logo,
.recruitment-sy-page .header__inner,
.recruitment-sy-page .g-nav-area,
.recruitment-sy-page .g-nav-area--white,
.recruitment-sy-page .header__contact,
.recruitment-sy-page .sp-nav,
.recruitment-sy-page .sp-nav__overlay,
.recruitment-sy-page .footer-nav,
.recruitment-sy-page .footer__bottom,
.recruitment-sy-page .sec-inquire,
.recruitment-sy-page .sec-kv,
.recruitment-sy-page #wpadminbar + .header__logo {
  display: none !important;
}

/* テーマ共通の header/footer タグセレクタが wp_footer 等の出力に適用されないよう無効化 */
body.recruitment-sy-page > header,
body.recruitment-sy-page > footer {
  display: none !important;
}

/* LP ラッパー */
.sy-lp-root {
  position: relative;
  z-index: 1;
}

/* テーマ共通のscroll-animation等による非表示を打ち消してLP要素を確実に表示 */
.recruitment-sy-page .l-top,
.recruitment-sy-page .l-about,
.recruitment-sy-page .about_bottom,
.recruitment-sy-page .l-reasons,
.recruitment-sy-page .l-support,
.recruitment-sy-page .l-results,
.recruitment-sy-page .l-member,
.recruitment-sy-page .l-cases,
.recruitment-sy-page .l-faq,
.recruitment-sy-page .l-partner,
.recruitment-sy-page .sy-lp-footer,
.recruitment-sy-page .contact_bunner {
  visibility: visible !important;
  opacity: 1 !important;
}

/* about_bottom が前のセクションに重ならないようにする */
.recruitment-sy-page .about_bottom {
  position: relative;
  z-index: 1;
}

.recruitment-sy-page .about_bottom_arrow {
  position: relative;
  z-index: 1;
}

.recruitment-sy-page .about_bottom_thought {
  position: relative;
  z-index: 0;
}

/* ============================================
   CockPit Recruitment LP カラー変数
   ============================================ */
:root {
  --navy: #152a6d;
  --navy-light: #2a3d7d;
  --red: #f61a3c;
  --red-dark: #c4142f;
  --accent: #f61a3c;
  --gradient-main: linear-gradient(90deg, #152a6d 49.519%, #f61a3c 100%);
  --gradient-vertical: linear-gradient(6deg, #152a6d 49.519%, #f61a3c 100%);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP";
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  background-color: #fff;
  overflow-x: hidden;
}

figure {
  margin: 0;
  padding: 0;
}

figure img {
  width: 100%;
  height: 100%;
}

a,
.btn_viewall {
  text-decoration: none;
  color: black;
  transition: all 0.3s;
}

a:hover,
.btn_viewall:hover {
  opacity: 0.5;
  transition: all 0.3s;
  cursor: pointer;
}

li {
  list-style: none;
}

* {
  box-sizing: border-box;
}

.sp-none {
  display: block;
}

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

.sp {
  display: none;
}

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

/* ============================================
   HEADER
   ============================================ */
.sy-lp-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  height: 10rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 768px) {
  .sy-lp-header {
    height: 6.4rem;
  }
}

.header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 4rem;
}

.header_logo {
  width: 10rem;
}

.header_logo a {
  display: block;
  text-decoration: none;
}

.header_logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header_line {
  width: 30rem;
  height: 5.2rem;
  border-radius: 4.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--gradient-main);
  position: relative;
  transition: all 0.3s;
}

.header_line::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4.7rem;
  border: 3px solid transparent;
  background: var(--gradient-main) border-box border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0) border-box;
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: all 0.3s;
}

.header_line p {
  font-size: clamp(1.4rem, 0.93vw, 1.8rem);
  font-weight: bold;
  color: #fff;
}

.header_line:hover {
  transition: all 0.3s;
  opacity: 1;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 768px) {
  .header {
    padding: 1.4rem 2rem;
    margin-top: 1.4rem;
    margin-bottom: 1.4rem;
    height: 100%;
  }

  .header_logo {
    width: 5rem;
  }

  .header_line {
    width: 15rem;
    height: 3.8rem;
  }
}

/* ============================================
   TOP / HERO
   ============================================ */
.l-top {
  margin: 0 auto;
  margin-top: 10rem;
  width: 100%;
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  .l-top {
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}

.top {
  position: relative;
  height: 80vh;
  min-height: 50rem;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.top::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(246, 26, 60, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.top::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(21, 42, 109, 0.4), transparent);
  pointer-events: none;
}

.top_text {
  position: relative;
  z-index: 2;
  margin-left: clamp(2rem, 5vw, 10rem);
  letter-spacing: 0.15em;
  font-weight: 300;
}

.top_text-career {
  font-size: clamp(2.8rem, 2vw, 4rem);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.05;
  letter-spacing: 0.1em;
  margin-bottom: 0.833vw;
  font-weight: bold;
}

.top_text-title {
  font-size: clamp(5.6rem, 5.2vw, 10rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 2.6vw;
  line-height: 1.05;
  font-family: "Roboto", sans-serif;
  letter-spacing: 0.02em;
}

.top_text-text {
  font-size: clamp(1.6rem, 0.93vw, 1.8rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 3.125vw;
}

.top_text .top-btn {
  width: 28.9vw;
  height: clamp(5rem, 4.8vw, 9rem);
  background: #ffd700;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  border-radius: 6rem;
  animation: cta-pulse 2s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 8px 36px rgba(255, 215, 0, 0.5);
  }
}

.top_text .top-btn::before {
  display: none;
}

.top_text .top-btn p {
  font-size: 1.66vw;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 0.1em;
}

.top_text .top-btn:hover {
  background: #ffe44d;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.top_text .top-btn:hover p {
  color: var(--navy);
}

@media screen and (max-width: 768px) {
  .top {
    height: 80vh;
    min-height: 50rem;
    display: flex;
    align-items: center;
  }

  .top_text {
    margin-left: 3rem;
    margin-right: 3rem;
  }

  .top_text .top-btn {
    display: none;
  }
}

/* ============================================
   ABOUT
   ============================================ */
.l-about {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 5rem;
}

@media screen and (max-width: 768px) {
  .l-about {
    padding: 0 2.7rem;
  }
}

.about {
  width: 100%;
}

.about_catch {
  margin-bottom: 10rem;
  text-align: center;
}

.about_catch-text {
  font-size: clamp(2.8rem, 2.5vw, 4.8rem);
  font-weight: bold;
  color: var(--navy);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.about_items {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}

.about_item {
  flex-basis: 30%;
  height: 19rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px 5px rgba(10, 22, 40, 0.1);
  border-radius: 1rem;
  transition: transform 0.3s;
}

.about_item:hover {
  transform: translateY(-4px);
}

.about_item p {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 2.8rem;
  color: #333;
}

.about_item p span {
  color: var(--red);
}

.about_item:nth-child(1),
.about_item:nth-child(2),
.about_item:nth-child(3) {
  margin-bottom: 6rem;
}

@media screen and (max-width: 768px) {
  .about_catch {
    margin-bottom: 4rem;
  }

  .about_catch-text {
    font-size: 2.4rem;
  }

  .about_items {
    display: block;
  }

  .about_item {
    height: 10rem;
    margin-bottom: 2rem;
  }

  .about_item p {
    padding: 2.4rem 0;
  }

  .about_item:nth-child(1),
  .about_item:nth-child(2),
  .about_item:nth-child(3) {
    margin-bottom: 2rem;
  }
}

/* ============================================
   ABOUT BOTTOM (Arrow + Thought)
   ============================================ */
.about_bottom {
  margin-bottom: 16rem;
}

.about_bottom_arrow {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 8rem 2rem;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

.about_bottom_arrow-text {
  text-align: center;
}

.about_bottom_arrow-text1 {
  font-size: clamp(1.6rem, 2.08vw, 4rem);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.about_bottom_arrow-text2 {
  font-size: clamp(2.4rem, 3.3vw, 6.4rem);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: 2.5rem;
}

.about_bottom_arrow-text2 span {
  color: #ffd700;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.about_bottom_thought {
  width: 100%;
  min-height: 80vh;
  margin-top: -5vw;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about_bottom_thought::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 50%, rgba(246, 26, 60, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.about_bottom_thought-text {
  margin-top: 3.75vw;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about_bottom_thought-text span {
  font-size: clamp(1.4rem, 1.6vw, 3.2rem);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #e8e8e8;
  opacity: 0.4;
  display: inline-block;
  position: relative;
  padding: 0 5.6rem;
  margin-bottom: 3.2rem;
  letter-spacing: 0.03em;
}

.about_bottom_thought-text span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: #e8e8e8;
}

.about_bottom_thought-text span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: #e8e8e8;
}

.about_bottom_thought-text p {
  font-size: clamp(1.4rem, 1.24vw, 2.4rem);
  font-weight: bold;
  line-height: 2.8;
  letter-spacing: 0.05em;
  color: #fff;
}

.about_bottom_thought-text h2 {
  font-size: clamp(2.8rem, 2.81vw, 5.4rem);
  font-weight: bold;
  line-height: 1;
  color: #fff;
  letter-spacing: 0.05em;
  margin-bottom: clamp(4rem, 4.1vw, 8rem);
}

@media screen and (max-width: 768px) {
  .about_bottom {
    margin-bottom: 8rem;
  }

  .about_bottom_arrow {
    padding: 6rem 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }

  .about_bottom_thought {
    min-height: auto;
    padding: 8rem 2rem;
    margin-top: -8vw;
  }

  .about_bottom_thought-text {
    padding-top: 4rem;
  }

  .about_bottom_thought-text span {
    padding: 0 2rem;
    margin-bottom: 0.8rem;
  }

  .about_bottom_thought-text span::before,
  .about_bottom_thought-text span::after {
    width: 1.2rem;
  }

  .about_bottom_thought-text p {
    line-height: 2.4;
  }
}

/* ============================================
   REASONS (5つの理由)
   ============================================ */
.l-reasons {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 5rem;
  margin-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .l-reasons {
    padding: 0 2.7rem;
    margin-bottom: 7rem;
  }
}

.reasons_title {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: clamp(5rem, 5.2vw, 10rem);
}

.reasons_title_en {
  font-size: clamp(1.4rem, 1.66vw, 3.2rem);
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: var(--red);
  opacity: 0.5;
  display: inline-block;
  position: relative;
  padding: 0 5.6rem;
  margin-bottom: clamp(1.2rem, 1.666vw, 3.2rem);
  letter-spacing: 0.03em;
}

.reasons_title_en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: var(--red);
}

.reasons_title_en::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 4rem;
  height: 0.3rem;
  background-color: var(--red);
}

.reasons_title_5 {
  font-size: clamp(4rem, 2.08vw, 6.4rem);
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.reasons_title h2 {
  font-size: clamp(2.8rem, 2.8vw, 5.4rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #333;
}

.reasons_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6rem;
}

.reasons_item_left {
  flex-basis: 14%;
}

.reasons_item_left img {
  width: 100%;
  height: 100%;
}

.reasons_item_right {
  flex-basis: 79%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-shadow: 0 0 20px 0 rgba(196, 30, 58, 0.15);
  padding: 4rem 8rem 4rem 10rem;
  padding-left: 4.6vw;
  border-radius: 1rem;
}

.reasons_item_right h2 {
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.05em;
  text-align: center;
}

.reasons_item_right p {
  font-size: clamp(1.4rem, 0.93vw, 1.8rem);
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  flex-basis: 70%;
}

.reasons_item_right-flex {
  display: flex;
  justify-content: center;
  flex-basis: 30%;
  margin-right: 4rem;
}

.reasons_item_right-flex figure {
  display: none;
}

@media screen and (max-width: 768px) {
  .reasons_title {
    text-align: center;
  }

  .reasons_title_en {
    padding: 0 2rem;
  }

  .reasons_title_en::before,
  .reasons_title_en::after {
    width: 1.2rem;
  }

  .reasons_title h2 {
    line-height: 1.3;
  }

  .reasons_item {
    display: block;
    margin-bottom: 3.6rem;
  }

  .reasons_item_left {
    display: none;
  }

  .reasons_item_right {
    display: block;
    padding: 2.8rem 2rem;
  }

  .reasons_item_right h2 {
    font-size: 2rem;
    white-space: nowrap;
  }

  .reasons_item_right p {
    line-height: 1.5;
  }

  .reasons_item_right-flex {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 1.6rem;
  }

  .reasons_item_right-flex figure {
    display: block;
    flex-basis: 30%;
    margin-right: 2.4rem;
  }
}

/* ============================================
   SUPPORT FLOW
   ============================================ */
.l-support {
  width: 100%;
  padding: 0 5rem;
  padding-bottom: clamp(10rem, 21vw, 38rem);
  background: #f5f5f5;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: clamp(9.5rem, 10vw, 16rem);
}

@media screen and (max-width: 768px) {
  .l-support {
    height: auto;
    padding: 6rem 2.7rem;
    margin-bottom: 0;
  }
}

.support {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
}

.support .reasons_title {
  padding: 0;
}

.support_contents {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.support_left {
  flex-basis: 38%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.support_left-top {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
}

.support_left-top-title {
  height: 7.2rem;
  font-size: clamp(2rem, 1.24vw, 2.4rem);
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.05em;
  background-color: #a3a0a0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support_left-inner {
  display: flex;
  padding: 6.7rem 4.6rem;
}

.support_left-btm {
  width: 100%;
  background-color: #fff;
  position: relative;
  border-radius: 1rem;
  margin-top: 2rem;
}

.support_left-btm::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -15px;
  border: 2rem solid transparent;
  border-left: 2rem solid #fff;
}

.support_left-btm-text {
  padding: 3.2rem 3.7rem;
}

.support_left-btm-text h2 {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  background: var(--gradient-vertical);
  color: #fff;
  margin-bottom: 2rem;
  padding: 0.8rem 0;
  border-radius: 0.4rem;
}

.support_left-btm-text p {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.8;
}

.support_left-btm-text p span {
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.support_center {
  flex-basis: 5%;
  position: relative;
}

.support_center img {
  position: absolute;
  top: -20%;
}

.support_right {
  flex-basis: 52%;
}

.support_right-top {
  background-color: #fff;
  padding-bottom: 5.3rem;
  border-radius: 1rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .support_contents {
    display: block;
  }

  .support_left-inner {
    padding: 4rem 2rem;
  }

  .support_left-btm {
    display: none;
  }

  .support_center {
    width: 100%;
    height: 5rem;
    position: relative;
    margin-top: 2.4rem;
    margin-bottom: 3.6rem;
  }

  .support_center img {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ============================================
   RESULTS (実績 - 円グラフ)
   ============================================ */
.l-results {
  background: var(--gradient-main);
  padding: 12rem 5rem;
}

@media screen and (max-width: 768px) {
  .l-results {
    padding: 8rem 2.7rem;
  }
}

.results {
  max-width: 120rem;
  margin: 0 auto;
}

.reasons_title.is-results .reasons_title_en {
  color: rgba(255, 255, 255, 0.5);
}

.reasons_title.is-results .reasons_title_en::before,
.reasons_title.is-results .reasons_title_en::after {
  background-color: rgba(255, 255, 255, 0.5);
}

.reasons_title.is-results h2 {
  color: #fff;
}

.results_content {
  background: #eef0f4;
  border-radius: 2rem;
  padding: 6rem 4rem;
}

.results_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 5rem;
  position: relative;
}

.results_heading::before {
  content: "";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 50%;
  height: 4px;
  background: var(--gradient-main);
  border-radius: 2px;
}

.results_heading h3 {
  font-size: clamp(2.4rem, 2.2vw, 4rem);
  font-weight: bold;
  color: var(--navy);
  letter-spacing: 0.1em;
  line-height: 1;
}

.results_heading-deco {
  width: 6rem;
  height: 3px;
  background: var(--gradient-main);
  transform: skewX(-20deg);
}

.results_charts {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}

.results_chart-main {
  text-align: center;
}

.results_chart-label {
  display: inline-block;
  background: var(--navy);
  color: #fff;
  font-size: clamp(1.4rem, 1vw, 1.8rem);
  font-weight: bold;
  padding: 0.6rem 2.4rem;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
  letter-spacing: 0.1em;
}

.chart-donut {
  position: relative;
  display: inline-block;
}

.chart-donut.is-main {
  width: clamp(22rem, 22vw, 32rem);
  height: clamp(22rem, 22vw, 32rem);
}

.chart-donut.is-main svg,
.chart-donut.is-sub svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.chart-donut.is-sub {
  width: clamp(12rem, 10vw, 16rem);
  height: clamp(12rem, 10vw, 16rem);
}

.chart-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chart-number strong {
  font-family: "Roboto", sans-serif;
  font-size: clamp(5rem, 5vw, 8rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.chart-number span {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.4rem, 2vw, 4rem);
  font-weight: 700;
  color: var(--navy);
}

.chart-number-sub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.chart-number-sub strong {
  font-family: "Roboto", sans-serif;
  font-size: clamp(3rem, 2.8vw, 5rem);
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}

.chart-number-sub span {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.6rem, 1.2vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
}

.results_chart-sub-wrap {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.results_chart-sub {
  text-align: center;
}

@media screen and (max-width: 768px) {
  .results_content {
    padding: 4rem 2rem;
  }

  .results_charts {
    flex-direction: column;
    gap: 4rem;
  }

  .results_chart-sub-wrap {
    flex-direction: row;
    gap: 3rem;
  }
}

/* ============================================
   MEMBER / STAFF
   ============================================ */
.l-member {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 12rem;
  padding: 0 5rem;
  padding-top: 6rem;
}

@media screen and (max-width: 768px) {
  .l-member {
    padding: 0 2.7rem;
    margin-bottom: calc(5.2rem + 10.25vw + 6rem);
  }
}

.reasons_title.is-member {
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .reasons_title.is-member {
    margin-bottom: 0;
  }
}

.member {
  max-width: 120rem;
  margin: 0 auto;
}

.member_item {
  position: relative;
  margin: 0 clamp(0rem, 2.604vw, 5rem);
}

.member_item figure {
  aspect-ratio: 1 / 1;
  max-width: 30rem;
  margin: 0 auto;
  overflow: hidden;
}

.member_item figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.modal-btn {
  display: block;
  margin: 0 auto;
}

.modal-btn:hover {
  box-shadow: none;
  cursor: pointer;
}

.modal-overlay {
  position: fixed;
  z-index: 200;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
}

.modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skew(-5deg, -5deg) rotate(5deg);
  width: 80%;
  background-color: #fff;
  border-radius: 1rem;
}

.modal-content p {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.8;
  color: #333;
  text-align: left;
  padding: 6rem 9rem;
  transform: skew(5deg, 5deg) rotate(-5deg);
}

.js-modal-close,
.js-modal-close3 {
  position: absolute;
  top: 7rem;
  right: 2rem;
  width: 5rem;
  height: 5rem;
  z-index: 3;
}

.js-modal-close .batsu,
.js-modal-close3 .batsu {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}

.js-modal-close .batsu::before,
.js-modal-close .batsu::after,
.js-modal-close3 .batsu::before,
.js-modal-close3 .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: #fff;
}

.js-modal-close .batsu::before,
.js-modal-close3 .batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.js-modal-close .batsu::after,
.js-modal-close3 .batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .member_item::before {
    content: "";
    position: absolute;
    top: 75%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 23vw;
    height: 23vw;
    touch-action: none;
    pointer-events: none;
  }

  .modal-content {
    background-color: transparent;
    width: 100%;
    transform: translate(-50%, -50%);
    height: 70vh;
    overflow-y: scroll;
    border-radius: 0;
  }

  .modal-content p {
    line-height: 2;
    padding: 5.3rem;
    color: #fff;
    font-size: 1.4rem;
    transform: none;
  }
}

/* ============================================
   CTA BANNER
   ============================================ */
.contact_bunner {
  width: 100%;
  height: 30rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--gradient-main);
}

.contact_bunner_text {
  font-size: clamp(2.8rem, 1.87vw, 3.6rem);
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 3.2rem;
  text-align: center;
}

.contact_bunner .header_line.top-btn {
  background: #fff;
  width: 30vw;
  height: 8rem;
}

.contact_bunner .header_line.top-btn p {
  color: #333;
  font-size: clamp(2.4rem, 1.87vw, 3.2rem);
}

.contact_bunner .header_line.top-btn:hover {
  border: 3px solid #fff;
  background: transparent;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: unset;
}

.contact_bunner .header_line.top-btn:hover p {
  color: #fff;
}

.contact_bunner .header_line.top-btn:hover::before {
  display: none;
}

@media screen and (max-width: 768px) {
  .contact_bunner {
    height: auto;
    padding: 4.8rem 2rem;
  }

  .contact_bunner .header_line.top-btn {
    width: 89.74vw;
    height: 6.4rem;
  }
}

/* ============================================
   CASES (転職成功事例)
   ============================================ */
.l-cases {
  max-width: 130rem;
  margin: 0 auto;
  margin-top: 16rem;
  padding: 0 5rem;
  padding-bottom: 17rem;
}

@media screen and (max-width: 768px) {
  .l-cases {
    margin-top: 8rem;
    padding: 0 2.7rem;
    padding-bottom: 17rem;
  }
}

.cases_items {
  max-width: 100rem;
  margin: 0 auto;
  width: 100%;
}

.cases_item {
  width: 100%;
  height: 100% !important;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 1rem;
  overflow: hidden;
}

.cases_item.is-01 {
  background: var(--gradient-main);
}

.cases_item.is-02 {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--red-dark) 100%);
}

.cases_item.is-03 {
  background: linear-gradient(135deg, var(--red) 0%, var(--navy) 100%);
}

.cases_item.is-04 {
  background: linear-gradient(135deg, #2a3d7d 0%, #f61a3c 100%);
}

.cases_item-wrapper {
  width: 100%;
  height: 100%;
  min-height: 50rem;
  display: flex;
  align-items: center;
}

.cases_item_text {
  flex-basis: 100%;
  height: 100%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cases_item_text-title {
  display: flex;
  padding-bottom: 3.2rem;
  margin-bottom: 2.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.cases_item_text-title h2 {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 0 2.5rem;
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cases_item_text-h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  margin-left: 5rem;
  border-radius: 0.4rem;
}

.cases_item_text-job {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  margin-bottom: 1.2rem;
}

.cases_item_text-job span {
  color: #ffd700;
}

.cases_item_text-name {
  font-size: clamp(2.4rem, 1.45vw, 2.8rem);
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
}

.cases_item_text-name span {
  font-size: clamp(1.6rem, 1.04vw, 2rem);
}

.cases_item_text-text {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.8;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .cases_item-wrapper {
    min-height: auto;
    display: block;
  }

  .cases_item_text {
    padding: 3rem 2rem;
  }

  .cases_item_text-title {
    display: block;
  }

  .cases_item_text-h2 {
    display: inline-block;
    margin-left: 0;
    padding: 1.2rem 2rem;
  }

  .cases_item_text-name {
    margin-bottom: 2rem;
    line-height: 1;
  }
}

/* ============================================
   FAQ
   ============================================ */
.l-faq {
  margin: 0 auto;
  margin-bottom: 10rem;
  background-color: #f3f3f3;
}

.faq {
  max-width: 130rem;
  margin: 0 auto;
  padding: 16rem 5rem;
}

.faq_items {
  width: 100%;
}

.faq_item {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 6rem;
  position: relative;
}

.faq_item_right_yoko {
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 4.5rem;
  height: 3px;
  background-color: #fff;
}

.faq_item_right_tate {
  position: absolute;
  top: 50%;
  right: 4rem;
  width: 4.5rem;
  height: 3px;
  background-color: #fff;
  transform: rotate(270deg);
  transition: all 0.3s;
}

.faq_item_right_tate.active {
  transform: rotate(180deg);
}

.faq_item_f {
  text-align: left;
  background: var(--gradient-vertical);
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  padding: 2.5rem 4rem;
  position: relative;
  border-radius: 0.6rem 0.6rem 0 0;
}

.faq_item_f h2 {
  font-size: clamp(2.4rem, 2.5vw, 4.8rem);
  color: #fff;
  margin-right: 4rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
}

.faq_item_f p {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  color: #fff;
  letter-spacing: 0.05em;
  font-weight: bold;
  line-height: 1.5;
}

.faq_item_a {
  background-color: #fff;
  font-size: clamp(1.4rem, 1.04vw, 2rem);
  color: #333;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 4rem 8rem;
  font-weight: bold;
  border-radius: 0 0 0.6rem 0.6rem;
}

@media screen and (max-width: 768px) {
  .faq {
    padding: 5rem 2.7rem;
    padding-top: 8rem;
  }

  .faq_item {
    margin-bottom: 3.2rem;
  }

  .faq_item_right_yoko {
    right: 2rem;
    width: 2.4rem;
    height: 2px;
  }

  .faq_item_right_tate {
    right: 2rem;
    width: 2.4rem;
    height: 2px;
  }

  .faq_item_f {
    min-height: 7.8rem;
    padding: 1.6rem 2rem;
  }

  .faq_item_f h2 {
    margin-right: 1.2rem;
  }

  .faq_item_f p {
    padding-right: 4.4rem;
  }

  .faq_item_a {
    padding: 2rem;
  }
}

/* ============================================
   PARTNER
   ============================================ */
.l-partner {
  margin-top: 16rem;
  margin-bottom: 18rem;
}

@media screen and (max-width: 768px) {
  .l-partner {
    margin-top: 8rem;
    margin-bottom: 8rem;
  }
}

.partner {
  overflow: hidden;
}

.partner_slider {
  margin-bottom: 5rem;
}

.partner_slider-wrapper figure {
  margin-right: 4.6vw;
}

/* Slick overrides */
.slick-slide {
  height: auto !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.slick-arrow::before {
  content: "" !important;
  width: 100% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
}

.slick-next::before {
  background: url(../../images/recruitment/recruitment-lp/arrow_right.svg) !important;
  background-size: contain !important;
  opacity: 1 !important;
}

.slick-prev::before {
  background: url(../../images/recruitment/recruitment-lp/arrow_left.svg) !important;
  background-size: contain !important;
  opacity: 1 !important;
}

.slick-arrow {
  z-index: 2 !important;
  width: clamp(5.2rem, 3.125vw, 6rem) !important;
  height: clamp(5.2rem, 3.125vw, 6rem) !important;
}

.slick-arrow:hover {
  opacity: 0.7;
}

.slick-next {
  right: -4.2vw !important;
}

.slick-prev {
  left: -4.2vw !important;
}

@media screen and (max-width: 768px) {
  .slick-next {
    top: auto !important;
    right: 0 !important;
    bottom: calc(-5.2rem - 10.25vw);
  }

  .slick-prev {
    top: auto !important;
    bottom: calc(-5.2rem - 10.25vw);
    left: 0 !important;
  }
}

.slick-dots {
  bottom: clamp(-4.8rem, -2.5vw, -6rem) !important;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: calc(-10.75px - 10.25vw) !important;
  }
}

.slick-dots li button::before {
  font-size: 1.6rem !important;
  color: #d9d9d9;
}

@media screen and (max-width: 768px) {
  .slick-dots li button::before {
    font-size: 0.8rem !important;
  }
}

.slick-dots li.slick-active button::before {
  background: var(--gradient-vertical);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ============================================
   FOOTER
   ============================================ */
.sy-lp-footer {
  position: relative;
  background-color: var(--navy);
}

.footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  z-index: 2;
  padding-top: 3rem;
  overflow: hidden;
}

.footer h2 {
  font-size: clamp(3.2rem, 1.875vw, 3.6rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  font-family: "Roboto", sans-serif;
}

.footer a {
  font-size: clamp(1.4rem, 0.937vw, 1.8rem);
  font-weight: bold;
  color: #fff;
  margin-bottom: 4.4rem;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .footer a {
    margin-bottom: 3.2rem;
  }
}

.footer p {
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  font-family: "Roboto", sans-serif;
  opacity: 0.5;
  color: #fff;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
}