@charset "UTF-8";
/* scssファイルインポート */
/* ---------------------------------------------------------------------------- */
/* foundation 
/* 要素の初期化・mixinの設定
/* ---------------------------------------------------------------------------- */
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
  color: #202020;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  display: none;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

@media (max-width: 576px) {
  .phoneNone {
    display: none;
  }
}

@media (min-width: 576px) {
  .pcNone {
    display: none;
  }
}

/* ---------------------------------------------------------------------------- */
/* layout
/* 大枠のレイアウトの設定
/* ---------------------------------------------------------------------------- */
/*           グリッドレイアウト           */
/*----------------------------------*/
/* ---------------------------------------------------------------------------- */
/* object -> component
/* 再利用可能なパーツ
/* ---------------------------------------------------------------------------- */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 70px;
  margin-top: 15px 0 0 0;
  padding: 0 15px;
}

@media (max-width: 576px) {
  .header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 55px;
    margin: 0;
    padding: 0 5px 0 5px;
    background-color: #fff;
    z-index: 2000;
  }
}

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

.header__left__ul__li {
  text-align: center;
  margin: 0 0 0 10px;
}

.header__left__ul__li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #382f2f;
  text-decoration: none;
}

.header__left__ul__li a:focus {
  outline: none;
}

.header__left__ul__li a .logoImg {
  width: 55px;
  height: 55px;
}

@media (max-width: 1025px) {
  .header__left__ul__li a .logoImg {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 1000px) {
  .header__left__ul__li a .logoImg {
    width: 40px;
    height: 40px;
    margin: 4px 0 0 0;
  }
}

@media (max-width: 576px) {
  .header__left__ul__li a .logoImg {
    margin: 3px 0 0 0;
  }
}

.header__left__ul__li a .logoText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 0 6px;
}

@media (max-width: 1000px) {
  .header__left__ul__li a .logoText {
    margin-bottom: -4px;
  }
}

.header__left__ul__li a .logoText__title {
  margin-bottom: -4px;
  font-size: 1.5rem;
  letter-spacing: 3px;
  font-family: 'Arial';
  font-weight: bold;
}

@media (max-width: 1000px) {
  .header__left__ul__li a .logoText__title {
    font-size: 1.2rem;
  }
}

.header__left__ul__li a .logoText__subTtitle {
  margin-bottom: -4px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-family: 'Verdana';
}

@media (max-width: 1000px) {
  .header__left__ul__li a .logoText__subTtitle {
    font-size: 0.6rem;
  }
}

.header__right {
  margin: 0;
}

@media (max-width: 1000px) {
  .header__right {
    display: none;
  }
}

.header__right__ul {
  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;
}

.header__right__ul__li {
  margin-right: 40px;
}

.header__right__ul__li:last-child {
  margin-right: 0;
}

.header__right__ul__li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #382f2f;
  text-decoration: none;
}

.header__right__ul__li__textTop {
  font-size: 1.1rem;
}

@media (max-width: 1148px) {
  .header__right__ul__li__textTop {
    font-size: 0.9rem;
  }
}

.header__right__ul__li__textBottom {
  font-size: 0.7rem;
}

.header__right__ul__li__textBottom:hover {
  font-weight: bold;
}

@media (max-width: 1148px) {
  .header__right__ul__li__textBottom {
    font-size: 0.5rem;
  }
}

.header__right__ul__li__invite {
  color: #fff;
  font-size: 1rem;
}

@media (max-width: 1148px) {
  .header__right__ul__li__invite {
    font-size: 0.9rem;
  }
}

@media (min-width: 1001px) {
  .header__right1 {
    display: none;
  }
}

.header__right1__hamburger {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  z-index: 3;
  right: 13px;
  top: 6px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}

.header__right1__hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #4B4A4A;
}

.header__right1__hamburger span:nth-child(1) {
  top: 10px;
}

.header__right1__hamburger span:nth-child(2) {
  top: 20px;
}

.header__right1__hamburger span:nth-child(3) {
  top: 30px;
}

.header__right1 .active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}

