@charset "UTF-8";
body {
  font-family: '游ゴシック体','ヒラギノ丸ゴ ProN','Noto Sans CJK JP','Helvetica','Arial',sans-serif;
  color: black;
}

h1 {
  font-size: 46px;
  line-height: 62px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
    line-height: 35px;
  }
}

h2 {
  font-size: 36px;
  line-height: 56px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h2 {
    font-size: 25px;
    line-height: 35px;
  }
}

h3 {
  font-size: 50px;
  line-height: 66px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  h3 {
    font-size: 50px;
    line-height: 66px;
  }
}

h4 {
  font-size: 30px;
  line-height: 38px;
}

@media screen and (max-width: 768px) {
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
}

h5 {
  font-size: 33px;
  line-height: 48px;
}

@media screen and (max-width: 768px) {
  h5 {
    font-size: 24px;
    line-height: 29px;
  }
}

h6 {
  font-size: 28px;
  line-height: 48px;
}

@media screen and (max-width: 768px) {
  h6 {
    font-size: 19px;
    line-height: 22px;
  }
}

p, label, input, textarea {
  font-size: 24px;
  line-height: 40px;
}

@media screen and (max-width: 768px) {
  p, label, input, textarea {
    font-size: 18px;
    line-height: 26px;
  }
}

p.md {
  font-size: 17px;
  line-height: 17px;
}

@media screen and (max-width: 768px) {
  p.md {
    font-size: 14px;
    line-height: 17px;
  }
}

p.sm {
  font-size: 14px;
  line-height: 17px;
}

@media screen and (max-width: 768px) {
  p.sm {
    font-size: 12px;
    line-height: 17px;
  }
}

p.xs {
  font-size: 12px;
  line-height: 15px;
}

@media screen and (max-width: 768px) {
  p.xs {
    font-size: 10px;
    line-height: 15px;
  }
}

main {
  margin-top: 118px;
}

@media screen and (max-width: 1200px) {
  main {
    margin-top: 78px;
  }
}

.common__container--section {
  width: 80%;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .common__container--section {
    width: 90%;
    padding: 30px 0;
  }
}

.common__container--section--bg-color {
  background-color: #FAEFDA;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .common__container--section--bg-color {
    padding: 30px 0;
  }
}

.common__container--section--bg-color--inner {
  width: 70%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .common__container--section--bg-color--inner {
    width: 90%;
  }
}

.common__container--section--md {
  width: 70%;
  margin: 0 auto;
  padding: 60px 0;
}

@media screen and (max-width: 768px) {
  .common__container--section--md {
    width: 90%;
    padding: 30px 0;
  }
}

.common--heading {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .common--heading {
    margin-bottom: 15px;
  }
}

header {
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  background-color: white;
  z-index: 9;
}

.header__container--inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .header__container--inner {
    padding: 10px 15px;
  }
}

.header__container--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__image--logo {
  width: 60px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .header__image--logo {
    width: 30px;
    margin-right: 7px;
  }
}

.header__text--companyCatchText {
  font-weight: bold;
  line-height: 5px;
}

.header__text--companyName {
  color: #DAA521;
  font-weight: 600;
  line-height: 1.4;
}

.header__text--companyAddress {
  color: #919191;
  line-height: 5px;
}

.header__container--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 1200px) {
  .header__container--right {
    position: fixed;
    bottom: 0;
    left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: unset;
        -ms-flex-align: unset;
            align-items: unset;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
  }
}

@media screen and (max-width: 1200px) {
  .header--unpinned {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.header__button--email {
  background-color: #27536F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
}

@media screen and (max-width: 1200px) {
  .header__button--email {
    padding: 13px;
  }
}

@media screen and (max-width: 768px) {
  .header__image--email, .header__image--phone {
    width: 18px;
  }
}

.header__text--email {
  color: white;
  margin-left: 5px;
}

.header__wrapper--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
  background-color: white;
}

@media screen and (max-width: 1200px) {
  .header__wrapper--phone {
    padding: 10px;
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
            box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    margin-left: 0px;
  }
}

.header__icon--phone {
  margin-top: 5px;
}

.header__wrapper--phone--main {
  margin-left: 10px;
}

.header__heading--phone {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .header__heading--phone {
    font-size: 19px;
  }
}

.header__text--phone {
  margin-bottom: 3px;
}

@media screen and (max-width: 768px) {
  .header__text--phone {
    display: none;
  }
}

.header__text--phone--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .header__text--phone--sp {
    display: inline-block;
    font-size: 10px;
  }
}

.top__container {
  background-image: url("../images/PC-top.png");
  width: 100%;
  height: calc( 100vh - 118px);
  background-size: cover;
  background-repeat: repeat;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .top__container {
    background-position-x: 81%;
    height: calc( 100vh - 78px);
  }
}

.top__wrapper--left {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  width: 50%;
}

