@charset "utf-8";
/*=====  instructor =====*/
.instructor {
  width: 100vw;
  height: auto;
  padding: 80px 20px 0;
  margin-bottom: 0;
}
.instructor h2 {
  margin-bottom: 100px;
}
.instructor h3 {
  margin-bottom: 60px;
}
.split__img {
  filter: blur(30px);
  opacity: 0;
  background-position: center;
  transition: filter 0.2s ease, opacity 0.2s ease, background-position 0.3s ease;
}
.split.active .split__img {
  opacity: 1;
  background-position: 50% 50%;
  filter: blur(0);
}
.split__img img {
  max-width: 330px;
}
.instructor h4 {
  margin: 60px auto;
}
.instructor_name {
  font-size: 2rem;
}
.instructor_title {
  font-size: 1.8rem;
  border-bottom: 3px solid #eeabc4;
  display: list-item;
}
.instructor_title-link {
  padding-bottom: 40px;
  font-size: 1.8rem;
}
.instructor_title-link a {
  color: #eeabc4;
  text-shadow: 1.3px 1.3px #c63c62;
}
.instructor_description {
  width: 100%;
  padding-bottom: 80px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .instructor {
    padding: 200px 0 0;
  }
  .instructor h2 {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .instructor h4 {
    margin: 0 0 60px;
    text-align: left;
  }
  .instructor .background {
    display: table;
    position: inherit;
    width: 100%;
    height: 100vh;
  }
  .js-fix.is-fixed {
    position: fixed;
  }
  .split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    position: relative;
    z-index: 2;
  }
  .split-item {
    display: table-cell;
    padding: 80px;
    width: 50%;
    height: 100vh;
    text-align: center;
    position: sticky;
    top: 0;
  }
  .split__img img {
    margin-top: 60px;
  }
  .split__img {
    height: 100vh;
    mix-blend-mode: multiply;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .split__img {
    transition: filter 0.6s ease, opacity 0.6s ease, background-position 0.8s ease;
  }
  .split__body {
    width: 50%;
    display: flex;
    padding: 0 80px 0 0;
    align-items: center;
    position: relative;
    z-index: 100;
  }
  .instructor_title {
    text-align: left;
  }
  .split__text {
    padding-bottom: 250px;
  }
  .split__text p {
    text-align: left;
  }
}