.header__right1 .active span:nth-child(1) {
  top: 20px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.header__right1 .active span:nth-child(2) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.header__right1 .active span:nth-child(3) {
  opacity: 0;
}

.header__invitation {
  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;
  width: 100%;
  max-width: 270px;
  height: 48px;
  padding: 5px 25px;
  background: linear-gradient(-135deg, #e6bc96, #a36bca);
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .header__invitation {
    max-width: 230px;
  }
}

@media (max-width: 576px) {
  .header__invitation {
    max-width: 200px;
    height: 60px;
  }
}

@media (max-width: 440px) {
  .header__invitation {
    max-width: 190px;
    height: 55px;
  }
}

@media (min-width: 576px) {
  .scrollHeader {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    height: 70px;
    margin: 0;
    padding: 0 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
    z-index: 2000;
  }
}

@media (max-width: 576px) {
  .scrollPhoneHeader {
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  }
}

.footer {
  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;
  width: 100%;
  height: 120px;
  background-color: #2b2b2b;
}

@media (max-width: 440px) {
  .footer {
    height: 90px;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer__content__top {
  margin: 0 0 10px 0;
}

@media (max-width: 440px) {
  .footer__content__top {
    margin: 0 0 5px 0;
  }
}

.footer__content__top p {
  color: #fff;
  font-family: 'Arial';
}

@media (max-width: 440px) {
  .footer__content__top p {
    font-size: 0.8rem;
  }
}

@media (max-width: 360px) {
  .footer__content__top p {
    font-size: 0.7rem;
  }
}

.footer__content__copy p {
  color: #fff;
  font-size: 0.7rem;
}

@media (max-width: 440px) {
  .footer__content__copy p {
    font-size: 0.6rem;
  }
}

/* liScroll styles */
.tickercontainer {
  /* the outer div with the black border */
  width: 100%;
  min-height: 50px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: center;
}

/* that serves as a mask. so you get a sort of padding both left and right */
.tickercontainer .mask {
  position: relative;
  width: 100%;
  overflow: hidden;
}

ul.newsticker {
  /* that's your list */
  position: relative;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* important: display inline gives incorrect results when you check for elem's width */
ul.newsticker li {
  float: left;
  margin: 10px;
  padding: 0;
}

ul.er-controls {
  list-style: none;
  display: inline-block;
  padding: 0;
}

ul.er-controls > li {
  display: inline-block;
  padding: 0 10px;
  background: #f0f0f0;
  margin: 5px;
  border-radius: 5px;
  height: 40px;
  line-height: 40px;
}

ul.er-controls > li:hover {
  background: #f5f5f5;
  cursor: pointer;
}

.button_h10 {
  text-decoration: none;
  display: inline-block;
  padding: 6px 15px 6px 15px;
  color: #382f2f;
  background: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #382f2f;
  position: relative;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
  text-align: center;
  cursor: pointer;
}

.button_h10:before, .button_h10:after {
  content: '';
  display: block;
  position: absolute;
  border-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  width: 10px;
  height: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.button_h10:before {
  top: -6px;
  left: -6px;
  border-width: 1px 0 0 1px;
  z-index: 1;
}

.button_h10:after {
  bottom: -6px;
  right: -6px;
  border-width: 0 1px 1px 0;
  z-index: 1;
}

.button_h10:hover {
  text-decoration: none;
  color: #fff;
  background-color: #382f2f;
  border-color: #fff;
}

.button_h10:hover:before, .button_h10:hover:after {
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-color: #382f2f;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-list {
  height: 700px;
}

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

@media (max-width: 1000px) {
  .slick-list {
    height: 600px;
  }
}

@media (max-width: 576px) {
  .slick-list {
    height: 950px;
  }
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../img/slick.eot");
  src: url("../img/slick.eot?#iefix") format("embedded-opentype"), url("../img/slick.woff") format("woff"), url("../img/slick.ttf") format("truetype"), url("../img/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  z-index: 1000;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 30px;
  line-height: 1;
  color: black;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: 50px;
  outline: none;
  text-decoration: none;
}

@media (max-width: 576px) {
  .slick-prev {
    left: 25px;
  }
}

@media (max-width: 440px) {
  .slick-prev {
    left: 15px;
  }
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: 50px;
  outline: none;
  text-decoration: none;
}

@media (max-width: 576px) {
  .slick-next {
    right: 25px;
  }
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -40px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

.scroll-icons {
  display: inline-block;
  position: absolute;
  z-index: 1;
  padding: 10px 10px 70px;
  overflow: hidden;
  color: black;
  width: auto !important;
  font-size: 10px;
  font-family: 'Josefin Sans', sans-serif;
  line-height: 1;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  outline: none;
}

.scroll-icons:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: rgba(0, 0, 0, 0.219);
}

.scroll-icons:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 60px;
  background: black;
  -webkit-animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

@keyframes sdl {
  0% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  50.1% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
            transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform-origin: 0 100%;
  }
}

.cp_ipradio {
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.cp_ipradio .option-input {
  position: relative;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 25px;
  margin-right: 0.5rem;
  cursor: pointer;
  -webkit-transition: all 0.15s ease-out 0s;
  transition: all 0.15s ease-out 0s;
  color: #ffffff;
  border: none;
  outline: none;
  background: #d7cbcb;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.cp_ipradio .option-input:hover {
  background: #d6a9a9;
}

.cp_ipradio .option-input:checked {
  background: #da3c41;
}

.cp_ipradio .option-input:checked::before {
  color: #ffffff;
  font-size: 17px;
  line-height: 25px;
  position: absolute;
  display: inline-block;
  width: 25px;
  height: 25px;
  text-align: center;
}

.cp_ipradio .option-input:checked::after {
  position: relative;
  display: block;
  content: '';
  -webkit-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #da3c41;
}

.cp_ipradio .option-input.radio {
  border-radius: 50%;
}

.cp_ipradio .option-input.radio::after {
  border-radius: 50%;
}

.cp_ipradio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 40px;
}

.cp_ipradio label p {
  margin: 2px 0 0 0;
}

.cp_ipradio .option-input:disabled {
  cursor: not-allowed;
  background: #b8b7b7;
}

.cp_ipradio .option-input:disabled::before {
  font-size: 20px;
  line-height: 30px;
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  content: '✖︎';
  text-align: center;
}

.cp_ipradio .disabled {
  color: #9e9e9e;
}

@-webkit-keyframes click-wave {
  0% {
    position: relative;
    width: 30px;
    height: 30px;
    opacity: 0.35;
  }
  100% {
    width: 200px;
    height: 200px;
    margin-top: -80px;
    margin-left: -80px;
    opacity: 0;
  }
}

@keyframes click-wave {
  0% {
    position: relative;
    width: 30px;
    height: 30px;
    opacity: 0.35;
  }
  100% {
    width: 200px;
    height: 200px;
    margin-top: -80px;
    margin-left: -80px;
    opacity: 0;
  }
}

.cp_ipselect {
  overflow: hidden;
  text-align: center;
}

.cp_ipselect select {
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.cp_ipselect select::-ms-expand {
  display: none;
}

.cp_ipselect.cp_sl01 {
  position: relative;
}

.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 1em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #382f2f;
  pointer-events: none;
}

/* 非表示 */
.is-hide {
  display: none;
}

/* ローディング画面をフェードアウト */
.fadeout-bg {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
  -webkit-transition-duration: .8s;
          transition-duration: .8s;
  opacity: 0;
  pointer-events: none;
}

/* ローダーをフェードアウト */
.fadeout-loader {
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: .9s;
          transition-delay: .9s;
  -webkit-transition-duration: .3s;
          transition-duration: .3s;
  opacity: 0;
  pointer-events: none;
}

/* ローディング画面 */
#loader-bg {
  background: #ffffff;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

#loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 400px;
}

#loader p {
  color: #454545;
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

#loader p img {
  display: inline-block;
}

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

@media (min-width: 576px) {
  .lo-Custom h5 {
    font-size: 1rem;
  }
}

.lo-Custom__text1 {
  margin: 0 0 5px 0;
}

.ball-beat {
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#fadeSelect {
  -webkit-animation: fadeSelect 1.5s ease 0s;
          animation: fadeSelect 1.5s ease 0s;
}

@-webkit-keyframes fadeSelect {
  /*animetion-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}

@keyframes fadeSelect {
  /*animetion-nameで設定した値を書く*/
  0% {
    opacity: 0;
  }
  /*アニメーション開始時は不透明度0%*/
  100% {
    opacity: 1;
  }
  /*アニメーション終了時は不透明度100%*/
}

/*
Animate.css - http://daneden.me/animate
Licensed under the ☺ license (http://licence.visualidiot.com/)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
body {
  /* Addresses a small issue in webkit: http://bit.ly/NEdoDq */
  -webkit-backface-visibility: hidden;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
            transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
            transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
            transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
            transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes swing {
  20%, 40%, 60%, 80%, 100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
            transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
            transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
            transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
            transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
            transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
            transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
            transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotateY(0);
            transform: perspective(400px) rotateY(0);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
            transform: perspective(400px) translateZ(150px) rotateY(170deg);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
            transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
            transform: perspective(400px) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) scale(1);
            transform: perspective(400px) scale(1);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
}

.flip {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flip;
  -o-backface-visibility: visible !important;
  -o-animation-name: flip;
  backface-visibility: visible !important;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
            transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
            transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInX;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInX;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
            transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
            transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  -moz-animation-name: flipOutX;
  -moz-backface-visibility: visible !important;
  -o-animation-name: flipOutX;
  -o-backface-visibility: visible !important;
  animation-name: flipOutX;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
            transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
            transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipInY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipInY;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
            transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-backface-visibility: visible !important;
  -moz-animation-name: flipOutY;
  -o-backface-visibility: visible !important;
  -o-animation-name: flipOutY;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
            transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
            transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
            transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
            transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
            transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
            transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
            transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(-200deg);
            transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-transform: rotate(200deg);
            transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
            transform: rotate(60deg);
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
            transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
            animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
            transform: translateY(700px);
    opacity: 0;
  }
}

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
            transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
            transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
            transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
            transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
            transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
            transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
            transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
  -webkit-animation-duration: 0.25s;
  animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */
@-webkit-keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
  }
}

