@charset "UTF-8";
html {
  font-size: 62.5%;
  /*16px×62.t%=10px*/
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #4D4D4D;
  background-color: #FFFAFD;
  font-size: 1.4rem;
  line-height: 1.8;
  word-wrap: break-word;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: 400;
  letter-spacing: 0.01em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-x: hidden;
}
@media screen and (min-width: 800px) {
  body {
    font-size: 1.6rem;
  }
}

html, body {
  height: 100%;
}

p {
  line-height: 1.85;
}

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

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

ul {
  list-style: none;
}

/*---------------
*utility
---------------*/
.pc-only {
  display: none;
}
@media screen and (min-width: 800px) {
  .pc-only {
    display: block;
  }
}

@media screen and (min-width: 800px) {
  .sp-only {
    display: none;
  }
}

@media screen and (min-width: 800px) {
  .br-reverse {
    display: none;
  }
}

.wrapper {
  padding: 0 20px;
}
@media screen and (min-width: 800px) {
  .wrapper {
    padding: 0 62px;
    margin: 0 auto;
  }
}

.text-center {
  text-align: center;
}

.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  background-color: #FDD8EF;
  width: 80%;
  height: 48px;
  text-align: center;
  text-transform: capitalize;
  cursor: pointer;
  outline: none;
}
@media screen and (min-width: 800px) {
  .btn {
    width: 40%;
    height: 60px;
  }
}

.btn::after {
  position: absolute;
  content: "";
  top: 42%;
  right: 6vw;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 800px) {
  .btn::after {
    right: 3vw;
  }
}

.line-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 300px;
  height: 45px;
  margin: 0 auto;
  background-color: #fff;
  border-top: solid 1px #4D4D4D;
  border-bottom: solid 1px #4D4D4D;
}

.line-btn__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 1px;
  height: 30px;
  background-color: #707070;
}

.line-btn__inner::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 7px;
  right: 0;
  width: 1px;
  height: 30px;
  background-color: #707070;
}

.max-1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.max-400 {
  max-width: 400px;
  margin: 0 auto;
}

