@charset "UTF-8";

/* 共通部分 */
html {
    font-size: 1.5vw;
}

body {
    font-family: "Zen Maru Gothic", sans-serif;
    font-weight: bold;
    color : #704a24;
    background-color: #F4E6CF;
}

img {
    max-width: 100%;
}
/*-------------------------------------------------------------------------*/


/*ヘッダー*/
.page-header{
    display: flex;
    justify-content: flex-end;
    padding: 2%;
}
.drawer-menu {
    position: fixed;
    top: 0;
    right: -100%; 
    width: 100%;
    height: 100%;
    background-color: #ffff;
    color: #005c6c;
    transition: right 0.3s ease; 
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
  }
  .drawer-menu.open {
    right: 0;
  }
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
  }
  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #005c6c;
    margin: 5px 0;
    transition: 0.4s;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
  .drawer-menu ul {
    list-style-type: none;
    padding: 0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  .drawer-menu li {
    padding: 10px 0;
  }
  .drawer-menu li a {
    position: relative;
    left: 15vw;
    max-width: 15%;
    color: #005c6c;
    text-decoration: none;
    display: block;
    font-size: 3vw;
  }
  .drawer-menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2.5px;
    background: #005c6c;
    bottom: -1px;
    transform: scale(0,1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
  .drawer-menu li a:hover::after {
    transform: scale(1,1);
  }
  .drawer-menu .logo {
    position: relative;
    top: 10vw;
    left: 70vw;
    width: 25vw;
  }
/*--------------------------------------------------------------------------*/

.top {
    display: flex;
    justify-content: center;
}

.top div {
    width: 30vw;
    position: relative;
    right: 2.5vw;
    top: 20vw;
}
.moe {
    width: 45vw;
    position: relative;
    left: 5vw;
}

/*当店について*/
.about-us{
    display: flex;
    justify-content: space-between;
    margin-top: 20vw;
    margin-bottom: 15vw;
}
.neko {
    width: 20vw;
    position: relative;
    top: 2vw;
    left: 8vw;
}
.about-us1 p{
    text-align: center;
    width: 41vw;
    margin-bottom: 30px;
}
.about-us2 {
    width: 15vw;
    position: relative;
    top: 1vw;
    right: 8vw;
}
/*------------------------------------------------------------------------------*/


/*コンタクト、メニュー*/
section {
    padding: 5%;
}
.menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end; 
    padding: 10%;
}
.comment1 {
    width: 33vw;
    text-align: center;
    margin-bottom: 3vw;
    transform: translatex(-8vw);
}
.button1 {
    width: 15vw;
}
.soft1 {
    width: 15vw;
    position: relative;
    left: -35vw;
    top: -8vw;
    animation: soft1 3s ease-in-out infinite alternate;
    background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    height: 15vw;
}
@keyframes soft1 {
    0% {
      transform:translate(0, 0) rotate(-7deg);
    }
    50% {
      transform:translate(0, -7px) rotate(0deg);
    }
    100% {
      transform:translate(0, 0) rotate(7deg);
    }
}
.line-left {
    margin-bottom: 10vw;
    border-left: 2px solid #704a24;
    height: 30vw;
    margin-top: -45vw;
    margin-left: 3vw;
}

.contact {
    padding: 7%;
    margin-bottom: 10vw;
}
.comment2 {
    position: relative;
    left: 6vw;
    bottom: 3vw;
    width: 25vw;
    text-align: center;
}
.button2 {
    width: 15vw;
}
.soft2 {
    width: 9vw;
    position: relative;
    left: 36vw;
    top: -8vw;
    animation: soft2 3s ease-in-out infinite alternate;
    background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    height: 15vw;
}
@keyframes soft2 {
    0% {
      transform:translate(0, 0) rotate(-7deg);
    }
    50% {
      transform:translate(0, -7px) rotate(0deg);
    }
    100% {
      transform:translate(0, 0) rotate(7deg);
    }
}
.line-right {
    border-left: 2px solid #704a24;
    height: 30vw;
    margin-top: -50vw;
    float: right; 
    position: relative;
    right: 3vw;
}
/*------------------------------------------------------------------------------------*/
/*アクセス*/
.location {
    display: flex;
    justify-content: space-around;
}
.access {
    width: 15vw;
    margin-right: 7vw;
}
.location-map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    height: 0;
    margin-bottom: 3vw;
}
.location-map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.location-info {
    margin-bottom: 6vw;
    width: 50vw;
}
.location-info p {
    text-align: center;
}

/*-------------------------------------------------------------------------------------*/

/*フッター*/
.footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url(../images/footer_img.svg);
    background-size: cover;
    min-height: 25vw;
    color: #F4E6CF;
}
.footer_logo {
    width: 10vw;
    margin-bottom: 4vw;
    margin-top: 9vw;
}
/*----------------------------------------------------------------------------------------*/


/*レスポンシブ*/
@media(max-width: 500px) {
.top {
    display: flex;
    flex-direction: column;
}
.top div {
    position: relative;
    top: 90vw;
    width: 60vw;
    text-align: right;
}
.moe {
    width: 80vw;
    margin-top: 5vw;
    margin-right: 5vw;
}


}
/*--------------------------------------------------------------------------------------------*/




