@keyframes wiggle {
  0% {
    -webkit-transform: skewX(9deg);
            transform: skewX(9deg);
  }
  10% {
    -webkit-transform: skewX(-8deg);
            transform: skewX(-8deg);
  }
  20% {
    -webkit-transform: skewX(7deg);
            transform: skewX(7deg);
  }
  30% {
    -webkit-transform: skewX(-6deg);
            transform: skewX(-6deg);
  }
  40% {
    -webkit-transform: skewX(5deg);
            transform: skewX(5deg);
  }
  50% {
    -webkit-transform: skewX(-4deg);
            transform: skewX(-4deg);
  }
  60% {
    -webkit-transform: skewX(3deg);
            transform: skewX(3deg);
  }
  70% {
    -webkit-transform: skewX(-2deg);
            transform: skewX(-2deg);
  }
  80% {
    -webkit-transform: skewX(1deg);
            transform: skewX(1deg);
  }
  90% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
  100% {
    -webkit-transform: skewX(0deg);
            transform: skewX(0deg);
  }
}

.wiggle {
  -webkit-animation-name: wiggle;
  animation-name: wiggle;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

.animated.wiggle {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@media (max-width: 1001px) {
  .globalMenuSp {
    position: fixed;
    top: 0;
    left: 0;
    color: #382f2f;
    background: #fff;
    text-align: center;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    width: 100%;
    z-index: 2;
  }
}

@media (max-width: 1001px) and (min-width: 576px) {
  .globalMenuSp {
    position: absolute;
  }
}

@media (max-width: 1001px) {
  .globalMenuSp__ul {
    background: #DEDEDE;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .globalMenuSp__ul a {
    text-decoration: none;
  }
  .globalMenuSp__ul__li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    list-style-type: none;
    padding: 0;
    width: 100%;
    height: 55px;
    border-bottom: 1px solid #fff;
  }
  .globalMenuSp__ul__li__textTop {
    font-size: 1rem;
  }
  .globalMenuSp__ul__li__textBottom {
    font-size: 0.5rem;
  }
  .globalMenuSp__ul__li .lastTextBottom {
    color: #fff;
  }
  .globalMenuSp__ul .g-u-l {
    pointer-events: none;
  }
}

@media (max-width: 1001px) and (min-width: 576px) {
  .globalMenuSp__ul .g-u-l {
    height: 73px;
  }
}

@media (max-width: 1001px) {
  .globalMenuSp__ul .g-u-l-bottom {
    background: #a36bca;
    /* fallback for old browsers */
    /* Chrome 10-25, Safari 5.1-6 */
    background: -webkit-gradient(linear, left top, right top, from(#a36bca), to(#fcba57));
    background: linear-gradient(to right, #a36bca, #fcba57);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    border-bottom: 0px solid #fff;
  }
  .globalMenuSp__ul .g-u-l-bottom h3, .globalMenuSp__ul .g-u-l-bottom h4 {
    color: #fff;
  }
  nav.active {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@media (max-width: 576px) {
  #navAnimation-innner:hover {
    background-color: #fff;
    border-radius: 0px;
  }
}

.section {
  margin: 70px 0 180px 0;
}

.last-section {
  margin: 70px 0 180px 0;
}

@media (max-width: 576px) {
  .last-section {
    margin: 40px 0 100px 0;
  }
}

.only-section {
  margin: 70px 0 100px 0;
}

.section-title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 70px;
}

@media (max-width: 360px) {
  .section-title {
    margin-bottom: 40px;
  }
}

.section-title h1, .section-title h2 {
  font-size: 2rem;
  letter-spacing: 12px;
  margin-right: -10px;
}

@media (max-width: 768px) {
  .section-title h1, .section-title h2 {
    font-size: 1.7rem;
    letter-spacing: 10px;
  }
}

.poster__container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 500px;
  height: 250px;
  background: #7b4397;
  background: -webkit-gradient(linear, left top, right top, from(#7b4397), to(#dc2430));
  background: linear-gradient(to right, #7b4397, #dc2430);
  font-family: 'Noto Sans JP', sans-serif;
  overflow: hidden;
}

@media (max-width: 576px) {
  .poster__container {
    width: 360px;
    height: 240px;
  }
}

@media (max-width: 360px) {
  .poster__container {
    width: 300px;
  }
}

.poster__title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
}

.poster__text {
  margin-top: 5px;
  font-size: 1.7rem;
  font-weight: bold;
  color: #fff;
}

@media (max-width: 576px) {
  .poster__text {
    font-size: 1.4rem;
  }
}

.poster__subText {
  margin-top: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-decoration: line-through;
}

.poster__customFont {
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Arial';
}

@media (max-width: 576px) {
  .poster__customFont {
    font-size: 1.15rem;
  }
}

.poster__link {
  text-decoration: none;
  outline: none;
}

.poster__link--nonEvent {
  pointer-events: none;
}

.poster__border {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 97%;
  height: 95%;
  border: 3px solid #fff;
}

.poster__button {
  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;
  width: 100%;
  max-width: 270px;
  height: 60px;
  padding: 5px 20px;
  margin-top: 20px;
  color: #382f2f;
  background-color: #fff;
  border: none;
  font-weight: bold;
}

.poster .shiny-button::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-button 3s ease-in-out infinite;
          animation: shiny-button 3s ease-in-out infinite;
}

@-webkit-keyframes shiny-button {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes shiny-button {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

/* ---------------------------------------------------------------------------- */
/* object -> project
/* 主体として使用するCSS
/* ---------------------------------------------------------------------------- */
.top__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
}

@media (min-width: 1658px) {
  .top__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  .top__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: relative;
    margin-top: -70px;
    padding: 0;
  }
}

.top__content {
  width: 80%;
}

@media (max-width: 768px) {
  .top__content {
    width: 100%;
  }
}

.top__img-pc {
  position: relative;
  max-height: 700px;
}

@media (max-width: 1360px) {
  .top__img-pc {
    max-height: 500px;
  }
}

@media (max-width: 1000px) {
  .top__img-pc {
    max-height: 400px;
  }
}

@media (max-width: 768px) {
  .top__img-pc {
    max-height: 100%;
  }
}

@media (max-width: 576px) {
  .top__img-pc {
    display: none;
  }
}

.top__img-sp {
  display: none;
}

@media (max-width: 576px) {
  .top__img-sp {
    display: block;
  }
}

.top__messages {
  position: absolute;
  top: 350px;
  left: 1180px;
}

@media (max-width: 1658px) {
  .top__messages {
    right: 100px;
    left: auto;
  }
}

@media (max-width: 1440px) {
  .top__messages {
    top: 300px;
  }
}

@media (max-width: 1148px) {
  .top__messages {
    top: 200px;
  }
}

@media (max-width: 1000px) {
  .top__messages {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .top__messages {
    top: auto;
    bottom: 200px;
    right: 5px;
  }
}

.top__boxes {
  position: relative;
}

.top__box {
  height: 40px;
  margin-bottom: 15px;
}

.top__box--last {
  margin-bottom: 0;
}

@media (min-width: 1000px) {
  .top__box {
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .top__box {
    height: 35px;
    margin-bottom: 10px;
    text-align: right;
  }
}

.top__arrow {
  position: absolute;
  top: 200px;
  left: 350px;
}

@media (max-width: 1148px) {
  .top__arrow {
    left: 400px;
  }
}

@media (max-width: 1000px) {
  .top__arrow {
    display: none;
  }
}

.top__arrow-phone {
  display: none;
}

@media (max-width: 768px) {
  .top__arrow-phone {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 40px 0 60px 0;
  }
}

.top__text {
  display: inline-block;
  padding: 7.5px 15px;
  font-size: 1.1rem;
  background-color: #fff;
}

@media (max-width: 768px) {
  .top__text {
    padding: 5px 10px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .top__text {
    font-size: 0.9rem;
  }
}

@media (max-width: 440px) {
  .top__text {
    font-size: 0.85rem;
  }
}

@media (max-width: 380px) {
  .top__text {
    font-size: 0.8rem;
  }
}

.top__line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(177, 0, 96, 0.4)));
  background: linear-gradient(transparent 75%, rgba(177, 0, 96, 0.4) 75%);
}

.top__poster {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 80px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #7b4397;
  background: -webkit-gradient(linear, left top, right top, from(#7b4397), to(#dc2430));
  background: linear-gradient(to right, #7b4397, #dc2430);
  overflow: hidden;
}

@media (min-width: 768px) {
  .top__poster {
    display: none;
  }
}

.top__posterLink {
  text-decoration: none;
  outline: none;
}

.top__posterContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top__posterTilte {
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

.top__posterSubTilte {
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
}

.top__customFont {
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  font-family: 'Arial';
}

.top__shiny-button::before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  -webkit-animation: shiny-button 3s ease-in-out infinite;
          animation: shiny-button 3s ease-in-out infinite;
}

@-webkit-keyframes top__shiny-button {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes top__shiny-button {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.concept__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 20px;
}

.concept__sentence {
  margin-bottom: 50px;
  line-height: 2.5;
}

.concept__sentence--last {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .concept__sentence {
    font-size: 0.9rem;
  }
}

.question__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  background-color: #F8F8F8;
  padding: 40px;
}

@media (max-width: 576px) {
  .question__container {
    padding: 40px 20px;
  }
}

.question__title {
  width: 100%;
  margin-bottom: 40px;
  font-size: 1.3rem;
  text-align: left;
}

@media (max-width: 576px) {
  .question__title {
    font-size: 1.1rem;
  }
}

.question__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .question__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.question__leftBox {
  width: 48%;
}

@media (max-width: 768px) {
  .question__leftBox {
    width: 100%;
  }
}

.question__rightBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
}

@media (max-width: 768px) {
  .question__rightBox {
    width: 100%;
  }
}

.question__sentence {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
}

.question__sentence--last {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .question__text {
    font-size: 0.9rem;
  }
}

.question__line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(177, 0, 96, 0.4)));
  background: linear-gradient(transparent 75%, rgba(177, 0, 96, 0.4) 75%);
}

.question__invite {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 768px) {
  .question__invite {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .question__invite {
    font-size: 0.9rem;
  }
}

.demerit__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 20px;
}

.demerit__sentence {
  line-height: 4;
}

@media (max-width: 576px) {
  .demerit__sentence {
    font-size: 0.9rem;
  }
}

.demerit__line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(177, 0, 96, 0.4)));
  background: linear-gradient(transparent 75%, rgba(177, 0, 96, 0.4) 75%);
}

