@charset "UTF-8";
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", sans-serif;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

/*------------------------------
共通パーツ
------------------------------*/
.wrapper {
  max-width: 800px;
  margin-inline: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

.section__title {
  font-size: 2.8rem;
  padding-bottom: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.section__title::after {
  position: absolute;
  content: "";
  width: 8rem;
  border-bottom: 3px solid #333333;
  bottom: 0;
  left: calc(50% - 4rem);
}
.section__title.-entry {
  margin-bottom: 0;
  padding-bottom: 0;
}
.section__title.-entry::after {
  display: none;
}

@media screen and (min-width: 900px), print {
  .section__title {
    margin-bottom: 80px;
  }
}
/*------------------------------
header
------------------------------*/
#header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#header .site-title {
  padding-top: 25px;
  height: 60px;
}
#header .site-title img {
  padding-left: 4rem;
  width: 150px;
  height: auto;
}

@media screen and (min-width: 900px), print {
  #header .site-title {
    padding-top: 50px;
  }
  #header .site-title img {
    padding-left: 7rem;
  }
}
/*------------------------------
ハンバーガーメニュー
------------------------------*/
#gnav {
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 25px;
  color: white;
  margin: 0 auto;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 20;
  opacity: 0;
}
#gnav a {
  color: white;
  font-weight: bold;
  font-size: 1.6rem;
}
#gnav li {
  margin-bottom: 14px;
}
#gnav .btn__application {
  position: relative;
  border: 1px solid #FFFFFF;
  padding: 10px 20px;
  width: 250px;
  margin: 0 auto;
  margin-top: 40px;
  text-align: center;
}
#gnav .btn__application::before {
  position: absolute;
  content: "";
  border-bottom: 1px solid #FFFFFF;
  border-right: 1px solid #FFFFFF;
  bottom: -5px;
  right: -5px;
  width: 245px;
  height: 40px;
}
#gnav .btn__application:hover {
  background-color: #FFFFFF;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
#gnav .btn__application:hover a {
  color: #FF2A2A;
}

@media screen and (min-width: 900px), print {
  #gnav {
    padding-top: 50px;
  }
}
.open .site-title {
  display: none;
}

.open #gnav {
  opacity: 1;
}
.open #gnav img {
  padding-left: 4rem;
  width: 150px;
  height: auto;
}

@media screen and (min-width: 900px), print {
  .open #gnav img {
    padding-left: 7rem;
  }
}
.hamburger__btn {
  width: 75px;
  height: 75px;
  background-color: #FF2A2A;
  position: relative;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
  position: fixed;
  right: 0;
}
.hamburger__btn .hamburger__line {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  background-color: #FFFFFF;
  border-radius: 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.hamburger__btn .hamburger__line:nth-child(1) {
  top: 25px;
  left: 20px;
}
.hamburger__btn .hamburger__line:nth-child(2) {
  bottom: 20px;
  left: 20px;
}
.hamburger__btn .hamburger__line:nth-child(3) {
  top: 40px;
  left: 20px;
}

@media screen and (min-width: 900px), print {
  .hamburger__btn {
    width: 100px;
    height: 100px;
  }
  .hamburger__btn .hamburger__line {
    width: 50px;
    height: 2px;
  }
  .hamburger__btn .hamburger__line:nth-child(1) {
    top: 30px;
    left: 25px;
  }
  .hamburger__btn .hamburger__line:nth-child(2) {
    bottom: 30px;
    left: 25px;
  }
  .hamburger__btn .hamburger__line:nth-child(3) {
    top: 50px;
    left: 25px;
  }
}
.open .gnav__list {
  width: 100vw;
  margin: 0 auto;
  text-align: center;
}

#mask {
  display: none;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FF2A2A;
  z-index: 10;
  cursor: pointer;
}

