 @charset "UTF-8";
/* CSS Document */

/* Hamburger menu */
/* Nav styles */
.hamburger-hamburger{
  position: fixed;
    z-index: 1000;
 }
 .menu ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style-type: none;
    padding: 0;
  margin: 0;
  position: fixed;
  top: -100vh;
  left: 0;
  width: 100vw;
  }
  
  .menu li {
  background-image: linear-gradient(60deg, #a1875f 0%, #CEC0B1 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform .3s ease-in-out;
    height: 100vh;
  width: 20vw;
  }
  
  .menu li a {
    color: #fff;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
  }
  
  .menu li a:hover {
    text-decoration: underline;
  }
  
  .menu li:nth-of-type(2) {
    transition-delay: .025s;
  }
  
  .menu li:nth-of-type(3) {
    transition-delay: .05s;
  }
  
  .menu li:nth-of-type(4) {
    transition-delay: .075s;
  }
  
  .menu li:nth-of-type(5) {
    transition-delay: .1s;
  }
  
  .menu.open li {
    transform: translateY(100vh);
  }
  
  @media (max-width: 768px) {
 
    .menu ul {
        flex-direction: column;
    top: 0;
    left: -100vw;
    }
  
    .menu li {
        height: 10vh;
        width: 100vw;
    }
  
    .menu.open li {
        transform: translateX(100vw);
    }
  }
  .hamburger {
    background-color: #a1875f;
    border-radius: 50%;
      position: fixed;
      top: 20px;
      right:5%;
      border: 0;
      /* cursor: pointer; */
      width: 60px;
      height: 60px;
  }
  
  .hamburger:focus {
  outline: 0;
  }
  
  .hamburger .line {
  background-color: #000;
  display: block;
  margin: 4px auto;
  height: 2px;
  width: 20px;
  transition: all .1s ease-in;
  }
  
  .hamburger.open .line:nth-child(1) {
  transform:translateY(6px) rotate(45deg) ;
  }
  
  .hamburger.open .line:nth-child(2) {
  opacity: 0;
  }
  
  .hamburger.open .line:nth-child(3) {
  transform:translateY(-6px) rotate(-45deg) ;
  } 
/* フッター */
/* .footer__copyright{ */
    /* text-align: center;
    display: block;
  }
  .site-map{
    text-align: center;

  }
  .footer-bluemink{
    width: 100px;
   padding: 50px 20px 30px;
  }
  .site-map__main-links li a{
    text-decoration: none;
    color:#070606;
    font-family: Sawarabi Mincho;
    text-align: center;
    font-size: 16px;
  }
  .footer-content-wrapper{
    display: block;
    text-align: center;
  }
/* インスタ */
/* i::before{ */
  /* font-size:30px;
  font-weight: 400; /* 追記したコード */
  /* color: #000;
  padding: 50px;
}  */