/**
 * Recruit1 Page Styles
 *
 * @package TouwaNew
 */
/**
 * Variables
 *
 * @package TouwaNew
 */
.recruit1-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
  margin-top: -100px;
}
@media (max-width: 768px) {
  .recruit1-hero {
    margin-top: -60px;
  }
}

.recruit1-hero-pc {
  display: block;
  position: relative;
}
@media (max-width: 768px) {
  .recruit1-hero-pc {
    display: none;
  }
}
.recruit1-hero-pc .recruit1-hero-pc-bg {
  width: 100%;
  height: auto;
  display: block;
}
.recruit1-hero-pc .recruit1-hero-text-block {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.recruit1-hero-pc .recruit1-hero-text-line {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(100px, 13vw, 250px);
  line-height: 120%;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
}
.recruit1-hero-pc .recruit1-hero-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.recruit1-hero-pc .recruit1-hero-char--space {
  width: 0.3em;
}
.recruit1-hero-pc .recruit1-hero-text-block.is-visible .recruit1-hero-char {
  opacity: 1;
  transform: translateY(0);
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(1) {
  transition-delay: 0s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(2) {
  transition-delay: 0.05s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(3) {
  transition-delay: 0.1s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(4) {
  transition-delay: 0.15s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(5) {
  transition-delay: 0.2s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(6) {
  transition-delay: 0.25s;
}
.recruit1-hero-pc .recruit1-hero-text-line--1 .recruit1-hero-char:nth-child(7) {
  transition-delay: 0.3s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(1) {
  transition-delay: 0.35s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(2) {
  transition-delay: 0.4s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(3) {
  transition-delay: 0.45s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(4) {
  transition-delay: 0.5s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(5) {
  transition-delay: 0.55s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(6) {
  transition-delay: 0.6s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(7) {
  transition-delay: 0.65s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(8) {
  transition-delay: 0.7s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(9) {
  transition-delay: 0.75s;
}
.recruit1-hero-pc .recruit1-hero-text-line--2 .recruit1-hero-char:nth-child(10) {
  transition-delay: 0.8s;
}
.recruit1-hero-pc .recruit1-hero-text-sequence {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 39vw;
  padding: 0 40px 0 30px;
  overflow: hidden;
  box-sizing: border-box;
}
.recruit1-hero-pc .recruit1-hero-text-sequence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0370b0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  z-index: 0;
}
.recruit1-hero-pc .recruit1-hero-text-sequence.is-visible::before {
  transform: scaleX(1);
  transition-delay: 0.8s;
}
.recruit1-hero-pc .recruit1-hero-text-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 0s;
}
.recruit1-hero-pc .recruit1-hero-text-sequence.is-visible .recruit1-hero-text-img {
  opacity: 1;
  transition-delay: 1.2s;
}

.recruit1-hero-sp {
  display: none;
}
@media (max-width: 768px) {
  .recruit1-hero-sp {
    display: block;
    position: relative;
    width: 100%;
    height: 100svh;
  }
}

.recruit1-hero-sp-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recruit1-hero-sp-bg img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
}

.recruit1-hero-sp-text-block {
  position: absolute;
  bottom: 2%;
  right: 5vw;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.recruit1-hero-sp-text-line {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 25.6vw, 100px);
  line-height: 90%;
  color: #fff;
  text-align: right;
  white-space: nowrap;
  display: flex;
  justify-content: flex-end;
}

.recruit1-hero-sp-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.recruit1-hero-sp-char--space {
  width: 0.3em;
}

.recruit1-hero-sp-text-block.is-visible .recruit1-hero-sp-char {
  opacity: 1;
  transform: translateY(0);
}

.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(1) {
  transition-delay: 0s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(2) {
  transition-delay: 0.05s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(3) {
  transition-delay: 0.1s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(4) {
  transition-delay: 0.15s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(5) {
  transition-delay: 0.2s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(6) {
  transition-delay: 0.25s;
}
.recruit1-hero-sp-text-line--1 .recruit1-hero-sp-char:nth-child(7) {
  transition-delay: 0.3s;
}

.recruit1-hero-sp-text-line--2 .recruit1-hero-sp-char:nth-child(1) {
  transition-delay: 0.35s;
}
.recruit1-hero-sp-text-line--2 .recruit1-hero-sp-char:nth-child(2) {
  transition-delay: 0.4s;
}
.recruit1-hero-sp-text-line--2 .recruit1-hero-sp-char:nth-child(3) {
  transition-delay: 0.45s;
}
.recruit1-hero-sp-text-line--2 .recruit1-hero-sp-char:nth-child(4) {
  transition-delay: 0.5s;
}

.recruit1-hero-sp-text-line--3 .recruit1-hero-sp-char:nth-child(1) {
  transition-delay: 0.55s;
}
.recruit1-hero-sp-text-line--3 .recruit1-hero-sp-char:nth-child(2) {
  transition-delay: 0.6s;
}
.recruit1-hero-sp-text-line--3 .recruit1-hero-sp-char:nth-child(3) {
  transition-delay: 0.65s;
}
.recruit1-hero-sp-text-line--3 .recruit1-hero-sp-char:nth-child(4) {
  transition-delay: 0.7s;
}
.recruit1-hero-sp-text-line--3 .recruit1-hero-sp-char:nth-child(5) {
  transition-delay: 0.75s;
}

.recruit1-hero-sp-text-sequence {
  position: relative;
  width: 90vw;
  max-width: 400px;
  padding: 3px 3px 3px 12px;
  overflow: hidden;
  box-sizing: border-box;
  margin: 0;
}
.recruit1-hero-sp-text-sequence::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  right: 0;
  width: auto;
  height: 100%;
  background-color: #0370b0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0s;
  z-index: 0;
}
.recruit1-hero-sp-text-sequence.is-visible::before {
  transform: scaleX(1);
  transition-delay: 0.8s;
}

.recruit1-hero-sp-text-img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
  transition-delay: 0s;
}

.recruit1-hero-sp-text-sequence.is-visible .recruit1-hero-sp-text-img {
  opacity: 1;
  transition-delay: 1.2s;
}

.recruit1-manufacturing-section {
  background: linear-gradient(180deg, #0370B0 0%, #009CEC 65%, #FFFFFF 93%);
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .recruit1-manufacturing-section {
    background: linear-gradient(180deg, #0370B0 0%, #009CEC 50%, #FFFFFF 65%);
  }
}

.recruit1-manufacturing {
  padding: 60px 0;
}
.recruit1-manufacturing--pc {
  display: block;
}
@media (max-width: 768px) {
  .recruit1-manufacturing--pc {
    display: none;
  }
}
.recruit1-manufacturing--sp {
  display: none;
}
@media (max-width: 768px) {
  .recruit1-manufacturing--sp {
    display: block;
    padding: 40px 0;
  }
}

.recruit1-manufacturing-inner {
  max-width: 1800px;
  margin: 0 auto;
  padding: 0 20px;
}

.recruit1-manufacturing-row {
  display: grid;
  grid-template-columns: clamp(245px, 21.5vw, 413px) 1fr clamp(245px, 21.5vw, 413px);
  gap: 5px;
  align-items: stretch;
}
@media (max-width: 1200px) and (min-width: 769px) and (orientation: portrait) {
  .recruit1-manufacturing-row {
    grid-template-columns: 175px 1fr 175px;
  }
}

.recruit1-manufacturing-gallery {
  display: flex;
  flex-direction: column;
}
.recruit1-manufacturing-gallery .recruit1-manufacturing-photo {
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1490196078);
}
.recruit1-manufacturing-gallery--left {
  justify-content: space-between;
  align-items: flex-end;
}
.recruit1-manufacturing-gallery--left .recruit1-manufacturing-photo:nth-child(1) {
  width: 100%;
  align-self: flex-start;
}
.recruit1-manufacturing-gallery--left .recruit1-manufacturing-photo:nth-child(1) img {
  aspect-ratio: 1/1;
}
.recruit1-manufacturing-gallery--left .recruit1-manufacturing-photo:nth-child(2) {
  width: clamp(140px, 12.34vw, 237px);
  margin-right: 30px;
  margin-bottom: 20px;
}
.recruit1-manufacturing-gallery--left .recruit1-manufacturing-photo:nth-child(2) img {
  aspect-ratio: 1/1;
}
.recruit1-manufacturing-gallery--right {
  justify-content: flex-start;
  padding-top: 120px;
  gap: 80px;
}
.recruit1-manufacturing-gallery--right .recruit1-manufacturing-photo:nth-child(1) {
  width: 79%;
  align-self: flex-start;
}
.recruit1-manufacturing-gallery--right .recruit1-manufacturing-photo:nth-child(1) img {
  aspect-ratio: 1/1;
}
.recruit1-manufacturing-gallery--right .recruit1-manufacturing-photo:nth-child(2) {
  width: 51%;
  align-self: flex-end;
  margin-right: -10px;
}
.recruit1-manufacturing-gallery--right .recruit1-manufacturing-photo:nth-child(2) img {
  aspect-ratio: 1/1;
}

.recruit1-manufacturing-gallery-sp {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  column-gap: 8px;
  row-gap: clamp(20px, 3.3px + 4.78vw, 40px);
  margin: 30px 0;
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo {
  overflow: visible;
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo:nth-child(1) {
  width: 37.7vw;
  align-self: end;
  transform: translateY(10px);
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo:nth-child(2) {
  width: 47.9vw;
  align-self: end;
  transform: translateX(-10px);
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo:nth-child(3) {
  width: 35.1vw;
  margin-left: 30px;
  align-self: start;
  transform: translateX(20px);
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo:nth-child(4) {
  width: 30.8vw;
  margin-left: 30px;
  align-self: start;
  margin-top: -10px;
}
.recruit1-manufacturing-gallery-sp .recruit1-manufacturing-photo img {
  aspect-ratio: 1/1;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.1490196078);
}

.recruit1-manufacturing-photo {
  overflow: hidden;
}
.recruit1-manufacturing-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.recruit1-manufacturing-content {
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 60px;
}
.recruit1-manufacturing--sp .recruit1-manufacturing-content {
  padding-top: 0;
}

.recruit1-manufacturing-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: clamp(45px, 35px + 1.3vw, 60px);
  line-height: 120%;
  margin: 0 0 30px;
}
.recruit1-manufacturing-title span {
  display: block;
}
.recruit1-manufacturing--sp .recruit1-manufacturing-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.recruit1-manufacturing-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 15.3px + 0.35vw, 22px);
  line-height: 170%;
  text-align: center;
}
.recruit1-manufacturing-text p {
  margin: 0 0 1.5em;
}
.recruit1-manufacturing-text p:last-child {
  margin-bottom: 0;
}
.recruit1-manufacturing--sp .recruit1-manufacturing-text {
  font-size: clamp(16px, 14.4px + 0.48vw, 18px);
  text-align: left;
}

.recruit1-manufacturing-video-wrapper {
  max-width: 1000px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.recruit1-manufacturing-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #000;
}
.recruit1-manufacturing-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.recruit1-manufacturing--sp .recruit1-manufacturing-video {
  margin-top: 50px;
}

.recruit1-manufacturing-youtube {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 70px;
  padding: 0;
  margin-top: 20px;
  background-color: #fff;
  border: 2px solid #0370b0;
  color: #0370b0;
  text-decoration: none;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  transition: color 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  z-index: 1;
}
.recruit1-manufacturing-youtube::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0370b0;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.recruit1-manufacturing-youtube:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.recruit1-manufacturing-youtube:hover::before {
  transform: scaleX(1);
}
.recruit1-manufacturing-youtube .arrow,
.recruit1-manufacturing-youtube svg {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit;
  transition: color 0.3s ease;
  flex-shrink: 0;
  z-index: 2;
}
.recruit1-manufacturing-video-wrapper .recruit1-manufacturing-youtube {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .recruit1-manufacturing-youtube {
    width: 270px;
    height: 50px;
    font-size: 18px;
    margin: 20px auto 0;
  }
  .recruit1-manufacturing-youtube .arrow,
  .recruit1-manufacturing-youtube svg {
    right: 15px;
  }
}

.recruit1-interview {
  padding: 60px 0 80px;
}
@media (max-width: 768px) {
  .recruit1-interview {
    padding: 20px 0 0;
  }
}

.recruit1-interview-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(120px, 9vw, 170px);
  font-weight: 900;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #0370b0;
  width: max-content;
  padding: 10px 40px 10px max(20px, (100vw - 1440px) / 2 + 20px);
  margin: 0 0 40px;
  text-align: left;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.recruit1-interview-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}
.recruit1-interview-title.is-visible::before {
  transform: scaleX(1);
}
@media (max-width: 768px) {
  .recruit1-interview-title {
    width: auto;
    font-size: 60px;
    padding: 10px 20px;
    margin: 0 20px 30px 0;
  }
}

.recruit1-interview-carousel {
  --carousel-gap: clamp(10px, calc(-3.4px + 1.74vw), 30px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  display: grid;
  grid-template-columns: calc((100% - var(--carousel-gap) * 4) * 45 / 125) 1fr;
  grid-template-rows: 2fr 3fr auto;
  gap: var(--carousel-gap);
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit1-interview-carousel {
    display: block;
  }
}

.recruit1-interview-active-info {
  position: absolute;
  left: calc(20px + (100% - 2 * 20px - var(--carousel-gap) * 4) * 41 / 125 + var(--carousel-gap));
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: opacity 0.3s ease;
  z-index: 5;
}
@media (max-width: 768px) {
  .recruit1-interview-active-info {
    display: none;
  }
}

.recruit1-interview-active-catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 2.5vw, 38px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 clamp(5px, -5px + 1.3vw, 20px);
  line-height: 1.3;
}

.recruit1-interview-active-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.7vw, 26px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 clamp(10px, -3.4px + 1.74vw, 30px);
  line-height: 1.2;
}

.recruit1-interview-active-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.2vw, 18px);
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit1-interview-active-more:hover {
  opacity: 0.7;
  text-decoration: none;
}

.recruit1-interview-track {
  grid-column: 1/-1;
  grid-row: 1/3;
  display: flex;
  gap: var(--carousel-gap);
  align-items: flex-end;
  position: relative;
}
@media (max-width: 768px) {
  .recruit1-interview-track {
    display: block;
  }
}

.recruit1-interview-card {
  flex: 0 0 auto;
  background: transparent;
  overflow: hidden;
  transition: all 0.4s ease;
  transform-origin: left center;
  width: calc((100% - var(--carousel-gap) * 4) * 21 / 125);
  align-self: flex-end;
}
.recruit1-interview-card.is-active {
  width: calc((100% - var(--carousel-gap) * 4) * 41 / 125);
  align-self: flex-end;
}
.recruit1-interview-card.is-active .recruit1-interview-card-content {
  display: none;
}
.recruit1-interview-card.is-active .recruit1-interview-card-image {
  aspect-ratio: 45/56;
}
.recruit1-interview-card.is-active .recruit1-interview-card-image-link {
  pointer-events: auto;
}
.recruit1-interview-card:not(.is-active) .recruit1-interview-card-image {
  aspect-ratio: 45/50;
}
@media (max-width: 768px) {
  .recruit1-interview-card {
    width: 100%;
  }
  .recruit1-interview-card.is-active {
    width: 100%;
  }
  .recruit1-interview-card.is-active .recruit1-interview-card-content {
    display: block;
  }
  .recruit1-interview-card.is-active .recruit1-interview-card-image {
    aspect-ratio: 4/5;
    height: auto;
  }
  .recruit1-interview-card:not(.is-active) {
    display: none;
  }
}

.recruit1-interview-card-image-link {
  display: block;
  text-decoration: none;
}

.recruit1-interview-card-image {
  width: 100%;
  overflow: hidden;
}
.recruit1-interview-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-out;
  transform-origin: center center;
  will-change: transform;
  backface-visibility: hidden;
}
.recruit1-interview-card.is-active:hover .recruit1-interview-card-image img {
  transform: scale(1.15);
  transition: transform 0.6s ease-out;
}
.recruit1-interview-card:not(.is-active):hover .recruit1-interview-card-image img {
  transform: scale(1.08);
  transition: transform 0.4s ease-out;
}

.recruit1-interview-card-content {
  padding: 12px 0 0;
  background: transparent;
  display: flex;
  flex-direction: column;
}

.recruit1-interview-card-meta {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 1.3vw, 20px);
  font-weight: 500;
  color: #0370b0;
  margin: 0 0 2px;
  line-height: 1.2;
  white-space: nowrap;
}
.recruit1-interview-card-meta .separator {
  margin: 0;
  color: #0370b0;
}
.recruit1-interview-card-meta .department {
  color: #0370b0;
}

.recruit1-interview-card-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 600;
  color: #0370b0;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.3s ease;
}
.recruit1-interview-card-more svg {
  width: 14px;
  height: 14px;
}
.recruit1-interview-card-more:hover {
  opacity: 0.7;
  text-decoration: none;
}

.recruit1-interview-nav {
  grid-column: 1/-1;
  grid-row: 3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(15px, 5px + 1.3vw, 30px);
  margin-top: 20px;
}
@media (max-width: 768px) {
  .recruit1-interview-nav {
    justify-content: center;
    margin-top: 20px;
  }
}

.recruit1-interview-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(20px, 16.7px + 0.43vw, 25px);
  height: clamp(20px, 16.7px + 0.43vw, 25px);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
.recruit1-interview-arrow::before {
  content: "";
  display: block;
  width: clamp(5px, 4px + 0.1vw, 6px);
  height: clamp(5px, 4px + 0.1vw, 6px);
  border-style: solid;
  border-width: 2px 2px 0 0;
  transition: border-color 0.3s ease;
}
.recruit1-interview-arrow--prev {
  background: transparent;
  border: 1px solid #0370b0;
}
.recruit1-interview-arrow--prev::before {
  border-color: #0370b0;
  transform: rotate(-135deg);
  margin-left: 2px;
}
.recruit1-interview-arrow--prev:hover {
  background: rgba(3, 112, 176, 0.1);
}
.recruit1-interview-arrow--next {
  background: #0370b0;
  border: none;
}
.recruit1-interview-arrow--next::before {
  border-color: #fff;
  transform: rotate(45deg);
  margin-right: 2px;
}
.recruit1-interview-arrow--next:hover {
  background: rgb(2.1452513966, 80.0893854749, 125.8547486034);
}

.recruit1-interview-counter {
  font-family: "Roboto", sans-serif;
  font-size: clamp(12px, 1.3vw, 20px);
  font-weight: 400;
  color: #0370b0;
}

.recruit1-interview--pc {
  display: block;
}
@media (max-width: 768px) {
  .recruit1-interview--pc {
    display: none;
  }
}

.recruit1-interview--sp {
  display: none;
}
@media (max-width: 768px) {
  .recruit1-interview--sp {
    display: block;
  }
}

.recruit1-interview-sp-carousel {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.recruit1-interview-sp-info {
  order: 2;
  padding: 0 20px;
  margin-top: 15px;
  margin-bottom: 30px;
}

.recruit1-interview-sp-catchphrase {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 11.3px + 1.91vw, 26px);
  font-weight: 700;
  color: #0370b0;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 5px;
}

.recruit1-interview-sp-meta {
  display: none;
}

.recruit1-interview-sp-name {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 14.3px + 0.48vw, 18px);
  font-weight: 700;
  color: #222222;
  margin: 0 0 5px;
  white-space: nowrap;
}

.recruit1-interview-sp-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #0370b0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit1-interview-sp-more:hover {
  opacity: 0.7;
  text-decoration: none;
}

.recruit1-interview-sp-main {
  order: 1;
  overflow: hidden;
  padding: 0 20px 0 0;
}

.recruit1-interview-sp-main-link {
  display: block;
}
.recruit1-interview-sp-main-link img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 12/11;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recruit1-interview-sp-main-link:hover img {
  transform: scale(1.02);
}

.recruit1-interview-sp-thumbs-wrapper {
  order: 3;
  overflow: hidden;
  margin-bottom: 20px;
  margin-left: 20px;
}

.recruit1-interview-sp-thumbs {
  display: flex;
  gap: 30px;
  transition: transform 0.4s ease;
}
.recruit1-interview-sp-thumbs:not([style*=transform]) {
  opacity: 0;
}

.recruit1-interview-sp-thumb {
  flex: 0 0 calc((100vw - 40px) / 1.6);
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.recruit1-interview-sp-thumb:hover {
  opacity: 0.8;
}

.recruit1-interview-sp-thumb-image-link {
  display: block;
  text-decoration: none;
}

.recruit1-interview-sp-thumb-image {
  margin-bottom: 8px;
  overflow: hidden;
}
.recruit1-interview-sp-thumb-image img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 208/254;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.recruit1-interview-sp-thumb:hover .recruit1-interview-sp-thumb-image img {
  transform: scale(1.03);
}

.recruit1-interview-sp-thumb-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.recruit1-interview-sp-thumb-meta {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0370b0;
  margin: 0;
  line-height: 1.3;
}

.recruit1-interview-sp-thumb-more {
  display: inline-flex;
  align-items: center;
  align-self: flex-end;
  gap: 3px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: #0370b0;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.recruit1-interview-sp-thumb-more:hover {
  opacity: 0.7;
  text-decoration: none;
}

.recruit1-interview-sp-nav {
  order: 4;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(20px, 3.8px + 4.78vw, 40px);
  padding: 0 20px;
}

.recruit1-interview-sp-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}
.recruit1-interview-sp-arrow::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-width: 2px 2px 0 0;
}
.recruit1-interview-sp-arrow--prev {
  background: transparent;
  border: 1px solid #0370b0;
}
.recruit1-interview-sp-arrow--prev::before {
  border-color: #0370b0;
  transform: rotate(-135deg);
  margin-left: 2px;
}
.recruit1-interview-sp-arrow--prev:hover {
  background: rgba(3, 112, 176, 0.1);
}
.recruit1-interview-sp-arrow--next {
  background: #0370b0;
  border: none;
}
.recruit1-interview-sp-arrow--next::before {
  border-color: #fff;
  transform: rotate(45deg);
  margin-right: 2px;
}
.recruit1-interview-sp-arrow--next:hover {
  background: rgb(2.1452513966, 80.0893854749, 125.8547486034);
}

.recruit1-interview-sp-counter {
  font-family: "Roboto", sans-serif;
  font-size: clamp(16px, 12.6px + 0.96vw, 20px);
  font-weight: 400;
  color: #0370b0;
}

.recruit1-why-section {
  background: #fff;
  padding: 0 20px 80px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .recruit1-why-section {
    padding: 60px 0 0;
  }
}

.recruit1-why-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 0;
}

.recruit1-why-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-why 50s linear infinite;
  animation-play-state: paused;
}
.recruit1-why-marquee-track.is-loaded {
  animation-play-state: running;
}

.recruit1-why-marquee-img {
  height: clamp(160px, 11vw, 200px);
  width: auto;
  padding-right: 60px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .recruit1-why-marquee-img {
    height: 100px;
    padding-right: 40px;
  }
}

@keyframes marquee-why {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recruit1-why-cards {
  background: #E7F2F9;
  max-width: 1440px;
  margin: clamp(-80px, -13.3px - 3.48vw, -40px) auto 0;
  padding: clamp(40px, 13.3px + 3.48vw, 80px) clamp(20px, -66.9px + 11.3vw, 150px) clamp(40px, 13.3px + 3.48vw, 80px);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .recruit1-why-cards {
    margin: -40px auto 0;
    padding: 40px 20px 50px;
    gap: 20px;
  }
}

.recruit1-why-card {
  background: #fff;
  padding: clamp(20px, 13.3px + 0.87vw, 30px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(10px, -10px + 2.61vw, 40px);
  align-items: start;
}
@media (max-width: 768px) {
  .recruit1-why-card {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
  }
}
.recruit1-why-card .recruit1-why-card-image {
  order: 2;
}
.recruit1-why-card .recruit1-why-card-content {
  order: 1;
}
@media (max-width: 768px) {
  .recruit1-why-card .recruit1-why-card-content {
    order: 1;
  }
  .recruit1-why-card .recruit1-why-card-image {
    order: 2;
  }
}

.recruit1-why-card-image {
  width: 100%;
  overflow: hidden;
}
.recruit1-why-card-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .recruit1-why-card-image {
    margin-bottom: 0;
    aspect-ratio: 33/18;
  }
  .recruit1-why-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.recruit1-why-card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.recruit1-why-card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(22px, 14px + 1.04vw, 34px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: #0370b0;
  margin: 0 0 clamp(15px, 8.3px + 0.87vw, 25px) clamp(-30px, -13.3px - 0.87vw, -20px);
  padding: 10px 0 15px clamp(20px, 13.3px + 0.87vw, 30px);
}
@media (max-width: 768px) {
  .recruit1-why-card-title {
    font-size: clamp(18px, 11.3px + 1.91vw, 26px);
    margin: 0 0 15px -20px;
    padding: 12px 20px 12px 20px;
  }
}

.recruit1-why-card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(16px, 14.7px + 0.17vw, 18px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #222222;
  margin: 0;
}
@media (max-width: 768px) {
  .recruit1-why-card-text {
    font-size: clamp(14px, 12.3px + 0.48vw, 16px);
  }
}

/**
 * Mixins
 *
 * @package TouwaNew
 */
.recruit-entry-section {
  position: relative;
  overflow: hidden;
  background: #0370b0;
  padding: 80px 0;
}
@media (max-width: 768px) {
  .recruit-entry-section {
    padding: 50px 0;
  }
}

.recruit-entry-bg {
  display: none;
}

.recruit-entry-container {
  position: relative;
  display: grid;
  grid-template-columns: 50vw 1fr;
}
@media (max-width: 768px) {
  .recruit-entry-container {
    display: block;
    min-height: auto;
  }
}

.recruit-entry-content {
  width: 100%;
  max-width: 720px;
  margin-left: auto;
  padding: 0 40px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  z-index: 10;
  min-height: 31.6960190379vw;
}
@media (max-width: 768px) {
  .recruit-entry-content {
    max-width: none;
    margin-left: 0;
    padding: 0 20px;
    min-height: auto;
  }
}

.recruit-entry-title {
  font-family: "Roboto", sans-serif;
  font-size: clamp(120px, 9vw, 170px);
  font-weight: 900;
  line-height: 100%;
  color: #0370b0;
  width: 45vw;
  padding: 10px 40px;
  margin-top: 0;
  margin-left: calc(-50vw + 100%);
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  text-align: right;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.recruit-entry-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  z-index: -1;
}
.recruit-entry-title.is-visible::before {
  transform: scaleX(1);
}
@media (max-width: 1200px) and (min-width: 769px) {
  .recruit-entry-title {
    margin-bottom: 15px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 1200px) and (min-width: 769px) and (orientation: portrait) {
  .recruit-entry-title {
    width: 49vw;
    font-size: clamp(80px, 10vw, 120px);
  }
}
@media (max-width: 768px) {
  .recruit-entry-title {
    width: auto;
    margin-left: -20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 60px;
    margin-bottom: 20px;
    text-align: left;
  }
}

.recruit-entry-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 1.5vw, 26px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #fff;
  margin-bottom: 40px;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .recruit-entry-text {
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 30px;
  }
}

.recruit-entry-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: auto;
  padding-left: 20px;
}
@media (max-width: 768px) {
  .recruit-entry-buttons {
    align-items: center;
    margin-top: 0;
    padding-left: 0;
  }
}

.recruit-entry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 350px;
  height: 70px;
  padding: 0;
  text-decoration: none;
  font-family: "Noto Sans JP", "Noto Sans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  text-align: center;
  transition: color 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 768px) {
  .recruit-entry-btn {
    width: 270px;
    height: 50px;
  }
}
.recruit-entry-btn .arrow,
.recruit-entry-btn .btn-arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: inherit;
  transition: color 0.3s ease;
  z-index: 2;
}
@media (max-width: 768px) {
  .recruit-entry-btn .arrow,
  .recruit-entry-btn .btn-arrow {
    right: 15px;
  }
}
.recruit-entry-btn--primary {
  background-color: #0BBBBE;
  color: #fff;
  border: 2px solid #fff;
}
.recruit-entry-btn--primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.recruit-entry-btn--primary:hover {
  color: #0BBBBE;
  border-color: #0BBBBE;
  text-decoration: none;
}
.recruit-entry-btn--primary:hover::before {
  transform: scaleX(1);
}
.recruit-entry-btn--outline {
  background-color: #fff;
  color: #0BBBBE;
  border: 2px solid #0BBBBE;
}
.recruit-entry-btn--outline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0BBBBE;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}
.recruit-entry-btn--outline:hover {
  color: #fff;
  border-color: #fff;
  text-decoration: none;
}
.recruit-entry-btn--outline:hover::before {
  transform: scaleX(1);
}

.recruit-entry-images {
  position: relative;
}
@media (max-width: 768px) {
  .recruit-entry-images--pc {
    display: none;
  }
}
.recruit-entry-images--sp {
  display: none;
}
@media (max-width: 768px) {
  .recruit-entry-images--sp {
    display: block;
    position: relative;
    margin-bottom: 0;
  }
}

.recruit-entry-image {
  position: absolute;
}
.recruit-entry-image img {
  width: 100%;
  height: auto;
  display: block;
}
.recruit-entry-image--staff {
  right: 0;
  top: 0;
  width: 50vw;
  z-index: 1;
}
.recruit-entry-image--staff img {
  aspect-ratio: 973/488;
  object-fit: cover;
}
.recruit-entry-images--sp .recruit-entry-image--staff {
  position: relative;
  left: 0;
  right: auto;
  width: 92vw;
  margin-left: -20px;
}
.recruit-entry-images--sp .recruit-entry-image--staff img {
  aspect-ratio: 9/5;
}
.recruit-entry-image--building {
  left: 2vw;
  transform: translateX(-50%);
  top: 13.7923946557vw;
  width: 31.5vw;
  z-index: 2;
}
@media (max-width: 1200px) and (min-width: 769px) {
  .recruit-entry-image--building {
    left: 10vw;
    width: 35vw;
    top: 20.5632065776vw;
  }
}
.recruit-entry-image--building img {
  aspect-ratio: 607/345;
  object-fit: cover;
}
.recruit-entry-images--sp .recruit-entry-image--building {
  position: relative;
  left: auto;
  right: 0;
  top: -30px;
  transform: none;
  width: 72.5vw;
  margin-left: auto;
  margin-right: -20px;
}
.recruit-entry-images--sp .recruit-entry-image--building img {
  aspect-ratio: 283/155;
}

/**
 * Partner Section Styles
 *
 * @package TouwaNew
 */
/**
 * Variables
 *
 * @package TouwaNew
 */
.partner-section {
  position: relative;
  z-index: 10;
  padding: 80px 0;
  background-color: #fff;
  border-top: 1px solid #cccccc;
}
@media (max-width: 768px) {
  .partner-section {
    padding: 40px 0;
  }
}
.partner-section .partner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .partner-section .partner-container {
    padding: 0 20px;
  }
}
.partner-section .partner-banners {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 768px) {
  .partner-section .partner-banners {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media (max-width: 480px) {
  .partner-section .partner-banners {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.partner-section .partner-banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}
.partner-section .partner-banner-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.partner-section .partner-banner-item img {
  max-width: 260px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.recruit-entry-image.animate-on-scroll {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}
.recruit-entry-image.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.recruit-entry-image--building.animate-on-scroll {
  transform: translateX(-50%);
}
.recruit-entry-image--building.animate-on-scroll.is-visible {
  transform: translateX(-50%);
}

.recruit-entry-title.animate-on-scroll {
  transition-delay: 0s;
}

.recruit-entry-text.animate-on-scroll {
  transition-delay: 0.15s;
}

.recruit-entry-buttons.animate-on-scroll {
  transition-delay: 0.3s;
}

.recruit-entry-image--staff.animate-on-scroll {
  transition-delay: 0.2s;
}

.recruit-entry-image--building.animate-on-scroll {
  transition-delay: 0.4s;
}

body.page-recruit1 .site-header {
  background: rgba(255, 255, 255, 0.9) !important;
}
body.page-recruit1 .site-header .menu-item-recruit {
  background-color: rgba(11, 187, 190, 0.9) !important;
}
body.page-recruit1 .site-header .menu-item-recruit:hover {
  background-color: rgba(9, 150, 152, 0.9) !important;
}
body.page-recruit1 .site-header .menu-item-contact {
  background-color: rgba(255, 255, 255, 0.9) !important;
}
body.page-recruit1 .site-header .menu-item-contact:hover {
  background-color: rgba(230, 230, 230, 0.9) !important;
}

/*# sourceMappingURL=style.css.map */
