
@import url("https://fonts.googleapis.com/css?family=Lobster");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400");
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

.fadeInUp {
  animation-name: fadeInUp; }

.rotateY {
  animation-name: rotateY; }

.line-hr {
  animation-name: line-hr; }

.line-vr {
  animation-name: line-vr; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 1;
    transform: none; } }

@keyframes bounceInDown2 {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translateX(-50%) translate3d(0, -20px, 0); }
  40% {
    opacity: 1;
    transform: translateX(-50%) translate3d(0, 5px, 0); }
  65% {
    transform: translateX(-50%) translate3d(0, 0px, 0); }
  80% {
    transform: translateX(-50%) translate3d(0, 5px, 0); }
  to {
    transform: translateX(-50%); } 
}

@keyframes skewRight {
  from {
    transform: skew(0, 0); }
  to {
    transform: skew(0, -4deg); } 
}

@keyframes skewLeft {
  from {
    transform: skew(0, 0); }
  to {
    transform: skew(0, 4deg); } }

@keyframes rotateY {
  from {
    transform: rotateY(90deg); }
  to {
    transform: rotateY(0); } }

@keyframes line-hr {
  from {
    width: 0; }
  to {
    width: 100%; } }

@keyframes line-vr {
  from {
    height: 0; }
  to {
    height: 100%; } }

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  border: 0;
  outline: 0; }

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%; }

body {
  width: 100%;
  height: 100%;
  background-color: #333;
  color: #f5f5f5;
  font-size: 14px;
  font-weight: 100;
  line-height: 1.5; }

ol, ul {
  list-style: none; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

a {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.25s linear; }
  a:hover {
    color: #e040fb; }

.header {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: auto;
  height: 35px;
  margin-top: 20px;
  margin-left: 20px;
  z-index: 999; }
  @media screen and (min-width: 414px) {
    .header {
      height: 45px; } }
  @media screen and (min-width: 768px) {
    .header {
      height: 55px; } }
  .header__logo {
    display: inline;
    width: auto;
    height: 100%; }
    .header__logo img {
      width: auto;
      height: 100%; }
    .header__logo span {
      font-family: "Lobster", sans-serif;
      position: relative;
      bottom: 8px;
      font-size: 2.5rem;
      color: #f5f5f5;
      transition: all .15s linear; }
      @media screen and (min-width: 414px) {
        .header__logo span {
          bottom: 13px;
          font-size: 3rem; } }
      @media screen and (min-width: 768px) {
        .header__logo span {
          font-size: 4rem; } }

.hamburger {
  display: inline-block;
  position: fixed;
  top: 25px;
  right: 20px;
  width: 25px;
  height: 24px;
  z-index: 999;
  cursor: pointer;
  overflow: visible;
  -webkit-transition: opacity .15s linear;
  transition: opacity .15s linear; }
  @media screen and (min-width: 414px) {
    .hamburger {
      top: 30px; } }
  @media screen and (min-width: 768px) {
    .hamburger {
      top: 35px; } }
  .hamburger__box {
    position: relative;
    display: inline-block;
    width: 100%;
    height: 100%; }
    .hamburger__box__inner {
      display: block;
      top: 50%;
      margin-top: -0.2rem; }
      .hamburger__box__inner:before {
        content: '';
        display: block;
        top: -1rem;
        transition: top .1s .34s ease-in, opacity .1s ease-in; }
      .hamburger__box__inner:after {
        content: '';
        display: block;
        bottom: -1rem;
        transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
        transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  .hamburger.open .hamburger__box__inner {
    background-color: #e040fb;
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    transition-delay: .14s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
    .hamburger.open .hamburger__box__inner:before {
      background-color: #e040fb;
      top: 0;
      opacity: 0;
      transition: top .1s ease-out, opacity .1s .14s ease-out; }
    .hamburger.open .hamburger__box__inner:after {
      background-color: #e040fb;
      bottom: 0;
      -webkit-transform: rotate(-90deg);
      transform: rotate(-90deg);
      transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
      transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1); }

.hamburger__box__inner,
.hamburger__box__inner:before,
.hamburger__box__inner:after {
  position: absolute;
  width: 100%;
  height: 0.3rem;
  background-color: #f5f5f5;
  border-radius: 3px;
  -webkit-transition: transform .15s ease;
  transition: transform .15s ease;
  z-index: 999; }

.navigation {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 998;
  transition: all .15s ease-in-out 0s; }
  .navigation:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.85);
    transition: all .25s ease-in-out; }
  .navigation__menu {
    position: relative;
    top: 50%;
    padding: 0 20px;
    height: auto;
    opacity: 0;
    -webkit-transform: scale(0.8) translateY(-50%);
    transform: scale(0.8) translateY(-50%);
    -webkit-transition: all .4s ease-in-out .25s;
    transition: all .4s ease-in-out .25s; }
    .navigation__menu__item a {
      display: block;
      text-align: center;
      font-family: "Lobster", sans-serif;
      font-size: 2.5rem;
      padding-top: 25px;
      padding-bottom: 25px;
      cursor: pointer; }
      @media screen and (min-width: 414px) {
        .navigation__menu__item a {
          font-size: 3rem; } }
      @media screen and (min-width: 768px) {
        .navigation__menu__item a {
          font-size: 5rem; } }
      .navigation__menu__item a:hover {
        transform: scale(1.25); }
  .navigation.open {
    opacity: 1;
    visibility: visible; }
    .navigation.open:before {
      opacity: 1;
      visibility: visible; }
    .navigation.open .navigation__menu {
      opacity: 1;
      -webkit-transform: scale(1) translateY(-50%);
      transform: scale(1) translateY(-50%); }

.site {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0; }

.banner {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden; }
  .banner:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    opacity: 0.7;
    z-index: 1; }
  .banner img {
    width: 150%;
    height: 100%;
    object-fit: cover; }
  .banner__titles {
    position: absolute;
    top: 50%;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    transform: translateY(-50%);
    z-index: 2;
    word-spacing: 2px; }
    @media screen and (min-width: 1024px) {
      .banner__titles {
        word-spacing: 5px; } }
    .banner__titles h3 {
      font-family: "Open Sans", sans-serif;
      font-size: 1.6rem;
      font-weight: 100;
      font-style: italic;
      animation-delay: .5s;
      animation-name: fadeInUp; }
      @media screen and (min-width: 414px) {
        .banner__titles h3 {
          font-size: 1.7rem; } }
      @media screen and (min-width: 768px) {
        .banner__titles h3 {
          font-size: 2.1rem; } }
    .banner__titles h2 {
      font-family: "Lobster", sans-serif;
      font-size: 2.5rem;
      font-weight: 100;
      animation-delay: .75s;
      animation-name: fadeInUp; }
      @media screen and (min-width: 414px) {
        .banner__titles h2 {
          font-size: 3rem; } }
      @media screen and (min-width: 768px) {
        .banner__titles h2 {
          font-size: 5rem; } }
      @media screen and (min-width: 1024px) {
        .banner__titles h2 {
          font-size: 7rem; } }