.top__wrapper--text {
  height: 75%;
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

.top__heading--text {
  font-family: '游明朝体','serif';
  line-height: 1.5;
  letter-spacing: 10px;
}

.top__heading--text span {
  opacity: 0;
}

.top__heading--text.appeartext span {
  -webkit-animation: text_anime_on 1.2s ease-out forwards;
          animation: text_anime_on 1.2s ease-out forwards;
}

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

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

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

@media screen and (max-width: 768px) {
  .about__container--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.about__wrapper--heading {
  width: 60%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .about__wrapper--heading {
    width: unset;
    margin: unset;
  }
}

.about__heading--underline {
  position: relative;
  z-index: 1;
}

.about__heading--underline::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: #ED9C57;
  bottom: -6%;
  border-radius: 10px;
  z-index: -1;
  opacity: 0.6;
}

.about__wrapper--image {
  width: 50%;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .about__wrapper--image {
    width: unset;
    max-width: 500px;
    margin: 20px auto 0px auto;
  }
}

.about__image {
  width: 100%;
}

.about__wrapper--text {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .about__wrapper--text {
    width: unset;
  }
}

.about__text--content {
  margin-bottom: 10px;
}

.problem__heading--color {
  color: #DAA521;
  font-size: 50px;
}

@media screen and (max-width: 768px) {
  .problem__heading--color {
    font-size: 35px;
  }
}

.problem__wrapper--content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .problem__wrapper--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 10px 0;
  }
}

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

