@charset "UTF-8";
/* 基本のスタイル */
/* line 5, delighters.scss */
.delighter {
  transition: all .5s ease;
  opacity: 0;
  /* スタート時のスタイル */
  /* エンド時のスタイル */
  /* .delighter/E */
}
/* line 9, delighters.scss */
.delighter.started {
  transform: none;
  opacity: 1;
}
/* line 17, delighters.scss */
.delighter.right {
  transform: translate(-35%);
  opacity: 0;
  transition: all 1s ease;
}
/* line 21, delighters.scss */
.delighter.right.started {
  transform: translate(0%);
  opacity: 1;
}
/* line 26, delighters.scss */
.delighter.left {
  transform: translate(35%);
  opacity: 0;
  transition: all 1s ease;
}
/* line 31, delighters.scss */
.delighter.left.started {
  transform: translate(0%);
  opacity: 1;
}
/* line 36, delighters.scss */
.delighter.bottom {
  transform: translateY(25%);
  opacity: 0;
  transition: all 1s ease;
}
/* line 41, delighters.scss */
.delighter.bottom.started {
  transform: translate(0%);
  opacity: 1;
}

/*========== other page css ==========*/
/* line 50, delighters.scss */
#main_contents .course li {
  transition: all 0.5s ease;
}
/* line 52, delighters.scss */
#main_contents .course li + li {
  transition: all 1s ease;
}
/* line 54, delighters.scss */
#main_contents .course li + li + li {
  transition: all 1.5s ease;
}
/* line 60, delighters.scss */
#main_contents .sec_01 .point_02 ul li {
  transition: all 0.7s ease;
}
/* line 62, delighters.scss */
#main_contents .sec_01 .point_02 ul li:nth-of-type(2n) {
  transition: all 1.2s ease;
}
@media print, screen and (max-width: 768px) {
  /* line 66, delighters.scss */
  #main_contents .sec_01 .point_02 ul li:nth-of-type(2n) {
    transition: all 0.9s ease;
  }
}
/* line 74, delighters.scss */
#main_contents .student_voice .voice_list li p {
  transition: all 0.5s ease;
}
/* line 77, delighters.scss */
#main_contents .student_voice .voice_list li dl {
  transition: all 1.2s ease;
}
