@charset "UTF-8";
/*     フェードイン    */
.fadeIn {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.fadeIn-up {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, 50px);
}

.fadeIn-down {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(0, -80px);
}

.fadeIn-left {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(-50px, 0);
}

.fadeIn-right {
  opacity: 0;
  transition-delay: 100ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
  transform: translate(50px, 0);
}

/*     スライドイン    */
.slideIn {
  opacity: 0;
  transition-delay: 0ms;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.23, 0.76, 0.73, 0.97);
}

.slideIn-up {
  opacity: 1;
  transform: translate(0, 80px);
}

.slideIn-down {
  opacity: 1;
  transform: translate(0, -80px);
}

.slideIn-left {
  opacity: 1;
  transform: translate(-80px, 0);
}

.slideIn-right {
  opacity: 1;
  transform: translate(80px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0);
}

.list-scroll > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}

.list-scroll > *.scroll-in {
  opacity: 1;
  transform: translateY(0);
}

/*-------------------------------------*/
/* mv                                  */
/*-------------------------------------*/
.mv {
  padding: 400px 0 80px;
  background: url("../img/recruit/mv_bg.png") no-repeat center/cover;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1080px) {
  .mv {
    padding: 200px 0 50px;
  }
}
@media screen and (max-width: 640px) {
  .mv {
    padding: 59vw 0 6vw;
    background: url("../img/recruit/mv_bg_sp.png") no-repeat center/cover;
  }
}
.mv__inner {
  width: min(90%, 1800px);
  margin: 0 auto;
}
.mv__ttl {
  overflow: hidden;
}
.mv__ttl strong {
  display: inline-block;
  font-size: 72px;
  font-weight: 600;
  padding: 0 10px;
  background-color: var(--color-white);
  overflow: hidden;
  transform: translate3d(-101%, 0, 0);
}
@media screen and (max-width: 1080px) {
  .mv__ttl strong {
    font-size: 42px;
  }
}
@media screen and (max-width: 640px) {
  .mv__ttl strong {
    font-size: 6.5vw;
  }
}
.mv__ttl strong:not(:last-child) {
  margin-bottom: 7px;
}
@media screen and (max-width: 640px) {
  .mv__ttl strong:not(:last-child) {
    margin-bottom: 1.5vw;
  }
}
.mv__ttl span {
  display: inline-block;
  transform: skewX(-5deg);
  background: linear-gradient(235deg, #d4383b 0%, #7f1a28 66%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transform: translate3d(101%, 0, 0);
}
.mv__note {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.08em;
  position: absolute;
  top: 3%;
  left: 2%;
}
@media screen and (max-width: 1080px) {
  .mv__note {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .mv__note {
    font-size: 3vw;
  }
}
.mv.loaded .mv__ttl strong {
  -webkit-animation: 1.2s forwards mvSentenceAnimation cubic-bezier(0.44, 0.45, 0.17, 0.96);
          animation: 1.2s forwards mvSentenceAnimation cubic-bezier(0.44, 0.45, 0.17, 0.96);
}
.mv.loaded .mv__ttl strong:nth-of-type(1), .mv.loaded .mv__ttl strong:nth-of-type(1) span {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
.mv.loaded .mv__ttl strong:nth-of-type(2), .mv.loaded .mv__ttl strong:nth-of-type(2) span {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.mv.loaded .mv__ttl strong:nth-of-type(3), .mv.loaded .mv__ttl strong:nth-of-type(3) span {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}
.mv.loaded .mv__ttl span {
  -webkit-animation: 1.2s forwards mvSpanAnimation cubic-bezier(0.44, 0.45, 0.17, 0.96);
          animation: 1.2s forwards mvSpanAnimation cubic-bezier(0.44, 0.45, 0.17, 0.96);
}
@-webkit-keyframes mvSentenceAnimation {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes mvSentenceAnimation {
  0% {
    transform: translate3d(-100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@-webkit-keyframes mvSpanAnimation {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}
@keyframes mvSpanAnimation {
  0% {
    transform: translate3d(100%, 0, 0);
  }
  100% {
    transform: translate3d(0%, 0, 0);
  }
}

/*-------------------------------------*/
/* lead                                */
/*-------------------------------------*/
.lead {
  position: relative;
  overflow-y: hidden;
  background: url("../img/recruit/lead_bg.jpg") no-repeat center/cover;
}
@media screen and (max-width: 640px) {
  .lead {
    background: url("../img/recruit/lead_bg_sp.jpg") no-repeat center/cover;
  }
}
.lead__deco-txt {
  font-size: 100px;
  white-space: nowrap;
  position: absolute;
  top: -0.4em;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #cc001c 0%, #fff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  opacity: 0.2;
}
@media screen and (max-width: 640px) {
  .lead__deco-txt {
    font-size: 72px;
  }
}
.lead__ttl {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
  background: linear-gradient(215deg, #d4383b 0%, #7f1a28 66%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
@media screen and (max-width: 640px) {
  .lead__ttl {
    font-size: 32px;
    margin-bottom: 24px;
  }
}
.lead__txt {
  font-size: 18px;
  line-height: 1.6;
}
@media screen and (max-width: 640px) {
  .lead__txt {
    font-size: 16px;
    text-align: left;
  }
}
.lead__txt p:not(:last-child) {
  margin-bottom: 1.5em;
}
@media screen and (max-width: 640px) {
  .lead__txt p:not(:last-child) {
    margin-bottom: 1em;
  }
}

/*-------------------------------------*/
/* message                             */
/*-------------------------------------*/
.message {
  padding: 70px 0;
  color: var(--color-white);
  background: url("../img/recruit/message_bg.jpg") no-repeat center/cover;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .message {
    padding: 40px 0 50px;
  }
}
.message .inner {
  position: relative;
}
.message__en-txt {
  font-size: 100px;
  line-height: 1;
  position: absolute;
  right: -210px;
  top: -0.9em;
  opacity: 0.3;
}
@media screen and (max-width: 640px) {
  .message__en-txt {
    font-size: 72px;
    right: -1em;
    top: -0.7em;
  }
}
.message__flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-top: 12px;
}
@media screen and (max-width: 765px) {
  .message__flex {
    flex-direction: column;
    margin-top: 50px;
  }
}
.message__ttl {
  font-size: 15px;
}
.message__ttl::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: var(--color-white);
  vertical-align: middle;
  margin-right: 5px;
}
.message__lead {
  color: var(--color-primary);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 640px) {
  .message__lead {
    font-size: 24px;
  }
}
.message__lead span {
  padding: 0 10px;
  background-color: var(--color-white);
  line-height: 1.6;
}
.message__txt {
  margin-bottom: 20px;
}
.message__name {
  font-size: 18px;
}
@media screen and (max-width: 640px) {
  .message__name {
    font-size: 16px;
  }
}
.message iframe {
  width: 56%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 765px) {
  .message iframe {
    width: 100%;
  }
}

/*-------------------------------------*/
/* feature                             */
/*-------------------------------------*/
.feature__card-wrap {
  display: flex;
  gap: 60px 20px;
  flex-wrap: wrap;
  padding-top: 40px;
}
@media screen and (max-width: 640px) {
  .feature__card-wrap {
    gap: 37px;
    padding-top: 30px;
  }
}
.feature__card {
  width: calc((100% - 40px) / 3);
  padding: 56px 24px 30px;
  background-color: var(--bg-pink);
  position: relative;
}
@media screen and (max-width: 765px) {
  .feature__card {
    width: calc((100% - 40px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .feature__card {
    width: 100%;
    padding: 42px 15px 22px;
  }
}
.feature__card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 15px;
  border-radius: 50px;
  background-color: var(--color-primary);
  position: absolute;
  top: -2.5em;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 640px) {
  .feature__card-icon-wrap {
    width: 60px;
    height: 60px;
    padding: 10px;
    top: -1.8em;
  }
}
.feature__card-ttl {
  color: var(--color-primary);
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.feature__card-list {
  font-size: 15px;
  font-weight: 400;
}
@media screen and (max-width: 640px) {
  .feature__card-list {
    font-size: 14px;
  }
}
.feature__card-list li:not(:last-child) {
  margin-bottom: 6px;
}

/*-------------------------------------*/
/* teacher                             */
/*-------------------------------------*/
.teacher {
  background: var(--bg-pink) url("../img/recruit/teacher_bg.jpg") no-repeat bottom/contain;
}
.teacher__card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.teacher__card {
  width: calc((100% - 30px) / 2);
  background-color: var(--color-white);
}
@media screen and (max-width: 765px) {
  .teacher__card {
    width: 100%;
  }
}
.teacher iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16/9;
}
.teacher__txt-wrap {
  display: block;
  padding: 18px 24px;
  font-weight: 400;
  position: relative;
}
.teacher__txt-wrap::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  background: var(--color-primary) url("../img/common/btn_arw_white.svg") no-repeat center/50% 50%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .teacher__txt-wrap::after {
    width: 32px;
  }
}
.teacher__txt-wrap:hover {
  text-decoration: underline;
}
.teacher__card-ttl {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.teacher__position {
  color: var(--color-gray);
}
/*# sourceMappingURL=recruit.css.map */