.open .hamburger__btn .hamburger__line {
  background-color: white;
}
.open .hamburger__line:nth-child(1) {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
.open .hamburger__line:nth-child(3) {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
.open .hamburger__line:nth-child(2) {
  display: none;
}

@media screen and (min-width: 900px), print {
  .open .hamburger__line:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg);
  }
  .open .hamburger__line:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(-45deg);
    transform: translateY(-10px) rotate(-45deg);
  }
  .open .hamburger__line:nth-child(2) {
    display: none;
  }
}
/*------------------------------
mainvisual
------------------------------*/
#mainvisual {
  margin-top: 75px;
  height: 490px;
  position: relative;
}
#mainvisual .slider .slider__item {
  width: 100%;
  opacity: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: fade 15s infinite;
  animation: fade 15s infinite;
}
#mainvisual .slider .slider__item:nth-child(2) {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}
#mainvisual .slider .slider__item:nth-child(3) {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}
#mainvisual .slider .slider__item::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  -webkit-box-shadow: inset 0 0 10px 15px #FFFFFF;
          box-shadow: inset 0 0 10px 15px #FFFFFF;
}
#mainvisual .slider .slider__item img {
  width: 100%;
  height: 300px;
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}
#mainvisual .main__text {
  width: 100%;
  padding: 0 1.5rem;
  font-size: 2.8rem;
  font-weight: bold;
  position: absolute;
  bottom: 0;
}
#mainvisual .main__text p {
  text-shadow: 0 5px 10px #FFFFFF;
}
#mainvisual .main__text .btn__register {
  display: block;
  width: 100%;
  margin-top: 15px;
  border: 1px #FF0033 solid;
  border-radius: 5px;
  background-color: #FF0033;
  padding: 2rem 6rem;
  text-align: center;
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: normal;
  position: relative;
  -webkit-box-shadow: 0 10px 0 0 #7A051C;
          box-shadow: 0 10px 0 0 #7A051C;
}
#mainvisual .main__text .btn__register::after {
  content: "";
  width: 16px;
  height: 16px;
  margin-top: -5px;
  border-top: solid 3px #FFFFFF;
  border-right: solid 3px #FFFFFF;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 3px);
  right: 5%;
}
#mainvisual .main__text .btn__register:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media screen and (min-width: 900px), print {
  #mainvisual {
    height: 720px;
    margin-top: 50px;
    position: relative;
  }
  #mainvisual .slider .slider__item {
    max-height: 720px;
    max-width: 75%;
    position: absolute;
    top: 0;
    left: 25%;
  }
  #mainvisual .slider .slider__item img {
    height: 700px;
  }
  #mainvisual .main__text {
    position: absolute;
    top: 40%;
    padding-left: 13rem;
    font-size: 4.5rem;
    font-weight: bold;
    z-index: 9;
  }
  #mainvisual .main__text .btn__register {
    margin-top: 30px;
    width: 44rem;
    padding: 2rem 12rem;
  }
}
/*------------------------------
reason
------------------------------*/
#reason {
  margin-top: 90px;
}
#reason .container {
  max-width: 100%;
  background-color: #FF2A2A;
  padding: 4rem 0;
}
#reason .container .reason__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
  padding: 3rem;
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
}
#reason .container .reason__content:nth-child(1) {
  margin-top: 0;
}
#reason .container .reason__content.-right {
  margin-right: 2rem;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  -webkit-transform: translateX(calc(-50vw - 50%));
          transform: translateX(calc(-50vw - 50%));
}
#reason .container .reason__content.-right.inview {
  opacity: 1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#reason .container .reason__content.-right .reason__img {
  width: 8rem;
  height: auto;
}
#reason .container .reason__content.-left {
  margin-left: 2rem;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  -webkit-transform: translateX(calc(50vw + 50%));
          transform: translateX(calc(50vw + 50%));
}
#reason .container .reason__content.-left.inview {
  opacity: 1;
  -webkit-transition: 1.5s;
  transition: 1.5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
#reason .container .reason__content.-left .reason__img {
  width: 6rem;
  height: auto;
}
#reason .container .reason__content .reason__text {
  padding-left: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#reason .container .reason__content .reason__text .heading {
  font-size: 2.4rem;
  font-weight: bold;
  color: #FF2A2A;
}
#reason .container .reason__content .reason__text .supplement {
  font-size: 1.8rem;
  color: #333333;
}

@media screen and (min-width: 900px), print {
  #reason .container {
    padding: 8rem 0;
  }
  #reason .container .reason__content {
    width: 50%;
    padding: 7rem 3rem;
  }
  #reason .container .reason__content.-right {
    margin-right: auto;
  }
  #reason .container .reason__content.-left {
    margin-left: auto;
  }
}
/*------------------------------
voice
------------------------------*/
#voice {
  margin-top: 75px;
}
#voice .voice__content {
  text-align: center;
  margin-top: 50px;
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
#voice .voice__content.fadein {
  opacity: 1;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
#voice .voice__content.-first {
  margin-top: 0;
}
#voice .voice__content .voice__text {
  position: relative;
  display: inline-block;
  padding: 2rem;
  max-width: 100%;
  color: #333333;
  background-color: #E9F1FB;
  font-size: 1.6rem;
  border-radius: 20px;
  text-align: left;
}
#voice .voice__content .voice__text::before {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 10px);
  border: 1rem solid transparent;
  border-top: 1rem solid #E9F1FB;
}
#voice .voice__content .voice__profile {
  margin-top: 20px;
}
#voice .voice__content .voice__profile img {
  display: block;
  margin: 0 auto;
  border-radius: 50%;
  width: 25%;
  height: 25%;
  background-color: #E8E8E8;
}
#voice .voice__content .voice__profile .profile__name {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}