.skew {
  position: relative;
  height: 100px;
  bottom: 100px;
  /* overflow: hidden; } */
}
.skew.animated {
  animation-name: fadeInUp;
  animation-duration: .5s;
  animation-delay: .5s; 
}
.skew.animated::before, .skew.animated::after {
  animation-duration: 1s;
  animation-fill-mode: both;
  animation-delay: 2.5s;
  animation-timing-function: linear; 
}
.skew.animated::before {
  animation-name: skewRight; 
}
.skew.animated::after {
  animation-name: skewLeft; 
}
    
  .skew::before, .skew::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    width: 100%;
    height: 200px;
    transition: all 0.25s linear; }
  .skew::before {
    background: #e040fb;
    opacity: .8;
    transform: skew(0, -4deg); }
  .skew::after {
    background: #333;
    transform: skew(0, 4deg); }
  .skew .angle-down {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: #e040fb;
    z-index: 1;
    animation-name: bounceInDown2;
    animation-delay: 3.75s;
    cursor: pointer; }
    @media screen and (min-width: 768px) {
      .skew .angle-down {
        font-size: 5rem; } }

section {
  padding: 50px 20px;
  margin-bottom: 50px;
  text-align: center; }
  @media screen and (min-width: 768px) {
    section {
      padding: 100px;
      margin: 0; } }
  section h2 {
    font-family: "Open Sans", sans-serif;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 5px; }
    @media screen and (min-width: 414px) {
      section h2 {
        font-size: 3rem; } }
    @media screen and (min-width: 768px) {
      section h2 {
        font-size: 5rem; } }
  section .underline {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #e040fb;
    margin: 20px auto; }
    @media screen and (min-width: 768px) {
      section .underline {
        width: 40px;
        margin: 60px auto; } }
  section p {
    font-family: "Open Sans", sans-serif;
    font-weight: 100;
    word-spacing: 5px;
    text-align: left; }
    @media screen and (min-width: 768px) {
      section p {
        font-size: 1.8rem; } }

