@charset "UTF-8";
/* import */
/* カラー */
/* レスポンシブ */
/*****STANDART CSS******/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
}

abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var,
video {
  margin: 0;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /******SMOOTH SCROLL ANCHOR******/
}

/*****STANDART CSS******/
/* ---------common--------- */
body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
}

a:hover {
  opacity: .7;
}

p {
  color: #fff;
}

/* パンくずリスト */
.bread {
  width: 100%;
  margin-bottom: 30px;
}

.bread .inner {
  margin-bottom: 0 !important;
  padding-top: 0 !important;
}

.bread ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.bread ul li {
  padding: 5px;
}

.bread ul li a {
  -webkit-transition: .15s;
  transition: .15s;
}

@media (max-width: 599px) {
  .bread ul li a {
    font-size: 14px;
  }
}

.bread ul li a:hover {
  opacity: 0.7;
}

.bread ul li:after {
  content: '\003e';
  margin-left: 10px;
  margin-right: 10px;
  color: #fff;
}

.bread ul li:last-child:after {
  content: "";
}

/* flex */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.align_start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.align_center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.align_end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex_center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.flex_end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* inner */
.inner {
  width: 1000px;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .inner {
    width: 90%;
  }
}

/* display */
@media (max-width: 599px) {
  .sp_dn {
    display: none;
  }
}

.sp_db {
  display: none;
}

@media (max-width: 599px) {
  .sp_db {
    display: block;
  }
}

@media (max-width: 768px) {
  .tab_dn {
    display: none;
  }
}

.tab_db {
  display: none;
}

@media (max-width: 768px) {
  .tab_db {
    display: block;
  }
}

section {
  padding: 50px 0;
}

.cta_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 10px 0;
  display: none;
}

@media (max-width: 599px) {
  .cta_btn {
    display: block;
  }
}

.cta_btn .cta_btn_item {
  background-color: #fff;
  width: 48%;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  border-radius: 20px;
}

.cta_btn .cta_btn_item.line_bg {
  background-color: #06c755;
  font-size: 24px;
  padding-top: 7px;
}

.cta_btn .cta_btn_item.line_bg img {
  width: 24px;
}

.cta_btn .cta_btn_item img {
  width: 18px;
  margin-right: 5px;
  vertical-align: middle;
  margin-bottom: 3px;
}

.commmon_mv {
  position: relative;
}

.commmon_mv h2 {
  position: absolute;
  white-space: nowrap;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 36px;
  border-radius: 20px;
  padding: 10px 20px;
  color: #fff;
}

.commmon_mv.page_point h2 {
  background-color: #fff;
}

@media (max-width: 768px) {
  .commmon_mv.page_point h2 {
    width: 75%;
  }
}

@media (max-width: 599px) {
  .commmon_mv.page_point h2 {
    width: 90%;
    margin-bottom: 10px;
  }
}

.ttl {
  font-size: 32px;
  color: #fff;
  position: relative;
  padding-left: 30px;
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  .ttl {
    font-size: 24px;
    padding-left: 20px;
  }
}

.ttl::before {
  content: url(../images/icon_arrow.png);
  position: absolute;
  left: -10px;
  top: -12px;
  -webkit-transform: scale(0.25) translate(-50%, -50%);
          transform: scale(0.25) translate(-50%, -50%);
}

@media (max-width: 599px) {
  .ttl::before {
    left: -20px;
    top: -20px;
    -webkit-transform: scale(0.2) translate(-50%, -50%);
            transform: scale(0.2) translate(-50%, -50%);
  }
}

.ttl img {
  width: 100%;
}

.ttl span {
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  display: block;
}

@media (max-width: 599px) {
  .ttl span {
    font-size: 18px;
    margin-top: 10px;
  }
}