.recommend__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 40px;
}

@media (max-width: 576px) {
  .recommend__container {
    padding: 0 20px;
  }
}

.recommend__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

@media (max-width: 768px) {
  .recommend__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.recommend__leftBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
}

@media (max-width: 768px) {
  .recommend__leftBox {
    width: 100%;
    margin-bottom: 40px;
  }
}

.recommend__rightBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 48%;
}

@media (max-width: 768px) {
  .recommend__rightBox {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.recommend__sentence {
  line-height: 3;
}

@media (max-width: 576px) {
  .recommend__sentence {
    font-size: 0.9rem;
  }
}

.recommend__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 70px;
}

.advantage__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.advantage__subTitle {
  margin-bottom: 15px;
}

.advantage__subText {
  font-size: 1.2rem;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .advantage__subText {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .advantage__subText {
    margin-bottom: 30px;
  }
}

.advantage__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 40px 40px 40px;
}

@media (max-width: 576px) {
  .advantage__container {
    margin: 0 20px 20px 20px;
  }
  .advantage__container--last {
    margin: 0 20px;
  }
}

.advantage__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  background-color: #F8F8F8;
  padding: 40px;
}

@media (max-width: 768px) {
  .advantage__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (max-width: 576px) {
  .advantage__boxes {
    padding: 40px 20px;
  }
}

.advantage__leftBox {
  width: 48%;
}

@media (max-width: 768px) {
  .advantage__leftBox {
    width: 100%;
  }
}

.advantage__rightBox {
  width: 48%;
}

@media (max-width: 768px) {
  .advantage__rightBox {
    width: 100%;
  }
}

.advantage__contentTitle {
  margin-bottom: 20px;
  padding: 10px;
  background-color: #fff;
  border-bottom: 5px solid rgba(177, 0, 96, 0.4);
}

@media (max-width: 576px) {
  .advantage__contentSubTitle {
    font-size: 0.9rem;
  }
}

.advantage__sentence {
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .advantage__text {
    font-size: 0.9rem;
  }
}

.advantage__recommend {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
}

.advantage__recommendTitle {
  color: #555151;
}

.advantage__line {
  width: 100%;
  border-top: 1px dotted #707070;
}

.advantage__item {
  margin-bottom: 5px;
}

.advantage__item--last {
  margin-bottom: 0;
}

@media (max-width: 576px) {
  .advantage__href {
    font-size: 0.9rem;
  }
}

.advantage__image--first {
  margin-bottom: 15px;
}

.advantage__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 70px;
}

.strongText {
  text-shadow: 0.1px 0.1px #382f2f, -0.1px 0.1px #382f2f, -0.1px -0.1px #382f2f, 0.1px -0.1px #382f2f, 0.1px 0px #382f2f, 0px 0.1px #382f2f, -0.1px 0px #382f2f, 0px -0.1px #382f2f;
}

@media (min-width: 576px) {
  .sp-required {
    display: none;
  }
}

@media (max-width: 576px) {
  .sp-none {
    display: none;
  }
}

.price {
  width: 100%;
}

.price__title {
  font-size: 2.5rem;
  letter-spacing: 15px;
  text-align: center;
}

@media (max-width: 1440px) {
  .price__title {
    font-size: 2.3rem;
  }
}

@media (max-width: 768px) {
  .price__title {
    font-size: 1.7rem;
  }
}

@media (max-width: 440px) {
  .price__title {
    letter-spacing: 13px;
  }
}