.intro {
  margin-top: 50px;
  z-index: 1; }
  @media screen and (min-width: 768px) {
    .intro {
      position: relative;
      width: 100%;
      min-height: 100%;
      height: auto;
      margin: 0; } }
  .intro__thumbnail {
    width: 100%;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.19), 0 5px 6px rgba(0, 0, 0, 0.23); }
    @media screen and (min-width: 768px) {
      .intro__thumbnail {
        float: left;
        width: 50%;
        margin-right: 5%;
        margin-bottom: 15px; } }
    .intro__thumbnail img {
      display: block;
      width: 100%; }

.gallery {
  overflow: hidden; }
  .gallery__list {
    width: 100%; }
    .gallery__list__item {
      float: left;
      width: 100%;
      padding: 10px 0; }
      @media screen and (min-width: 414px) {
        .gallery__list__item {
          width: 50%;
          height: 150px;
          padding: 5px; } }
      @media screen and (min-width: 768px) {
        .gallery__list__item {
          height: 180px;
          padding: 10px; } }
      @media screen and (min-width: 1024px) {
        .gallery__list__item {
          width: 25%; } }
      .gallery__list__item:hover img {
        transition: -webkit-transform 4s linear;
        transition: transform 4s linear;
        transform: scale(1.15); }
        @media screen and (min-width: 414px) {
          .gallery__list__item:hover img {
            transform: translate(-50%, -50%) scale(1.15); } }
      .gallery__list__item a {
        position: relative;
        display: block;
        height: auto;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.19), 0 5px 6px rgba(0, 0, 0, 0.23);
        overflow: hidden; }
        @media screen and (min-width: 414px) {
          .gallery__list__item a {
            height: 100%; } }
  .gallery img {
    position: relative;
    display: block;
    max-width: 100%;
    width: auto;
    min-height: 100%;
    height: auto; }
    @media screen and (min-width: 414px) {
      .gallery img {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%); } }

.contact {
  width: 100%;
  background: #4d4d4d; }
  .contact h2 {
    width: 100%;
    padding: 20px;
    font-family: "Open Sans", sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px; }
    @media screen and (min-width: 768px) {
      .contact h2 {
        font-size: 3rem; } }
  .contact .inner {
    position: relative;
    width: 100%;
    padding: 20px;
    font-size: 1.4rem;
    font-family: "Open Sans", sans-serif; }
    @media screen and (min-width: 768px) {
      .contact .inner {
        font-size: 2rem; } }
    .contact .inner .line-top {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 1px;
      background-color: rgba(224, 64, 251, 0.7); }
    .contact .inner .line-bottom {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 100%;
      height: 1px;
      background-color: rgba(224, 64, 251, 0.7); }
    .contact .inner .align-left {
      display: inline-block;
      float: left; }
    .contact .inner .align-right {
      display: inline-block;
      float: right; }
  .contact__address {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    background-color: #333;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19), 0 5px 6px rgba(0, 0, 0, 0.23); }
    @media screen and (min-width: 768px) {
      .contact__address {
        margin-bottom: 50px; } }
    @media screen and (min-width: 1024px) {
      .contact__address {
        float: left;
        width: 48%;
        margin-bottom: 0;
        margin-right: 4%; } }
    .contact__address .maps {
      width: 100%;
      padding: 20px;
      font-size: 1.4rem;
      font-family: "Open Sans", sans-serif; }
      @media screen and (min-width: 768px) {
        .contact__address .maps {
          font-size: 2rem; } }
      .contact__address .maps:hover a {
        border-color: #e040fb; }
      .contact__address .maps a {
        display: inline-block;
        border-bottom: 1px solid; }
  .contact__opening {
    position: relative;
    width: 100%;
    height: auto;
    background-color: #333;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }
    @media screen and (min-width: 1024px) {
      .contact__opening {
        float: left;
        width: 48%; } }

.footer {
  padding: 20px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 400; }
  @media screen and (min-width: 768px) {
    .footer {
      font-size: 2rem; } }
  .footer__sns {
    margin-bottom: 10px; }
    .footer__sns__icon {
      display: inline-block;
      width: 36px;
      height: 36px;
      line-height: 36px;
      margin: 0 10px;
      color: #f5f5f5;
      font-size: 18px;
      border: 1px solid #7f8c8d;
      border-radius: 100%;
      transition: all .15s linear; }
      .footer__sns__icon:hover {
        color: #f5f5f5; }
    .footer__sns .fb-icon:hover {
      background: #4867aa;
      border-color: #4867aa; }
    .footer__sns .ig-icon:hover {
      background: #e040fb;
      border-color: #e040fb; }