@charset "UTF-8";

/* Foundation
   ========================================================================== */
.p-recruit *,
.p-recruit *::before,
.p-recruit *::after {
  box-sizing: border-box;
}

.p-recruit {
  --container: 1080px;
  --container-wide: 1250px;
  --gutter: 40px;
  --scroll-duration-recruit: 40s;

  --inset-std: max(var(--gutter), calc((100% - var(--container)) / 2));
  --inset-wide: max(var(--gutter), calc((100% - var(--container-wide)) / 2));
}

.p-recruit {
  font-family: var(--font-ja);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.8;
  /* hidden にすると縦が自動で auto になり、ページ内にもう一つスクロール領域ができて
     「2回スクロールしないと下に進めない」状態になる。clip なら縦は素通しのまま。 */
  overflow-x: clip;
}

.p-recruit img {
  max-width: 100%;
  height: auto;
}

.p-recruit__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.p-recruit__inner--wide {
  max-width: var(--container-wide);
}

.c-sec-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left: var(--inset-std);
  margin-right: var(--inset-wide);
}

.p-recruit-career__scroller {
  margin-left: var(--inset-std);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.p-recruit-career__scroller.is-grabbing {
  cursor: grabbing;
}

.p-recruit-career__scroller::-webkit-scrollbar {
  display: none;
}

.inner-frame {
  width: min(100% - 30px, 1080px);
  margin: 50px auto 80px;
}

/* Components
   ========================================================================== */
.c-sec-head {
  padding-bottom: 18px;
  border-bottom: 1px solid #dcdfe3;
}

.c-sec-head__label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
}

.c-sec-head__label::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(45deg, #9ba7f5, #1e56ae);
}

.c-sec-head__en {
  font-family: var(--font-en);
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
}

/* Hero
   ========================================================================== */
.p-recruit-hero {
  position: relative;
  overflow: hidden;
  margin-top: 100px;
  padding-top: 30px;
  padding-bottom: 70px;
}

.hero-bg-deco01 {
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.p-recruit-hero__marquee {
  position: absolute;
  top: 6%;
  left: 0;
  width: 100%;
  z-index: -1;
  pointer-events: none;
  font-family: var(--font-en);
}

.infinite-scroll__wrap--recruit {
  animation: infinite-scroll-left 30s linear infinite;
}

.infinite-scroll__track--recruit {
  gap: 0;
}

.p-recruit-hero__recruit-word {
  font-family: var(--font-en);
  font-size: 130px;
  font-weight: 500;
  line-height: 1;
  white-space: pre;
  color: #f2f2f2;
}

.p-recruit-hero__head {
  position: relative;
}

.p-recruit-hero__label {
  text-align: right;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #333;
  font-family: var(--font-en);
  margin-right: 58px;

}

.p-recruit-hero__title {
  font-family: "ta-koigokoro", sans-serif;
  font-size: 42px;
  letter-spacing: 0.18em;
  line-height: 1.2;
  color: var(--color-text);
  margin-left: 7vw;
}

.p-recruit-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 7vw;
  margin-top: 20px;
  font-size: 14px;
  color: var(--color-text);
}

.p-recruit-hero__breadcrumb::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(45deg, #596ef2, #1e56ae);
}

.p-recruit-hero__breadcrumb a {
  color: inherit;
}

.p-recruit-hero__visual {
  position: relative;
  margin-top: 30px;
}

.p-recruit-hero__gallery {
  position: relative;
  width: calc(100% - 116px);
  margin: 82px auto 0;
}

.p-recruit-hero__gallery img {
  display: block;
  width: 100%;
  height: auto;
}

.p-recruit-hero__lead {
  position: absolute;
  left: 28px;
  bottom: 24px;
  z-index: 2;
  max-width: 720px;
  color: #fff;
  font-size: 16px;
  line-height: 1.75;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
}

.hero-sub-deco02 {
  position: absolute;
  right: 28px;
  bottom: 68px;
  width: 37%;
  aspect-ratio: 484/123;
  z-index: 1;
}

.p-recruit-hero__anchors {
  position: absolute;
  right: 3%;
  top: 30px;
  z-index: 3;
  width: 83%;
}

.anchor-list__list {
  display: flex;
  justify-content: left;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 26px;
}

.anchor-list__list li {
  width: 50%;
}

.anchor-list__list li:nth-child(6) {
  width: 23%;
}

.anchor-list__list li:nth-child(7) {
  width: fit-content;
}

.anchor-list__item {
  display: flex;
  justify-self: left;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--color-text);
}

.anchor-list__item::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url(../images/recruit/hero-arrow.png) no-repeat center/contain;
}

.anchor-list__item:hover {
  color: var(--color-main);
}

/* Message
   ========================================================================== */
.p-recruit-message {
  position: relative;
  max-width: 1366px;
  margin-inline: auto;
  padding-block: 50px;
  min-height: 620px;
}

.p-recruit-message__title {
  position: relative;
  z-index: 1;
  margin-left: var(--inset-std);
  margin-top: 40px;
  font-family: "acumin-variable", sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1.05;
  color: var(--color-text);
  z-index: 99;
}

.p-recruit-message__title-accent {
  color: #5964ef;
}
.p-recruit-message__lead {
  position: relative;
  z-index: 1;
  margin-left: var(--inset-std);
  margin-top: 62px;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.5;
}

.p-recruit-message__lead span {
  color: #5964ef;
}
.p-recruit-message__body {
  position: relative;
  z-index: 1;
  margin-left: var(--inset-std);
  margin-top: 18px;
  max-width: 453px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.2px;
}

.p-recruit-message__body::before {
  content: "";
  display: block;
  width: 74.4%;
  aspect-ratio: 333/333;
  background: url(../images/recruit/message-deco01.png) no-repeat center/contain;
  position: absolute;
  top: -30%;
  left: 71%;
  z-index: -1;
}

