@charset "UTF-8";

/* =============================================
Base Set
============================================= */
* {
  box-sizing: border-box;
}
html {
  font-size: 62.5%; /*--rem表記用--*/
}
body {
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', 'Noto Sans JP', sans-serif, 'ヒラギノ角ゴ ProN W3', 'Hiragino Sans', 'Hiragino Kaku Gothic Pro', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', HelveticaNeue, Roboto, Verdana, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-feature-settings: "palt" 1;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
  width: 100%;
  overflow-x: hidden;
}

*[animation] {
  opacity: 0;
}

.wrapper{
  width: 100%;
  position: relative;
  overflow: hidden;
  background: url(../img/main-visual_bg_01.png) center top no-repeat #fcfcfc;
  background-size: 1280px 830px;
}
@media screen and (min-width:1280px) {
  .wrapper::before,
  .wrapper::after {
    width: 100px;
    height: 830px;
    content: '';
    display: block;
    filter: blur(15px);
    position: absolute;
    top: 0;
    left: 50%;
    background: #fff;
    z-index: 1;
  }
  .wrapper::before {
    margin-left: -690px;
  }
  .wrapper::after {
    margin-left: 590px;
  }
}
.inner {
  width: 100%;
  padding: 0 8%;
}
@media screen and (min-width:768px) {
  .inner {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1280px) {
  .inner {
    padding: 0;
  }
}


/* -------------------------------------
Img
------------------------------------- */
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

/* -------------------------------------
Link
------------------------------------- */
a {
  transition: all .3s ease;
}
*:focus {
  outline: none;
}
@media screen and (min-width:768px) {
  a:hover {
    opacity: .7;
  }
}


/* -------------------------------------
Common
------------------------------------- */
/* ---hidden--- */
.only-sp {
  display: block !important;
}
.only-tab {
  display: none !important;
}
.only-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .only-sp {
    display: none !important;
  }
  .only-tab {
    display: block !important;
  }
  .only-pc {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .only-sp {
    display: none !important;
  }
  .only-tab {
    display: none !important;
  }
  .only-pc {
    display: block !important;
  }
}

/* -------------------------------------
Compornent
------------------------------------- */
/* btn */
.btn-entry {
  width: 78%;
  max-width: 280px;
  display: block;
  margin: 0 auto;
}

/* swiper customize */
.swiper {
  padding-bottom: 40px;
}
.swiper-pagination {
  height: 14px;
  bottom: 0;
}
.swiper-pagination-bullet {
  width: 16px;
  height: 14px;
  vertical-align: top;
  background: url(../img/ico_pad_02.png) left top no-repeat;
  background-size: 16px 14px;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background: url(../img/ico_pad_01.png) left top no-repeat;
  background-size: 16px 14px;
}
@media screen and (min-width:768px) {
  .swiper {
    max-width: 1026px;
    padding-bottom: 60px;
  }
  .swiper-pagination {
    height: 28px;
  }
  .swiper-pagination-bullet {
    width: 32px;
    height: 28px;
    background-size: 32px 28px;
  }
  .swiper-pagination-bullet-active {
    background-size: 32px 28px;
  }
}

/* -------------------------------------
Header
------------------------------------- */
.header-logo {
  width: 130px;
  padding-top: 6%;
}

@media screen and (min-width:768px) {
  .header .inner {
    padding: 0;
  }
}
@media screen and (min-width:1280px) {
  .header-logo {
    padding-top: 15px;
    position: relative;
    z-index: 5;
  }
  .header .inner {
    width: 1230px;
    max-width: none;
    margin: 0 auto;
  }
}

/* -------------------------------------
Main
------------------------------------- */

/* main-visual
------------------------------------- */
.main-visual {
  padding-top: 12%;
  padding-bottom: 21%;
}
.main-visual__logo {
  width: 81.46%;
  max-width: 275px;
  margin: 0 auto 10px;
  animation: mv-fadeIn 1s ease-in;
}
@keyframes mv-fadeIn {
  0%{
    opacity: 0;
    transform: scale(0.6);
  }
  100%{
    opacity: 1;
    transform: scale(1);
  }
}
.main-visual__title {
  padding: 14px 0;
  margin: 0 auto 80%;
  background: #e40057;
}
.main-visual__title img {
  width: 79.6%;
  max-width: 310px;
  margin: 0 auto;
  animation: rubberBand 1s ease-in;
  animation-delay: .5s;
}
.main-visual__text {
  width: 77.6%;
  max-width: 600px;
  margin: 0 auto 9%;
}
@media screen and (min-width:500px) {
  .main-visual {
    padding-top: 45px;
  }
  .main-visual__title {
    margin-bottom: 280px;
  }
}
@media screen and (min-width:768px) {
  .main-visual {
    padding-top: 4%;
    padding-bottom: 80px;
  }
  .main-visual__title {
    margin-bottom: 310px;
  }
  .main-visual__text {
    width: 400px;
    margin-bottom: 90px;
  }
}
@media screen and (min-width:1280px) {
  .main-visual {
    padding-top: 50px;
    position: relative;
    z-index: 5;
  }
  .main-visual__cat01 {
    width: 950px;
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: -1160px;
  }
  .main-visual__cat02 {
    width: 550px;
    position: absolute;
    top: -45px;
    left: 50%;
    margin-left: 150px;
  }
}

/* point
------------------------------------- */
.point {
  padding: 18% 0 17%;
  background: url(../img/point_bg.png) center top no-repeat;
  background-size: cover;
}
.point__title {
  width: 70%;
  max-width: 265px;
  margin: 0 auto 76%;
}
.point-list__item {
  margin-bottom: 12px;
}
@media screen and (min-width:768px) {
  .point {
    padding: 9% 0;
  }
  .point__title {
    margin-bottom: 40%;
  }
  .point-list {
    max-width: 350px;
    margin: 0 auto;
  }
}
@media screen and (min-width:1280px) {
  .point {
    padding: 65px 0 55px;
    background-size: 1280px auto;
  }
  .point__title {
    margin-bottom: 230px;
  }
}

/* lecturer
------------------------------------- */
.lecturer {
  padding: 30px 0 75px;
  background: linear-gradient(90deg, rgb(162, 39, 80) 0%, rgb(222, 100, 146) 45%, rgb(214, 92, 138) 64%, rgb(162, 39, 86, 99) 99%);
  position: relative;
}
.lecturer__head {
  width: 100%;
  max-width: 375px;
  position: absolute;
  top: -60px;
  left: 50%;
  z-index: 5;
  margin-left: -176px;
}
.lecturer__title {
  width: 71.2%;
  max-width: 267px;
  margin: 0 auto 45px;
}
.lecturer-slide {
}
.lecturer-name {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.lecturer-text {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.35;
  padding: 0 15px;
  text-align: justify;
}

@media screen and (min-width: 1280px) {
  .lecturer-slide {
    max-width: 1230px;
  }
}


/* features
------------------------------------- */
.features {
  padding: 30px 0 65px;
  background: #ffd689;
  position: relative;
}
.features__head {
  width: 46.93%;
  max-width: 176px;
  position: absolute;
  top: -60px;
  left: 50%;
  margin-left: -88px;
}
.features__title {
  width: 49.86%;
  max-width: 187px;
  margin: 0 auto 104px;
}

/* features-reason */
.features-reason {
  margin-bottom: 100px;
  position: relative;
}
.features-reason__icon {
  line-height: 1;
  text-align: center;
  margin-bottom: 40px;
}
.features-reason__icon::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}
.features-reason__icon-image {
  width: 109px;
  display: inline-block;
  padding: 0 14px;
  margin: -34px auto 0;
  background: #ffd689;
}


.features-reason__title {
  margin: 0 auto 15px;
}
.features-reason__text {
  margin: 0 auto 15px;
}
.features-reason__image {
  margin: 0 auto 15px;
}
.features-reason__cat {
  position: absolute;
  top: 0;
  left: 50%;
}

/* reason01 */
.reason01 {}
.reason01 .features-reason__title {
  width: 77%;
  max-width: 290px;
}
.reason01 .features-reason__image {
  margin-bottom: 40px;
}
.reason01 .features-reason__movie {
  max-width: 650px;
  margin: 0 auto;
  padding: 15px 0 20px;
  background: #9b1815;
}
.reason01 .features-reason__movie-title {
  width: 61.333%;
  max-width: 230px;
  margin: 0 auto 6px;
}
.reason01 .reason--cat01 {
  width: 260px;
  top: -138px;
  margin-left: -585px;
}

/* reason02 */
.reason02 {}
.reason02 .features-reason__title {
  width: 81.733%;
  max-width: 306.5px;
}
.reason02 .features-reason__image {
}
.reason02 .reason--cat02 {
  width: 300px;
  top: -218px;
  margin-left: 360px;
}

/* reason03 */
.reason03 {
  margin-bottom: 0;
}
.reason03 .features-reason__title {
  width: 46.533%;
  max-width: 175px;
}
.reason03 .features-method {
  padding: 60px 0 30px;
  background: #f9b87e;
}
.reason03 .features-list__title {
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}
.reason03 .features-list__image {
  margin-bottom: 15px;
}
.reason03 .reason--cat03 {
  width: 270px;
  top: -202px;
  margin-left: -760px;
}


/* entry
------------------------------------- */
.entry {
  padding-top: 40px;
  background: #e40057;
  position: relative;
}
.entry .inner::after {
  content: '';
  display: block;
  width: 230px;
  height: 190px;
  margin-left: -115px;
  background: url(../img/entry_img_cat.png) center bottom;
  background-size: contain;
  position: absolute;
  left: 50%;
  bottom: -38px;
}
.entry__catch {
  width: 46.93%;
  max-width: 176px;
  margin: 0 auto 10px;
}
.entry__btn {
  width: 116%;
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 1280px) {
  .entry {
    position: relative;
  }
  .entry::before, .entry::after {
    content: '';
    display: block;
    width: 255px;
    height: 71px;
    margin-top: -35px;
    position: absolute;
    top: 50%;
    left: 50%;
  }
  .entry::before {
    background: url(../img/entry_img_left.png) left top no-repeat;
    background-size: contain;
    margin-left: -460px;
  }
  .entry::after {
    background: url(../img/entry_img_right.png) left top no-repeat;
    background-size: contain;
    margin-left: 205px;
  }
}

/* price
------------------------------------- */
.price {
  padding: 75px 0 60px;
  background: #fff;
}
.price__title {
  width: 70.933%;
  max-width: 266px;
  margin: 0 auto 40px;
}
.price__title-lesson {
  margin-bottom: 10px;
}
.price__title-lesson img {
  width: auto;
  height: 17px;
}
.price-list {
  margin-bottom: 40px;
}
.price-list__item {
  text-indent: -1em;
  margin-left: 1em;
}
.list--plan02 {
  margin-bottom: 20px;
}

/* note */
.note-list {}
.note-list__item {
  font-size: 1.2rem;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (min-width:768px) {
  .price__title-lesson img {
    height: 26px;
  }
}

/* voice
------------------------------------- */
.voice {
  padding: 45px 0 65px;
  background: #f9b87e;
}
.voice__title {
  width: 54%;
  max-width: 202.5px;
  margin: 0 auto 45px;

}
.voice-list__image {
  margin-bottom: 10px;
}
.voice-list__name {
  margin-bottom: 8px;
}


/* -------------------------------------
Footer
------------------------------------- */
.footer {
  padding: 45px 0 10px;
  background: #f0f0f0;
}


/* share
------------------------------------- */
.share {}
.share__image {
  width: 64.26%;
  max-width: 241px;
  margin: 0 auto 15px;
}
.share-list {
  width: 65%;
  max-width: 220px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto 30px;
}
.share-list__item {
  width: 53px;
}

.share__image {}


/* supplement
------------------------------------- */
.supplement {}
.supplement__catch {
  margin-bottom: 15px;
}
.supplement__text {
  text-align: justify;
  margin-bottom: 30px;
}
.supplement__btn {
  display: block;
  margin-bottom: 420px;
}
@media screen and (min-width: 1280px) {
  .supplement__btn {
    margin-bottom: 80px;
  }
}

/* copyright
------------------------------------- */
.copyright {
  font-size: 8px;
  text-align: center;
}

.modal-share .share-list {
  margin-top: 20px;
}
.modaal-container {
  max-width: 400px;
  border-radius: 10px;
}
.modaal-content-container {
  padding: 0;
}
.modaal-video-wrap {
  margin: auto;;
}

/* smooth-scroll
------------------------------------- */
.smooth-scroll {
  width: 200px;
  position: absolute;
  right: 0;
  bottom: 0;
}

