@charset "UTF-8";
html {
  overflow-x: hidden;
}

/* ------------------------------------------------------------------------------
   メインビジュアル
------------------------------------------------------------------------------ */
/* LAYOUT：Main Visual (.l-mv)*/
.l-header {
  cursor: auto !important;
}

.l-mv {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  padding-top: 65px;
  background: linear-gradient(to bottom, #005bac, #4290a9);
}
@media (max-width: 768px) {
  .l-mv {
    padding-bottom: 60px;
  }
}

/* 背景アニメ */
.l-mv__background {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.l-mv__background::before, .l-mv__background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.l-mv__background::before {
  transform: none;
}
.l-mv__background::after {
  transform-origin: top;
  transform: scaleY(0);
}
.l-mv__background.is-animating::after {
  animation: mvFillDown 900ms ease forwards;
}

@keyframes mvFillDown {
  to {
    transform: scaleY(1);
  }
}
/* 背景色（work / play） */
.l-mv__background.base--work::before {
  background: linear-gradient(to bottom, #005bac, #4290a9);
}

.l-mv__background.top--work::after {
  background: linear-gradient(to bottom, #005bac, #4290a9);
}

.l-mv__background.base--play::before {
  background: linear-gradient(to bottom, #f56505, #f08300);
}

.l-mv__background.top--play::after {
  background: linear-gradient(to bottom, #f56505, #f08300);
}

/* 無限ループテキスト */
.l-mv__looptext {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.l-mv__looptext-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: mvMarquee 60s linear infinite;
}

@keyframes mvMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.l-mv__looptext-inner {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  white-space: nowrap;
  margin-right: clamp(2rem, 6vw, 6rem);
}

.l-mv__word {
  font-family: "Figtree", sans-serif;
  font-weight: 800;
  font-size: clamp(12.0625rem, 22vw, 36.1875rem);
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
}

.l-mv__gap {
  display: inline-block;
  width: clamp(2rem, 3vw, 3rem);
}

@media (max-width: 768px) {
  .l-mv__looptext {
    transform: translateY(-4%);
  }
}
/* ============================================
   Swiper（スライド画像）
============================================ */
.l-mv__slider {
  position: relative;
  height: 100%;
  z-index: 2;
  text-align: center;
}

.l-mv__slider .swiper-slide {
  height: 100% !important;
  position: relative;
}

/* 画像は必ず切らずに収める */
.l-mv__slider .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.l-mv__img--desktop {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .l-mv__img--desktop {
    display: none;
  }
}

.l-mv__img--sp {
  display: none;
}
@media (max-width: 768px) {
  .l-mv__img--sp {
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
  }
}

.l-mv__txtwrap {
  text-align: left;
  width: fit-content;
  max-width: 600px;
  position: absolute;
  top: 20%;
  left: 10vw;
  z-index: 1;
}
@media (max-width: 1024px) {
  .l-mv__txtwrap {
    left: 3vw;
  }
}
@media (max-width: 768px) {
  .l-mv__txtwrap {
    top: 25%;
    left: 1vw;
  }
}

.l-mv__year--work {
  color: #FFFFFF;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: bold;
  padding: 0 10px 2px 10px;
  width: fit-content;
  margin-bottom: 5px;
  background: #e7124e;
}
@media (max-width: 768px) {
  .l-mv__year--work {
    font-size: clamp(0.7rem, 2vw, 1rem);
  }
}

.l-mv__txt--work {
  color: #FFFFFF;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: bold;
  padding: 0 10px 2px 10px;
  width: fit-content;
  margin-bottom: 5px;
  background: #e7124e;
}
@media (max-width: 768px) {
  .l-mv__txt--work {
    font-size: clamp(1.2rem, 2vw, 2.8rem);
  }
}

.l-mv__year--play {
  color: #FFFFFF;
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  font-weight: bold;
  padding: 0 10px 2px 10px;
  width: fit-content;
  margin-bottom: 5px;
  background: #000000;
}
@media (max-width: 768px) {
  .l-mv__year--play {
    font-size: clamp(0.7rem, 2vw, 1rem);
  }
}

.l-mv__txt--play {
  color: #FFFFFF;
  font-size: clamp(2rem, 2vw, 3.2rem);
  font-weight: bold;
  padding: 0 10px 2px 10px;
  width: fit-content;
  margin-bottom: 5px;
  background: #000000;
}
@media (max-width: 768px) {
  .l-mv__txt--play {
    font-size: clamp(1.2rem, 2vw, 2.8rem);
  }
}

/* ============================================
   丸いバナー画像（固定）
============================================ */
.l-mv__banner {
  position: absolute;
  top: 23%;
  right: 5%;
  z-index: 3;
  max-width: 217px;
  width: 100%;
  pointer-events: none;
  user-select: none;
}
@media (max-width: 1024px) {
  .l-mv__banner {
    top: 15%;
    right: 2vw;
  }
}
@media (max-width: 900px) {
  .l-mv__banner {
    top: 10%;
    max-width: 130.2px;
  }
}
@media (max-width: 768px) {
  .l-mv__banner {
    top: 12%;
    left: 2vw;
    max-width: 108.5px;
  }
}
@media (max-width: 480px) {
  .l-mv__banner {
    top: 15%;
    left: 2vw;
    max-width: 86.8px;
  }
}

/* ============================================
   慣性カーソル
============================================ */
@media (pointer: fine) {
  .l-mv__slider.mv-cursor-on {
    cursor: none;
  }
}
.mv-cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0) scale(0.8);
  transition: opacity 0.05s ease;
  will-change: transform;
  z-index: 10000;
}

.mv-cursor.is-show {
  opacity: 1;
}

.mv-cursor.is-press {
  transform: scale(0.65);
}

.mv-cursor::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #111;
  border-right: 2px solid #111;
  transform-origin: center;
  transition: transform 0.25s ease;
}

.mv-cursor.is-left::before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.mv-cursor.is-right::before {
  transform: translate(-75%, -50%) rotate(45deg);
}

/* ============================================
   左右クリックスライド
============================================ */
.l-mv__slider.cursor-left,
.l-mv__slider.cursor-right {
  cursor: none;
}

/* ============================================
   ctaボタン
============================================ */
.l-mv__cta {
  position: absolute;
  bottom: 0;
  right: 20px;
  display: flex;
  justify-content: left;
  z-index: 3;
}
@media (max-width: 768px) {
  .l-mv__cta {
    width: 100%;
    justify-content: center;
    left: 50%;
    transform: translateX(-50%);
  }
}

.l-mv__cta-item {
  width: 230px;
  background: #1f1f1f;
}
@media (max-width: 768px) {
  .l-mv__cta-item {
    width: 50%;
  }
}
.l-mv__cta-item:first-child {
  margin-right: 1px;
}

.l-mv__cta-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 20px 20px;
  color: #FFFFFF;
  text-align: center;
  position: relative;
}

.l-mv__cta-label {
  margin-right: 0;
  text-align: center;
}

.l-mv__cta-icon {
  position: absolute;
  right: 20px;
}

/* ============================================
   固定テキスト：仕事も遊びも本気。
============================================ */
.l-mv__txt {
  max-width: 1400px;
  width: 100%;
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
  user-select: none;
  padding: 0 20px 0 20px;
}

.l-mv__txt-inner {
  max-width: 1400px;
  width: 100%;
  position: relative;
}
.l-mv__txt-inner img {
  max-width: 1400px;
  width: 100%;
  height: auto;
  display: block;
}
.l-mv__txt-inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
  right: 0;
  background: url("../images/index/mv-sub-txt.png") no-repeat right bottom;
  background-size: contain;
  max-width: 282px;
  width: 28%;
  height: auto;
  aspect-ratio: 282/78;
}
@media (max-width: 900px) {
  .l-mv__txt-inner::after {
    bottom: -10px;
  }
}

/* ------------------------------------------------------------------------------
   長野日産について
------------------------------------------------------------------------------ */
.p-index-about {
  width: 100%;
  padding: 140px 0 140px 0;
  background: url("/images/index/bg_aboutus.jpg") no-repeat;
  background-size: cover;
  background-position: center -8vw;
  position: relative;
}
@media (max-width: 1180px) {
  .p-index-about {
    padding: 60px 0 80px;
  }
}
.p-index-about::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 22%;
  background: #fff;
  z-index: 0;
}
.p-index-about__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1150px) {
  .p-index-about__inner {
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .p-index-about__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.p-index-about__title-area {
  width: 45%;
}
@media (max-width: 900px) {
  .p-index-about__title-area {
    width: 100%;
  }
}
.p-index-about__content {
  width: 48%;
}
@media (max-width: 900px) {
  .p-index-about__content {
    width: 100%;
  }
}
.p-index-about__lead {
  font-size: clamp(1.6rem, 1.318rem + 1.202vw, 2.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 60px;
}
@media (max-width: 1150px) {
  .p-index-about__lead br {
    display: none;
  }
}
@media (max-width: 900px) {
  .p-index-about__lead {
    margin-bottom: 30px;
  }
}
.p-index-about__text {
  margin-bottom: 32px;
  line-height: 2.2;
}
@media (max-width: 900px) {
  .p-index-about__btn {
    display: block;
    text-align: center;
  }
}

.p-index-about__scroll {
  width: 100%;
  margin-top: 110px;
  display: flex;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.p-index-about__scroll-inner {
  display: flex;
  align-items: flex-start;
  animation: about-scroll 30s linear infinite;
  flex-shrink: 0;
}
.p-index-about__scroll-inner img {
  width: auto;
  height: auto;
  flex-shrink: 0;
}
.p-index-about__scroll-inner-img1 {
  margin-top: 175px;
  margin-right: 60px;
  aspect-ratio: 220/190;
}
.p-index-about__scroll-inner-img2 {
  margin-right: 80px;
  aspect-ratio: 380/320;
}
.p-index-about__scroll-inner-img3 {
  margin-top: 115px;
  margin-right: 50px;
  aspect-ratio: 300/250;
}
.p-index-about__scroll-inner-img4 {
  margin-top: -40px;
  margin-right: 50px;
  aspect-ratio: 300/250;
}
.p-index-about__scroll-inner-img5 {
  margin-top: 170px;
  margin-right: 60px;
  aspect-ratio: 220/190;
}
.p-index-about__scroll-inner-img6 {
  margin-top: -60px;
  margin-right: 50px;
  aspect-ratio: 300/250;
}
@media (max-width: 900px) {
  .p-index-about__scroll-inner-img1 {
    margin-top: 100px;
    margin-right: 40px;
    width: 132px !important;
  }
  .p-index-about__scroll-inner-img2 {
    margin-right: 60px;
    width: 228px !important;
  }
  .p-index-about__scroll-inner-img3 {
    margin-top: 50px;
    margin-right: 30px;
    width: 180px !important;
  }
  .p-index-about__scroll-inner-img4 {
    margin-top: -20px;
    margin-right: 30px;
    width: 180px !important;
  }
  .p-index-about__scroll-inner-img5 {
    margin-top: 100px;
    margin-right: 40px;
    width: 132px !important;
  }
  .p-index-about__scroll-inner-img6 {
    margin-top: -30px;
    margin-right: 30px;
    width: 180px !important;
  }
}

@keyframes about-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*トップページ共通タイトル*/
.p-section-index-title {
  margin-bottom: 60px;
  position: relative;
}
@media (max-width: 900px) {
  .p-section-index-title {
    margin-bottom: 30px;
  }
}
.p-section-index-title::after {
  content: "";
  display: block;
  width: 41px;
  height: 18px;
  position: absolute;
  top: -15px;
  left: 0;
  background: url("../images/index/bg_index-title.png") no-repeat;
  background-size: contain;
}
.p-section-index-title__en {
  font-family: "Figtree", sans-serif;
  font-size: clamp(3rem, 8vw, 5.25rem);
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
}
.p-section-index-title__ja {
  color: #1d70b9;
  font-size: clamp(1rem, 3vw, 1.25rem);
  font-weight: bold;
}

/* ------------------------------------------------------------------------------
   ニュース
------------------------------------------------------------------------------ */
.p-index-news {
  width: 100%;
  padding: 0 0 140px;
  position: relative;
  z-index: 0;
}
@media (max-width: 900px) {
  .p-index-news {
    padding: 0 0 60px;
  }
}
.p-index-news::after {
  content: "";
  position: absolute;
  top: -60px;
  right: calc((100vw - 1200px) / 2 - 800px);
  width: 900px;
  aspect-ratio: 1/1;
  background: url("../images/index/bg_cloud_news.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  animation: cloudFloat 7s ease-in-out infinite;
  will-change: transform;
}
@media (max-width: 768px) {
  .p-index-news::after {
    top: 80px;
    width: 600px;
    height: 400px;
  }
}
@keyframes cloudFloat {
  0% {
    transform: translateY(0px) translateX(0px);
  }
  50% {
    transform: translateY(-50px) translateX(0px);
  }
  100% {
    transform: translateY(0px) translateX(0px);
  }
}
.p-index-news__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 1;
  /* 背景より前へ */
}
@media (max-width: 768px) {
  .p-index-news__inner {
    flex-direction: column;
    gap: 0;
  }
}
.p-index-news__left {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .p-index-news__left {
    width: 100%;
    gap: 0;
  }
}
.p-index-news__more {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #1f1f1f;
  gap: 8px;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .p-index-news__more {
    display: none;
  }
}
.p-index-news__more .c-arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.p-index-news__more:hover .c-arrow {
  transform: translateX(4px);
}
.p-index-news__right {
  flex: 1;
  max-width: 890px;
}
.p-index-news__item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 32px 20px;
  border-bottom: 1px dashed #ccc;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  .p-index-news__item {
    padding: 16px 0;
  }
}
.p-index-news__item:hover {
  background: #f6f8fc;
}
.p-index-news__item:hover .c-arrow {
  transform: translateY(-50%) translateX(10px);
}
.p-index-news__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.p-index-news__date {
  font-size: 0.875rem;
  color: #666;
}
.p-index-news__title {
  font-size: 1rem;
  line-height: 1.8;
}
.p-index-news__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-index-news__icon .c-arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}
.p-index-news__btn {
  display: none;
}
@media (max-width: 768px) {
  .p-index-news__btn {
    display: block;
    margin-top: 40px;
    text-align: center;
  }
}

/* ------------------------------------------------------------------------------
   福利厚生
------------------------------------------------------------------------------ */
.p-index-welfare {
  width: 100%;
  padding: 140px 0 140px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1180px) {
  .p-index-welfare {
    padding: 60px 0 60px;
  }
}
@media (max-width: 900px) {
  .p-index-welfare {
    padding: 40px 0 40px;
  }
}
.p-index-welfare__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  position: relative;
}
@media (max-width: 900px) {
  .p-index-welfare__inner {
    flex-direction: column;
    gap: 50px;
  }
}
.p-index-welfare__inner::after {
  content: "";
  position: absolute;
  top: -115px;
  left: -53.2258064516%;
  max-width: 980px;
  width: 100%;
  height: 640px;
  background: url("../images/index/welfare_img02.png") no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0 10px 10px 0;
  z-index: 1;
}
@media (max-width: 1180px) {
  .p-index-welfare__inner::after {
    left: -64.5161290323%;
  }
}
@media (max-width: 1040px) {
  .p-index-welfare__inner::after {
    top: -55px;
    left: -76.6129032258%;
    height: 500px;
  }
}
@media (max-width: 900px) {
  .p-index-welfare__inner::after {
    position: static;
    width: 100%;
    aspect-ratio: 19/6;
    height: auto;
    border-radius: 10px;
  }
}
.p-index-welfare {
  /* 左：画像エリア */
}
.p-index-welfare__images {
  position: relative;
  max-width: 570px;
  width: 100%;
}
@media (max-width: 768px) {
  .p-index-welfare__images {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}
.p-index-welfare__img-sub {
  position: absolute;
  top: 140px;
  right: 7.5%;
  max-width: 410px;
  height: auto;
  aspect-ratio: 410/550;
  width: 100%;
  z-index: 3;
}
@media (max-width: 1180px) {
  .p-index-welfare__img-sub {
    top: 200px;
    max-width: 280px;
  }
}
@media (max-width: 1040px) {
  .p-index-welfare__img-sub {
    top: 260px;
    max-width: 200px;
  }
}
@media (max-width: 900px) {
  .p-index-welfare__img-sub {
    display: none;
  }
}
.p-index-welfare__img-sub img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-index-welfare {
  /* 右：テキストエリア */
}
.p-index-welfare__content {
  width: 570px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .p-index-welfare__content {
    width: 100%;
  }
}
.p-index-welfare__lead {
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 40px;
}
.p-index-welfare__text {
  margin-bottom: 40px;
  line-height: 2;
}
@media (max-width: 900px) {
  .p-index-welfare__btn {
    display: block;
    text-align: center;
  }
}

/* ------------------------------------------------------------------------------
   職種紹介
------------------------------------------------------------------------------ */
.p-index-job {
  width: 100%;
  padding: 140px 0;
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .p-index-job {
    padding: 60px 0;
  }
}
.p-index-job::after {
  content: "";
  position: absolute;
  top: -320px;
  /* カンプに合わせて調整してOK */
  left: calc((100vw - 1240px) / 2 - 800px);
  width: 900px;
  /* 最大幅（縮小のみ） */
  aspect-ratio: 1/1;
  background: url("../images/index/bg_cloud_job.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  animation: cloudFloat 7s ease-in-out infinite;
  will-change: transform;
}
.p-index-job__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}
.p-index-job__head {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  justify-content: flex-start;
}
@media (max-width: 900px) {
  .p-index-job__head {
    flex-direction: column;
    gap: 0;
  }
}
.p-index-job__title {
  width: 390px;
}
.p-index-job__lead {
  max-width: 810px;
  margin-top: 10px;
  line-height: 2;
  font-size: 1rem;
}
@media (max-width: 900px) {
  .p-index-job__lead {
    margin-top: 0;
    margin-bottom: 40px;
  }
  .p-index-job__lead br {
    display: none;
  }
}
.p-index-job__slider {
  position: relative;
  overflow: visible;
}
.p-index-job .swiper-wrapper {
  padding-bottom: 40px;
}
.p-index-job .swiper-slide {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.p-index-job .swiper-slide a:hover {
  opacity: 1;
}
.p-index-job {
  /* 偶数スライドを下げる */
}
.p-index-job .is-down {
  transform: translateY(50px);
}
.p-index-job__card {
  width: 100%;
}
.p-index-job__img-wrap {
  width: 100%;
  height: auto;
  aspect-ratio: 370/516;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}
.p-index-job__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: opacity 0.35s ease;
}
.p-index-job__img-wrap .img-hover {
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .p-index-job__img-wrap:hover .img-hover {
    opacity: 1;
  }
  .p-index-job__img-wrap:hover .img-main {
    opacity: 0;
  }
}
.p-index-job__label {
  background: #1f1f1f;
  color: #fff;
  display: inline-block;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: 6px;
  margin-top: 14px;
}
.p-index-job__text {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .p-index-job__text {
    font-size: 0.875rem;
  }
}
.p-index-job__nav {
  position: absolute;
  right: 0;
  bottom: -80px;
  display: flex;
  gap: 14px;
  z-index: 50;
}
@media (max-width: 768px) {
  .p-index-job__nav {
    position: static;
    justify-content: center;
    margin-top: 30px;
  }
}
.p-index-job__prev, .p-index-job__next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1d70b9;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: opacity 0.3s ease;
}
.p-index-job__prev:hover, .p-index-job__next:hover {
  opacity: 0.8;
}
.p-index-job__prev::before, .p-index-job__next::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("../../images/cmn_img/icon-arrow-dark.svg") no-repeat center;
  background-size: contain;
  position: absolute;
}
.p-index-job__prev::before {
  transform: scaleX(-1);
}
.p-index-job__next::before {
  transform: none;
}
.p-index-job__btn {
  margin-top: 120px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-index-job__btn {
    margin-top: 40px;
  }
}