.price__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 576px) {
  .price__container {
    padding: 0 20px;
  }
}

.price__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

@media (max-width: 1000px) {
  .price__cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.price__cards:first-child {
  margin-bottom: 40px;
}

@media (max-width: 1000px) {
  .price__cards:first-child {
    margin-bottom: 0;
  }
}

.price__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 450px;
  height: 450px;
  padding: 30px;
  background-color: #F8F8F8;
}

@media (max-width: 576px) {
  .price__card {
    width: 100%;
    height: 470px;
    padding: 30px 20px;
  }
}

.price__card--left {
  margin: 0 20px 0 0;
}

@media (max-width: 1000px) {
  .price__card--left {
    margin: 0 0 40px 0;
  }
}

.price__card--right {
  margin: 0 0 0 20px;
}

@media (max-width: 1000px) {
  .price__card--right {
    margin: 0 0 40px 0;
  }
}

@media (max-width: 1000px) {
  .price__card--pair {
    margin: 0;
  }
}

.price__card-title {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.price__card-sub-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  margin-bottom: 20px;
}

.price__contents {
  width: 100%;
  padding: 20px;
  background-color: #ffffff;
}

.price__content--top {
  margin-bottom: 15px;
}

.price__sentence {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 2;
}

.price__line {
  border-top: 1px dotted #707070;
}

@media (max-width: 1000px) {
  .price__text {
    font-size: 0.9rem;
  }
}

.price__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 30px;
}

.price__item {
  margin-bottom: 10px;
}

.price__item:last-child {
  margin-bottom: 0;
}

@media (max-width: 1000px) {
  .price__item {
    font-size: 0.9rem;
  }
}

.price__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 70px;
}

.how {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.how__title {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how__title__subTitle {
  margin-top: 15px;
}

.how__title__subTitle p {
  font-size: 1.2rem;
  letter-spacing: 3px;
}

@media (max-width: 768px) {
  .how__title__subTitle p {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}

@media (max-width: 576px) {
  .how__title__subTitle p {
    margin: 0 0 30px 0;
  }
}

.how__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.how__content__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 350px;
  margin: 20px 10px 0 10px;
}

@media (max-width: 576px) {
  .how__content__box {
    margin: 10px 10px 0 10px;
  }
}

.how__content__box img {
  margin: 30px 0 0 0;
  width: 75px;
  height: 75px;
}

.how__content__box__step {
  font-size: 1rem;
}

.how__content__box__title {
  margin: 30px 0 60px 0;
  font-size: 1.15rem;
  letter-spacing: 5px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(75%, transparent), color-stop(75%, rgba(177, 0, 96, 0.4)));
  background: linear-gradient(transparent 75%, rgba(177, 0, 96, 0.4) 75%);
}

@media (max-width: 576px) {
  .how__content__box__title {
    margin: 30px 0 30px 0;
  }
}

@media (max-width: 440px) {
  .how__content__box__title {
    font-size: 1rem;
    letter-spacing: 3px;
  }
}

.how__content__box__text {
  font-size: 0.9rem;
  margin: 0 0 5px 0;
}

@media (max-width: 440px) {
  .how__content__box__text {
    font-size: 0.8em;
    letter-spacing: 1px;
  }
}

@media (min-width: 1025px) {
  .how__content__box__p1 {
    display: none;
  }
}

@media (max-width: 1025px) {
  .how__content__box__p2 {
    display: none;
  }
}

@media (min-width: 1025px) {
  .how__content__box__p3 {
    display: none;
  }
}

@media (max-width: 1025px) {
  .how__content__box__p4 {
    display: none;
  }
}

@media (max-width: 1025px) {
  .how__content .how-custom {
    margin: 70px 10px 0 10px;
  }
}

@media (max-width: 576px) {
  .how__content .how-custom {
    margin: 20px 10px 0 10px;
  }
}

.reviews {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.reviews__sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 150px;
  margin: 0 0 50px 0;
  background-color: #F7F7F7;
}

@media (max-width: 1000px) {
  .reviews__sub {
    height: 120px;
  }
}

.reviews__sub__textTop {
  font-size: 1.4rem;
  letter-spacing: 2px;
  margin-bottom: 7px;
}

@media (max-width: 440px) {
  .reviews__sub__textTop {
    font-size: 1.1rem;
  }
}

.reviews__sub__textBottom {
  font-size: 0.8rem;
}

@media (max-width: 440px) {
  .reviews__sub__textBottom {
    font-size: 0.7rem;
  }
}

.reviews__content {
  width: 100%;
  max-width: 1100px;
  padding: 0 20px;
}

.reviews__content__box {
  margin: 0 0 40px 0;
}

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

@media (max-width: 576px) {
  .reviews__content__box__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-flow: column-reverse;
        flex-flow: column-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.reviews__content__box__top__sentence {
  margin-right: 10px;
}

@media (max-width: 576px) {
  .reviews__content__box__top__sentence {
    margin-right: 0;
  }
}

.reviews__content__box__top__sentence p {
  font-size: 0.9rem;
  line-height: 2.5;
}

@media (max-width: 768px) {
  .reviews__content__box__top__sentence p {
    font-size: 0.8rem;
  }
}

.reviews__content__box__top__img {
  margin-left: 10px;
}

@media (max-width: 576px) {
  .reviews__content__box__top__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
  }
}

.reviews__content__box__top__img img {
  width: 300px;
  height: 400px;
  max-width: none;
}

.reviews__content__box__top__img p {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: right;
}

@media (max-width: 1230px) {
  .reviews__content__box__top__img p {
    font-size: 1.1rem;
  }
}

@media (max-width: 440px) {
  .reviews__content__box__top__img p {
    font-size: 1rem;
  }
}

.reviews__content__box__bottom {
  margin-top: 20px;
  text-align: right;
}

.reviews__content__box__bottom p {
  font-size: 1.2rem;
}

@media (max-width: 1230px) {
  .reviews__content__box__bottom p {
    font-size: 1.1rem;
  }
}

@media (max-width: 440px) {
  .reviews__content__box__bottom p {
    font-size: 1rem;
  }
}

.reviews__content__line {
  margin: 0 10px 40px 10px;
  border-top: 0.5px solid #c4c4c4;
}

.reviews__button {
  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;
  width: 100%;
  max-width: 270px;
  height: 60px;
  padding: 5px 20px;
  margin-top: 50px;
  background: linear-gradient(-135deg, #e6bc96, #a36bca);
  cursor: pointer;
  text-decoration: none;
}

@media (max-width: 1000px) {
  .reviews__button {
    max-width: 230px;
  }
}

@media (max-width: 576px) {
  .reviews__button {
    max-width: 200px;
  }
}

@media (max-width: 440px) {
  .reviews__button {
    max-width: 190px;
    height: 55px;
  }
}

.reviews__button p {
  color: #fff;
  font-size: 1.1rem;
}

@media (max-width: 576px) {
  .reviews__button p {
    font-size: 1rem;
  }
}

.reviews__poster {
  margin-top: 60px;
}

@media (min-width: 576px) {
  .sp-required {
    display: none;
  }
}

@media (max-width: 576px) {
  .sp-none {
    display: none;
  }
}

.trainer {
  width: 100%;
}

.trainer__content {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 100%;
}

@media (max-width: 576px) {
  .trainer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trainer__content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin: 0 40px 0 -70px;
}

@media (max-width: 1230px) {
  .trainer__content__left {
    margin: 0 10px 0 -70px;
  }
}

@media (max-width: 1000px) {
  .trainer__content__left {
    margin: 0 -20px 0 -70px;
  }
}

@media (max-width: 576px) {
  .trainer__content__left {
    width: auto;
    margin: 20px 0 0 0;
  }
}

.trainer__content__left__sentence {
  padding: 10px 0 0 0;
}

.trainer__content__left__sentence__name {
  font-size: 2.8rem;
  letter-spacing: 7px;
  margin: 10px 0 10px 0;
}

@media (max-width: 1230px) {
  .trainer__content__left__sentence__name {
    font-size: 2.3rem;
  }
}

@media (max-width: 1000px) {
  .trainer__content__left__sentence__name {
    font-size: 2rem;
  }
}

.trainer__content__left__sentence__industry {
  font-size: 1.2rem;
}

@media (max-width: 1230px) {
  .trainer__content__left__sentence__industry {
    font-size: 1rem;
  }
}

@media (max-width: 1000px) {
  .trainer__content__left__sentence__industry {
    font-size: 0.9rem;
  }
}

.trainer__content__left__sentence__ruby {
  font-size: 0.7rem;
}

.trainer__content__left__sentence ul li {
  margin: 15px 0 15px -40px;
  list-style: none;
}

@media (max-width: 1000px) {
  .trainer__content__left__sentence ul li {
    margin: 8px 0 8px -40px;
  }
}

@media (max-width: 1230px) {
  .trainer__content__left__sentence ul li p {
    font-size: 0.9rem;
  }
}

@media (max-width: 360px) {
  .trainer__content__left__sentence ul li p {
    font-size: 0.8rem;
  }
}

.trainer__content__left__sentence ul .sns {
  margin: 15px 0 45px -38px;
}

.trainer__content__left__sentence ul .sns__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 30px;
}

.trainer__content__left__sentence ul .sns__box__detail {
  margin: 0 15px 0 0;
}

.trainer__content__left__sentence ul .sns__box__detail a {
  outline: none;
}

.trainer__content__left__sentence ul .sns__box__detail a img {
  width: 23px;
  height: 23px;
}

@media (max-width: 1000px) {
  .trainer__content__left__sentence ul .sns__box__detail a img {
    width: 19px;
    height: 19px;
  }
}

.trainer__content__left__sentence ul .sns__box__detail--lineOfficial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.trainer__content__right {
  position: relative;
  width: 100%;
  margin: 0 0 0 40px;
}

@media (max-width: 576px) {
  .trainer__content__right {
    width: auto;
    margin: 0 15px 0 0;
  }
}

.trainer__content__right img {
  width: 100%;
  max-width: 450px;
  -webkit-box-shadow: 16px 16px 0 0 #E8E8E8;
          box-shadow: 16px 16px 0 0 #E8E8E8;
}

@media (max-width: 1230px) {
  .trainer__content__right img {
    max-width: 400px;
  }
}

@media (max-width: 1000px) {
  .trainer__content__right img {
    max-width: 350px;
    -webkit-box-shadow: 8px 8px 0 0 #E8E8E8;
            box-shadow: 8px 8px 0 0 #E8E8E8;
  }
}

@media (max-width: 1000px) {
  .trainer__content__right img {
    max-width: 250px;
    -webkit-box-shadow: 5px 5px 0 0 #E8E8E8;
            box-shadow: 5px 5px 0 0 #E8E8E8;
  }
}

@media (max-width: 360px) {
  .trainer__content__right img {
    max-width: 200px;
  }
}

.trainer__content__right__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  position: absolute;
  width: 130px;
  height: 130px;
  border: 1px solid #382f2f;
  margin: -160px 0 0 -100px;
  z-index: 10;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  outline: none;
  text-decoration: none;
}