.p-recruit-message__body p + p {
  margin-top: 1.8em;
}
.p-recruit-message__photo {
  position: absolute;
  right: -3%;
  top: 212px;
  z-index: 2;
  width: 56.5%;
}

.p-recruit-message__photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* Movie
   ========================================================================== */
.p-recruit-movie {
  position: relative;
  padding: 50px 0 100px;
  border-radius: 0 0 100px 0;
}

.p-recruit-movie::before {
  content: "";
  position: absolute;
  width: 100%;
  aspect-ratio: 1366/450;
  bottom: 0;
  left: 0;
  background-image: url(../images/recruit/bg-d_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.p-recruit-movie__frame {
  width: min(100% - 30px, 1080px);
  aspect-ratio: 16/9;
  background: #333;
  margin: 50px auto 0;
  border-radius: 30px;
  overflow: hidden;
}

.p-recruit-movie__frame iframe {
  display: block;
  border: 0;
  width: 100%;
  height: 100%;
}

/* Career Plan
   ========================================================================== */
.p-recruit-career {
  padding-block: 100px;
  background: #f3f5f7;
  border-radius: 100px 0 100px 0;
}

.p-recruit-career__text-frame {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 40px;
}

.p-recruit-career__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  width: 29%;
}

.p-recruit-career__desc {
  font-size: 16px;
  line-height: 1.8;
  width: 68%;
}

.tab-filter {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px 10px;
  flex-wrap: wrap;
  width: 810px;
  margin: 40px auto 0;
}

.tab-filter__item {
  display: inline-block;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-main);
  width: 188px;
  padding: 4px 0;
  text-align: center;
  border: 1px solid #1e56ae;
  border-radius: 30px;
  cursor: pointer;
}

.tab-filter__item.is-active {
  background: var(--color-main);
  color: #fff;
  border: 1px solid #5964ef;
}

.p-recruit-career__scroller {
  margin-top: 40px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.p-recruit-career__track {
  display: none;
  gap: 20px;
  width: max-content;
  padding-right: var(--gutter);
}

.p-recruit-career__track.active {
  display: flex;
  animation: career-track-fade 0.35s ease;
}

@keyframes career-track-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .p-recruit-career__track.active {
    animation: none;
  }
}
.career-card {
  box-sizing: border-box;
  width: 380px;
  height: 460px;
  flex-shrink: 0;
  padding: 20px 0;
  border-radius: 20px;
  scroll-snap-align: start;
  overflow: hidden;
}

.scroll-progress {
  height: 12px;
  margin-top: 54px;
  margin-left: var(--inset-std);
  margin-right: var(--inset-std);
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.scroll-progress__fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--color-main);
  border-radius: inherit;
}

.career-card--y1 {
  background: #f7ebf4;
}

.career-card--y2 {
  background: #c9f4cd;
}

.career-card--y3 {
  background: #c5e8e4;
}

.career-card--y4 {
  background: #dbedd1;
}

.career-card--y5 {
  background: #f2f4ea;
}

.career-card--y6 {
  background: #f4efd3;
}

.career-card__year {
  font-weight: 700;
  color: var(--color-main);
  letter-spacing: 1px;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  text-align: center;
}

.career-card__step,
.career-card__group {
  width: calc(100% - 40px);
  margin: 0 auto;
}

.career-card__step {
  width: fit-content;
  margin: 20px 0 0 20px;
  font-size: 12px;
  padding: 0 8px;
  background-color: #d92b8b;
  color: #fff;
}

.career-card__title {
  width: 100%;
  margin: 14px auto 0;
  padding: 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px dotted #ccc;
  font-size: 17px;
  line-height: 1.5;

  min-height: calc(3em + 20px);
  color: var(--color-main);
  font-weight: 700;
  box-sizing: border-box;
}

.career-card__group {
  margin-top: 20px;
}

.career-card__group-label {
  font-size: 12px;
  color: var(--color-main);
  font-weight: 700;
}

/* Salary Simulation
   ========================================================================== */
.p-recruit-salary {
  position: relative;
  padding-block: 116px;
  border-radius: 0 100px 0 0;
}