@media screen and (min-width: 900px), print {
  #voice .voice__content {
    margin-top: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #voice .voice__content.-first {
    margin-top: 0;
    padding-right: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #voice .voice__content.-first .voice__text::before {
    top: 60%;
    left: -4%;
    border-right: 1rem solid #E9F1FB;
  }
  #voice .voice__content.-second {
    padding-left: 100px;
  }
  #voice .voice__content.-second .voice__text::before {
    top: 60%;
    left: 100%;
    border-left: 1rem solid #E9F1FB;
  }
  #voice .voice__content.-third {
    padding-right: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  #voice .voice__content.-third .voice__text::before {
    top: 60%;
    left: -4%;
    border-right: 1rem solid #E9F1FB;
  }
  #voice .voice__content .voice__profile {
    margin-top: 0;
    margin: auto;
  }
  #voice .voice__content .voice__profile img {
    width: 50%;
    height: 50%;
  }
}
/*------------------------------
outline
------------------------------*/
#outline {
  margin-top: 75px;
  padding-bottom: 60px;
  background-image: url(./images/bg.gif);
  -webkit-animation: fall 10s infinite linear;
          animation: fall 10s infinite linear;
}
@-webkit-keyframes fall {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -700px 700px;
  }
}
@keyframes fall {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -700px 700px;
  }
}
#outline .section__title {
  padding-top: 60px;
}
#outline .content {
  border: 1px solid #FFFFFF;
  background-color: #FFFFFF;
  margin-top: 30px;
  max-width: 100%;
  border-radius: 20px;
  padding: 3rem;
}
#outline .content.-lesson {
  margin-top: 0;
}
#outline .content .content__title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
#outline .content .content__title p {
  font-size: 1.6rem;
  margin-top: 2rem;
}
#outline .content .content__text {
  text-align: left;
  font-size: 1.6rem;
  margin-top: 3rem;
}

@media screen and (min-width: 900px), print {
  #outline {
    margin-top: 120px;
  }
  #outline .wrapper .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #outline .wrapper .container.-down {
    margin-top: 30px;
  }
  #outline .wrapper .container .content {
    margin-top: 0;
  }
  #outline .wrapper .container .content.-lesson, #outline .wrapper .container .content .-teacher {
    margin-right: 30px;
  }
  #outline .wrapper .container .content.-price, #outline .wrapper .container .content.-faq {
    margin-left: 30px;
  }
}
/*------------------------------
entry
------------------------------*/
#entry {
  margin: 75px 0;
}
#entry .wrapper {
  margin-top: 10px;
  text-align: center;
}
#entry .wrapper .entry__text {
  color: #333333;
  font-size: 1.6rem;
}
#entry .wrapper .btn__entry {
  margin-top: 60px;
  width: 100%;
  padding: 2rem 0;
  border: 3px solid #FF2A2A;
  background-color: #FF2A2A;
  border-radius: 100px;
}
#entry .wrapper .btn__entry a {
  color: #FFFFFF;
  font-size: 2.4rem;
  font-weight: bold;
}
#entry .wrapper .btn__entry:hover {
  background-color: #FFFFFF;
}
#entry .wrapper .btn__entry:hover a {
  color: #FF2A2A;
}

@media screen and (min-width: 900px), print {
  #entry {
    margin: 120px 0;
  }
}
/*------------------------------
footer
------------------------------*/
#footer {
  padding-top: 30px;
  background-color: #E8E8E8;
}
#footer .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .wrapper .menu {
  width: 50%;
  margin-top: 30px;
}
#footer .wrapper .menu .menu__title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
}
#footer .wrapper .menu .menu__list {
  font-size: 1.2rem;
  font-weight: normal;
  padding-left: 1rem;
}
#footer .wrapper .menu .menu__list li {
  margin-top: 7px;
}
#footer .wrapper .menu .menu__list li:nth-child(1) {
  margin-top: 14px;
}
#footer .wrapper .menu .menu__list a {
  color: #333333;
}
#footer .wrapper .menu .menu__list a:hover {
  opacity: 0.7;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#footer .copyright {
  margin-top: 60px;
  padding-bottom: 20px;
  text-align: center;
  font-size: 1rem;
  color: #333333;
}

@media screen and (min-width: 900px), print {
  #footer .wrapper .menu {
    width: 25%;
  }
}/*# sourceMappingURL=style.css.map */