@charset "UTF-8";
body {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  background-color: #ffffff;
  background-image: url(../img/汎用/sakamotomika_BackgroundImage.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
}

@media screen and (max-width: 640px) {
  .header {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .mobile-header,
  .mobile-menu {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    -webkit-backdrop-filter: blur(2px);
            backdrop-filter: blur(2px);
    color: #fff;
    z-index: 1000;
    animation: slideIn_mobileHeader 3s 1;
    animation-delay: 800ms;
  }
  @keyframes slideIn_mobileHeader {
    0% {
      transform: translateY(-500px);
      display: none;
    }
    50% {
      opacity: 0;
      transform: translateY(-100px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .header-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 5px 10px;
    justify-content: space-between;
  }
  .mobile_logo {
    height: 70px;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding-right: 10px;
  }
  .hamburger {
    width: 34px;
    height: 2px;
    background-color: #9d7f0c;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background-color: #342f27;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10vh 20px 20px 10px;
    z-index: 999;
    border-radius: 0 0 10px 10px;
  }
  .mobile-menu ul {
    list-style: none;
    padding: 0;
  }
  .menu_items {
    margin: 2 0;
    padding: 1.2em;
  }
  .mobile-menu a {
    color: rgb(245, 237, 196);
    text-decoration: none;
    font-size: 1.2em;
  }
  .mobile_header_icon {
    display: flex;
    justify-content: center;
  }
  .sns_icon_x,
  .sns_icon_instagram {
    padding: 3em 15px;
  }
  .menu_items_hr {
    width: 100%;
    color: black;
    margin: 0 auto;
    border-top: 1px solid rgba(153, 129, 57, 0.5098039216);
  }
  .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 20px;
    align-self: flex-end;
  }
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }
  .menu-open .mobile-menu {
    transform: translateY(0);
  }
  .menu-open .overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .menu-open .hamburger:nth-child(1) {
    transform: rotate(50deg) translate(4px, 12px);
  }
  .menu-open .hamburger:nth-child(2) {
    opacity: 0;
  }
  .menu-open .hamburger:nth-child(3) {
    transform: rotate(-48deg) translate(4px, -14px);
  }
}/*# sourceMappingURL=mobile_header.css.map */