.ttl_row {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin-bottom: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 599px) {
  .ttl_row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.ttl_row h2 {
  margin-bottom: 0;
  padding-bottom: 15px;
}

.ttl_row p {
  font-weight: bold;
  font-size: 20px;
  line-height: 0;
  white-space: nowrap;
}

@media (max-width: 599px) {
  .ttl_row p {
    font-size: 18px;
    width: 100%;
    margin-top: 10px;
    padding-left: 20px;
  }
}

.mb_0 {
  margin-bottom: 0 !important;
}

/* 下層ページ共通 */
/* header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

@media (max-width: 599px) {
  header {
    top: 10px;
  }
}

@media (max-width: 599px) {
  header .header_row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

header .logo {
  width: 280px;
  position: relative;
  z-index: 1000;
}

@media (max-width: 599px) {
  header .logo {
    width: 160px;
  }
}

@media (max-width: 599px) {
  header .logo h1 {
    line-height: 0;
  }
}

header .menu p {
  color: #fff;
}

.menu_btn {
  display: block;
  width: 60px;
  height: 30px;
  position: relative;
  z-index: 4000;
}

.menu_btn span {
  display: inline-block;
  height: 4px;
  width: 35px;
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) skewX(-25deg);
          transform: translate(-50%, -50%) skewX(-25deg);
  -webkit-transition: .3s;
  transition: .3s;
}

.menu_btn span:nth-child(1) {
  top: 5px;
}

.menu_btn span:nth-child(2) {
  top: 15px;
  left: 35px;
}

.menu_btn span:nth-child(3) {
  top: 25px;
  left: 25px;
}

.nav {
  left: 100%;
  opacity: 0;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 500;
  -webkit-transition: 500ms ease-out;
  transition: 500ms ease-out;
  padding: 90px 0 0;
  text-align: center;
}

@media (max-width: 768px) {
  .nav {
    padding: 60px 0 0;
  }
}

.nav li {
  margin-bottom: 30px;
  padding-bottom: 10px;
  position: relative;
}

.nav li::after {
  content: "";
  background: #ff00ff;
  height: 3px;
  width: 80%;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 10%;
}

@media (max-width: 599px) {
  .nav li::after {
    width: 90%;
    left: 5%;
  }
}

@media (max-width: 599px) {
  .nav li {
    margin-bottom: 20px;
  }
}

.nav li a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 599px) {
  .nav li a {
    font-size: 18px;
  }
}

.nav li a span {
  display: block;
  font-size: 16px;
}

@media (max-width: 599px) {
  .nav li a span {
    font-size: 12px;
  }
}

.open .menu_btn {
  z-index: 1000;
}

.open .menu_btn span:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  top: 50% !important;
  left: 50%;
}

.open .menu_btn span:nth-child(2) {
  opacity: 0;
}

.open .menu_btn span:nth-child(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
  top: 50% !important;
  left: 50%;
}

.open .nav {
  opacity: 1 !important;
  left: 0 !important;
}

.cta_pc {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 10000;
}

@media (max-width: 599px) {
  .cta_pc {
    display: none;
  }
}

.cta_pc a {
  display: block;
  margin-bottom: 10px;
}

.cta_pc .cta_pc_contact,
.cta_pc .cta_pc_line {
  width: 70px;
  margin: 0 auto 10px;
}

.cta_pc .cta_pc_contact img,
.cta_pc .cta_pc_line img {
  border-radius: 10px;
}

.cta_pc .cta_pc_product {
  width: 80px;
}

/* footer */
footer {
  background-color: #000;
}

@media (max-width: 599px) {
  footer {
    padding-bottom: 60px;
  }
}

footer .copyright {
  padding: 10px 0;
  text-align: center;
}

.footer_border1,
.footer_border2,
.footer_border3 {
  height: 10px;
  width: 100%;
}

.footer_border1 {
  background-color: #00ffff;
}

.footer_border2 {
  background-color: #ff00ff;
}

.footer_border3 {
  background-color: #ffff00;
}

.top_btn {
  position: fixed;
  bottom: 20px;
  right: 30px;
  width: 50px;
  z-index: 1000;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.top_btn.active {
  opacity: 1;
}

@media (max-width: 599px) {
  .top_btn {
    bottom: 70px;
  }
}

.top_btn a img {
  border-radius: 10px;
}

.sp_bottom_btn {
  display: none;
  position: fixed;
  padding: 10px 0;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #000;
  z-index: 1000;
}

@media (max-width: 599px) {
  .sp_bottom_btn {
    display: block;
  }
}

.sp_bottom_btn a {
  width: 32%;
}

.sp_bottom_btn a img {
  border-radius: 5px;
}

/* top */
.concept_guide {
  background: url(../images/concept_bg.jpg) center/cover no-repeat;
}

.concept_guide .concept_guide_img {
  width: 40%;
}

@media (max-width: 599px) {
  .concept_guide .concept_guide_img {
    width: 80%;
    margin: 0 auto 20px;
  }
}

.concept_guide .concept_guide_text {
  width: 58%;
}

@media (max-width: 599px) {
  .concept_guide .concept_guide_text {
    width: 100%;
  }
}

.concept_guide .concept {
  margin-bottom: 50px;
}

.plan {
  background: url(../images/price_bg.jpg) center/cover no-repeat;
}

.plan .plan_item {
  margin-bottom: 100px;
  position: relative;
}

.plan .plan_item::after {
  content: url(../images/border_pink.png);
  position: absolute;
  left: 30%;
  bottom: -130px;
  -webkit-transform: scale(0.5) translateX(-50%);
          transform: scale(0.5) translateX(-50%);
}

@media (max-width: 599px) {
  .plan .plan_item::after {
    left: -20%;
    -webkit-transform: scale(0.4) translateX(-50%);
            transform: scale(0.4) translateX(-50%);
  }
}

.plan .plan_item .plan_item_btn {
  width: 38%;
}

@media (max-width: 599px) {
  .plan .plan_item .plan_item_btn {
    width: 100%;
  }
}

.plan .plan_item .plan_item_btn a {
  background-color: #ff00ff;
  border-radius: 40px;
  padding: 20px 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  display: block;
  font-size: 24px;
  font-weight: bold;
}

@media (max-width: 599px) {
  .plan .plan_item .plan_item_btn a {
    font-size: 20px;
    padding: 15px;
  }
}

.plan .plan_item_text {
  width: 60%;
}

@media (max-width: 599px) {
  .plan .plan_item_text {
    width: 100%;
    margin-bottom: 20px;
  }
}

.plan .plan_item_text .plan_text {
  font-size: 14px;
}

.plan .plan_name {
  color: #ffff00;
  font-weight: bold;
  font-size: 24px;
}

@media (max-width: 599px) {
  .plan .plan_name {
    font-size: 20px;
  }
}

.plan .plan_price {
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 599px) {
  .plan .plan_price {
    font-size: 18px;
  }
}

@media (max-width: 599px) {
  .plan .plan_other .plan_other_row {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.plan .plan_other .plan_other_item {
  width: 30%;
  text-align: center;
}

@media (max-width: 599px) {
  .plan .plan_other .plan_other_item {
    width: 48%;
    margin-bottom: 20px;
  }
}

.product_calender {
  background: url(../images/product_bg.jpg) top/cover no-repeat;
  position: relative;
}

@media (max-width: 599px) {
  .product_calender {
    background: url(../images/product_bg_sp.jpg) top/cover no-repeat;
  }
}

.product_calender::after {
  content: "";
  position: absolute;
  bottom: 2px;
  display: inline-block;
  width: 100%;
  height: 20%;
  background: url(../images/calender_bottom.png) top/cover no-repeat;
}

.product_calender .product {
  margin-bottom: 50px;
}

.product_calender .product .product_list li {
  width: 32%;
  border: 3px solid #ddffff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 599px) {
  .product_calender .product .product_list li {
    width: 48%;
  }
}

.product_calender .calender {
  position: relative;
  z-index: 100;
}

.product_calender .calender .calender_list {
  margin-bottom: 20px;
}

.product_calender .calender .calender_item {
  background-color: #fff;
  padding: 10px;
  margin-bottom: 10px;
}

.product_calender .calender .calender_item.calender_item_pink {
  background-color: #ff00ff;
}

.product_calender .calender .calender_item.calender_item_yellow {
  background-color: #ffff00;
}

.product_calender .calender .calender_item .calender_item_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 55%;
}

@media (max-width: 599px) {
  .product_calender .calender .calender_item .calender_item_row {
    width: 80%;
  }
}

.product_calender .calender .calender_item h3 {
  font-size: 36px;
  font-weight: bold;
}

@media (max-width: 599px) {
  .product_calender .calender .calender_item h3 {
    font-size: 28px;
  }
}

.product_calender .calender .calender_item h3 span {
  margin-left: 10px;
  font-size: 20px;
}

@media (max-width: 599px) {
  .product_calender .calender .calender_item h3 span {
    font-size: 18px;
  }
}

.product_calender .calender .calender_item p {
  color: #000;
  font-size: 18px;
  font-weight: bold;
}

@media (max-width: 599px) {
  .product_calender .calender .calender_item p {
    font-size: 16px;
  }
}

.product_calender .calender .calender_btns a {
  background-color: #ff00ff;
  color: #fff;
  padding: 10px;
  font-weight: bold;
  width: 200px;
  text-align: center;
  border-radius: 40px;
}

@media (max-width: 599px) {
  .product_calender .calender .calender_btns a {
    width: 45%;
  }
}

.product_calender .calender .calender_btns .prev span {
  margin-right: 5px;
}

.product_calender .calender .calender_btns .next span {
  margin-left: 5px;
}

.gallery_insta_line {
  background: url(../images/gallery_bg.jpg) top/cover no-repeat;
}

.gallery_insta_line .section_border {
  margin-bottom: 50px;
}

.gallery_insta_line .gallery {
  margin-bottom: 50px;
}

.gallery_insta_line .insta {
  margin-bottom: 50px;
}

.gallery_insta_line .insta .insta_btn {
  width: 300px;
  margin: 0 auto;
  display: block;
}

.gallery_insta_line .insta .insta_btn img {
  border-radius: 40px;
}

.gallery_insta_line .gallery_list li,
.gallery_insta_line .insta_list li {
  width: 32%;
  border: 3px solid #ddffff;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (max-width: 599px) {
  .gallery_insta_line .gallery_list li,
  .gallery_insta_line .insta_list li {
    width: 48%;
  }
}

.gallery_insta_line .line .ttl_row .ttl img {
  width: 95%;
}

.gallery_insta_line .line .line_img {
  width: 60%;
}

@media (max-width: 599px) {
  .gallery_insta_line .line .line_img {
    width: 100%;
  }
}

.gallery_insta_line .line .line_text {
  width: 40%;
}

@media (max-width: 599px) {
  .gallery_insta_line .line .line_text {
    width: 100%;
  }
}

.gallery_insta_line .line .line_text p {
  margin-bottom: 30px;
}

.gallery_insta_line .line .line_text .line_btn {
  width: 80%;
  display: block;
  margin: 0 auto;
}

.gallery_insta_line .line .line_text .line_btn img {
  border-radius: 40px;
}

.profile {
  background: url(../images/profile_bg.jpg) top/cover no-repeat;
}

.profile .profile_img {
  width: 30%;
  margin: 0 auto 30px;
}

@media (max-width: 599px) {
  .profile .profile_img {
    width: 60%;
  }
}

.profile .profile_table {
  border: 3px solid #ff00ff;
  border-radius: 10px;
  background-color: #000;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 50px -5px magenta;
          box-shadow: 0px 0px 50px -5px magenta;
}

.profile .profile_table .profile_table_row {
  margin-bottom: 20px;
}

.profile .profile_table .profile_table_left p,
.profile .profile_table .profile_table_right p {
  font-size: 20px;
  position: relative;
  padding-bottom: 10px;
}

.profile .profile_table .profile_table_left p::after,
.profile .profile_table .profile_table_right p::after {
  content: "";
  background: #ff00ff;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.profile .profile_table .profile_table_left {
  width: 25%;
}

@media (max-width: 599px) {
  .profile .profile_table .profile_table_left {
    width: 30%;
    margin-bottom: 20px;
  }
}

.profile .profile_table .profile_table_left p {
  font-weight: bold;
}

.profile .profile_table .profile_table_right {
  width: 73%;
}

@media (max-width: 599px) {
  .profile .profile_table .profile_table_right {
    width: 100%;
  }
}

.contact {
  background-color: #000;
}

.contact .ttl_row .ttl, .contact .ttl_row p {
  color: #00ffff;
}

.contact .ttl_row .ttl::before {
  content: url(../images/icon_arrow_blue.png);
}

.contact form .form_item {
  margin-bottom: 30px;
}

.contact form .form_item .form_left {
  width: 30%;
}

@media (max-width: 599px) {
  .contact form .form_item .form_left {
    width: 100%;
    margin-bottom: 15px;
  }
}

.contact form .form_item .form_left p {
  font-weight: bold;
}

.contact form .form_item .form_left span {
  background-color: #ff00ff;
  color: #fff;
  padding: 5px;
  font-weight: bold;
  margin-right: 20px;
}

.contact form .form_item .form_right {
  width: 68%;
}

@media (max-width: 599px) {
  .contact form .form_item .form_right {
    width: 100%;
  }
}

.contact form .form_item .form_right input, .contact form .form_item .form_right textarea {
  width: 100%;
  padding: 10px;
  border-radius: 20px;
  border: none;
}

.contact form .form_item_free .form_left span {
  background-color: #000;
  color: #000;
}

.contact form .form_item_content .form_left {
  margin-bottom: 15px;
}

.contact form .form_item_content .form_right {
  width: 100%;
}

.contact form .form_btn input {
  background-color: #00ffff;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  border: none;
  border-radius: 40px;
  width: 400px;
  margin: 0 auto;
  display: block;
  padding: 15px 0;
  cursor: pointer;
}

@media (max-width: 599px) {
  .contact form .form_btn input {
    width: 90%;
  }
}

.iframe iframe {
  vertical-align: bottom;
}

.page_thanks {
  padding: 200px 0;
  background-color: #000;
}

.page_thanks h3 {
  text-align: center;
  color: #fff;
  font-size: 32px;
  margin-bottom: 30px;
}

@media (max-width: 599px) {
  .page_thanks h3 {
    font-size: 24px;
  }
}

.page_thanks .thanks_btn {
  background-color: #ff00ff;
  width: 400px;
  color: #fff;
  margin: 0 auto;
  display: block;
  padding: 20px 0;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  border-radius: 40px;
}

@media (max-width: 599px) {
  .page_thanks .thanks_btn {
    width: 90%;
  }
}

.page_privacy {
  background-color: #000;
  padding: 150px 0 50px;
}

@media (max-width: 599px) {
  .page_privacy {
    padding: 50px 0;
  }
}

.page_privacy .privacy_item {
  margin-bottom: 50px;
}

.page_privacy .privacy_item h3 {
  position: relative;
  color: #fff;
  font-size: 24px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

@media (max-width: 599px) {
  .page_privacy .privacy_item h3 {
    font-size: 20px;
  }
}

.page_privacy .privacy_item h3::after {
  content: "";
  background: #ff00ff;
  height: 3px;
  width: 100%;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.page_privacy .privacy_item ul {
  margin-top: 10px;
}

.page_privacy .privacy_item ul li {
  color: #fff;
}

.privacy_btn {
  text-align: center;
  text-decoration: underline;
  font-size: 18px;
  display: block;
  margin-bottom: 30px;
}

.wpcf7-response-output {
  background-color: #fff;
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}

.fadein.active {
  -webkit-animation: .8s forwards fadein;
          animation: .8s forwards fadein;
}

.fadein2 {
  opacity: 0;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}

.fadein2.active {
  -webkit-animation: .8s forwards .1s fadein;
          animation: .8s forwards .1s fadein;
}

.fadein3 {
  opacity: 0;
  -webkit-transform: translateY(3%);
          transform: translateY(3%);
}

.fadein3.active {
  -webkit-animation: .8s forwards .2s fadein;
          animation: .8s forwards .2s fadein;
}

.leftin {
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  overflow: hidden;
}

.leftin.active {
  -webkit-animation: .5s forwards leftin;
          animation: .5s forwards leftin;
}

.rightin {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  overflow: hidden;
}

.rightin.active {
  -webkit-animation: .5s forwards rightin;
          animation: .5s forwards rightin;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
    -webkit-transform: translateY(3%);
            transform: translateY(3%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes leftin {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes leftin {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes rightin {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes rightin {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
/*# sourceMappingURL=style.css.map */