@media (max-width: 1230px) {
  .trainer__content__right__box {
    display: none;
  }
}

.trainer__content__right__box p {
  font-size: 0.9rem;
  margin: 0 0 7px -50px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.trainer__content__right__box hr {
  width: 70px;
  margin: 0 0 20px -25px;
  color: #382f2f;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.trainer__content__right__box:hover {
  background-color: #382f2f;
}

.trainer__content__right__box:hover p,
.trainer__content__right__box:hover hr {
  color: #fff;
}

.trainer__content2 {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  width: 100%;
  padding: 0 50px 0 50px;
}

@media (max-width: 576px) {
  .trainer__content2 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.trainer__content2__left {
  width: 100%;
  margin: 0 25px 0 0;
  padding: 0 0 0 100px;
}

@media (max-width: 1230px) {
  .trainer__content2__left {
    padding: 0 0 0 70px;
    width: 70%;
    margin: 0 35px 0 0;
  }
}

@media (max-width: 1000px) {
  .trainer__content2__left {
    display: none;
  }
}

@media (max-width: 576px) {
  .trainer__content2__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: auto;
    padding: 0 0 0 0;
    margin: 0 0 0 0;
  }
}

.trainer__content2__left__img1 img {
  width: 100%;
  max-width: 450px;
  -webkit-box-shadow: 16px 16px 0 0 #E8E8E8;
          box-shadow: 16px 16px 0 0 #E8E8E8;
}

@media (max-width: 1230px) {
  .trainer__content2__left__img1 img {
    max-width: 300px;
    -webkit-box-shadow: 8px 8px 0 0 #E8E8E8;
            box-shadow: 8px 8px 0 0 #E8E8E8;
    margin: 100px 0 0 0;
  }
}

@media (max-width: 1000px) {
  .trainer__content2__left__img1 img {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .trainer__content2__left__img1 img {
    max-width: 250px;
    -webkit-box-shadow: 5px 5px 0 0 #E8E8E8;
            box-shadow: 5px 5px 0 0 #E8E8E8;
    margin: 0 10px 0 0;
  }
}

.trainer__content2__left__img2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  margin: 50px 0 0 0;
}

.trainer__content2__left__img2 img {
  width: 100%;
  max-width: 450px;
  -webkit-box-shadow: 16px 16px 0 0 #E8E8E8;
          box-shadow: 16px 16px 0 0 #E8E8E8;
}

@media (min-width: 1230px) {
  .trainer__content2__left__img2 img {
    height: 300px;
  }
}

@media (max-width: 1230px) {
  .trainer__content2__left__img2 img {
    max-width: 300px;
    height: 200px;
    -webkit-box-shadow: 8px 8px 0 0 #E8E8E8;
            box-shadow: 8px 8px 0 0 #E8E8E8;
  }
}

@media (max-width: 576px) {
  .trainer__content2__left__img2 img {
    display: none;
  }
}

.trainer__content2__right {
  width: 100%;
  padding: 70px 30px 0 0;
  line-height: 2.5;
  text-align: center;
}

@media (max-width: 1230px) {
  .trainer__content2__right {
    min-width: 450px;
  }
}

@media (max-width: 1000px) {
  .trainer__content2__right {
    padding: 20px 0 0 0;
  }
}

@media (max-width: 576px) {
  .trainer__content2__right {
    text-align: left;
    min-width: 0px;
    max-width: 270px;
    padding: 0 0 0 0;
  }
}

.trainer__content2__right__title {
  font-size: 1.5rem;
  letter-spacing: 8px;
  margin: 0 0 20px 0;
}

@media (max-width: 1000px) {
  .trainer__content2__right__title {
    font-size: 1.4rem;
  }
}

@media (max-width: 576px) {
  .trainer__content2__right__title {
    text-align: center;
    margin: 0 0 10px 0;
    font-size: 1.1rem;
  }
}

.trainer__content2__right__text {
  font-size: 90%;
}

@media (max-width: 1230px) {
  .trainer__content2__right__text {
    font-size: 0.8rem;
  }
}

@media (max-width: 576px) {
  .trainer__content2__right__text {
    font-size: 0.7rem;
  }
}

.trainer__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-top: 70px;
}