.p-recruit-salary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/932;
  background-image: url(../images/recruit/bg-u_pc.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-recruit-salary::after {
  content: "";
  position: absolute;
  top: 235px;
  left: -32px;
  width: 180px;
  height: 287px;
  background-image: url(../images/recruit/simulation-deco01_pc.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;
}

.p-recruit-salary__text-frame {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-top: 40px;
}

.p-recruit-salary__lead {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  width: 29%;
}

.p-recruit-salary__desc {
  font-size: 16px;
  line-height: 1.8;
  width: 68%;
}

.salary-table {
  display: none;
  width: 100%;
}

.salary-table.active {
  display: table;
  animation: career-track-fade 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .salary-table.active {
    animation: none;
  }
}
.salary-table__head-can {
  background-color: var(--color-main);
  color: #fff;
  font-size: 21px;
  padding: 16px 20px;
  text-align: center;
  border-radius: 30px 0 0 0;
}

.p-recruit-salary__table-wrap {
  position: relative;
  width: min(100% - 60px, 1080px);
  margin: 40px auto 0;
}

.p-recruit-salary__table-wrap::after {
  content: "";
  position: absolute;
  right: -11%;
  bottom: -9%;
  width: 188px;
  aspect-ratio: 188/224;
  background-image: url(../images/recruit/simulation-deco02.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.salary-table__head-income {
  background-color: #5964ef;
  color: #fff;
  font-size: 21px;
  line-height: 1.5;
  padding: 10px 0px;
  border-radius: 0 30px 0 0;
  text-align: center;
}

.salary-table__year {
  color: #fff;
  padding: 20px;
  text-align: center;
}

.salary-table__row--y1 .salary-table__year {
  background: linear-gradient(to right, #45ae3c, #64d73c);
}

.salary-table__row--y3 .salary-table__year {
  background: linear-gradient(to right, #3ca5e6, #3cd7e6);
}

.salary-table__row--y5 .salary-table__year {
  background: linear-gradient(to right, #ffa715, #ffc832);
}

.salary-table__row--y7 .salary-table__year {
  background: linear-gradient(to right, #e5275e, #ff508c);
}

.salary-table__row--y10 .salary-table__year {
  background: linear-gradient(to right, #005fd4, #159dff);
}

.salary-table__row--y15 .salary-table__year {
  background: linear-gradient(to right, #8c26aa, #df4595);
  border-radius: 0 0 0 20px;
}

.salary-table__role {
  color: var(--color-main);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.salary-table__row--y1 .salary-table__role {
  background: #dbedd1;
  border-right: 1px solid #333;
}

.salary-table__row--y3 .salary-table__role {
  background: #c5e8e4;
  border-right: 1px solid #333;
}

.salary-table__row--y5 .salary-table__role {
  background: #eae9c5;
  border-right: 1px solid #333;
}

.salary-table__row--y7 .salary-table__role {
  background: #f7edf4;
  border-right: 1px solid #333;
}

.salary-table__row--y10 .salary-table__role {
  background: #d7e4ff;
  border-right: 1px solid #333;
}

.salary-table__row--y15 .salary-table__role {
  background: #e6cafc;
  border-right: 1px solid #333;
}

.salary-table__desc {
  padding-left: 24px;
  font-weight: 700;
  color: #151c51;
  text-align: left;
}

.salary-table__row--y1 .salary-table__desc {
  background: #dbedd1;
  border-right: 1px solid #333;
}

.salary-table__row--y3 .salary-table__desc {
  background: #c5e8e4;
  border-right: 1px solid #333;
}

.salary-table__row--y5 .salary-table__desc {
  background: #eae9c5;
  border-right: 1px solid #333;
}

.salary-table__row--y7 .salary-table__desc {
  background: #f7edf4;
  border-right: 1px solid #333;
}

.salary-table__row--y10 .salary-table__desc {
  background: #d7e4ff;
  border-right: 1px solid #333;
}

.salary-table__row--y15 .salary-table__desc {
  background: #e6cafc;
  border-right: 1px solid #333;
}

.salary-table__value {
  text-align: center;
  font-weight: 700;
}

.salary-table__row--y1 .salary-table__value {
  background: #dbedd1;
}

.salary-table__row--y3 .salary-table__value {
  background: #c5e8e4;
}

.salary-table__row--y5 .salary-table__value {
  background: #eae9c5;
}

.salary-table__row--y7 .salary-table__value {
  background: #f7edf4;
}

.salary-table__row--y10 .salary-table__value {
  background: #d7e4ff;
}

.salary-table__row--y15 .salary-table__value {
  background: #e6cafc;
  border-radius: 0 0 20px 0;
}

.salary-table__num {
  font-size: 50px;
  font-family: var(--font-en);
  font-weight: 700;
  line-height: 1.5;
}

.salary-table__row--y1 {
  color: #8cc63f;
}

.salary-table__row--y3 {
  color: #29abe2;
}

.salary-table__row--y5 {
  color: #f7931e;
}

.salary-table__row--y7 {
  color: #ff7bac;
}

.salary-table__row--y10 {
  color: #6464ff;
}

.salary-table__row--y15 {
  color: #662d91;
}

/* Social Performance Data
   ========================================================================== */
.p-recruit-social__title {
  color: var(--color-main);
}
.p-recruit-social__body {
  margin-top: 10px;
}

.link-cta {
  position: relative;
  display: block;
  width: 730px;
  background-color: var(--color-main);
  color: #fff;
  padding: 14px 30px;
  margin: 40px auto 0;
  border-radius: 10px;
  letter-spacing: 2px;
  transition: .3s;
}

.link-cta:hover {
  opacity: 0.7;
}

.link-arrow {
  display: none;
}

.link-cta::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 28px;
  height: 28px;
  background-image: url("../images/recruit/arrow-b01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Working Environment
   ========================================================================== */
.p-recruit-env {
  position: relative;
  padding: 100px 0 100px;
  background-color: #f3f5f7;
  border-radius: 100px 0 60px 0;
}

.p-recruit-env::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 35.8%;
  aspect-ratio: 465/392;
  background-image: url(../images/recruit/we-deco01.png);
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.p-recruit-env .inner-frame{
  margin: 50px auto 0;
}

.env-block {
  position: relative;
}

.ev02, .ev03, .ev04, .ev05 {
  margin-top: 80px;
}

.ev02::before {
  content: "";
  position: absolute;
  top: 45%;
  right: -12%;
  width: 16.1%;
  aspect-ratio: 174/270;
  background-image: url("../images/recruit/we-img-deco01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ev03::before {
  content: "";
  position: absolute;
  top: 71%;
  right: -9%;
  width: 16%;
  aspect-ratio: 172/284;
  background-image: url("../images/recruit/we-img-sdeco01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.ev04::before {
  content: "";
  position: absolute;
  top: 59%;
  right: -11%;
  width: 20.6%;
  aspect-ratio: 223/231;
  background-image: url("../images/recruit/we-img-tdeco01.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.env-block__title {
  font-size: 26px;
  font-weight: 700;
  color: var(--color-main);
  margin-top: 30px;
}

.env-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.env-block__more {
  display: none;
}

.info-card {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 16px;
  background-color: #fff;
  border-radius: 30px;
}

.info-card__thumb {
  width: 43.2%;
}

.info-card__body {
  width: 54%;
}

.info-card__body {
  margin-top: 20px;
  line-height: 2;
}

.info-card__title {
  font-size: 17px;
  color: var(--color-main);
}

.info-card__target {
  font-size: 12px;
  color: #b3b3b3;
  margin-left: -6px;
}

.info-card__desc {
  font-size: 14px;
}

.dorm-carousel {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 30px auto 0;
}

.dorm-carousel__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 20px;
  touch-action: pan-y;
}

.dorm-carousel__track {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  transition: transform 0.45s ease;
}

.dorm-carousel__track.is-jumping {
  transition: none;
}

.dorm-carousel__slide {
  flex: 0 0 700px;
  width: 700px;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  opacity: 0.72;
  transition: opacity 0.45s ease;
}

.dorm-carousel__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.dorm-carousel__slide img {
  display: block;
  width: 700px;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.dorm-carousel__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 2px solid #fff;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  color: #fff;
  font-size: 0;
  line-height: 0;
  transform: translate(-50%, -50%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.dorm-carousel__btn:hover {
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.dorm-carousel__btn--prev {
  left: calc(50% - 300px);
}

.dorm-carousel__btn--next {
  left: calc(50% + 300px);
}

.dorm-carousel__btn::before {
  content: "";
  display: block;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}

.dorm-carousel__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.dorm-carousel__btn--prev::after {
  left: calc(50% - 8px);
  transform: translateY(-50%) rotate(-135deg);
}

.dorm-carousel__btn--next::after {
  left: calc(50% + 0px);
  transform: translateY(-50%) rotate(45deg);
}

.dorm-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.dorm-list__item {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 28px;
  background-color: #fff;
  border-radius: 30px;
}

.dorm-list__name {
  font-weight: 700;
  width: 18%;
  color: var(--color-main);
}

.dorm-list__desc {
  width: 82%;
}

/* Requirements
   ========================================================================== */
.p-recruit-req {
  padding-block: 90px;
  position: relative;
}

.p-recruit-req:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1366/932;
  background-image: url(../images/recruit/bg-u_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}

.req-table-wrap {
  width: min(var(--container), 100% - var(--gutter) * 2);
  margin-inline: auto;
}

.filter-wrap .req-filter,
.filter-wrap .req-placeholder {
  width: 100%;
  margin-inline: 0;
}

.req-filter {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-top: 50px;
}

.req-select {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.req-select__current {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  height: 56px;
  padding: 0 22px;
  background: #fff;
  border: 1.5px solid var(--color-main);
  border-radius: 28px;
  font-family: inherit;
  font-size: 16px;
  color: var(--color-main);
  text-align: left;
  cursor: pointer;
}

.req-select__label {
  min-width: 0;
  flex: 1 1 auto;
}

.req-select.is-selected .req-select__label {
  color: var(--color-main);
}
.req-select__icon {
  flex-shrink: 0;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid var(--color-main);
  transition: transform 0.2s ease;
}

.req-select.is-open .req-select__icon {
  transform: rotate(180deg);
}
.req-select.is-open .req-select__current {
  border-radius: 20px 20px 0 0;
}

/* 開いても高さは変えず、下の要素に重ねて表示する */
.req-select.is-open {
  z-index: 30;
}

.req-select__options {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 30;
  width: 100%;
  max-width: 100%;
  max-height: 60vh;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1.5px solid var(--color-main);
  border-top: none;
  border-radius: 0 0 20px 20px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 12px 24px rgba(30, 86, 174, 0.12);
}

.req-select.is-disabled .req-select__current {
  background: #f5f7fb;
  border-color: #c9d3e6;
  color: #9aa7bd;
  cursor: not-allowed;
}

.req-select.is-disabled .req-select__icon {
  border-top-color: #9aa7bd;
}

.req-select__option {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 24px;
  color: var(--color-main);
  font-size: 16px;
  cursor: pointer;
  border-top: 1px dashed #c9d3e6;
}

.req-select__option:hover {
  background: #f2f6fd;
}

.req-placeholder {
  margin-top: 50px;
  padding: 52px 24px;
  border: 1.5px solid var(--color-main);
  border-radius: 16px;
  text-align: center;
}

.req-placeholder__text {
  color: var(--color-main);
  font-size: 20px;
  font-weight: 700;
}

.req-table-wrap {
  position: relative;
  margin-top: 50px;
}

.req-table-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: -60px;
  width: 129px;
  height: 340px;
  background-image: url("../images/recruit/we-img-deco.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.req-table {
  margin: 0;
}

.req-table__row {
  display: flex;
  gap: 40px;
  padding: 28px 8px;
  border-bottom: 1px dashed #d5dae2;
}

.req-table__label {
  flex-shrink: 0;
  width: 150px;
  color: var(--color-main);
  font-weight: 700;
  font-size: 16px;
}

.req-table__value {
  flex: 1;
  margin: 0;
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.9;
}

.req-table__edu {
  color: var(--color-accent);
  font-weight: 700;
}
.req-table-wrap .link-cta {
  margin: 50px auto 0;
  width: 310px;
}

/* About
   ========================================================================== */
.p-recruit-about {
  padding: 0 0 80px;
}

.p-recruit-about__title {
  position: relative;
  top: -25px;
  font-size: 120px;
  font-weight: 700;
  text-align: center;
  font-family: "acumin-variable", sans-serif;
  z-index: 1;
}

.p-recruit-about__title-accent {
  color: var(--color-main);
}

.p-recruit-about__grid {
  margin-top: -110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.about-card {
  position: relative;
  transition: .3s;
}

.about-card:hover {
  opacity: 0.7;
}

.about-card:nth-child(1)::after {
  content: "";
  position: absolute;
  top: 50px;
  left: -18px;
  width: 12%;
  aspect-ratio: 60/244;
  background-image: url(../images/recruit/about-deco01.png);
  background-size: cover;
  background-position: center;
}

.about-card:nth-child(2)::after {
  content: "";
  position: absolute;
  top: 110px;
  right: -13px;
  width: 12%;
  aspect-ratio: 60/244;
  background-image: url(../images/recruit/about-deco01.png);
  background-size: cover;
  background-position: center;
}

.about-card__label {
  display: flex;
  font-family: "ta-koigokoro", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-top: 20px;
  transition: .3s;
}
.about-card__label:hover {
  opacity: 0.7;
}

.about-card__arrow {
  position: relative;
  top: 16px;
  margin-left: 16px;
  width: 30px;
  height: 30px;
}

.footer {
  margin-top: 0;
}

/* Responsive: Tablet
   ========================================================================== */
@media (min-width: 768px) and (max-width: 1024px) {

  .p-recruit-hero__gallery {
    width: calc(100% - 60px);
    margin: 60px auto 0;
  }
  .p-recruit-hero__lead {
    position: static;
    max-width: none;
    margin-top: 24px;
    color: var(--color-text);
    text-shadow: none;
  }
  .hero-sub-deco02 {
    position: relative;
    right: auto;
    bottom: auto;
    width: calc(100% - 60px);
    margin: 0 auto;
    aspect-ratio: auto;
  }
  .hero-sub-deco02 img {
    display: none;
  }
  .p-recruit-hero__anchors {
    position: static;
    right: auto;
    top: auto;
    width: auto;
    margin-top: 16px;
  }
  .anchor-list__list {
    display: block;
  }
  .anchor-list__list li,
  .anchor-list__list li:nth-child(6),
  .anchor-list__list li:nth-child(7) {
    width: 100%;
  }
  .anchor-list__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    width: 100%;
    padding-block: 18px;
    border-bottom: 1px dotted #ccc;
    white-space: normal;
  }
  .anchor-list__item::before {
    width: 40px;
    height: 40px;
  }

  .p-recruit-message {
    display: flex;
    flex-direction: column;
    max-width: none;
    min-height: 0;
    padding-block: 40px 60px;
  }
  .c-sec-head {
    order: 0;
  }
  .p-recruit-message__title {
    order: 1;
  }
  .p-recruit-message__photo {
    order: 2;
  }
  .p-recruit-message__lead {
    order: 3;
  }
  .p-recruit-message__body {
    order: 4;
  }
  .p-recruit-message__title {
    margin-top: 30px;
  }
  .p-recruit-message__title-accent {
    display: block;
  }
  .p-recruit-message__photo {
    position: relative;
    width: 100%;
    margin: -52px auto 0;
    right: -5%;
    top: auto;
  }
  .p-recruit-message__lead {
    margin-top: 20px;

    font-size: clamp(34px, 4.6875vw + 4px, 40px);
  }
  .p-recruit-message__body {
    max-width: none;
    width: calc(100% - 60px);
    margin: 20px auto;
    font-weight: 500;
  }
  .p-recruit-message__body::before {
    top: -60%;
    left: 41%;
  }
  .p-recruit-message__body p + p {
    margin-top: 1.1em;
  }

  .p-recruit-career {
    padding-block: 100px;
    background: #f3f5f7;
    border-radius: 40px 0 40px 0;
  }
  .tab-filter {
    width: calc(100% - 60px);
  }
  .p-recruit-career__text-frame {
    flex-direction: column;
    align-items: start;
    width: calc(100% - 60px);
    margin-top: 40px;
  }
  .p-recruit-career__lead {
    width: 100%;
    font-size: clamp(20px, 1.509vw + 14.34px, 24px);
  }
  .p-recruit-career__desc {
    width: 100%;
    margin: 20px auto 0;
  }

  .p-recruit-salary {
    position: relative;
    padding: 60px 0 0;
    border-radius: 0 100px 0 0;
  }
  .p-recruit-salary__text-frame {
    flex-direction: column;
  }
  .p-recruit-salary__lead {
    font-size: clamp(20px, 1.509vw + 14.34px, 24px);
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .p-recruit-salary__desc {
    width: calc(100% - 60px);
    margin: 20px auto;
  }
  .p-recruit-salary .tab-filter::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -109px;
    width: 26%;
    aspect-ratio: 188/224;
    background-image: url(../images/recruit/simulation-deco02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: person_move 5s linear 1.65s infinite;
  }
  .p-recruit-salary::before {
    display: none;
  }

  .p-recruit-salary__table-wrap {
    width: auto;
    max-width: none;
    margin-top: 40px;
    margin-left: 30px;
    margin-right: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-recruit-salary__table-wrap::after {
    display: none;
  }
  .p-recruit-salary__table-wrap .salary-table {
    width: 1080px;
    min-width: 1080px;
  }
  .p-recruit-salary__table-wrap::after {
    content: "";
    position: absolute;
    right: -1%;
    bottom: 89%;
    width: 188px;
    z-index: -1;
    display: none;
  }
  .p-recruit-salary > .scroll-progress.sp-dis {
    display: block !important;
    margin-top: 30px;
    margin-left: 30px;
    margin-right: 30px;
  }

  .p-recruit-social{
    padding-top: 60px;
  }

  .p-recruit-env {
    border-radius: 40px 0 40px 0;
  }
  .p-recruit-env::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    aspect-ratio: 465/392;
    background-image: url(../images/recruit/we-deco01.png);
    background-size: cover;
    background-position: center;
    z-index: 0;
  }
  .env-block__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    margin-top: 30px;
  }

  .env-block[data-more]:not(.is-open) .env-block__grid > .info-card:nth-child(n+4) {
    display: none;
  }
  .env-block__more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: min(500px, 100% - 60px);
    height: 80px;
    margin: 30px auto 0;
    padding: 0;
    border: none;
    border-radius: 10px;
    background-color: var(--color-main);
    color: #fff;
    font-family: var(--font-ja);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .env-block.is-open .env-block__more {
    background-color: #5694ef;
  }
  .env-block__more-label {
    display: block;
    text-align: center;
  }
  .env-block__more-icon {
    position: absolute;
    top: 50%;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .env-block__more-icon::before,
  .env-block__more-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-main);
    transform: translate(-50%, -50%);
  }
  .env-block__more-icon::before {
    width: 18px;
    height: 2px;
  }
  .env-block__more-icon::after {
    width: 2px;
    height: 18px;
  }
  .env-block.is-open .env-block__more-icon {
    transform: translateY(-50%) rotate(45deg);
  }
  .env-block.is-open .env-block__more-icon::before,
  .env-block.is-open .env-block__more-icon::after {
    background-color: #5694ef;
  }
  .info-card {
    justify-content: start;
    align-self: center;
  }
  .info-card__thumb {
    width: 30%;
    margin-right: 20px;
  }
  .info-card__body {
    width: 67%;
    line-height: 2;
  }
  .ev02::before,
  .ev03::before,
  .ev04::before,
  .ev05::before {
    display: none;
  }
  .dorm-list__item {
    padding: 20px 18px;
    flex-direction: column;
  }
  .dorm-list__name {
    width: 100%;
  }
  .dorm-list__desc {
    width: 100%;
  }

  .p-recruit-about__title {
    position: relative;
    top: -25px;
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    font-family: "acumin-variable", sans-serif;
  }
  .p-recruit-about__grid {
    margin-top: -70px;
  }
}

/* Responsive: SP
   ========================================================================== */
@media (max-width: 767px) {

  .p-recruit {

    font-size: max(16px, 2.8125vw);
    --gutter: calc(30 / 6.4 * 1vw);
  }
  .p-recruit__inner,
  .p-recruit__inner--wide {
    max-width: none;
  }

  .c-sec-head {
    padding-bottom: 2.5vw;
  }
  .c-sec-head__label {
    gap: 0.15625vw;
    font-size: clamp(16px, 1.886vw - 8.925px, 21px);
  }
  .c-sec-head__label::before {
    margin-right: 8px;
  }
  .c-sec-head__en {
    font-size: max(16px, 2.5vw);
  }

  .p-recruit-hero {
    padding-top: 3.125vw;
    padding-bottom: 7.8125vw;
  }
  .p-recruit-hero__inner {
    width: 100%;
    padding-inline: var(--gutter);
  }
  .p-recruit-hero__marquee {
    top: 9.375vw;
  }
  .p-recruit-hero__recruit-word {
    font-size: 23.4375vw;
  }
  .p-recruit-hero__recruit-word {
    font-size: 23.4375vw;
  }
  .p-recruit-hero__label {
    font-size: max(16px, 2.5vw);
    margin-right: 18px;
  }
  .p-recruit-hero__breadcrumb {
    display: none;
  }

  .p-recruit-hero__gallery {
    position: relative;
    width: calc(100% - 36px);
    margin: 95px auto 0;
  }
  .p-recruit-hero__title {
    font-size: clamp(24px, 6.5625vw, 42px);

  }
  .p-recruit-hero__label {
    font-size: max(16px, 2.5vw);
    margin-right: 18px;
  }
  .p-recruit-hero__lead {
    position: static;
    max-width: none;
    margin-top: 4.6875vw;
    color: var(--color-text);
    font-size: max(16px, 2.8125vw);
    text-shadow: none;
  }
  .p-recruit-hero__anchors {
    position: static;
    width: auto;
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    margin-top: 3.75vw;
  }
  .anchor-list__list {
    display: block;
  }
  .anchor-list__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-block: 3.4375vw;
    border-bottom: 1px dotted #ccc;
    font-size: max(16px, 2.8125vw);
    white-space: normal;
  }
  .anchor-list__item::before {
    width: 8.75vw;
    height: 8.75vw;
  }
  .hero-sub-deco02 {
    margin: 0 auto;
    position: relative;
    width: calc(100% - 36px);
    bottom: auto;
    right: 0;
  }
  .anchor-list__item {
    flex-direction: row-reverse;
    justify-content: space-between;
    padding-block: 3.4375vw;
    border-bottom: 1px dotted #ccc;
    font-size: max(16px, 2.8125vw);
    white-space: normal;
    width: 100%;
  }
  .hero-sub-deco02 img {
    display: none;
  }
  .anchor-list__list li {
    width: 100%;
  }
  .anchor-list__list li:nth-child(6) {
    width: 100%;
  }
  .anchor-list__list li:nth-child(7) {
    width: 100%;
  }

  .p-recruit-message {
    display: flex;
    flex-direction: column;
    max-width: none;
    min-height: 0;
    padding-top: 6.25vw;
    padding-bottom: 10px;
  }
  .c-sec-head {
    order: 0;
  }
  .p-recruit-message__title {
    order: 1;
  }
  .p-recruit-message__photo {
    order: 2;
  }
  .p-recruit-message__lead {
    order: 3;
  }
  .p-recruit-message__body {
    order: 4;
  }
  .p-recruit-message__title {

    margin-top: 4.6875vw;

    font-size: clamp(58.5px, 15.6489vw - 0.1832px, 120px);
    line-height: 1.05;
    font-weight: 700;
  }
  .p-recruit-message__title-accent {
    display: block;
  }
  .p-recruit-message__photo {
    position: relative;
    width: 95.05%;
    margin-inline: var(--gutter);
    right: -2px;
    top: -52px;
    margin-top: 3.125vw;
  }
  .p-recruit-message__lead {
    margin-top: 0;

    font-size: clamp(24px, 3.7736vw + 9.85px, 34px);
  }
}
@media (max-width: 767px) and (min-width: 640px) and (max-width: 767px) {
  .p-recruit-message__lead {

    font-size: clamp(34px, 4.6875vw + 4px, 40px);
  }
}
@media (max-width: 767px) {
  .p-recruit-message__body {
    max-width: none;
    width: calc(100% - clamp(36px, 9.6vw, 60px));
    margin: 10px auto 0;
    font-weight: 500;
  }
  .p-recruit-message__body p + p {
    margin-top: 1.1em;
  }
}
@media (max-width: 767px) {

  .p-recruit-movie {
    padding: 50px 0;
    border-radius: 0 0 100px 0;
  }
  .p-recruit-movie__frame {
    width: min(100% - 30px, 1080px);
    margin-top: 20px;
    background: #333;
    margin: 36px auto 0;
    border-radius: 20px;
    height: auto;
  }

  .p-recruit-career {
    padding-block: 50px;
    background: #f3f5f7;
    border-radius: 40px 0 40px 0;
  }
  .p-recruit-career__text-frame {
    flex-direction: column;
    align-items: start;
  }
  .p-recruit-career__lead {
    font-size: clamp(20px, 1.509vw + 14.34px, 24px);
    width: 100%;
  }
  .p-recruit-career__desc {
    margin-top: 14px;
    width: 100%;
  }
  .tab-filter {
    gap: 10px 20px;
    flex-wrap: wrap;
    width: min(100% - 30px, 100%);
    margin: 30px auto 0;
  }
  .tab-filter__item {
    width: calc(50% - 10px);
  }
  .career-card {
    width: calc(100vw - 60px);
    height: 460px;
    text-align: center;
  }
  .career-card__step {
    margin: 20px auto 20px;
  }
  .career-card__title {
    font-size: 16px;
  }
  .scroll-progress {
    margin-top: 30px;
    background: #e7e7e7;
  }

  .p-recruit-salary {
    position: relative;
    padding-block: 56px;
    border-radius: 0 100px 0 0;
  }
  .p-recruit-salary::after {
    display: none;
  }
  .p-recruit-salary .c-sec-head__en {
    font-size: max(13px, 2.5vw);
  }
  .p-recruit-salary .tab-filter::before {
    content: "";
    position: absolute;
    right: -9%;
    bottom: -59px;
    width: 32%;
    aspect-ratio: 188/224;
    background-image: url(../images/recruit/simulation-deco02.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    pointer-events: none;
    animation: person_move 5s linear 1.65s infinite;
  }
  .p-recruit-salary__text-frame {
    align-items: start;
    flex-direction: column;
    margin-top: 40px;
  }
  .p-recruit-salary__lead {
    font-size: clamp(20px, 1.509vw + 14.34px, 24px);
    font-weight: 700;
    line-height: 1.5;
    width: 100%;
  }
  .p-recruit-salary__desc {
    font-size: 16px;
    line-height: 1.8;
    width: 100%;
    margin-top: 14px;
  }
  .p-recruit-salary::before {
    display: none;
  }

  .p-recruit-salary__table-wrap {
    width: auto;
    max-width: none;
    margin-top: 6.25vw;
    margin-left: var(--gutter);
    margin-right: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .p-recruit-salary__table-wrap::-webkit-scrollbar {
    display: none;
  }
  .p-recruit-salary__table-wrap::after {
    display: none;
  }
  .p-recruit-salary__table-wrap .salary-table {
    width: 1080px;
    min-width: 1080px;
  }
  .p-recruit-salary > .scroll-progress.sp-dis {
    display: block !important;
    margin-top: 4.6875vw;
    margin-left: var(--gutter);
    margin-right: var(--gutter);
  }

  .p-recruit-social {
    position: relative;
    padding: 60px 0;
  }
  .p-recruit-social .c-sec-head__label {
    width: 50%;
  }
  .p-recruit-social .c-sec-head__en {
    font-family: var(--font-en);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: #333;
    width: 50%;
  }
  .p-recruit-social__title {
    font-size: 18px;
  }
  .link-cta {
    width: 100%;
    text-align: center;
  }
  .p-recruit-social .link-cta::after {
    display: none;
  }
  .link-arrow {
    display: block;
    width: 34px;
    height: 34px;
    margin: 0 auto;
  }

  .p-recruit-env {
    padding: 60px 0 60px;
    border-radius: 40px 0 40px 0;
  }
  .p-recruit-env::before {
    display: none;
  }
  .env-block__title {
    font-size: 22px;
  }
  .env-block__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
    margin-top: 30px;
  }

  .env-block[data-more]:not(.is-open) .env-block__grid > .info-card:nth-child(n+4) {
    display: none;
  }
  .env-block__more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 78.125vw;
    height: 12.5vw;
    margin: 4.6875vw auto 0;
    padding: 0;
    border: none;
    border-radius: 1.5625vw;
    background-color: var(--color-main);
    color: #fff;
    font-family: var(--font-ja);
    font-size: max(16px, 3.125vw);
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
  }
  .env-block.is-open .env-block__more {
    background-color: #5694ef;
  }
  .env-block__more-label {
    display: block;
    text-align: center;
  }
  .env-block__more-icon {
    position: absolute;
    top: 50%;
    right: 3.125vw;
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
  }
  .env-block__more-icon::before,
  .env-block__more-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: var(--color-main);
    transform: translate(-50%, -50%);
  }

  .env-block__more-icon::before {
    width: 2.8125vw;
    height: 2px;
  }

  .env-block__more-icon::after {
    width: 2px;
    height: 2.8125vw;
  }

  .env-block.is-open .env-block__more-icon {
    transform: translateY(-50%) rotate(45deg);
  }
  .env-block.is-open .env-block__more-icon::before,
  .env-block.is-open .env-block__more-icon::after {
    background-color: #5694ef;
  }
  .ev02::before,
  .ev03::before,
  .ev04::before {
    display: none;
  }
  .info-card {
    flex-direction: column;
  }
  .info-card__thumb {
    position: relative;
    width: 100%;
    aspect-ratio: 550/285;
    border-radius: 20px;
    overflow: hidden;
  }
  .info-card__thumb img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
  }
  .info-card__body {
    width: 100%;
    margin-top: 20px;
  }
  .dorm-carousel {

    width: calc(100vw - var(--gutter) * 2);
    max-width: none;
    margin-top: 3.75vw;
    margin-left: calc(50% - 50vw + var(--gutter));
    margin-right: 0;
  }
  .dorm-carousel__track {
    gap: 0;
    align-items: stretch;
  }
  .dorm-carousel__slide {
    flex: 0 0 100%;
    width: 100%;
    opacity: 1;
  }
  .dorm-carousel__slide img {
    width: 100%;
    max-width: none;
  }
  .dorm-list__item {
    flex-direction: column;
  }
  .dorm-carousel__btn {
    width: 10.15625vw;
    height: 10.15625vw;
    transform: translateY(-50%);
  }
  .dorm-carousel__btn--prev {
    left: 2.5vw;
  }
  .dorm-carousel__btn--next {
    left: auto;
    right: 2.5vw;
  }

  .dorm-carousel__btn::before {
    display: block;
    width: 5.461796875vw;
    height: 3.962234375vw;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34.9555 25.3583' fill='none'%3E%3Cpath d='M2 12.679H17M17 2.5L27 12.679L17 22.858' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 0;
  }
  .dorm-carousel__btn::after {
    display: none;
  }
  .dorm-carousel__btn--prev::before {
    transform: scaleX(-1);
  }
  .dorm-carousel__btn--prev::after,
  .dorm-carousel__btn--next::after {
    display: none;
  }
  .dorm-list__name {
    width: 100%;
  }
  .dorm-list__desc {
    width: 100%;
  }

  .p-recruit-req {
    padding: 60px 0 40px;
  }
  .req-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 2.5vw;
    margin-top: 6.25vw;
  }
  .req-select {
    width: 100%;
    flex: 0 0 auto;
  }
  .req-select__current {
    height: 11.25vw;
    padding: 0 4.375vw;
    border-radius: 5.625vw;
    font-size: max(16px, 2.8125vw);
  }
  .req-select.is-open .req-select__current {
    border-radius: 3.125vw 3.125vw 0 0;
  }
  .req-select__options {
    border-radius: 0 0 3.125vw 3.125vw;
  }
  .req-select__option {
    padding: 2.5vw 4.375vw;
    font-size: max(16px, 2.8125vw);
  }
  .req-placeholder {
    margin-top: 6.25vw;
    padding: 3.75vw;
    border-radius: 2.5vw;
  }
  .req-placeholder__text {
    font-size: max(16px, 3.125vw);
  }
  .req-table-wrap {
    margin-top: 6.25vw;
  }
  .req-table__row {
    flex-direction: column;
    gap: 1.25vw;
    padding: 3.75vw 0;
  }
  .req-table__label {
    width: auto;
    font-size: max(16px, 2.8125vw);
  }
  .req-table__value {
    font-size: max(16px, 2.8125vw);
    line-height: 1.8;
  }
  .req-table-wrap .link-cta {
    margin-top: 6.25vw;
  }
  .req-table-wrap::after {
    display: none;
  }

  .p-recruit-about__title {
    top: auto;
    font-size: 60px;
    line-height: 1;
    z-index: 1;
  }
  .p-recruit-about__grid {
    flex-direction: column;
    margin-top: -30px;
    gap: 20px;
  }
  .about-card {
    position: relative;
    text-align: center;
  }
  .about-card__label {
    font-size: 21px;
    margin: 10px auto 0;
    justify-content: center;
  }
  .about-card__arrow {
    top: 2px;
    margin-left: 8px;
  }
  .about-card:nth-child(1)::after {
    top: 16%;
    left: -18px;
    width: 10%;
  }
  .about-card:nth-child(2)::after {
    top: 19%;
    right: -13px;
    width: 10%;
  }
}

html.js-person-reveal .p-recruit-salary__table-wrap[data-person-reveal]::after,
html.js-person-reveal .req-table-wrap[data-person-reveal]::after,
html.js-person-reveal .ev02[data-person-reveal]::before,
html.js-person-reveal .ev03[data-person-reveal]::before,
html.js-person-reveal .ev04[data-person-reveal]::before {
  transition: opacity 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.45s, transform 1.2s cubic-bezier(0.215, 0.61, 0.355, 1) 0.45s;
}

html.js-person-reveal .p-recruit-salary__table-wrap[data-person-reveal]:not(.is-person-revealed)::after,
html.js-person-reveal .req-table-wrap[data-person-reveal]:not(.is-person-revealed)::after,
html.js-person-reveal .ev02[data-person-reveal]:not(.is-person-revealed)::before,
html.js-person-reveal .ev03[data-person-reveal]:not(.is-person-revealed)::before,
html.js-person-reveal .ev04[data-person-reveal]:not(.is-person-revealed)::before {
  opacity: 0;
  transform: translateX(var(--person-reveal-x, 25vw));
}

html.js-person-reveal .p-recruit-salary__table-wrap[data-person-reveal].is-person-revealed::after,
html.js-person-reveal .req-table-wrap[data-person-reveal].is-person-revealed::after,
html.js-person-reveal .ev02[data-person-reveal].is-person-revealed::before,
html.js-person-reveal .ev03[data-person-reveal].is-person-revealed::before,
html.js-person-reveal .ev04[data-person-reveal].is-person-revealed::before {
  opacity: 1;
  transform: translateX(0);
  animation: person_move 5s linear 1.65s infinite;
}

@media (prefers-reduced-motion: reduce) {
  html.js-person-reveal .p-recruit-salary__table-wrap[data-person-reveal]::after,
  html.js-person-reveal .req-table-wrap[data-person-reveal]::after,
  html.js-person-reveal .ev02[data-person-reveal]::before,
  html.js-person-reveal .ev03[data-person-reveal]::before,
  html.js-person-reveal .ev04[data-person-reveal]::before {
    transition: none;
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
