@charset "UTF-8";
@keyframes pageTopShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, -5px) rotateZ(5deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, -5px) rotateZ(-5deg);
  }
}
@keyframes iconShake {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(0px, 0px) rotateZ(8deg);
  }
  50% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  75% {
    transform: translate(0px, 0px) rotateZ(-8deg);
  }
}
/*
@keyframes logoshake{
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    10% {transform: translate(0px, 0px) rotateZ(8deg)}
    20% {transform: translate(0px, 0px) rotateZ(0deg)}
    30% {transform: translate(0px, 0px) rotateZ(-5deg)}
    40% {transform: translate(0px, 0px) rotateZ(0deg)}
    50% {transform: translate(0px, 0px) rotateZ(5deg)}
    60% {transform: translate(0px, 0px) rotateZ(0deg)}
    70% {transform: translate(0px, 0px) rotateZ(-2deg)}
    80% {transform: translate(0px, 0px) rotateZ(0deg)}
    90% {transform: translate(0px, 0px) rotateZ(2deg)}
}
@keyframes topIllustShake{
    0% {transform: translate(0px, 0px) rotateZ(0deg)}
    25% {transform: translate(0px, 0px) rotateZ(5deg)}
    50% {transform: translate(0px, 0px) rotateZ(0deg)}
    75% {transform: translate(0px, 0px) rotateZ(-5deg)}
}
*/
.instructor-new-wrap {
  justify-content: flex-start !important;
}

.instructor-new-item {
  margin: 0 20px 0 0;
}
.instructor-new-item:last-child {
  margin: 0;
}
@media screen and (min-width: 640px) {
  .instructor-new-item {
    margin: 0 40px 0 0;
  }
}

.float-none {
  float: none !important;
  margin: 30px 0 !important;
}

.float-none-center {
  float: none !important;
  margin: 10px 0 !important;
}

.interview-title {
  margin: 30px 0 18px 0;
  color: #1a73e8;
}

.interview-title-first {
  margin: 0px 0 18px 0;
  color: #1a73e8;
}

.studio-bottom {
  margin: 30px 10px 0 10px;
  padding: 30px 0 0 0;
  border-top: 1px solid #333;
}
@media screen and (min-width: 640px) {
  .studio-bottom {
    margin: 80px auto 0 auto;
    padding: 80px 0 0 0;
  }
}

.lesson-movie {
  padding: 50px 0 30px 0;
  position: relative;
}
.lesson-movie:before {
  display: block;
  position: absolute;
  content: "";
  top: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  width: 0px;
  height: 0px;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 20px solid #000;
}
@media screen and (min-width: 640px) {
  .lesson-movie {
    padding: 100px 0 70px 0;
    position: relative;
  }
  .lesson-movie:before {
    display: block;
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    right: 0px;
    margin: auto;
    width: 0px;
    height: 0px;
    border-left: 60px solid transparent;
    border-right: 60px solid transparent;
    border-top: 40px solid #000;
  }
}

.lesson-movie-inner h2 {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 640px) {
  .lesson-movie-inner h2 {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: 0.1rem;
  }
}

.video-container {
  position: relative;
  display: inline-block;
  margin: 30px 0 0 0;
}
@media screen and (min-width: 640px) {
  .video-container {
    position: relative;
    display: inline-block;
    margin: 50px 0 0 0;
  }
}

.video-wrapper {
  position: relative;
  display: inline-block;
  max-width: 300px;
  margin: 0 auto;
}

/* 黒いオーバーレイ */
.video-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  border-radius: 10px; /* video の border-radius に合わせる */
  transition: opacity 0.3s;
  pointer-events: none; /* クリックを通す */
}

.video-wrapper.playing::before {
  opacity: 0; /* 再生中は非表示 */
}

/* video に border をつけてもズレない */
#video {
  display: block;
  width: 100%;
  border: 5px solid #000;
  border-radius: 10px;
  box-sizing: border-box; /* ボーダーを含めたサイズ計算 */
}

#playButton {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.3s;
}/*# sourceMappingURL=new-style.css.map */