/* =========================
   PC用の通常スタイル
   ========================= */

/* mv */
.mv {
  position: relative;
  z-index: 1;
  height: calc(100vh - 110px);
  min-height: 600px;
}

.mv::after {
  position: absolute;
  content: "";
  z-index: 1;
  background: url(/assets/img/recruit/recruitment/mv-treat.png) no-repeat center center / cover;
  width: 100%;
  height: 203px;
  left: 0;
  bottom: -20px;
}

.mv__inner {
  height: inherit;
  min-height: inherit;
}

.mv__cta {
  position: absolute;
  z-index: 3;
  bottom: 120px;
  right: 77px;
  max-width: 1740px;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mv__cta-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: auto;
  width: 100%;
  max-width: 320px;
  padding: 2.4rem 4.2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 2.2rem;
  background-color: #fff;
  color: #000;
}

.mv__cta-btn:hover::after {
  opacity: 0;
  right: 20px;
}

.mv__cta-btn:hover .mv__cta-btn__icon::before {
  opacity: 1;
  right: 40px;
}

.mv__cta-btn:hover .mv__cta-btn--orange::after {
  right: 40px;
}

.mv__cta-btn::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  background-color: #fff;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
}

.mv__cta-btn--orange::before {
  border: 1px solid #d2d2d2;
}

