@charset "UTF-8";

/* .global-header{
    position: relative;
} */

@media screen and (min-width: 1000px) {

  .body {
    background-color: #F1EFEC;
    position: relative;
  }

  .global-header {
    width: 120px;
    height: 270px;
    background-color: rgba(42, 42, 41, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    right: 30px;
    position: fixed;
    z-index: 105;
  }

  .global-header-logo {
    width: 12%;
    margin: 2%;
    position: absolute;
    position: fixed;
    z-index: 108;
    min-width: 150px;

  }

  .header-link {
    text-decoration: none;
  }

  .global-header-menu {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    list-style: none;
  }

  .global-header-menu:hover {
    color: #000000;
    transition: 0.3s;
  }

  /* ハンバーガーメニュー */
  @import .home {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(https://images.unsplash.com/photo-1444927714506-8492d94b4e3d?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=067f0b097deff88a789e125210406ffe);
    background-size: cover;
    background-position: center center;
  }


  /* ====================================
Navigation 
==================================== */

  .overlay-navigation {
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.2);
    display: none;
    opacity: 0;
  }

  nav,
  nav ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  nav ul li {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    display: none;
  }

  nav li a {
    position: relative;
    top: 46%;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Work sans', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
  }

  /* nav li a:before {
  content: '';
  width: 20%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 100;
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  -webkit-transition: all .2s linear;
  transition: all .2s linear;
} */

  nav li a:after {
    content: attr(data-content);
    font-size: 0.7rem;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0;
    position: absolute;
    z-index: 100;
    color: #fff;
    display: block;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    bottom: -50px;
    text-transform: none;
    font-family: 'Open sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0;
  }

  nav li a:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  nav li a:hover:after {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 1;
  }

  nav li:nth-of-type(1) {
    background-color: #DBDBDB
  }

  nav li:nth-of-type(2) {
    background-color: #BCBCBC
  }

  nav li:nth-of-type(3) {
    background-color: #9D9D9D
  }

  nav li:nth-of-type(4) {
    background-color: #777776
  }

  nav li:nth-of-type(5) {
    background-color: #5a5a5a
  }


  /* ====================================
Burger king
==================================== */

  .open-overlay {
    position: absolute;
    right: 5rem;
    top: 3.2rem;
    z-index: 107;
    width: 34px;
    display: block;
    cursor: pointer;
    position: fixed;
  }

  .open-overlay span {
    display: block;
    height: 1px;
    background-color: #2D2F23;
    cursor: pointer;
    margin-top: 8px;
  }

  .animate-top-bar {
    -webkit-animation: animate-top-bar .6s linear 1 both;
    animation: animate-top-bar .6s linear 1 both
  }

  .animate-bottom-bar {
    -webkit-animation: animate-bottom-bar .6s linear 1 both;
    animation: animate-bottom-bar .6s linear 1 both
  }

  .animate-middle-bar {
    -webkit-animation: animate-middle-bar .6s linear 1 both;
    animation: animate-middle-bar .6s linear 1 both
  }

  .animate-out-top-bar {
    -webkit-animation: animate-out-top-bar .6s linear 1 both;
    animation: animate-out-top-bar .6s linear 1 both
  }

  .animate-out-bottom-bar {
    -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
    animation: animate-out-bottom-bar .6s linear 1 both
  }

  .animate-out-middle-bar {
    -webkit-animation: animate-out-middle-bar .6s linear 1 both;
    animation: animate-out-middle-bar .6s linear 1 both
  }


  /* ====================================
Animation keyframes
==================================== */

  @keyframes animate-top-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-bottom-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-middle-bar {
    0% {
      background-color: #2D2F23;
    }

    80% {
      background-color: #2D2F23;
    }

    100% {
      background-color: #ffffff;
    }
  }

  @keyframes animate-out-top-bar {
    0% {
      background-color: #ffffff;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-bottom-bar {
    0% {
      background-color: #ffffff
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-middle-bar {
    0% {
      background-color: #ffffff;
    }

    80% {
      background-color: #ffffff;
    }

    100% {
      background-color: #2D2F23;
    }
  }

  .home a {
    font-family: "Work Sans", sans-serif;
    color: #222;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 50px;
    padding-bottom: 3px;
    border-bottom: 1px solid #222;
  }

  @media (max-width: 640px) {
    nav ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    nav ul li {
      height: 20%;
    }

    nav ul li a {
      font-size: 11px;
    }

    nav li a:after {
      font-size: 0.6rem;
      bottom: -25px;
    }

    nav li a:hover:after {
      transform: translateY(0);
    }

    .open-overlay {
      right: 1rem;
    }

    nav li a:before {
      width: 25px;
    }
  }

  /* ハンバーガーここまで */


  /* じわっと文字 */
  .blur2 {
    animation-name: blurAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }

  @keyframes blurAnime {
    from {
      filter: blur(10px);
      transform: scale(1.1);
      opacity: 0;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      opacity: 1;
    }
  }

  .blurTrigger {
    opacity: 0;
  }



  .top-logo {
    height: 180px;
    width: auto;
    margin: 10% 0 0 13%;
  }

  .top-img-flex {
    display: flex;
    /* background-color: aquamarine; */
  }

  .top-img {
    width: 35%;
    height: 35%;
    margin: 9% 0 0 16%;
  }

  .top-catchcopy-section {
    position: relative;
    padding-top: 2%;
  }

  .top-catchcopy {
    font-size: 67px;
    position: absolute;
    line-height: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .top-catchcopy1 {
    left: 5%;
    bottom: 80px;
  }

  .top-catchcopy2 {
    left: 5%;
    bottom: 0px;
  }

  .top-catchcopy3 {
    left: 5%;
    bottom: -80px;
  }


  .top-catchcopy1 span {
    opacity: 0;
  }

  .top-catchcopy2 span {
    opacity: 0;
  }

  .top-catchcopy3 span {
    opacity: 0;
  }

  .top-catchcopy1.appeartext1 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on1 1s ease-out forwards;
  }

  @keyframes text_anime_on1 {
    0% {
      opacity: 0;
    }


    100% {
      opacity: 1;
    }
  }

  .top-catchcopy2.appeartext2 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on2 1.5s ease-out forwards;
  }

  @keyframes text_anime_on2 {
    0% {
      opacity: 0;
    }

    30% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }


  .top-catchcopy3.appeartext3 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on3 2s ease-out forwards;
  }

  @keyframes text_anime_on3 {
    0% {
      opacity: 0;
    }

    60% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }



  .salon-page {
    background-image: linear-gradient(#555555, #A0A09F);
  }

  .heading-title-salon {
    margin-top: 10%;
    font-size: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    padding: 5% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }


  .top-crown {
    width: 10%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2%;
  }

  .salon-img {
    width: 60%;
    height: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #ffffff;
    outline: 1px solid #fff;
    outline-offset: 5px;
    padding: 5px;
    max-width: 740px;
    min-width: 580px;
  }

  .salon-content-section {
    width: 80%;
    margin: 8% auto 8% auto;
  }

  .salon-content {
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .menu-img-section {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
    /* height: auto; */
    padding-bottom: 10%;
    /* background-color: antiquewhite; */
  }

  .content-img {
    width: 30%;
  }

  /* menu */

  .menu-page {
    background-image: url(../images/room2.jpeg);
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 1350px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
  }

  .menu-page-height {
    height: 1250px;
    padding-top: 13%;
  }

  .heading-title-menu {
    margin-bottom: 3%;
    font-size: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 5% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-menu-center {
    text-align: center;
    padding: 0;
    font-size: 50px;
    color: #fff;
  }

  .menu {
    background-color: #3C3C3C;
    width: 60%;
    height: 760px;
    margin: 0 auto;
    padding-top: 6%;
    min-width: 550px;
  }

  .menu_2 {
    height: 1000px;

  }

  .menu-kinds {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 18px;
    padding: 5% 0 2% 10%;
  }

  .menu-table {
    /* background-color: rgb(173, 173, 234); */
    width: 80%;
    margin: 0 auto;
  }

  .menu-table-glay {
    background-color: #E2E2E2;
    /* height: 60px; */
  }

  .menu-table-white {
    background-color: #fff;
    /* height: 60px; */
  }

  .menu-table-left {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 16px;
    padding-left: 30px;

  }

  .menu-table-right {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 18px;
  }

  .more-btn {
    display: inline-block;
    width: 100%;
    max-width: 180px;
    /* ボタン幅 */
    position: relative;
    background: #3C3B2D;
    /* 背景色 */
    border: 1px solid #3C3B2D;
    padding: 1em 2em;
    font-weight: bold;
    color: #fff;
    /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 6%;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    z-index: 50;
  }

  .more-btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 1px solid #fff;
    /* 矢印の色 */
    border-right: 1px solid #fff;
    /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
  }

  /* マウスオーバーした際のデザイン */
  .more-btn:hover {
    background: #fff;
    /* 背景色 */
    color: #3C3B2D;
    /* 文字色 */
  }

  .more-btn:hover:before {
    border-top: 1px solid #3C3B2D;
    /* 矢印の色 */
    border-right: 1px solid #3C3B2D;
    /* 矢印の色 */
  }



  .wave-position {
    position: relative;
  }

  .wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 260px;
  }

  /* menu-page */




  /* gallery */


  /*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

  .box {
    opacity: 0;
  }

  /*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .top-gallery {
    background-color: #E6E6E5;
    position: relative;
    padding-bottom: 15%;
    /* height: 500px; */
    overflow: hidden;
  }

  .gallery-page {
    position: relative;
    padding-bottom: 15%;
    /* height: 500px; */
  }

  .heading-title-gallery {
    margin-bottom: 5%;
    font-size: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 5% 0 0 70%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-center {
    text-align: center;
    font-size: 50px;
    padding: 12% 0 5% 0;
  }

  .gallery-tape {
    width: 18%;
    z-index: 100px;
    position: absolute;
    /* top: 12%; */
    margin-top: -3%;
    margin-left: 2%;
    z-index: 80;
    transform: rotate(-8deg);
  }

  .gallery-section {
    /* background-color: aquamarine; */
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 3% auto;
  }

  .gallery-section-margin {
    margin: 0 auto 14% auto;
    width: 90%;
  }

  .nail-img {
    width: 15%;
    border: 10px solid #fff;
    list-style: none;
  }

  .nail-img2 {
    width: 15%;
    border: 3px solid #fff;
  }

  .inner-nail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .more-btn-gallery {
    display: inline-block;
    margin-bottom: 10%;
  }


  /* staff */

  .heading-title-staff {
    margin-bottom: 3%;
    font-size: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 11% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .staff-page {
    position: relative;
  }

  .wave-2 {
    position: absolute;
    top: -200px;
    width: 100%;
    height: 260px;

  }

  .staff-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 5% auto 0 auto;
    background-color: rgb(255, 255, 255);
    padding: 6%;
    min-width: 580px;
  }

  .staff-img {
    height: auto;
    width: 230px;
    margin-right: 10%;
  }

  .staff-name {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 0, 0);
    font-size: 25px;
    margin-bottom: 20px;
  }

  .staff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: /rgb(134, 134, 250);
  }

  .staff-list-left {
    width: 40%;
    padding: 14px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    /* background-color: aquamarine; */
  }

  .staff-list-right {
    width: 60%;
    padding: 15px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    /* background-color: cadetblue; */
  }

  .line-height {
    line-height: 30px;
    margin-top: -8px;
  }

  .staff-insta-section {
    width: 60%;
    /* height: 120px; */
    padding: 6%;
    margin: 0 auto;
    background-image: url(../images/instagram.jpg);
    background-size: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 580px;
    margin-bottom: 10%;
  }

  .staff-insta-link {
    text-decoration: none;
  }

  .staff-insta {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 45px;
  }

  .staff-insta:hover {
    color: #000000;
    transition: 0.5s;
  }

  .staff-insta_2 {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 25px;
    margin-top: 10px;
  }

  /*==================================================
ふわっ
===================================*/


  /* fadeUp */

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/

  .fadeUpTrigger {
    opacity: 0;
  }

  /* access */

  .heading-title-access {
    margin-bottom: 5%;
    font-size: 80px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 20% 0 0 70%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .access-section {
    background-image: url(../images/romi@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 93%;
    /* background-color: #3C3C3C; */
    background-position: bottom;
    padding: 6%;
    display: flex;
    align-items: center;
  }

  .access-img {
    /* display: block; */
    margin: 0 auto;
    width: 45%;
    border: 8px solid #72725F;

  }

  .access-explanation {
    text-align: center;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
  }

  .more-btn-access {
    margin-top: 3%;
    margin-bottom: 10%;
  }

  /* footer */
  .global-footer {
    /* height: 300px; */
    background-color: #B7B7B7;
    /* margin-top: 10%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .global-footer-menu {
    margin-top: 10%;
  }

  .footer-logo-link {
    padding-top: 8%;
  }


  .footer-logo {
    display: block;
    /* margin: 0 auto; */
    width: auto;
    height: 100px;
    padding-top: 10%;
  }

  .copy-right {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #000;
    padding-bottom: 10%;
  }



  /* access */
  .access-page {
    display: flex;
    width: 70%;
    height: 600px;
    flex-wrap: wrap;
    margin: 0 auto 15% auto;
    min-width: 700px;

  }

  .access-page-section {
    width: 50%;
    height: 50%;
    /* background-color: blueviolet; */
  }

  .access-comment-center {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }

  .access-comment-section {
    width: 70%;
    /* background-color: aquamarine; */
  }

  .access-comment {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-bottom: 10%;
    line-height: 30px;
  }

  .access-address {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
  }

  .access-page-img {
    width: 100%;
    height: 100%;
  }

  /* ふわふわ */
  .content-img {
    /* width: 100%; */
    /* height: 100vh; */
    /* padding: 10px; */
    /* display: flex; */
    overflow: hidden;
    /* position: relative; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: url(https://s3-ap-northeast-1.amazonaws.com/nishinoshake/demo/bg/galaxy01.jpg) no-repeat; */
    background-size: cover;
  }

  .target {
    display: block;
    /* max-width: 350px; */
    /* width: 70%; */
    height: auto;
  }

  /* Animation */
  .target1 {
    animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
  }

  .target2 {
    animation: floating-y 2.0s ease-in-out infinite alternate-reverse;
  }

  .target3 {
    animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
  }

  @keyframes floating-y {
    0% {
      transform: translateY(-5%);
    }

    100% {
      transform: translateY(5%);
    }
  }
}


/* tablet */
@media screen and (min-width:681px) and (max-width:999px) {

  .body {
    background-color: #F1EFEC;
    position: relative;
  }

  .global-header {
    width: 120px;
    height: 270px;
    background-color: rgba(42, 42, 41, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    right: 30px;
    position: fixed;
    z-index: 105;
  }

  .global-header-logo {
    width: 12%;
    margin: 2%;
    position: absolute;
    position: fixed;
    z-index: 108;
    min-width: 150px;

  }

  .header-link {
    text-decoration: none;
  }

  .global-header-menu {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    list-style: none;
  }

  .global-header-menu:hover {
    color: #000000;
    transition: 0.3s;
  }

  /* ハンバーガーメニュー */
  @import .home {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(https://images.unsplash.com/photo-1444927714506-8492d94b4e3d?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=067f0b097deff88a789e125210406ffe);
    background-size: cover;
    background-position: center center;
  }


  /* ====================================
  Navigation 
  ==================================== */

  .overlay-navigation {
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.2);
    display: none;
    opacity: 0;
  }

  nav,
  nav ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  nav ul li {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    display: none;
  }

  nav li a {
    position: relative;
    top: 46%;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Work sans', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
  }

  /* nav li a:before {
    content: '';
    width: 15%;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  } */

  nav li a:after {
    content: attr(data-content);
    font-size: 0.7rem;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0;
    position: absolute;
    z-index: 100;
    color: rgb(255, 255, 255);
    display: block;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    bottom: -50px;
    text-transform: none;
    font-family: 'Open sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0;
  }

  nav li a:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  nav li a:hover:after {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 1;
  }

  nav li:nth-of-type(1) {
    background-color: #DBDBDB
  }

  nav li:nth-of-type(2) {
    background-color: #BCBCBC
  }

  nav li:nth-of-type(3) {
    background-color: #9D9D9D
  }

  nav li:nth-of-type(4) {
    background-color: #777776
  }

  nav li:nth-of-type(5) {
    background-color: #5a5a5a
  }


  /* ====================================
  Burger king
  ==================================== */

  .open-overlay {
    position: absolute;
    right: 5rem;
    top: 3.2rem;
    z-index: 107;
    width: 34px;
    display: block;
    cursor: pointer;
    position: fixed;
  }

  .open-overlay span {
    display: block;
    height: 1px;
    background-color: #2D2F23;
    cursor: pointer;
    margin-top: 8px;
  }

  .animate-top-bar {
    -webkit-animation: animate-top-bar .6s linear 1 both;
    animation: animate-top-bar .6s linear 1 both
  }

  .animate-bottom-bar {
    -webkit-animation: animate-bottom-bar .6s linear 1 both;
    animation: animate-bottom-bar .6s linear 1 both
  }

  .animate-middle-bar {
    -webkit-animation: animate-middle-bar .6s linear 1 both;
    animation: animate-middle-bar .6s linear 1 both
  }

  .animate-out-top-bar {
    -webkit-animation: animate-out-top-bar .6s linear 1 both;
    animation: animate-out-top-bar .6s linear 1 both
  }

  .animate-out-bottom-bar {
    -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
    animation: animate-out-bottom-bar .6s linear 1 both
  }

  .animate-out-middle-bar {
    -webkit-animation: animate-out-middle-bar .6s linear 1 both;
    animation: animate-out-middle-bar .6s linear 1 both
  }


  /* ====================================
  Animation keyframes
  ==================================== */

  @keyframes animate-top-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-bottom-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-middle-bar {
    0% {
      background-color: #2D2F23;
    }

    80% {
      background-color: #2D2F23;
    }

    100% {
      background-color: #ffffff;
    }
  }

  @keyframes animate-out-top-bar {
    0% {
      background-color: #ffffff;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-bottom-bar {
    0% {
      background-color: #ffffff
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-middle-bar {
    0% {
      background-color: #ffffff;
    }

    80% {
      background-color: #ffffff;
    }

    100% {
      background-color: #2D2F23;
    }
  }

  .home a {
    font-family: "Work Sans", sans-serif;
    color: #222;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 50px;
    padding-bottom: 3px;
    border-bottom: 1px solid #222;
  }

  @media (max-width: 640px) {
    nav ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    nav ul li {
      height: 20%;
    }

    nav ul li a {
      font-size: 11px;
    }

    nav li a:after {
      font-size: 0.6rem;
      bottom: -25px;
    }

    nav li a:hover:after {
      transform: translateY(0);
    }

    .open-overlay {
      right: 1rem;
    }

    nav li a:before {
      width: 25px;
    }
  }

  /* ハンバーガーここまで */

  /* じわっと文字 */
  .blur2 {
    animation-name: blurAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }

  @keyframes blurAnime {
    from {
      filter: blur(10px);
      transform: scale(1.1);
      opacity: 0;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      opacity: 1;
    }
  }

  .blurTrigger {
    opacity: 0;
  }


  .top-logo {
    height: 140px;
    width: auto;
    margin: 12% 5% 30% 13%;
  }

  .top-img-flex {
    display: flex;
    /* background-color: aquamarine; */
  }

  .top-img {
    width: 40%;
    height: 40%;
    /* min-width: 280px; */
    margin: 14% 2% 0 auto;
  }

  .top-catchcopy-section {
    position: relative;
    padding-top: 2%;
  }

  .top-catchcopy {
    font-size: 55px;
    position: absolute;
    /* line-height: 80px; */
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .top-catchcopy1 {
    left: 2%;
    bottom: 110px;
  }

  .top-catchcopy2 {
    left: 2%;
    bottom: 40px;
  }

  .top-catchcopy3 {
    left: 2%;
    bottom: -30px;
  }


  .top-catchcopy1 span {
    opacity: 0;
  }

  .top-catchcopy2 span {
    opacity: 0;
  }

  .top-catchcopy3 span {
    opacity: 0;
  }

  .top-catchcopy1.appeartext1 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on1 1s ease-out forwards;
  }

  @keyframes text_anime_on1 {
    0% {
      opacity: 0;
    }


    100% {
      opacity: 1;
    }
  }

  .top-catchcopy2.appeartext2 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on2 1.5s ease-out forwards;
  }

  @keyframes text_anime_on2 {
    0% {
      opacity: 0;
    }

    30% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }


  .top-catchcopy3.appeartext3 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on3 2s ease-out forwards;
  }

  @keyframes text_anime_on3 {
    0% {
      opacity: 0;
    }

    60% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }



  .salon-page {
    background-image: linear-gradient(#555555, #A0A09F);
  }

  .heading-title-salon {
    margin-top: 10%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    padding: 5% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }


  .top-crown {
    width: 10%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2%;
  }

  .salon-img {
    width: 60%;
    height: 400px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #ffffff;
    outline: 1px solid #fff;
    outline-offset: 5px;
    padding: 5px;
    max-width: 740px;
    min-width: 580px;
  }

  .salon-content-section {
    width: 80%;
    margin: 8% auto 8% auto;
  }

  .salon-content {
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .menu-img-section {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
    /* height: auto; */
    padding-bottom: 10%;
    /* background-color: antiquewhite; */
  }

  .content-img {
    width: 30%;
  }

  /* menu */

  .menu-page {
    background-image: url(../images/room2.jpeg);
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    /* background-size: 100% 100%; */
    height: 1220px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
  }

  .menu-page-height {
    height: 1250px;
    padding-top: 15%;
  }

  .heading-title-menu {
    margin-bottom: 3%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 5% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-menu-center {
    text-align: center;
    padding: 0;
    font-size: 50px;
    color: #fff;
  }

  .menu {
    background-color: #3C3C3C;
    width: 70%;
    height: 690px;
    margin: 0 auto;
    padding-top: 6%;
    min-width: 550px;
  }

  .menu_2 {
    height: 1000px;
    padding-top: 10%;

  }

  .menu-kinds {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 18px;
    padding: 5% 0 2% 10%;
  }

  .menu-table {
    /* background-color: rgb(173, 173, 234); */
    width: 80%;
    margin: 0 auto;
  }

  .menu-table-glay {
    background-color: #E2E2E2;
    /* height: 60px; */
  }

  .menu-table-white {
    background-color: #fff;
    /* height: 60px; */
  }

  .menu-table-left {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 16px;
    padding-left: 30px;

  }

  .menu-table-right {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 18px;
  }

  .more-btn {
    display: inline-block;
    width: 100%;
    max-width: 180px;
    /* ボタン幅 */
    position: relative;
    background: #3C3B2D;
    /* 背景色 */
    border: 1px solid #3C3B2D;
    padding: 1em 2em;
    font-weight: bold;
    color: #fff;
    /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 6%;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    z-index: 50;
  }

  .more-btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 1px solid #fff;
    /* 矢印の色 */
    border-right: 1px solid #fff;
    /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
  }

  /* マウスオーバーした際のデザイン */
  .more-btn:hover {
    background: #fff;
    /* 背景色 */
    color: #3C3B2D;
    /* 文字色 */
  }

  .more-btn:hover:before {
    border-top: 1px solid #3C3B2D;
    /* 矢印の色 */
    border-right: 1px solid #3C3B2D;
    /* 矢印の色 */
  }



  .wave-position {
    position: relative;
  }

  .wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 260px;
  }

  /* menu-page */




  /* gallery */

  .top-gallery {
    background-color: #E6E6E5;
    position: relative;
    padding-bottom: 15%;
    /* height: 500px; */
    overflow: hidden;
  }

  .gallery-page {
    position: relative;
    padding-bottom: 15%;
    /* height: 500px; */
  }

  .heading-title-gallery {
    margin-bottom: 5%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 5% 0 0 70%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-center {
    text-align: center;
    font-size: 50px;
    padding: 12% 0 5% 0;
  }

  .gallery-tape {
    width: 25%;
    z-index: 100px;
    position: absolute;
    /* top: 12%; */
    margin-top: -2%;
    margin-left: 2%;
    z-index: 100;
    transform: rotate(-8deg);
  }


  .gallery-section {
    /* background-color: aquamarine; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto 3% auto;
  }

  .gallery-section-margin {
    margin: 0 auto 16% auto;
    width: 90%;
  }

  .nail-img {
    width: 15%;
    border: 10px solid #fff;
    list-style: none;
  }

  .nail-img2 {
    width: 25%;
    border: 5px solid #fff;
    margin: 2%;
  }

  .inner-nail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .more-btn-gallery {
    display: inline-block;
    margin-bottom: 10%;
  }


  /* staff */

  .heading-title-staff {
    margin-bottom: 3%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 11% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .staff-page {
    position: relative;
  }

  .wave-2 {
    position: absolute;
    top: -200px;
    width: 100%;
    height: 260px;

  }

  .staff-section {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60%;
    margin: 5% auto 0 auto;
    background-color: rgb(255, 255, 255);
    padding: 6%;
    min-width: 580px;
  }

  .staff-img {
    height: auto;
    width: 230px;
    margin-right: 10%;
  }

  .staff-name {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 0, 0);
    font-size: 25px;
    margin-bottom: 20px;
  }

  .staff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: /rgb(134, 134, 250);
  }

  .staff-list-left {
    width: 40%;
    padding: 14px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    /* background-color: aquamarine; */
  }

  .staff-list-right {
    width: 60%;
    padding: 15px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    /* background-color: cadetblue; */
  }

  .line-height {
    line-height: 30px;
    margin-top: -8px;
  }

  .staff-insta-section {
    width: 60%;
    /* height: 120px; */
    padding: 6%;
    margin: 0 auto;
    background-image: url(../images/instagram.jpg);
    background-size: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 580px;
    margin-bottom: 10%;
  }

  .staff-insta-link {
    text-decoration: none;
  }

  .staff-insta {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 45px;
  }

  .staff-insta:hover {
    color: #000000;
    transition: 0.5s;
  }

  .staff-insta_2 {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 25px;
    margin-top: 10px;
  }

  /*==================================================
  ふわっ
  ===================================*/


  /* fadeUp */

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/

  .fadeUpTrigger {
    opacity: 0;
  }

  /* access */

  .heading-title-access {
    margin-bottom: 5%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 20% 0 0 70%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .access-section {
    background-image: url(../images/romi@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 93%;
    /* background-color: #3C3C3C; */
    background-position: bottom;
    padding: 6%;
    display: flex;
    align-items: center;
  }

  .access-img {
    /* display: block; */
    margin: 0 auto;
    width: 45%;
    border: 8px solid #72725F;

  }

  .access-explanation {
    text-align: center;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
  }

  .more-btn-access {
    margin-top: 3%;
    margin-bottom: 10%;
  }

  /* footer */
  .global-footer {
    /* height: 300px; */
    background-color: #B7B7B7;
    /* margin-top: 10%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .global-footer-menu {
    margin-top: 10%;
  }

  .footer-logo-link {
    padding-top: 8%;
  }


  .footer-logo {
    display: block;
    /* margin: 0 auto; */
    width: auto;
    height: 100px;
    padding-top: 10%;
  }

  .copy-right {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    color: #000;
    padding-bottom: 10%;
  }



  /* access */
  .access-page {
    display: flex;
    width: 70%;
    height: 600px;
    flex-wrap: wrap;
    margin: 0 auto 15% auto;
    min-width: 600px;

  }

  .access-page-section {
    width: 50%;
    height: 50%;
    /* background-color: blueviolet; */
  }

  .access-comment-center {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }

  .access-comment-section {
    width: 70%;
    /* background-color: aquamarine; */
  }

  .access-comment {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-bottom: 10%;
    line-height: 30px;
  }

  .access-address {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
  }

  .access-page-img {
    width: 100%;
    height: 100%;
  }

  /* ふわふわ */
  .content-img {
    /* width: 100%; */
    /* height: 100vh; */
    /* padding: 10px; */
    /* display: flex; */
    overflow: hidden;
    /* position: relative; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: url(https://s3-ap-northeast-1.amazonaws.com/nishinoshake/demo/bg/galaxy01.jpg) no-repeat; */
    background-size: cover;
  }

  .target {
    display: block;
    /* max-width: 350px; */
    /* width: 70%; */
    height: auto;
  }

  /* Animation */
  .target1 {
    animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
  }

  .target2 {
    animation: floating-y 2.0s ease-in-out infinite alternate-reverse;
  }

  .target3 {
    animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
  }

  @keyframes floating-y {
    0% {
      transform: translateY(-5%);
    }

    100% {
      transform: translateY(5%);
    }
  }

}




/* s-p */
@media screen and (max-width:680px) {

  .body {
    background-color: #F1EFEC;
    position: relative;
  }

  .global-header {
    width: 120px;
    height: 270px;
    background-color: rgba(42, 42, 41, 0.8);
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    position: absolute;
    right: 30px;
    position: fixed;
    z-index: 105;
  }

  .global-header-logo {
    width: 12%;
    margin: 2%;
    position: absolute;
    position: fixed;
    z-index: 108;
    min-width: 150px;

  }

  .header-link {
    text-decoration: none;
  }

  .global-header-menu {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    color: #fff;
    list-style: none;
  }

  .global-header-menu:hover {
    color: #000000;
    transition: 0.3s;
  }

  /* ハンバーガーメニュー */
  @import .home {
    width: 100%;
    height: 100vh;
    position: relative;
    background-image: url(https://images.unsplash.com/photo-1444927714506-8492d94b4e3d?ixlib=rb-0.3.5&q=80&fm=jpg&crop=entropy&s=067f0b097deff88a789e125210406ffe);
    background-size: cover;
    background-position: center center;
  }


  /* ====================================
  Navigation 
  ==================================== */

  .overlay-navigation {
    position: fixed;
    z-index: 105;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: hsla(0, 0%, 100%, 0.2);
    display: none;
    opacity: 0;
  }

  nav,
  nav ul {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }

  nav ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
  }

  nav ul li {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    display: none;
  }

  nav li a {
    position: relative;
    top: 46%;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Work sans', sans-serif;
    font-weight: 300;
    letter-spacing: 4px;
    text-decoration: none;
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0;
  }

  /* nav li a:before {
    content: '';
    width: 70px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 100;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
  } */

  nav li a:after {
    content: attr(data-content);
    font-size: 0.7rem;
    -webkit-transition: all .2s linear;
    transition: all .2s linear;
    opacity: 0;
    position: absolute;
    z-index: 100;
    color: #fff;
    display: block;
    margin-right: auto;
    margin-left: auto;
    left: 0;
    right: 0;
    bottom: -50px;
    text-transform: none;
    font-family: 'Open sans', sans-serif;
    font-weight: 300;
    font-style: italic;
    letter-spacing: 0;
  }

  nav li a:hover:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }

  nav li a:hover:after {
    -webkit-transform: translateY(15px);
    -ms-transform: translateY(15px);
    transform: translateY(15px);
    opacity: 1;
  }

  nav li:nth-of-type(1) {
    background-color: #DBDBDB
  }

  nav li:nth-of-type(2) {
    background-color: #BCBCBC
  }

  nav li:nth-of-type(3) {
    background-color: #9D9D9D
  }

  nav li:nth-of-type(4) {
    background-color: #777776
  }

  nav li:nth-of-type(5) {
    background-color: #5a5a5a
  }


  /* ====================================
  Burger king
  ==================================== */

  .open-overlay {
    position: absolute;
    right: 5rem;
    top: 2.2rem;
    z-index: 107;
    width: 34px;
    display: block;
    cursor: pointer;
    position: fixed;
  }

  .open-overlay span {
    display: block;
    height: 1px;
    background-color: #2D2F23;
    cursor: pointer;
    margin-top: 8px;
  }

  .animate-top-bar {
    -webkit-animation: animate-top-bar .6s linear 1 both;
    animation: animate-top-bar .6s linear 1 both
  }

  .animate-bottom-bar {
    -webkit-animation: animate-bottom-bar .6s linear 1 both;
    animation: animate-bottom-bar .6s linear 1 both
  }

  .animate-middle-bar {
    -webkit-animation: animate-middle-bar .6s linear 1 both;
    animation: animate-middle-bar .6s linear 1 both
  }

  .animate-out-top-bar {
    -webkit-animation: animate-out-top-bar .6s linear 1 both;
    animation: animate-out-top-bar .6s linear 1 both
  }

  .animate-out-bottom-bar {
    -webkit-animation: animate-out-bottom-bar .6s linear 1 both;
    animation: animate-out-bottom-bar .6s linear 1 both
  }

  .animate-out-middle-bar {
    -webkit-animation: animate-out-middle-bar .6s linear 1 both;
    animation: animate-out-middle-bar .6s linear 1 both
  }


  /* ====================================
  Animation keyframes
  ==================================== */

  @keyframes animate-top-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-bottom-bar {
    0% {
      background-color: #2D2F23;
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #2D2F23;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #ffffff;
    }
  }

  @keyframes animate-middle-bar {
    0% {
      background-color: #2D2F23;
    }

    80% {
      background-color: #2D2F23;
    }

    100% {
      background-color: #ffffff;
    }
  }

  @keyframes animate-out-top-bar {
    0% {
      background-color: #ffffff;
    }

    50% {
      -webkit-transform: translateY(9px);
      transform: translateY(9px)
    }

    80% {
      -webkit-transform: translateY(5px);
      transform: translateY(5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-bottom-bar {
    0% {
      background-color: #ffffff
    }

    50% {
      -webkit-transform: translateY(-9px);
      transform: translateY(-9px)
    }

    80% {
      -webkit-transform: translateY(-5px);
      transform: translateY(-5px);
      background-color: #ffffff;
    }

    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      background-color: #2D2F23;
    }
  }

  @keyframes animate-out-middle-bar {
    0% {
      background-color: #ffffff;
    }

    80% {
      background-color: #ffffff;
    }

    100% {
      background-color: #2D2F23;
    }
  }

  .home a {
    font-family: "Work Sans", sans-serif;
    color: #222;
    font-weight: 300;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    position: absolute;
    z-index: 10;
    top: 50px;
    left: 50px;
    padding-bottom: 3px;
    border-bottom: 1px solid #222;
  }

  @media (max-width: 640px) {
    nav ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }

    nav ul li {
      height: 20%;
    }

    nav ul li a {
      font-size: 11px;
    }

    nav li a:after {
      font-size: 0.6rem;
      bottom: -25px;
    }

    nav li a:hover:after {
      transform: translateY(0);
    }

    .open-overlay {
      right: 1rem;
    }

    nav li a:before {
      width: 25px;
    }
  }

  /* ハンバーガーここまで */

  /* じわっと文字 */
  .blur2 {
    animation-name: blurAnime;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
  }

  @keyframes blurAnime {
    from {
      filter: blur(10px);
      transform: scale(1.1);
      opacity: 0;
    }

    to {
      filter: blur(0);
      transform: scale(1);
      opacity: 1;
    }
  }

  .blurTrigger {
    opacity: 0;
  }


  .top-page {
    /* background-color: #C8C7C4; */
    /* height: 840px; */
    padding-bottom: 50%;

  }

  .top-logo {
    display: block;
    height: 100px;
    width: auto;
    margin: 0 auto 15% auto;
    padding-top: 20%;
  }

  .top-img-flex {
    /* display: flex; */
    /* background-color: aquamarine; */
  }

  .top-img {
    display: block;
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .top-catchcopy-section {
    position: relative;
  }

  .top-catchcopy {
    font-size: 35px;
    position: absolute;
    /* line-height: 80px; */
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .top-catchcopy1 {
    left: 2%;
    bottom: -20px;
  }

  .top-catchcopy2 {
    left: 2%;
    bottom: -80px;
  }

  .top-catchcopy3 {
    left: 2%;
    bottom: -140px;
  }


  .top-catchcopy1 span {
    opacity: 0;
  }

  .top-catchcopy2 span {
    opacity: 0;
  }

  .top-catchcopy3 span {
    opacity: 0;
  }

  .top-catchcopy1.appeartext1 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on1 1s ease-out forwards;
  }

  @keyframes text_anime_on1 {
    0% {
      opacity: 0;
    }


    100% {
      opacity: 1;
    }
  }

  .top-catchcopy2.appeartext2 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on2 1.5s ease-out forwards;
  }

  @keyframes text_anime_on2 {
    0% {
      opacity: 0;
    }

    30% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }


  .top-catchcopy3.appeartext3 span {
    font-family: "ltc-bodoni-175", serif;
    animation: text_anime_on3 2s ease-out forwards;
  }

  @keyframes text_anime_on3 {
    0% {
      opacity: 0;
    }

    60% {
      opacity: 0;
    }

    100% {
      opacity: 1;
    }
  }



  .salon-page {
    background-image: linear-gradient(#555555, #A0A09F);
  }

  .heading-title-salon {
    /* margin-top: 10%; */
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #ffffff;
    padding: 10% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }


  .top-crown {
    width: 10%;
    display: block;
    margin: 0 auto;
    margin-bottom: 3%;
  }

  .salon-img {
    width: 95%;
    height: 190px;
    display: block;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #ffffff;
    outline: 1px solid #fff;
    outline-offset: 5px;
    padding: 5px;
    max-width: 350px;
    min-width: 200px;
  }

  .salon-content-section {
    width: 90%;
    margin: 15% auto 8% auto;
  }

  .salon-content {
    color: #fff;
    font-size: 14px;
    line-height: 28px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
  }

  .menu-img-section {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-between;
    margin: 0 auto;
    width: 90%;
    /* height: auto; */
    padding-bottom: 20%;
    /* background-color: antiquewhite; */
  }

  .content-img1 {
    width: 70%;
  }

  .content-img2 {
    width: 70%;
    display: block;
    padding-left: 30%;
  }

  .content-img3 {
    width: 70%;
  }

  /* menu */

  .menu-page {
    background-image: url(../images/room2.jpeg);
    background-color: rgba(255, 255, 255, 0.3);
    background-blend-mode: lighten;
    background-repeat: no-repeat;
    /* background-size: 100% 100%; */
    height: 1050px;
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;
  }

  .menu-page-height {
    height: 1050px;
    padding-top: 13%;
  }

  .heading-title-menu {
    margin-bottom: 3%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 15% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-menu-center {
    text-align: center;
    padding: 0;
    font-size: 50px;
    color: #fff;
  }

  .menu {
    background-color: #3C3C3C;
    width: 80%;
    height: 580px;
    margin: 0 auto;
    padding-top: 6%;
    min-width: 350px;
  }

  .menu_2 {
    margin-top: 20%;
    height: 870px;

  }

  .menu-kinds {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 16px;
    padding: 5% 0 2% 10%;
  }

  .menu-table {
    /* background-color: rgb(173, 173, 234); */
    width: 80%;
    margin: 0 auto;
  }

  .menu-table-glay {
    background-color: #E2E2E2;
    /* height: 60px; */
  }

  .menu-table-white {
    background-color: #fff;
    /* height: 60px; */
  }

  .menu-table-left {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 14px;
    padding-left: 30px;

  }

  .menu-table-right {
    vertical-align: middle;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 14px;
  }

  .more-btn {
    display: inline-block;
    width: 100%;
    max-width: 150px;
    /* ボタン幅 */
    position: relative;
    background: #3C3B2D;
    /* 背景色 */
    border: 1px solid #3C3B2D;
    padding: 1em 2em;
    font-weight: bold;
    color: #fff;
    /* 文字色 */
    text-decoration: none;
    text-align: center;
    transition-duration: 0.3s;
    border-radius: 50px;
    display: block;
    margin: 0 auto;
    margin-top: 6%;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    z-index: 50;
  }

  .more-btn:before {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-top: 1px solid #fff;
    /* 矢印の色 */
    border-right: 1px solid #fff;
    /* 矢印の色 */
    transform: rotate(45deg);
    position: absolute;
    top: 50%;
    left: 25px;
    margin-top: -6px;
  }

  /* マウスオーバーした際のデザイン */
  .more-btn:hover {
    background: #fff;
    /* 背景色 */
    color: #3C3B2D;
    /* 文字色 */
  }

  .more-btn:hover:before {
    border-top: 1px solid #3C3B2D;
    /* 矢印の色 */
    border-right: 1px solid #3C3B2D;
    /* 矢印の色 */
  }



  .wave-position {
    position: relative;
  }

  .wave {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 260px;
  }

  /* menu-page */




  /* gallery */

  .top-gallery {
    background-color: #E6E6E5;
    position: relative;
    padding-bottom: 45%;
    /* height: 500px; */
    overflow: hidden;
  }

  .gallery-page {
    position: relative;
    padding-bottom: 15%;
    /* height: 500px; */
  }

  .heading-title-gallery {
    margin-bottom: 5%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 0 0 0 50%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .heading-title-center {
    text-align: center;
    font-size: 50px;
    padding: 30% 0 15% 0;
  }

  .gallery-tape {
    width: 33%;
    z-index: 50px;
    position: absolute;
    /* top: 12%; */
    margin-top: -3%;
    margin-left: 3%;
    z-index: 100;
    transform: rotate(-8deg);
  }


  .gallery-section {
    /* background-color: aquamarine; */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto 3% auto;
  }

  .gallery-section-margin {
    margin: 0 auto 20% auto;
    width: 90%;
  }

  .nail-img {
    width: 15%;
    border: 3px solid #fff;
    list-style: none;
  }

  .nail-img2 {
    width: 43%;
    border: 5px solid #fff;
    margin: 2%;
  }

  .inner-nail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .more-btn-gallery {
    display: inline-block;
    margin-bottom: 10%;
  }


  /* staff */

  .heading-title-staff {
    margin-bottom: 3%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 11% 0 0 10%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .staff-page {
    position: relative;
  }

  .wave-2 {
    position: absolute;
    top: -220px;
    width: 100%;
    height: 260px;

  }

  .staff-section {
    /* display: flex; */
    justify-content: center;
    align-items: center;
    width: 90%;
    margin: 5% auto 0 auto;
    background-color: rgb(255, 255, 255);
    padding-top: 15%;
    /* min-width: 580px; */
  }

  .staff-img {
    display: block;
    height: auto;
    width: 230px;
    /* margin-right: 10%; */
    margin: 0 auto;
  }

  .staff-content {
    width: 90%;
    margin: 10% auto auto;
    padding-bottom: 10%;
  }

  .staff-name {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(0, 0, 0);
    font-size: 25px;
    margin-bottom: 20px;
  }

  .staff-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    /* background-color: rgb(134, 134, 250); */
  }

  .staff-list-left {
    width: 40%;
    padding: 14px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    /* background-color: aquamarine; */
  }

  .staff-list-right {
    width: 60%;
    padding: 15px 0;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    /* background-color: cadetblue; */
  }

  .line-height {
    line-height: 30px;
    margin-top: -8px;
  }

  .staff-insta-section {
    width: 90%;
    /* height: 120px; */
    padding: 6% 0 6% 0;
    margin: 0 auto;
    background-image: url(../images/instagram.jpg);
    background-size: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    background-repeat: no-repeat;
    background-blend-mode: lighten;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* min-width: 580px; */
    margin-bottom: 10%;
  }

  .staff-insta-link {
    text-decoration: none;
  }

  .staff-insta {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #fff;
    font-size: 35px;
  }

  .staff-insta:hover {
    color: #000000;
    transition: 0.5s;
  }

  .staff-insta_2 {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    font-size: 25px;
    margin-top: 10px;
  }

  /*==================================================
  ふわっ
  ===================================*/


  /* fadeUp */

  .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1.0s;
    animation-fill-mode: forwards;
    opacity: 0;
  }

  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(100px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* スクロールをしたら出現する要素にはじめに透過0を指定　*/

  .fadeUpTrigger {
    opacity: 0;
  }

  /* access */

  .heading-title-access {
    margin-bottom: 5%;
    font-size: 60px;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    color: #000;
    padding: 20% 0 0 50%;
    /* border-bottom: 1px solid #ffffff; */
  }

  .access-section {
    background-image: url(../images/romi@2x.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    /* background-color: #3C3C3C; */
    background-position: bottom;
    padding: 10%;
    display: flex;
    align-items: center;
  }

  .access-img {
    /* display: block; */
    margin: 0 auto;
    width: 70%;
    border: 6px solid #72725F;

  }

  .access-explanation {
    text-align: center;
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    margin-top: 5%;
  }

  .more-btn-access {
    margin-top: 10%;
    margin-bottom: 10%;
  }

  /* footer */
  .global-footer {
    /* height: 300px; */
    background-color: #B7B7B7;
    /* margin-top: 10%; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .global-footer-menu {
    margin-top: 10%;
  }

  .footer-logo-link {
    padding-top: 8%;
  }


  .footer-logo {
    display: block;
    /* margin: 0 auto; */
    width: auto;
    height: 90px;
    padding-top: 10%;
  }

  .copy-right {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 10px;
    color: #000;
    padding-bottom: 10%;
  }



  /* access */
  .access-page {
    /* display: flex; */
    width: 90%;
    /* height: 600px; */
    flex-wrap: wrap;
    margin: 0 auto 15% auto;
    /* min-width: 700px; */

  }

  .access-page-section {
    width: 100%;
    height: 300px;
    /* background-color: blueviolet; */
  }

  .access-page-section1 {
    display: none;
  }

  .access-page-section2 {
    width: 100%;
    height: 200px;
  }

  .access-comment-center {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
  }

  .access-comment-section {
    width: 70%;
    /* background-color: aquamarine; */
  }

  .access-comment {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    margin-bottom: 10%;
    line-height: 30px;
  }

  .access-address {
    font-family: "ltc-bodoni-175", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    line-height: 30px;
  }

  .access-page-img {
    width: 100%;
    height: 100%;
  }

  /* ふわふわ */
  .content-img {
    /* width: 100%; */
    /* height: 100vh; */
    /* padding: 10px; */
    /* display: flex; */
    overflow: hidden;
    /* position: relative; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: url(https://s3-ap-northeast-1.amazonaws.com/nishinoshake/demo/bg/galaxy01.jpg) no-repeat; */
    background-size: cover;
  }

  .target {
    display: block;
    /* max-width: 350px; */
    /* width: 70%; */
    height: auto;
  }

  /* Animation */
  .target1 {
    animation: floating-y 1.7s ease-in-out infinite alternate-reverse;
  }

  .target2 {
    animation: floating-y 2.0s ease-in-out infinite alternate-reverse;
  }

  .target3 {
    animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
  }

  @keyframes floating-y {
    0% {
      transform: translateY(-5%);
    }

    100% {
      transform: translateY(5%);
    }
  }



}