/* ------------------------------------------------------------------------------
    研修制度
------------------------------------------------------------------------------ */
.p-index-training {
  padding: 50px 0 140px 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .p-index-training {
    padding: 40px 0 60px 0;
  }
}
@media (max-width: 768px) {
  .p-index-training {
    padding: 40px 0 40px 0;
  }
}
.p-index-training__inner {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media (max-width: 900px) {
  .p-index-training__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.p-index-training__content {
  max-width: 570px;
  flex: 1;
}
@media (max-width: 900px) {
  .p-index-training__content {
    max-width: 100%;
  }
}
.p-index-training__lead {
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 40px;
}
@media (max-width: 480px) {
  .p-index-training__lead {
    margin-top: 60px;
    font-size: 18px;
  }
}
.p-index-training__text {
  line-height: 2;
  margin-bottom: 40px;
  font-size: 15px;
}
.p-index-training__img {
  max-width: 570px;
  flex: 1;
}
@media (max-width: 900px) {
  .p-index-training__img {
    max-width: 100%;
    height: 100px;
  }
}
.p-index-training__img img {
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .p-index-training__img img {
    height: auto;
    aspect-ratio: 780/246;
    border-radius: 10px;
    object-fit: cover;
    object-position: center 41%;
  }
}
@media (max-width: 900px) {
  .p-index-training__btn {
    display: block;
    text-align: center;
  }
}

/* --------------------------------------------------------------------
   奨学金制度（SCHOLARSHIP）
-------------------------------------------------------------------- */
.p-index-scholarship {
  width: 100%;
  padding: 160px 0 200px;
  position: relative;
  z-index: 0;
}
@media (max-width: 1180px) {
  .p-index-scholarship {
    padding: 120px 0 100px;
  }
}
@media (max-width: 900px) {
  .p-index-scholarship {
    padding: 60px 0 60px;
  }
}
@media (max-width: 768px) {
  .p-index-scholarship {
    padding: 40px 0 40px;
  }
}
.p-index-scholarship::after {
  content: "";
  position: absolute;
  top: -380px;
  right: calc((100vw - 1200px) / 2 - 720px);
  width: 900px;
  aspect-ratio: 1/1;
  background: url("../images/index/bg_cloud_scholarship.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  animation: cloudFloat 7s ease-in-out infinite;
  will-change: transform;
}
.p-index-scholarship__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  position: relative;
}
@media (max-width: 900px) {
  .p-index-scholarship__inner {
    flex-direction: column;
    gap: 50px;
  }
}
.p-index-scholarship__inner::after {
  content: "";
  position: absolute;
  top: -115px;
  left: -53.2258064516%;
  max-width: 980px;
  width: 100%;
  height: 640px;
  background: url("../images/index/scholarship_img02.png") no-repeat center;
  background-size: cover;
  border-radius: 0 10px 10px 0;
  z-index: 0;
}
@media (max-width: 1180px) {
  .p-index-scholarship__inner::after {
    left: -64.5161290323%;
  }
}
@media (max-width: 1040px) {
  .p-index-scholarship__inner::after {
    top: -55px;
    left: -76.6129032258%;
    height: 500px;
  }
}
@media (max-width: 900px) {
  .p-index-scholarship__inner::after {
    position: static;
    width: 100%;
    aspect-ratio: 19/6;
    height: auto;
    border-radius: 10px;
  }
}
.p-index-scholarship__images {
  position: relative;
  max-width: 570px;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-index-scholarship__images {
    width: 100%;
    min-width: auto;
    max-width: 100%;
  }
}
.p-index-scholarship__img-sub {
  position: absolute;
  top: 140px;
  right: 7.5%;
  max-width: 410px;
  height: auto;
  aspect-ratio: 410/550;
  width: 100%;
  z-index: 3;
}
@media (max-width: 1180px) {
  .p-index-scholarship__img-sub {
    top: 200px;
    max-width: 280px;
  }
}
@media (max-width: 1040px) {
  .p-index-scholarship__img-sub {
    top: 260px;
    max-width: 200px;
  }
}
@media (max-width: 900px) {
  .p-index-scholarship__img-sub {
    display: none;
  }
}
.p-index-scholarship__img-sub img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.p-index-scholarship__content {
  width: 570px;
  flex-shrink: 0;
  z-index: 5;
  position: relative;
}
@media (max-width: 900px) {
  .p-index-scholarship__content {
    width: 100%;
  }
}
.p-index-scholarship__lead {
  margin: 20px 0 40px;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  font-weight: 700;
  line-height: 1.6;
}
.p-index-scholarship__links {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  position: relative;
}
.p-index-scholarship__item {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 42px 20px;
  border-bottom: 1px dashed #ccc;
  transition: background 0.3s ease;
}
@media (max-width: 768px) {
  .p-index-scholarship__item {
    padding: 32px 16px;
  }
}
@media (max-width: 480px) {
  .p-index-scholarship__item {
    padding: 22px 0;
  }
}
.p-index-scholarship__item:hover {
  background: #f6f8fc;
}
.p-index-scholarship__item:hover .c-arrow {
  transform: translateY(-50%) translateX(10px);
}
.p-index-scholarship__item-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  flex: 1;
}
.p-index-scholarship__item-icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-index-scholarship__item-icon .c-arrow {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

/* --------------------------------------------------------------------
   奨学金制度：追従画像アニメーション
-------------------------------------------------------------------- */
.hover-stalker-img {
  position: fixed;
  width: 350px;
  height: 350px;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  opacity: 0;
  visibility: visible;
  transform: translate(0%, -100%);
  z-index: 999;
}

/* ------------------------------------------------------------------------------
  インスタグラム
------------------------------------------------------------------------------ */
.p-index-instagram {
  width: 100%;
  padding: 140px 0 100px;
  position: relative;
  z-index: 0;
}
@media (max-width: 900px) {
  .p-index-instagram {
    padding: 60px 0 60px;
  }
}
@media (max-width: 768px) {
  .p-index-instagram {
    padding: 40px 0 0;
  }
}
.p-index-instagram::after {
  content: "";
  position: absolute;
  top: -220px;
  left: calc((100vw - 1240px) / 2 - 900px);
  width: 900px;
  aspect-ratio: 1/1;
  background: url("../images/index/bg_cloud_instagram.svg") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  /* ★ ゆらゆら */
  animation: cloudFloat 7s ease-in-out infinite;
  will-change: transform;
}
.p-index-instagram__title-area {
  text-align: center;
}
.p-index-instagram .p-section-index-title {
  display: inline-block;
  position: relative;
  padding-left: 0;
  text-align: center;
  width: fit-content;
}
.p-index-instagram .p-section-index-title::after {
  content: "";
  width: 41px;
  height: 18px;
  position: absolute;
  top: -18px;
  left: 0;
  background: url("../images/index/bg_index-title.png") no-repeat;
  background-size: contain;
}
.p-index-instagram .p-section-index-title__en, .p-index-instagram .p-section-index-title__ja {
  display: block;
}
.p-index-instagram {
  /* ------------------------------------------------------------------------------
    スクロール画像（無限ループ）
  ------------------------------------------------------------------------------ */
}
.p-index-instagram__scroll {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
}
.p-index-instagram__track img {
  border-radius: 20px;
}
@keyframes insta-loop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.p-index-instagram__follow {
  position: absolute;
  z-index: 5;
  top: 140px;
  left: 50px;
}
@media (max-width: 1100px) {
  .p-index-instagram__follow {
    transform: scale(0.8);
    left: 20px;
  }
}
@media (max-width: 900px) {
  .p-index-instagram__follow {
    position: static;
  }
}