.mv__cta-btn::after {
  position: absolute;
  content: "";
  background: url(/assets/img/recruit/recruitment/btn-orange.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 40px;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.mv__cta-btn--orange::after {
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
}

.mv__cta-btn__icon::before {
  position: absolute;
  content: "";
  z-index: 1;
  background: url(/assets/img/recruit/recruitment/btn-black.svg) no-repeat center center / cover;
  width: 20px;
  height: 14px;
  top: 50%;
  transform: translateY(-50%);
  right: 56px;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease;
}

.mv__cta-btn__icon--orange::before {
  background: url(/assets/img/recruit/recruitment/btn-orange.svg) no-repeat center center / cover;
}

.mv__cta-btn--entry {
  background-color: #f7941d;
  color: #fff;
}

.mv__title-wrap {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: 115px;
  max-width: 1900px;
  width: 100%;
  padding: 0 20px;
  left: 50%;
  transform: translateX(-50%);
}

.mv__main-title {
  font-size: 1.6vw;
  font-weight: 700;
  line-height: calc(50 / 31);
  color: #fff;
  margin-bottom: 24px;
  margin-left: 28px;
}

.mv__title-wrap img {
  max-width: 61vw;
}

.mv__swiper,
.mv__swiper .swiper-img,
.mv__swiper .swiper-img img {
  height: inherit;
  min-height: inherit;
}

.mv__swiper .swiper-img img {
  object-fit: cover;
  width: 100%;
}

.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  animation: zoomUp 7s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}

/* message */
.page-message {
  position: relative;
  padding: 50px 0 128px;
  background-color: #fff;
}

.page-message__inner {
  display: flex;
  justify-content: space-between;
}

.page-message__title {
  margin-top: 17px;
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  color: #087854;
  line-height: calc(85 / 62);
}

.page-message__content {
  max-width: calc(780 / 1920 * 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-right: clamp(0px, 4vw, 80px);
  margin-top: 50px;
}

.page-message__content .section-text {
  font-size: clamp(14px, 2vw, 16px);
}

.page-message__image01 {
  position: absolute;
  bottom: 2px;
  right: calc(50% + 64px);
  max-width: calc(1005 / 1920 * 100%);
  width: 100%;
}

.page-message__image02 {
  position: absolute;
  z-index: 3;
  bottom: -140px;
  right: calc(50% + 205px);
  max-width: calc(539 / 1920 * 100%);
  width: 100%;
}

/* Youtube */
.page-youtube {
  overflow: hidden;
  height: 394px;
}

.page-youtube__inner {
  text-align: center;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

/* YouTube Modal Styles */
.page-youtube__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.page-youtube__modal[aria-hidden="false"] {
  visibility: visible;
  opacity: 1;
}

.page-youtube__modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(194, 204, 213, 0.8);
  cursor: pointer;
}

.page-youtube__modal-content {
  position: relative;
  width: 90%;
  max-width: 1200px;
  background-color: #000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.page-youtube__modal-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.page-youtube__modal-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.page-youtube__modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.page-youtube__modal-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 2px;
  background-color: #000;
  transform: translate(-50%, -50%);
}

.page-youtube__modal-close span:first-child {
  transform: translate(-50%, -50%) rotate(35deg);
}

.page-youtube__modal-close span:last-child {
  transform: translate(-50%, -50%) rotate(-35deg);
}
/* YouTube Modal Styles */

.page-youtube__text {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  line-height: calc(32 / 16);
  padding-top: 102px;
}

.page-youtube__button {
  position: relative;
  display: block;
  text-decoration: none;
}

.page-youtube__button::before {
  position: absolute;
  z-index: 2;
  content: "";
  background-color: rgba(156, 156, 156, 0.85);
  mix-blend-mode: multiply;
  width: 100%;
  height: 394px;
  left: 0;
  top: 0;
}

.page-youtube__bg {
  aspect-ratio: 1920 / 394;
  width: 100%;
  object-fit: cover;
  height: 394px;
  transition: transform 0.3s ease;
}

.page-youtube__button:hover .page-youtube__bg {
  transform: scale(1.05);
}

.page-youtube__button-text {
  display: block;
  margin-top: 30px;
  font-size: 4rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  font-style: italic;
  color: #fff;
}

.page-youtube__icon {
  margin: 6px auto 0;
  width: 54px;
}

/* data */
.page-data {
  padding-top: 136px;
  background-color: #fff;
}

.page-data__inner {
  padding: 84px 20px 142px;
  background: url(/assets/img/recruit/recruitment/data-bg.png) no-repeat center center / cover;
  max-width: 1700px;
  width: 100%;
  margin: 0 auto;
}

.page-data__body {
  margin-left: auto;
  max-width: 740px;
}

.page-data__title {
  margin-top: 12px;
}

.page-data__description {
  margin-top: 24px;
}

.page-data__btn {
  margin-top: 140px;
}

/* about */
.page-about {
  background-color: #fafafa;
  padding: 267px 0 365px;
}

.page-about__inner {
  max-width: 1230px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.page-about__content {
  position: relative;
  z-index: 2;
  width: 43%;
}

.page-about__title {
  margin-top: 30px;
}

.page-about__text {
  margin-top: 30px;
}

.page-about__btn {
  margin-top: 70px;
}

.page-about__image-wrapper {
  position: absolute;
  z-index: 1;
  flex: 1;
  margin-top: 25px;
  width: 43vw;
  left: calc(50% + 25px);
}

.page-about__image-wrapper::after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #efefef;
  width: 100%;
  height: 100%;
  top: 111px;
  left: -132px;
}

.page-about__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 828 / 560;
}

/* job */
.page-job {
  position: relative;
  height: 590px;
  overflow: hidden;
}

.page-job__link:hover .page-job__image {
  transform: scale(1.05);
}

.page-job__image {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: inherit;
  aspect-ratio: 1920 / 590;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.page-job__content {
  position: relative;
  max-width: 513px;
  color: #fff;
  margin-left: auto;
  margin-top: 120px;
}

.page-job__subtitle {
  margin-top: 32px;
}

.page-job__text {
  margin-top: 25px;
}

/* interview */
.page-interview {
  background-color: #fff;
  padding: 150px 0 100px;
  position: relative;
}

.page-interview__inner {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-interview__title {
  margin-top: 30px;
}

/* faq */
.page-faq {
  padding: 134px 0 175px;
  background-color: #fff;
}

.page-faq--lower {
  padding: 87px 0 370px;
}

@media only screen and (max-width: 768px) {
  .page-faq.page-faq--lower {
    padding: 60px 0 160px;
  }
}

.page-faq--lower .page-faq__question {
  padding: 40px 68px 34px;
}

.page-faq--lower .page-faq__answer-box {
  padding: 0 68px 35px;
}

@media only screen and (max-width: 768px) {
  .page-faq--lower .page-faq__question {
    padding: 20px 30px 20px 0;
  }

  .page-faq--lower .page-faq__answer-box {
    padding: 0 30px 20px 0;
  }
}

.page-faq__inner {
  max-width: 1090px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.page-faq__title {
  margin-top: 30px;
}

.page-faq__list {
  display: flex;
  flex-direction: column;
  margin-top: 62px;
}

.page-faq__item {
  border-bottom: 1px solid #d9d9d9;
}

.page-faq__item:first-child {
  border-top: 1px solid #d9d9d9;
}

.page-faq__question {
  display: flex;
  align-items: flex-start;
  padding: 40px 68px;
  cursor: pointer;
  position: relative;
}

.page-faq__icon img {
  width: 40px;
  flex-shrink: 0;
}

.page-faq__question-text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: calc(32 / 18);
  margin-left: 36px;
  margin-top: 4px;
  flex: 1;
  color: #000;
}

.page-faq__question::before,
.page-faq__question::after {
  position: absolute;
  content: "";
  background-color: #707070;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.page-faq__question::before {
  width: 20px;
  height: 1px;
  transition: transform 0.3s ease;
}

.page-faq__question::after {
  width: 1px;
  height: 20px;
  right: 30px;
}

.page-faq__item.is-open .page-faq__question::before {
  transform: translateY(-50%) rotate(90deg);
}

.page-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.page-faq__item.is-open .page-faq__answer {
  max-height: 500px;
  transition: max-height 0.8s ease;
}

.page-faq__answer-box {
  display: flex;
  align-items: flex-start;
  padding: 0 68px 40px;
}

.page-faq__answer-text {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: calc(32 / 16);
  margin-left: 36px;
  margin-top: 6px;
  color: #000;
}

.page-faq__answer-text a {
  text-decoration: underline;
  color: #0064f9;
}

.page-faq__btn {
  margin-top: 75px;
}

/* =========================
   1220px 以下
   ========================= */
@media only screen and (max-width: 1220px) {
  .mv__cta {
    bottom: 0;
    gap: 8px;
  }

  .mv__cta-btn--orange {
    border: 1px solid #d2d2d2;
  }

  .mv__title-wrap {
    bottom: 167px;
    right: 0;
  }
}

/* =========================
   768px 以下
   ========================= */
@media only screen and (max-width: 768px) {
  /* mv */
  .mv {
    height: calc(100vh - 87.5px);
    min-height: 579.5px;
  }

  .mv::after {
    height: 119px;
    bottom: -1px;
  }

  .mv__cta {
    bottom: 30px;
    right: 0;
  }

  .mv__cta-btn {
    padding: 1.5rem 1.8rem;
    font-size: 1.8rem;
    max-width: 220px;
  }

  .mv__cta-btn:hover .mv__cta-btn__icon::before {
    right: 30px;
  }

  .mv__cta-btn::before {
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .mv__cta-btn::after {
    right: 30px;
    width: 17px;
    height: 12px;
  }

  .mv__cta-btn__icon::before {
    width: 17px;
    height: 12px;
    right: 45px;
  }

  .mv__title-wrap {
    bottom: 160px;
    padding: 0 10px;
  }

  .mv__main-title {
    font-size: 3vw;
    margin-bottom: 16px;
    margin-left: 10px;
  }

  .mv__title-wrap img {
    max-width: 90vw;
  }

  /* message */
  .page-message {
    padding: 60px 0 160px;
  }

  .page-message__inner {
    flex-direction: column;
  }

  .page-message__content {
    padding-right: 0;
    max-width: 100%;
    margin-top: 40px;
  }

  .page-message__image01 {
    right: calc(50% - 160px);
    max-width: calc(915 / 768 * 100%);
  }

  .page-message__image02 {
    bottom: -82px;
    right: calc(50% - 70px);
    max-width: 300px;
  }

  /* youtube modal & block */

  .page-youtube__inner {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .page-youtube__modal-content {
    width: 95%;
  }

  .page-youtube__modal-close {
    top: -35px;
    width: 35px;
    height: 35px;
  }

  .page-youtube__modal-close span {
    width: 20px;
  }

  .page-youtube__text {
    padding-top: 80px;
    line-height: 1.6;
  }

  .page-youtube__button {
    height: 290px;
  }

  .page-youtube__button-text {
    margin-top: 20px;
    font-size: 3.8rem;
  }

  .page-youtube__icon {
    width: 40px;
  }

  /* data */
  .page-data {
    padding-top: 60px;
  }

  .page-data__inner {
    padding: 60px 0;
  }

  .page-data__btn {
    margin-top: 60px;
  }

  /* about */
  .page-about {
    padding: 60px 0 100px;
  }

  .page-about__inner {
    flex-direction: column;
    gap: 40px;
    max-width: 600px;
  }

  .page-about__content {
    width: 100%;
  }

  .page-about__btn {
    margin-top: 60px;
  }

  .page-about__image-wrapper {
    position: static;
    width: 85%;
    margin: 40px auto 0;
  }

  .page-about__image-wrapper::after {
    display: none;
  }

  .section-text.page-about__text {
    margin-top: 24px;
  }

  /* data */

  .section-text.page-data__description {
    margin-top: 24px;
  }

  /* job */
  .page-job {
    height: 472px;
  }

  .page-job__content {
    max-width: 600px;
    margin-top: 60px;
  }

  .section-text.page-job__text {
    margin-top: 24px;
  }

  /* interview */
  .page-interview {
    padding: 60px 0;
  }

  .page-interview__inner {
    max-width: 600px;
    padding: 0 10px;
  }

  /* faq */
  .page-faq {
    padding: 60px 0 100px;
  }

  .page-faq__inner {
    max-width: 600px;
    padding: 0 10px;
  }

  .page-faq__list {
    margin-top: 40px;
  }

  .page-faq__question {
    padding: 20px 30px 20px 0;
  }

  .page-faq__icon img {
    width: 30px;
  }

  .page-faq__question-text {
    font-size: 1.6rem;
    margin-left: 20px;
    margin-top: 0;
  }

  .page-faq__question::before {
    right: 10px;
  }

  .page-faq__question::after {
    right: 20px;
  }

  .page-faq__answer-box {
    padding: 0 30px 20px 0;
  }

  .page-faq__answer-text {
    line-height: 1.6;
    margin-left: 20px;
    margin-top: 0;
  }

  .page-faq__btn {
    margin-top: 60px;
  }
}




@media only screen and (max-width: 479px) {
.mv__swiper .swiper-img img{
  width: auto;
  translate: -610px;
  }
}