.insta {
  position: relative;
}

@media (max-width: 576px) {
  .insta {
    height: 800px;
  }
}

@media (max-width: 440px) {
  .insta {
    height: 700px;
  }
}

@media (max-width: 380px) {
  .insta {
    height: 700px;
  }
}

@media (max-width: 380px) {
  .insta {
    height: 615px;
  }
}

@media (max-width: 360px) {
  .insta {
    height: 500px;
  }
}

.insta__content {
  margin: 150px 0 0 0;
}

.insta__content__ground {
  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;
  width: 100%;
  margin: 0 0 38px 0;
}

.insta__content__ground__row {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 30px 0 30px;
}

@media (max-width: 576px) {
  .insta__content__ground__row {
    display: none;
  }
}

.insta__content__ground__row img {
  opacity: .2;
}

.insta__content__ground .g-r-margin1 {
  margin: 0 30px 0 0;
}

.insta__content__ground .g-r-margin2 {
  margin: 0 0 0 30px;
}

.insta__content__ground__float {
  position: absolute;
  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;
  width: 80%;
  top: 17%;
  z-index: 10;
  overflow: hidden;
}

@media (max-width: 1025px) {
  .insta__content__ground__float {
    top: 13%;
  }
}

@media (max-width: 576px) {
  .insta__content__ground__float {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: auto;
  }
}

.insta__content__ground__float__row {
  width: 100%;
  height: 100%;
  margin: 0 5px 0 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 576px) {
  .insta__content__ground__float__row {
    width: 100%;
    max-width: 200px;
    margin: 0 0 5px 0;
  }
}

@media (max-width: 440px) {
  .insta__content__ground__float__row {
    max-width: 170px;
  }
}

@media (max-width: 380px) {
  .insta__content__ground__float__row {
    max-width: 150px;
  }
}

@media (max-width: 360px) {
  .insta__content__ground__float__row {
    max-width: 123px;
  }
}

.insta__content__ground__float__row img {
  opacity: .9;
}

.insta__content__ground__float__row:hover {
  opacity: .6;
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}

@media (max-width: 576px) {
  .insta__content__ground .g-f-1 {
    left: 35px;
  }
}

.insta__content__ground .g-f-2 {
  top: 107%;
}

@media (max-width: 1025px) {
  .insta__content__ground .g-f-2 {
    top: 111%;
  }
}

@media (max-width: 576px) {
  .insta__content__ground .g-f-2 {
    right: 35px;
  }
}

.insta__message {
  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;
  position: absolute;
  width: 43%;
  height: 200px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background-color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  z-index: 20;
}