@media screen and (max-width: 768px) {
  .problem__wrapper--text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

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

@media screen and (max-width: 768px) {
  .problem__wrapper--circle {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.problem__text--content {
  background-color: #FAEFDA;
  border-radius: 34px;
  padding: 20px 40px;
}

@media screen and (max-width: 768px) {
  .problem__text--content {
    padding: 10px 20px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.problem__item--circle, .problem__item--circle--bottom {
  border-radius: 50%;
  background-color: #FAEFDA;
  margin: 5px;
}

.problem__item--circle:nth-child(1) {
  width: 27px;
  height: 27px;
}

@media screen and (max-width: 768px) {
  .problem__item--circle:nth-child(1) {
    width: 20px;
    height: 20px;
  }
}

.problem__item--circle:nth-child(2) {
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 768px) {
  .problem__item--circle:nth-child(2) {
    width: 15px;
    height: 15px;
  }
}

.problem__item--circle:nth-child(3) {
  width: 12px;
  height: 12px;
}

.problem__item--circle--bottom:nth-child(3) {
  width: 27px;
  height: 27px;
}

@media screen and (max-width: 768px) {
  .problem__item--circle--bottom:nth-child(3) {
    width: 12px;
    height: 12px;
  }
}

.problem__item--circle--bottom:nth-child(2) {
  width: 22px;
  height: 22px;
}

@media screen and (max-width: 768px) {
  .problem__item--circle--bottom:nth-child(2) {
    width: 15px;
    height: 15px;
  }
}

.problem__item--circle--bottom:nth-child(1) {
  width: 12px;
  height: 12px;
}

@media screen and (max-width: 768px) {
  .problem__item--circle--bottom:nth-child(1) {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 768px) {
  .problem__wrapper--image {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
}

.people__section {
  background-color: #FAEFDA;
  text-align: center;
  padding: 40px 20px;
}

@media screen and (max-width: 768px) {
  .people__section {
    padding: 30px 20px;
  }
}

.people__heading {
  color: #27536F;
}

.reason__wrapper--content {
  margin: 60px 0;
}

@media screen and (max-width: 768px) {
  .reason__wrapper--content {
    margin: 20px 0;
  }
}

.reason__wrapper--content:last-child {
  margin: 0;
}

.reason__text--english {
  margin-left: 10px;
}

.reason__heading--title {
  color: white;
  background-color: #DAA521;
  border-radius: 50px;
  padding: 15px 30px;
  margin: 10px 0 20px 0;
}

@media screen and (max-width: 768px) {
  .reason__heading--title {
    padding: 10px 20px;
    margin: 5px 0 10px 0;
    border-radius: 20px;
  }
}

.reason__text--content {
  width: 85%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .reason__text--content {
    width: 90%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.reason__wrapper--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 85%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .reason__wrapper--text {
    width: 90%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.reason__wrapper--image {
  orphans: 0;
}

.voice__text--info {
  text-align: center;
  margin-top: 5px;
}

@media screen and (max-width: 768px) {
  .voice__text--info {
    margin-bottom: 5px;
  }
}

.voice__wrapper--content {
  background-color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 40px;
}

@media screen and (max-width: 768px) {
  .voice__wrapper--content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 20px;
  }
}

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

@media screen and (max-width: 768px) {
  .voice__wrapper--content:first-child {
    margin-bottom: 20px;
  }
}

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

.voice__text--content {
  margin-left: 10px;
}

.question__wrapper--content:first-child {
  margin-bottom: 40px;
  border-bottom: 1px solid #C1C1C1;
}

@media screen and (max-width: 768px) {
  .question__wrapper--content:first-child {
    margin-bottom: 20px;
  }
}

.question__wrapper--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.question__wrapper--text:last-child {
  margin: 0;
}

.question__text--english {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: white;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  .question__text--english {
    width: 40px;
    height: 40px;
    margin-right: 10px;
  }
}

.question__text--english--question {
  background-color: #27536F;
}

.question__text--english--answer {
  background-color: #DAA521;
}

.question__text--content {
  width: 90%;
}

.section__banner {
  text-align: center;
  position: relative;
  padding: 60px 0;
  color: white;
}

@media screen and (max-width: 768px) {
  .section__banner {
    padding: 40px 0;
  }
}

.section__banner::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../images/AdobeStock_182576077.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 108%;
  z-index: -1;
}

.section__banner::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FAEFDA;
  opacity: 0.5;
  z-index: -1;
}

.banner__text--title {
  margin-top: 10px;
  z-index: 1;
  font-weight: normal;
}

.contactForm__container--forms {
  width: 100%;
  margin: 0 auto;
  max-width: 900px;
}

.contactForm__wrapper--items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .contactForm__wrapper--items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 15px;
  }
}

.contactForm__item--option {
  color: #FF0027;
  margin-left: 5px;
}

.contactForm__item--input {
  border: 1px solid #C1C1C1;
  width: 75%;
  padding: 5px;
}

@media screen and (max-width: 768px) {
  .contactForm__item--input {
    width: 100%;
  }
}

.contactForm__wrapper--radio {
  width: 75%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contactForm__wrapper--input--radio {
  margin: 0 10px;
}

.contactForm__wrapper--left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 25%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .contactForm__wrapper--left {
    width: 100%;
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
    margin-bottom: 8px;
  }
}

.contactForm__item--button {
  background-color: #DAA521;
  color: white;
  font-weight: normal;
  padding: 12px 80px;
}

.contactForm__item--button:hover {
  background-color: orange;
}

.contactForm__item--button:active {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .contactForm__item--button {
    padding: 10px 36px;
    font-size: 16px;
  }
}

.contactForm__item--textarea {
  height: 300px;
  padding: 2px 5px;
}

.contact__text-title {
  margin-bottom: 30px;
}

footer {
  background-color: #FAEFDA;
  text-align: center;
  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;
  padding: 60px 20px;
}

.footer__wrapper--phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 20px;
}

@media screen and (max-width: 768px) {
  .footer__wrapper--phone {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-left: unset;
    margin-bottom: 5px;
  }
}

.footer__container--left {
  margin-bottom: 40px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .footer__container--left {
    margin-bottom: 15px;
  }
}

.footer__container--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

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

.footer__button--email {
  background-color: #27536F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
}

@media screen and (max-width: 768px) {
  .footer__button--email {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

.confirmed__container {
  margin-top: unset;
}

.section--confirmed {
  width: 100%;
  margin: 0 auto;
  padding-top: 200px;
  min-width: 580px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section--confirmed {
    min-width: unset;
    width: 90%;
    padding-top: 100px;
  }
}

.confirmed__heading--content {
  margin-bottom: 15px;
}

.confirmed__text--content {
  margin-bottom: 10px;
}

.fadeInDown {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  visibility: visible !important;
}

@-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);
  }
}

.shutter__wrapper--text {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-animation: byeText 4.6s forwards;
          animation: byeText 4.6s forwards;
  -webkit-animation: openText 2.6s forwards;
          animation: openText 2.6s forwards;
}

.shutter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: white;
  opacity: 1;
  z-index: 9999;
  -webkit-animation: byeShutter 4.6s forwards;
          animation: byeShutter 4.6s forwards;
}

.shutter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  background-color: #DAA521;
  width: 0;
  height: 1px;
  -webkit-animation: shutterOpen 5.6s forwards;
          animation: shutterOpen 5.6s forwards;
}

.content {
  -webkit-animation: contentScale 4.6s forwards;
          animation: contentScale 4.6s forwards;
}

@-webkit-keyframes byeText {
  30% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeText {
  30% {
    opacity: 0.8;
  }
  70% {
    opacity: 0.3;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes openText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: none;
    z-index: -1;
  }
}

@keyframes openText {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@keyframes byeShutter {
  70% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
    z-index: -1;
  }
}

@-webkit-keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@keyframes shutterOpen {
  0% {
    width: 0;
    height: 1px;
  }
  50% {
    width: 100%;
    height: 1px;
  }
  90% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 100%;
    height: 100%;
  }
}

@-webkit-keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}

@keyframes contentScale {
  70% {
    -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
            transform: perspective(800px) scale(0.9) rotateX(15deg);
  }
  100% {
    -webkit-transform: perspective(800px) scale(1) rotateX(0);
            transform: perspective(800px) scale(1) rotateX(0);
  }
}
/*# sourceMappingURL=index.css.map */