.p50-100 {
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 800px) {
  .p50-100 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.m40-80 {
  margin-bottom: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 800px) {
  .m40-80 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

.section-title {
  position: relative;
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .section-title {
    margin-bottom: 80px;
  }
}
.section-title .section-menu {
  display: block;
  height: 6vh;
  margin: 0 auto 10px;
}

.section-subtitle {
  font-weight: 400;
  font-size: 1.2rem;
}
@media screen and (min-width: 800px) {
  .section-subtitle {
    font-size: 1.6rem;
  }
}

/*---------------
*flex-pc
---------------*/
@media screen and (min-width: 800px) {
  .flex-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 800px) {
  .flex-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}

@media screen and (min-width: 800px) {
  .flex-between {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media screen and (min-width: 800px) {
  .flex-around {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

@media screen and (min-width: 800px) {
  .flex-reverse {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

/*---------------
*Loading背景画面設定
---------------*/
/* TOPのローディングはこちらに変更 */
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 5000;
  background: #FCE5F5;
  text-align: center;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 767px) {
  .logo-wrap {
    width: 300px;
  }
}
.logo-wrap {
  overflow: hidden;
  position: relative;
}

.logo-wrap:before {
  -webkit-animation: logo-wrap 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: logo-wrap 1.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #FCE5F5;
  bottom: 0;
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@-webkit-keyframes logo-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}

@keyframes logo-wrap {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/*---------------
*header
---------------*/
.header {
  width: 100%;
  z-index: 1200;
  position: relative;
  height: 100px;
}
.header-logo {
  position: absolute;
  width: 55%;
  top: 20%;
  left: 5%;
}
@media screen and (min-width: 800px) {
  .header-logo {
    width: 27%;
    top: 20%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.header .btn-trigger {
  position: fixed;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  border: none;
  background-color: #FBB1DE;
  z-index: 1200;
  cursor: pointer;
}
@media screen and (min-width: 800px) {
  .header .btn-trigger {
    width: 100px;
    height: 100px;
  }
}
.header .btn-trigger span {
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 13px;
  height: 1px;
  background-color: #fff;
}
.header .btn-trigger span:first-of-type {
  top: 15px;
  width: 60%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 800px) {
  .header .btn-trigger span:first-of-type {
    top: 25px;
  }
}
.header .btn-trigger span:last-of-type {
  top: 25px;
  width: 40%;
  left: 40%;
}
@media screen and (min-width: 800px) {
  .header .btn-trigger span:last-of-type {
    top: 40px;
  }
}
.header .btn-trigger p {
  color: #fff;
  font-family: "Sacramento", cursive, sans-serif;
  font-size: 2rem;
  text-transform: capitalize;
  text-align: center;
  padding-top: 46%;
  letter-spacing: 0em;
}
@media screen and (min-width: 800px) {
  .header .btn-trigger p {
    font-size: 3rem;
  }
}
.header .btn-trigger .open {
  display: block;
}
.header .btn-trigger .close {
  display: none;
}
.header .btn-trigger.active {
  background-color: transparent;
}
.header .btn-trigger.active span:first-of-type {
  top: 15px;
  left: 16px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 60%;
  background-color: #4D4D4D;
}
@media screen and (min-width: 800px) {
  .header .btn-trigger.active span:first-of-type {
    top: 25px;
    left: 30px;
    -webkit-transform: translateY(4px) rotate(-45deg);
            transform: translateY(4px) rotate(-45deg);
  }
}
.header .btn-trigger.active span:last-of-type {
  top: 27px;
  left: 16px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 60%;
  background-color: #4D4D4D;
}
@media screen and (min-width: 800px) {
  .header .btn-trigger.active span:last-of-type {
    top: 35px;
    left: 30px;
  }
}
.header .btn-trigger.active .open {
  display: none;
}
.header .btn-trigger.active .close {
  display: block;
  color: #4D4D4D;
}

.mv {
  position: relative;
  margin-top: -100px;
}

.mv-bg {
  width: 100%;
  height: 100%;
  z-index: 0;
}

.top-img {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .top-img {
    display: block;
    top: 56%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 68%;
    margin: 0 auto;
  }
}

.slide-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 800px) {
  .slide-img {
    margin: 0 auto;
  }
}

.slide01 {
  background-image: url(../img/SP-FV01.jpg);
}
@media screen and (min-width: 800px) {
  .slide01 {
    background-image: url(../img/mv1.JPG);
  }
}

.slide02 {
  background-image: url(../img/SP-FV02.jpg);
}
@media screen and (min-width: 800px) {
  .slide02 {
    background-image: url(../img/mv2.jpg);
  }
}

.slide03 {
  background-image: url(../img/SP-FV03.jpg);
}
@media screen and (min-width: 800px) {
  .slide03 {
    background-image: url(../img/mv3.jpg);
  }
}

.mv-catch {
  position: absolute;
  bottom: 18%;
  left: 14%;
  width: 62%;
}
@media screen and (min-width: 800px) {
  .mv-catch {
    bottom: 15%;
    left: 21%;
    width: 30%;
  }
}

.mv-shoes {
  position: absolute;
  bottom: 2%;
  left: 5%;
  width: 90%;
}
@media screen and (min-width: 800px) {
  .mv-shoes {
    bottom: 2%;
    left: 33%;
    width: 50%;
  }
}

.mv-onpu {
  position: absolute;
  bottom: 25%;
  right: 18%;
  width: 7%;
  -webkit-transform: rotate(-10deg);
  transform: rotate(-10deg);
}
@media screen and (min-width: 800px) {
  .mv-onpu {
    bottom: 20%;
    right: 43%;
    width: 4%;
  }
}

/*---------------
*footer
---------------*/
.ribbon-line {
  display: block;
  padding-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .ribbon-line {
    padding-bottom: 40px;
  }
}

.top .ribbon-line {
  background-color: #fff;
}

.footer {
  background-image: url(../img/footer-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 40px;
  padding-bottom: 10px;
}
@media screen and (min-width: 800px) {
  .footer {
    background-image: url(../img/footer-bg_pc.jpg);
    padding-bottom: 30px;
  }
}
.footer-logo {
  margin: 0 auto;
  margin-bottom: 20px;
  display: block;
  width: 200px;
}
@media screen and (min-width: 800px) {
  .footer-logo {
    width: 32%;
  }
}
.footer-address {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .footer-address {
    width: 22%;
    text-align: left;
    margin-left: 8%;
  }
  .footer-address p {
    margin-bottom: 20px;
    line-height: 1;
  }
}
.footer-contact {
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .footer-contact {
    width: 34%;
    margin-left: 8%;
  }
}
.footer-btn {
  margin-bottom: 10px;
  width: 60%;
  height: 36px;
}
@media screen and (min-width: 800px) {
  .footer-btn {
    width: 100%;
  }
}
.footer-btn .line-btn__inner::before {
  top: 5px;
  height: 26px;
}
.footer-btn .line-btn__inner::after {
  top: 5px;
  height: 26px;
}

.sns {
  text-transform: capitalize;
  font-size: 1.6rem;
  margin: 0 auto;
  white-space: nowrap;
}

.sns span {
  padding-right: 27px;
  position: relative;
}

.sns span::after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 86%;
  background-image: url(../img/twitter.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.mail {
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (min-width: 800px) {
  .mail {
    font-size: 1vw;
  }
}

.mail::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/mail-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 16px;
}

.phone {
  padding-left: 2.5rem;
  position: relative;
}
@media screen and (min-width: 800px) {
  .phone {
    font-size: 1vw;
  }
}

.phone::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background-image: url(../img/phone-icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 16px;
}

.copyright {
  font-size: 1rem;
}

/*---------------
*navigation
---------------*/
.nav {
  display: block;
  position: fixed;
  z-index: 999;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #FDE5F5;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1;
}
@media screen and (min-width: 800px) {
  .nav {
    right: 0;
    width: 70%;
    line-height: 1.8;
  }
}
.nav-inner {
  margin: 80px auto;
  width: 80%;
}
@media screen and (min-width: 800px) {
  .nav-inner {
    margin: 100px auto;
    width: 63%;
  }
}
.nav-list {
  margin-bottom: 26px;
}
@media screen and (min-width: 800px) {
  .nav-list {
    margin-bottom: 60px;
  }
}
.nav-item {
  border-bottom: solid 1px #707070;
  padding: 12px 0;
  border-bottom: solid 0.8px #acacac;
}
.nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.nav-sub {
  text-transform: capitalize;
  font-size: 1.6rem;
}
.nav-item:first-of-type {
  padding-top: 0;
}
.nav-contact {
  margin-bottom: 10px;
}
.nav-btn {
  margin-bottom: 10px;
  width: 100%;
}
@media screen and (min-width: 800px) {
  .nav-btn {
    margin: 0 0 10px 0;
    width: 80%;
    margin: 0 auto 20px;
  }
}
.line-btn.nav-btn{
  margin-bottom: 10px;
}

.nav.slidein {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/*---------------
*体験レッスン予約のバナー
---------------*/
.fixed-contact {
  position: fixed;
  bottom: 5%;
  right: 0;
  width: 36px;
  z-index: 100;
}
@media screen and (min-width: 800px) {
  .fixed-contact {
    width: 5.2%;
  }
}

/*---------------
*メニュー横のイラストの動き
---------------*/
.move1 {
  -webkit-animation: move1 0.8s steps(2, start) infinite alternate;
          animation: move1 0.8s steps(2, start) infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes move1 {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}

@keyframes move1 {
  0% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
}
.move2 {
  -webkit-animation: move2 0.8s steps(2, start) infinite alternate;
          animation: move2 0.8s steps(2, start) infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@-webkit-keyframes move2 {
  0% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}

@keyframes move2 {
  0% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  100% {
    -webkit-transform: rotate(10deg);
    transform: rotate(10deg);
  }
}
/*---------------
*swiper
---------------*/
.swiper-pagination {
  left: 50%;
  bottom: 5%;
  -webkit-transform: translate3d(-50%, 0, 0);
          transform: translate3d(-50%, 0, 0);
}
@media screen and (min-width: 800px) {
  .swiper-pagination {
    display: none;
  }
}

.swiper-pagination-bullet {
  margin-left: 5px;
}

.swiper-pagination-bullet-active {
  background-color: #FBB1DE;
}

/*---------------
*about
---------------*/
.bg-white {
  background-color: #fff;
}

.about {
  background-color: #fff;
  background-image: url(../img/about-deco.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 800px) {
  .about {
    background-image: url(../img/about-deco_PC.jpg);
  }
}
.about-text p {
  margin-bottom: 20px;
}
.about-text p:last-of-type {
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .about-text p:last-of-type {
    margin-bottom: 64px;
  }
}

.pink-btn {
  width: 90%;
  height: 33px;
  background-color: #FDD8EF;
}
@media screen and (min-width: 800px) {
  .pink-btn {
    height: 40px;
  }
}

.pink-btn > .line-btn__inner::before {
  height: 26px;
  top: 4px;
}
@media screen and (min-width: 800px) {
  .pink-btn > .line-btn__inner::before {
    height: 32px;
  }
}

.pink-btn > .line-btn__inner::after {
  height: 26px;
  top: 4px;
}
@media screen and (min-width: 800px) {
  .pink-btn > .line-btn__inner::after {
    height: 32px;
  }
}

/*---------------
*class
---------------*/
.kirakira1 {
  position: absolute;
  top: 20%;
  left: 8%;
  width: 10%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media screen and (min-width: 800px) {
  .kirakira1 {
    top: 20%;
    left: 27%;
    width: 4vw;
  }
}

.kirakira2 {
  position: absolute;
  top: 20%;
  right: 8%;
  width: 10%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (min-width: 800px) {
  .kirakira2 {
    top: 20%;
    right: 27%;
    width: 4vw;
  }
}

.class {
  background-color: #FFFAFD;
  position: relative;
}
.class-btn {
  position: relative;
  width: 100%;
  height: 58px;
  z-index: 0;
}
.class-btn > .line-btn__inner::before {
  height: 50px;
  top: 4px;
}
.class-btn > .line-btn__inner::after {
  height: 50px;
  top: 4px;
}
.class-btn::after {
  position: absolute;
  content: "";
  top: 40%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 800px) {
  .class-btn::after {
    right: 2rem;
  }
}
.class-name {
  font-weight: 500;
}
.class-name::after {
  content: "";
  width: 77%;
  height: 12px;
  position: absolute;
  bottom: 12px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}
@media screen and (min-width: 500px) {
  .class-name::after {
    width: 40%;
  }
}
@media screen and (min-width: 800px) {
  .class-name::after {
    width: 36%;
  }
}
.class-ribbon {
  width: 80%;
  display: block;
  margin: 0 auto 40px;
}
@media screen and (min-width: 500px) {
  .class-ribbon {
    width: 60%;
  }
}
.class-description {
  margin-bottom: 30px;
}
.class table {
  border-collapse: collapse;
  background-color: #fff;
  width: 100%;
  margin: 0 auto 20px;
}
.class table th, .class table td {
  border: solid 1px #4D4D4D;
  padding: 1rem;
  text-align: center;
  font-weight: 400;
}
.class .c-pink {
  background-color: #FDCAE9;
}
.class .c-blue {
  background-color: #D8F0FC;
}
.class .c-green {
  background-color: #C2E3D2;
}
.class .c-purple {
  background-color: #E0D2FF;
}

.c-01::after {
  background-image: url(../img/line-pink.png);
}

.c-02::after {
  background-image: url(../img/line-blue.png);
}

.c-03::after {
  background-image: url(../img/line-blue.png);
}

.c-04::after {
  background-image: url(../img/line-green.png);
}

.c-05::after {
  background-image: url(../img/line-purple.png);
}

.c-06::after {
  background-image: url(../img/line-pink.png);
}

.ribbon-list {
  margin-bottom: 30px;
}
.ribbon-list li {
  position: relative;
  padding-left: 2.5rem;
}

.mini-ribbon::before {
  content: "";
  width: 16px;
  height: 10px;
  position: absolute;
  top: 0.8rem;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
}

.ribbon-pink::before {
  background-image: url(../img/miniribon-pink.png);
}

.ribbon-blue::before {
  background-image: url(../img/miniribon-blue.png);
}

.ribbon-green::before {
  background-image: url(../img/miniribon-green.png);
}

.ribbon-purple::before {
  background-image: url(../img/miniribon-purple.png);
}

.panel-area {
  max-width: 640px;
  margin: 0 auto;
}

.panel {
  display: none;
}

.tab-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
.tab-area label {
  width: 45%;
  margin-bottom: 30px;
  cursor: pointer;
  -webkit-transition: ease 0.2s opacity;
  transition: ease 0.2s opacity;
}
@media screen and (min-width: 800px) {
  .tab-area label {
    width: 40%;
  }
}

input[type=radio] {
  display: none;
}

#tab1:checked ~ .tab-area .tab1-label .class-btn {
  background: #FDCAE9;
}

#tab2:checked ~ .tab-area .tab2-label .class-btn {
  background: #C2EAFF;
}

#tab3:checked ~ .tab-area .tab3-label .class-btn {
  background: #C2EAFF;
}

#tab4:checked ~ .tab-area .tab4-label .class-btn {
  background: #C2E3D2;
}

#tab5:checked ~ .tab-area .tab5-label .class-btn {
  background: #E0D2FF;
}

#tab6:checked ~ .tab-area .tab6-label .class-btn {
  background: #FDCAE9;
}

#tab1:checked ~ .panel-area #panel01 {
  display: block;
}

#tab2:checked ~ .panel-area #panel02 {
  display: block;
}

#tab3:checked ~ .panel-area #panel03 {
  display: block;
}

#tab4:checked ~ .panel-area #panel04 {
  display: block;
}

#tab5:checked ~ .panel-area #panel05 {
  display: block;
}

#tab6:checked ~ .panel-area #panel06 {
  display: block;
}

/*---------------
*schedule
---------------*/
.schedule {
  background-image: url(../img/section-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 800px) {
  .schedule {
    background-image: url(../img/section-bg_pc.jpg);
  }
}
.schedule .book {
  position: absolute;
  top: 8%;
  left: 12%;
  width: 16%;
}
@media screen and (min-width: 800px) {
  .schedule .book {
    top: 0;
    left: 22%;
    width: 10%;
  }
}
.schedule .pencil {
  position: absolute;
  top: 12%;
  right: 15%;
  width: 12%;
}
@media screen and (min-width: 800px) {
  .schedule .pencil {
    top: 0%;
    right: 25%;
    width: 7%;
  }
}
.schedule-calender {
  margin-bottom: 30px;
}

/*---------------
*trial lesson
---------------*/
.emphasis {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 30px;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 800px) {
  .emphasis span {
    font-size: 2rem;
  }
}
.emphasis span::after {
  content: "";
  width: 85%;
  height: 12px;
  position: absolute;
  bottom: -4px;
  left: 17px;
  background-image: url(../img/line-pink-long.png);
  z-index: -1;
}

@media screen and (min-width: 800px) {
  .trial .emphasis {
    margin-bottom: 60px;
  }
}

.emphasis::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 26px;
  bottom: 5px;
  left: -2px;
  background-image: url(../img/midashi-left.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.emphasis::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 26px;
  bottom: 5px;
  right: 0px;
  background-image: url(../img/midashi-right.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.trial {
  background-image: url(../img/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
.trial-inner {
  background: rgba(255, 255, 255, 0.7);
  padding: 40px 25px;
  position: relative;
  margin: 0 auto;
  z-index: 0;
}
.trial-img {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .trial-img {
    width: 50%;
  }
}
.trial-inner::before {
  position: absolute;
  content: "";
  width: 27px;
  height: 32px;
  top: 12%;
  right: 0%;
  background-image: url(../img/stars-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 500px) {
  .trial-inner::before {
    top: 9%;
    right: 2%;
  }
}
@media screen and (min-width: 800px) {
  .trial-inner::before {
    width: 33px;
    height: 40px;
    top: 10%;
    right: 12%;
    -webkit-transform: rotate(-21deg);
            transform: rotate(-21deg);
  }
}
.trial-inner::after {
  position: absolute;
  content: "";
  width: 27px;
  height: 32px;
  bottom: 17%;
  left: 4%;
  background-image: url(../img/stars-sp.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 500px) {
  .trial-inner::after {
    bottom: 17%;
    left: 5%;
  }
}
@media screen and (min-width: 800px) {
  .trial-inner::after {
    width: 33px;
    height: 40px;
    top: 10%;
    left: 12%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.trial-text {
  margin-bottom: 30px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .trial-text {
    text-align: left;
    line-height: 2.5;
    padding-left: 6%;
    padding-top: 2%;
  }
}
.trial-btn {
  width: 90%;
  background-color: #FBB1DE;
}
@media screen and (min-width: 800px) {
  .trial-btn {
    width: 50%;
  }
}
.trial-btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.trial .pink-btn {
  background-color: #FBB1DE;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
  color: #fff;
}
.trial .pink-btn > .line-btn__inner::before {
  background-color: #fff;
}
.trial .pink-btn > .line-btn__inner::after {
  background-color: #fff;
}

/*---------------
*Q&A
---------------*/
.QA {
  background-color: #FFFAFD;
  position: relative;
}
.QA .hirameki {
  position: absolute;
  top: 4%;
  left: 12%;
  width: 16%;
}
@media screen and (min-width: 800px) {
  .QA .hirameki {
    top: 0%;
    left: 30%;
    width: 7%;
  }
}
.QA .question {
  position: absolute;
  top: 4%;
  right: 12%;
  width: 16%;
}
@media screen and (min-width: 800px) {
  .QA .question {
    top: 0%;
    right: 29%;
    width: 8%;
  }
}
.QA-box {
  cursor: pointer;
  margin-bottom: 30px;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 800px) {
  .QA-box {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .QA-box:nth-child(odd) {
    margin-right: 10%;
  }
  .QA-box {
    margin-bottom: 80px;
  }
}
.QA-q {
  position: relative;
  background-color: #FDD8EF;
  padding: 1.5rem 1rem;
  border: solid 1px #4D4D4D;
}
.QA-q::after {
  content: "";
  position: absolute;
  top: 40%;
  right: 3.4vw;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
@media screen and (min-width: 800px) {
  .QA-q::after {
    display: none;
  }
}
.QA-a {
  background-color: #fff;
  padding: 1.5rem;
  border-bottom: solid 1px #4D4D4D;
  border-left: solid 1px #4D4D4D;
  border-right: solid 1px #4D4D4D;
}

@media screen and (min-width: 800px) {
  .h-200 {
    height: 200px;
  }

  .h-130 {
    height: 130px;
  }
}
/*---------------
*gallery
---------------*/
.gallery {
  background-image: url(../img/section-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (min-width: 800px) {
  .gallery {
    background-image: url(../img/section-bg_pc.jpg);
  }
}
.gallery .menu-gallery {
  height: 7vh;
}
.gallery .camera {
  position: absolute;
  top: 12%;
  left: 12%;
  width: 20%;
}
@media screen and (min-width: 800px) {
  .gallery .camera {
    top: 0%;
    left: 30%;
    width: 10%;
  }
}
.gallery .heart {
  position: absolute;
  top: 10%;
  right: 20%;
  width: 9%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (min-width: 800px) {
  .gallery .heart {
    top: 0%;
    right: 34%;
    width: 4%;
  }
}
@media screen and (min-width: 800px) {
  .gallery-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 800px) {
  .gallery-img {
    width: 30%;
    margin-bottom: 50px;
  }
}

.gallery.p50-100.wrapper {
  padding: 50px 0;
}

/*---------------
*access
---------------*/
.access {
  position: relative;
  background-image: url(../img/access-deco.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #fff;
}
@media screen and (min-width: 800px) {
  .access {
    background-image: url(../img/access-deco_pc.jpg);
  }
}
.access .welcome {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 22%;
}
@media screen and (min-width: 800px) {
  .access .welcome {
    top: 0;
    left: 24%;
    width: 12%;
  }
}
.access .flag {
  position: absolute;
  top: -6%;
  right: 12%;
  width: 16%;
}
@media screen and (min-width: 800px) {
  .access .flag {
    top: -14%;
    right: 22%;
    width: 8%;
  }
}
.access-maps__outer {
  position: relative;
  padding-top: 75%;
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .access-maps__outer {
    padding-top: 48%;
    width: 640px;
    margin: 0 auto;
  }
}
.access-maps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.access-info {
  margin-bottom: 30px;
  padding: 2.5rem;
}
@media screen and (min-width: 800px) {
  .access-info {
    text-align: center;
  }
}

/*---------------
*hover
---------------*/
@media screen and (min-width: 800px) {
  .btn:hover::after {
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }

  .nav-btn:hover {
    background-color: #4D4D4D;
    color: #fff;
  }

  .nav-btn:hover .mail::before {
    background-image: url(../img/mail-icon_white.svg);
  }

  .nav-btn:hover .phone::before {
    background-image: url(../img/phone-icon_white.svg);
  }

  .footer-btn:hover {
    background-color: #4D4D4D;
    color: #fff;
  }

  .footer-btn:hover .mail::before {
    background-image: url(../img/mail-icon_white.svg);
  }

  .footer-btn:hover .phone::before {
    background-image: url(../img/phone-icon_white.svg);
  }

  .sns a:hover {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .nav-item:hover {
    opacity: 0.6;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .fixed-contact:hover {
    opacity: 0.7;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .btn:hover {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff;
    background-color: #FBB1DE;
  }

  .btn:hover .pink-btn {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #fff;
    background-color: #FBB1DE;
  }

  .btn:hover .line-btn {
    border: none;
  }

  .btn:hover .line-btn__inner::before {
    display: none;
  }

  .btn:hover .line-btn__inner::after {
    display: none;
  }

  .class-btn:hover .line-btn__inner::before {
    height: 58px;
    top: 0px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .class-btn:hover .line-btn__inner::after {
    height: 58px;
    top: 0px;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
  }

  .trial .btn:hover {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #FBB1DE;
    background-color: #fff;
    border: solid 2px #FBB1DE;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .trial .btn:hover .pink-btn {
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    color: #FBB1DE;
    background-color: #fff;
  }
  .trial .btn:hover .line-btn {
    border: none;
  }
  .trial .btn:hover .line-btn__inner::before {
    display: none;
  }
  .trial .btn:hover .line-btn__inner::after {
    display: none;
  }
  .trial .btn:hover::after {
    border-top: 1px solid #FBB1DE;
    border-right: 1px solid #FBB1DE;
  }
}
/*---------------
*下層共通
---------------*/
.intro {
  padding-top: 50px;
  margin-bottom: 50px;
}
.rusu_message{
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 10px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .rusu_message{
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 800px) {
  .intro {
    padding-top: 100px;
    margin-bottom: 100px;
  }
}

/*---------------
*aboutページ
---------------*/
.about-page .intro {
  background-image: url(../img/about-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (min-width: 800px) {
  .about-page .intro {
    background-image: url(../img/about-bg_pc.png);
    padding-top: 100px;
  }
}
.about-page .intro-text {
  line-height: 2.67;
}
@media screen and (min-width: 800px) {
  .about-page .intro-text {
    font-size: 1.8rem;
  }
}
.about-page .intro-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 400px;
  margin: -20px auto 0;
}
@media screen and (min-width: 800px) {
  .about-page .intro-img {
    max-width: 1000px;
  }
}
.about-page .intro-img__1 {
  position: relative;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
  width: 24%;
  top: -10px;
}
@media screen and (min-width: 800px) {
  .about-page .intro-img__1 {
    width: 15%;
  }
}
.about-page .intro-img__2 {
  width: 24%;
  margin-top: 90px;
}
@media screen and (min-width: 800px) {
  .about-page .intro-img__2 {
    width: 15%;
  }
}
.about-page .intro-img__3 {
  position: relative;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
  width: 24%;
  top: -10px;
}
@media screen and (min-width: 800px) {
  .about-page .intro-img__3 {
    width: 15%;
  }
}

.midashi {
  font-family: "Sacramento", cursive, sans-serif;
  text-transform: capitalize;
  font-size: 2.8rem;
  font-weight: 400;
  padding: 0 2rem 0 2rem;
}
@media screen and (min-width: 800px) {
  .midashi {
    font-size: 5.5rem;
  }
}

.midashi-line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.midashi-line img {
  width: 110px;
  height: 6px;
}
@media screen and (min-width: 800px) {
  .midashi-line img {
    width: 376px;
    height: 10px;
  }
}

.feature-title1 {
  margin-bottom: 40px;
}
.feature-title1 span {
  position: relative;
  font-weight: 400;
  font-size: 1.6rem;
  padding-left: 20px;
}
@media screen and (min-width: 800px) {
  .feature-title1 span {
    font-size: 2rem;
  }
}
.feature-title1 span::before {
  content: "";
  width: 14px;
  height: 40px;
  position: absolute;
  top: -3px;
  left: 0;
  background-image: url(../img/feature-one.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 800px) {
  .feature-title1 span::before {
    width: 20px;
    left: -10px;
  }
}
.feature-title2 {
  margin-bottom: 40px;
}
.feature-title2 span {
  position: relative;
  font-weight: 400;
  font-size: 1.6rem;
  padding-left: 24px;
}
@media screen and (min-width: 800px) {
  .feature-title2 span {
    font-size: 2rem;
  }
}
.feature-title2 span::before {
  content: "";
  width: 19px;
  height: 48px;
  position: absolute;
  top: -3px;
  left: 0;
  background-image: url(../img/feature-two.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 800px) {
  .feature-title2 span::before {
    width: 27px;
    left: -10px;
  }
}
.feature-detail {
  margin-bottom: 40px;
}
@media screen and (min-width: 800px) {
  .feature-detail {
    margin-bottom: 80px;
  }
}
.feature-img {
  width: 64%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 800px) {
  .feature-img {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .feature-text__block1 {
    width: 50%;
    margin-left: 10%;
    padding-top: 5%;
  }
}
@media screen and (min-width: 800px) {
  .feature-text__block2 {
    width: 50%;
    margin-right: 10%;
    padding-top: 5%;
  }
}
.feature-text {
  margin-bottom: 80px;
}
.feature-text:last-of-type {
  margin-bottom: 0;
}

.award {
  background-image: url(../img/section-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
.award-text {
  margin-bottom: 30px;
}
.award-detail {
  position: relative;
  width: 95%;
  background-image: url(../img/award-frame.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
  max-width: 400px;
}
@media screen and (min-width: 800px) {
  .award-detail {
    background-image: url(../img/award-frame-pc.png);
    max-width: 560px;
  }
}
.award-detail__text {
  padding-top: 10%;
  padding-bottom: 10%;
  margin: 0 auto;
  white-space: nowrap;
  text-align: center;
}
@media screen and (min-width: 800px) {
  .award-detail__text {
    padding: 15% 10%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .award-detail__text1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .award-detail__text2 {
    padding-left: 50px;
  }
}
.award .crown {
  position: absolute;
  bottom: 10%;
  right: 14%;
  width: 9%;
  -webkit-transform: rotate(58deg);
          transform: rotate(58deg);
}
@media screen and (min-width: 800px) {
  .award .crown {
    -webkit-transform: none;
            transform: none;
    bottom: 21%;
    left: 8%;
  }
}

.teacher-detail {
  margin-bottom: 80px;
}
.teacher-detail__name {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .teacher-detail__name {
    text-align: left;
  }
}
.teacher-detail__name span:first-of-type {
  color: #FBB1DE;
  font-size: 1.8rem;
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 800px) {
  .teacher-detail__name span:first-of-type {
    font-size: 2.8rem;
    font-weight: 400;
  }
}
.teacher-detail__img {
  width: 41%;
  margin: 0 auto 30px;
}
@media screen and (min-width: 800px) {
  .teacher-detail__img {
    width: 28%;
    margin: 0 auto;
  }
}
.teacher-detail__text p {
  margin-bottom: 3rem;
}
@media screen and (min-width: 800px) {
  .teacher-detail__block {
    width: 54%;
  }
  .teacher2 {
    width: 44%;
  }
  .teacher3 {
    width: 44%;
  }
}

.teacher-detail:last-of-type {
  margin-bottom: 50px;
}

.btn.back-btn::after {
  left: 40px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}

/*---------------
*contactページ
---------------*/
.hane {
  position: absolute;
  top: 20%;
  left: 12%;
  width: 10%;
  -webkit-transform: rotate(-10deg);
          transform: rotate(-10deg);
}
@media screen and (min-width: 800px) {
  .hane {
    top: 20%;
    left: 30%;
    width: 4vw;
  }
}

.hane2 {
  position: absolute;
  top: 20%;
  right: 12%;
  width: 10%;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
@media screen and (min-width: 800px) {
  .hane2 {
    top: 20%;
    right: 30%;
    width: 4vw;
  }
}

@media screen and (min-width: 800px) {
  .form-content {
    width: 640px;
  }
}

.caution {
  font-size: 1rem;
  color: #df4671;
  padding-left: 5px;
}

.form-item {
  margin-bottom: 30px;
}
@media screen and (min-width: 800px) {
  .form-item {
    margin-bottom: 40px;
  }
}

.form-item:last-of-type {
  margin-bottom: 20px;
}

.form-title {
  margin-bottom: 10px;
}

.form-parts {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  outline: none;
}

.form-option {
  margin-bottom: 50px;
}
@media screen and (min-width: 800px) {
  .form-option {
    margin-bottom: 100px;
  }
}
.form-option p {
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  .form-option p {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}

.form-parts__text {
  border-radius: 0;
  background-color: #fff;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2;
  padding: 5px 5px;
  border: solid 1px #4D4D4D;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
}

.form-parts__select {
  border-radius: 0;
  border: solid 1px #4D4D4D;
  background-color: #fff;
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
  line-height: 2;
  padding: 0 5px;
  cursor: pointer;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  color: #4D4D4D;
}

.select-arrow {
  position: relative;
}

.select-arrow::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  position: absolute;
  right: 2.5rem;
  top: 1.5rem;
  border-bottom: #333 2px solid;
  border-right: #333 2px solid;
  -webkit-transform: rotate(45deg) translateY(-30%);
          transform: rotate(45deg) translateY(-30%);
  pointer-events: none;
}

.form-parts__checkbox {
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: solid 1px #4D4D4D;
  margin-right: 5px;
  outline: none;
  border-radius: 0;
}

.form-parts__checkbox:checked {
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
  background-position: 0 2px;
}

button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
}

.contact-btn {
  width: 70%;
  background-color: #FBB1DE;
  color: #fff;
  margin-bottom: 50px;
  font-size: 1.6rem;
}
@media screen and (min-width: 800px) {
  .contact-btn {
    margin-bottom: 100px;
  }
}

.contact-btn::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}

.tel-info {
  padding: 20px 10px;
  margin: 0 auto 35px;
  border: solid 1px #E19CC3;
  text-align: center;
  line-height: 1.8;
}
.tel-info h2 {
  text-align: center;
  margin-bottom: 10px;
  position: relative;
}
.tel-info h2 span:after {
  content: "";
  width: 55%;
  height: 12px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-image: url(../img/line-pink-long.png);
  z-index: -1;
}
@media screen and (min-width: 800px) {
  .tel-info h2 span:after {
    width: 32%;
  }
}
.tel-info a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #E19CC3;
  text-decoration: underline;
  margin-bottom: 20px;
  display: block;
}
.tel-info p {
  margin-bottom: 20px;
}

.error-massage {
  color: #df4671;
}

/*---------------
*animation
---------------*/
/* fadeIn */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* fadeDown */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-50px);
            transform: translateY(-50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* fadeLeft */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* fadeRight */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}
/* スマホ時だけ改行 */
.only-sp__br{
  display: block;
}
@media screen and (min-width: 800px) {
  .only-sp__br{
    display: none;
  }

}
/* ASジュニアクラス */
.line-btn__inner.junior{
  text-align: center;
  line-height: 1.2;
  margin-bottom: 8px;
}
@media screen and (min-width: 800px) {
  .line-btn__inner.junior{
    margin-bottom: 0px;
  }
}


/*---------------
*メディアクエリ例外サイズ対応
---------------*/
@media screen and (min-width: 1110px) {
  /* PCの時のタイトル画像を少し大きく */
  .section-title .section-menu {
    height: 10vh;
  }

  .section-title > .section-menu.menu-gallery {
    height: 11vh;
  }
}
/* 小さいスマホだと崩れる箇所を修正 */
@media screen and (max-width: 350px) {
  .br-small-none {
    display: none;
  }
  .line-btn__inner.junior{
    font-size: 1.3rem;
    margin-right: 15px;
  }

  .btn {
    width: 90%;
  }

  .emphasis::before {
    left: -10px;
  }

  .emphasis::after {
    right: -10px;
  }

  .footer-btn {
    width: 70%;
  }
}
/*# sourceMappingURL=style.css.map */
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction{
  left: 50%;
}