@media (max-width: 1000px) {
  .insta__message {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .insta__message {
    height: 500px;
  }
}

@media (max-width: 380px) {
  .insta__message {
    height: 380px;
  }
}

@media (max-width: 360px) {
  .insta__message {
    height: 315px;
  }
}

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

@media (max-width: 1000px) {
  .insta__message__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 576px) {
  .insta__message__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

@media (max-width: 576px) {
  .insta__message__box__img {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.insta__message__box__img img {
  width: 23px;
  height: 23px;
  margin: 10.5px 10px 0 0;
}

@media (max-width: 440px) {
  .insta__message__box__img img {
    width: 20px;
    height: 20px;
    margin: 8.5px 5px 0 0;
  }
}

.insta__message__box__img p {
  margin: 4.5px 20px 0 0;
}

@media (max-width: 1360px) {
  .insta__message__box__img p {
    font-size: 1.3rem;
    margin: 7px 0 0 0;
  }
}

@media (max-width: 440px) {
  .insta__message__box__img p {
    font-size: 1.1rem;
  }
}

.insta__message__box__text p {
  margin: 0 0 0 20px;
}

@media (max-width: 1360px) {
  .insta__message__box__text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 1000px) {
  .insta__message__box__text p {
    margin: 10px 0 0 0;
  }
}

@media (max-width: 576px) {
  .insta__message__box__text p {
    margin: 10px 0 0 10px;
  }
}

@media (max-width: 440px) {
  .insta__message__box__text p {
    margin: 10px 0 0 7px;
    font-size: 0.7rem;
  }
}

@media (max-width: 380px) {
  .insta__message__box__text p {
    margin: 10px 0 0 10px;
    font-size: 0.65rem;
  }
}

.insta__message:hover {
  text-decoration: none;
  background-color: #382f2f;
}

.insta__message:hover p {
  color: #fff;
}

.insta__message:hover img {
  background-color: #fff;
  border-radius: 6px;
}

.insta a {
  text-decoration: none;
}

.access {
  position: relative;
  width: 100%;
}

.access__titleBack {
  position: absolute;
  z-index: -1;
  top: 380px;
  width: 100%;
}

.access__titleBack__ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.access__titleBack__ul__li p {
  font-size: 13rem;
  letter-spacing: 5px;
  font-weight: 100;
  color: #faf8f8;
}

@media (max-width: 1360px) {
  .access__titleBack__ul__li p {
    font-size: 9rem;
  }
}

.access__content {
  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;
  width: 100%;
}

.access__content__wrap {
  padding: 0 20px;
}

.access__content__wrap__title {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Arial';
}

.access__content__wrap__line {
  border-top: 1px dotted #707070;
}

.access__content__wrap img {
  width: 100%;
  max-width: 500px;
  margin-bottom: 40px;
}

.access__content__wrap iframe {
  width: 100%;
  height: 500px;
  margin-bottom: 40px;
}

.access__content__wrap__detail p {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .access__content__wrap__detail p {
    font-size: 0.9rem;
  }
}

@media (min-width: 768px) {
  .access__content__wrap__detail a {
    color: #382f2f;
    pointer-events: none;
    text-decoration: none;
  }
}

.contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}

.contact__img__box {
  position: relative;
}

.contact__img__box img {
  width: 100%;
  max-width: 700px;
  opacity: .15;
}

.contact__img__box__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

@media (max-width: 440px) {
  .contact__img__box__text {
    width: 100%;
    max-width: 350px;
  }
}

.contact__img__box__text h2 {
  margin-bottom: 50px;
  font-weight: bold;
  color: #000000;
}

@media (max-width: 768px) {
  .contact__img__box__text h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .contact__img__box__text h2 {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
}

@media (max-width: 440px) {
  .contact__img__box__text h2 {
    font-size: 1.05rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
}

.contact__img__box__text h2:after {
  content: "";
  display: block;
  width: 285px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  top: 40px;
  left: 0;
}

@media (max-width: 768px) {
  .contact__img__box__text h2:after {
    top: 35px;
    width: 255px;
    height: 1px;
  }
}

@media (max-width: 576px) {
  .contact__img__box__text h2:after {
    top: 32px;
    width: 232px;
    height: 1px;
  }
}

@media (max-width: 440px) {
  .contact__img__box__text h2:after {
    display: none;
  }
}

.contact__img__box__text p {
  color: #000000;
  font-weight: bold;
  margin: 0 0 5px 0;
}

@media (max-width: 768px) {
  .contact__img__box__text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact__img__box__text p {
    font-size: 0.8rem;
  }
}

.contact__img__box__text__detail {
  margin: 15px 0 15px 0;
}

@media (max-width: 440px) {
  .contact__img__box__text__detail {
    margin: 7px 0 7px 0;
  }
}

.contact__img__box__text__detail p {
  color: #000000;
  font-weight: bold;
}

@media (max-width: 768px) {
  .contact__img__box__text__detail p {
    font-size: 0.9rem;
  }
}

.contact .error_list {
  margin: 20px 0 -15px 0;
}

.contact .error_list li {
  margin-bottom: 5px;
  color: #E32121;
  font-size: 0.9rem;
}

@media (max-width: 440px) {
  .contact form {
    width: 100%;
    padding: 0 20px;
  }
}

.contact__concept__box--select {
  margin-top: 30px;
}

@media (max-width: 768px) {
  .contact__concept__box__title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .contact__concept__box__subTitle {
    font-size: 0.8rem;
  }
}

.contact__concept__box__required {
  color: #E32121;
}

@media (max-width: 1025px) {
  .contact__concept__box__required {
    margin-top: 2px;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .contact__concept__box dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact__concept__box dl dt {
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 40%;
  margin: 7px 0 0 0;
}

@media (max-width: 1025px) {
  .contact__concept__box dl dt {
    margin: 7px 0 10px 0;
  }
}

@media (max-width: 576px) {
  .contact__concept__box dl dt {
    width: 100%;
  }
}

.contact__concept__box dl dt .disONdanger {
  visibility: hidden;
}

.contact__concept__box dl .dtForm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .contact__concept__box dl .dtForm {
    width: 100%;
  }
}

.contact__concept__box dl .dtForm p {
  color: #382f2f;
  margin: 0;
}

@media (max-width: 576px) {
  .contact__concept__box dl .dtFormNone {
    display: none;
  }
}

.contact__concept__box dl dd {
  margin: 0 0 35px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60%;
}

@media (max-width: 576px) {
  .contact__concept__box dl dd {
    width: 100%;
  }
}

.contact__concept__box dl dd .inputBox {
  width: 400px;
  height: 40px;
  padding: 7px 10px;
  border: none;
  background-color: #f3f3f3c2;
}

@media (max-width: 440px) {
  .contact__concept__box dl dd .inputBox {
    width: 100%;
  }
}

.contact__concept__box dl dd label {
  margin: 0 20px 0 0;
}

.contact__concept__box dl dd select {
  width: 400px;
  height: 40px;
  padding: 7px 10px;
  border: none;
  background-color: #f3f3f3c2;
}

.contact__concept__box dl dd textarea {
  width: 400px;
  height: 300px;
  padding: 7px 10px;
  border: none;
  background-color: #f3f3f3c2;
  resize: none;
}

@media (max-width: 440px) {
  .contact__concept__box dl dd textarea {
    width: 100%;
    height: 500px;
  }
}

@media (max-width: 576px) {
  .contact__concept__box dl .ddForm {
    margin: -20px 0 15px 0;
  }
}

.contact__concept .disON {
  display: none;
}

.contact__button {
  margin-top: 20px;
}

.contact__button button {
  width: 230px;
  height: 55px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background-color: #b4b4b4;
  outline: none;
  cursor: pointer;
}

@media (max-width: 440px) {
  .contact__button button {
    width: 200px;
    height: 45px;
  }
}

.contact__poster {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.h-confirm {
  pointer-events: none;
  margin: 15px 0 0 0;
  padding: 0 10px 0 10px;
}

@media (min-width: 576px) {
  .h-confirm {
    position: -webkit-sticky;
    position: sticky;
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 576px) {
  .h-confirm {
    margin: 0 0 0 0;
    padding: 0 5px 0 5px;
  }
}

@media (min-width: 576px) {
  .h-confirm__li {
    margin: 0 0 5px 0;
  }
}

.confirm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: auto;
}

.confirm__content {
  margin: 50px 30px 10px 30px;
}

.confirm__btn button {
  width: 150px;
  height: 55px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background-color: #949494;
  outline: none;
  cursor: pointer;
}

@media (max-width: 440px) {
  .confirm__btn button {
    width: 120px;
    height: 45px;
  }
}

.confirm__btn__custom {
  margin: 0 0 0 30px;
  background-color: #E32121 !important;
}

.submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.submit__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
}

.submit__content__text__top {
  line-height: 2.5;
  margin-bottom: 10px;
}

@media (max-width: 576px) {
  .submit__content__text__top {
    line-height: 2;
  }
}

.submit__content__text__top h1 {
  margin-bottom: 70px;
  font-size: 1.5rem;
  text-align: center;
}

@media (max-width: 576px) {
  .submit__content__text__top h1 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .submit__content__text__top p {
    font-size: 0.9rem;
  }
}

.submit__content__text__bottom {
  line-height: 2.5;
}

@media (max-width: 576px) {
  .submit__content__text__bottom {
    line-height: 2;
  }
}

@media (max-width: 576px) {
  .submit__content__text__bottom p {
    font-size: 0.9rem;
  }
}

.submit__content__text__bottom span {
  color: #df1616;
}

.submit__content__text__bottom a {
  color: #0475bb;
  font-size: 0.9rem;
}

@media (max-width: 576px) {
  .submit__content__text__bottom a {
    font-size: 0.8rem;
  }
}

.submit__content__text__bottom__line {
  text-align: right;
}

.submit__content__btn {
  margin: 55px 0;
}

.submit__content__btn button {
  width: 230px;
  height: 55px;
  letter-spacing: 2px;
  border: none;
  color: #fff;
  background-color: #b4b4b4;
  outline: none;
  cursor: pointer;
}

@media (max-width: 440px) {
  .submit__content__btn button {
    width: 200px;
    height: 45px;
  }
}

/* ---------------------------------------------------------------------------- */
/* utility
/* 余白の調整や非表示の設定
/* ---------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------- */
/* Laravel.webpack.js
/* webpackで導入された初期のファイル
/* ---------------------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */