@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
/* =========================================
   Header (Common)
   ========================================= */
.header {
  background-color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header .header-pc-link-area {
  display: none;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 85%;
  margin: 0 auto;
  height: 89px;
}
.header-inner .header-logo-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 89px;
}
.header-inner .header-logo-area a, .header-inner .header-logo-area img {
  width: 100%;
  height: 100%;
  display: block;
}
.header-inner .header-logo-area .cart-icon {
  width: 26px;
}
.header-inner .header-logo-area .logo {
  width: 109px;
}
.header-inner .header-logo-area .hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  width: 22px;
  height: 22px;
  padding: 0;
}

/* PC Nav - Hidden by default (Mobile First) */
.pc-nav {
  display: none;
}

/* =========================================
   SP Menu Overlay (Common)
   ========================================= */
.sp-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #426C18;
  background-image: url("/assets/images/common/menu_bg.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 53% auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.sp-nav-overlay .close-btn {
  position: absolute;
  top: 35px;
  right: 35px;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 16px;
  height: 16px;
}
.sp-nav-overlay .close-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.sp-nav-overlay .sp-nav-inner {
  width: 85%;
  margin: 0 auto;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-list {
  margin-bottom: 27px;
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  color: #fff;
  line-height: 1.3;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-list li {
  margin-bottom: 3px;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-list a {
  font-size: 37px;
  letter-spacing: 3px;
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-footer {
  padding-left: 5px;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-footer a:before {
  background-image: url("/assets/images/common/icon_insta_white.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  margin-right: 5px;
}
.sp-nav-overlay .sp-nav-inner .sp-nav-footer a {
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 17px;
  line-height: 1.3;
  text-decoration: none;
}

.sp-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/*共通globalナビ*/
.global_nav {
  width: 100%;
}
.global_nav ul {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.global_nav a {
  color: #000;
  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
  line-height: 1.4;
  font-size: 12px;
  text-decoration: none;
}

/* =========================================
   Footer (Common)
   ========================================= */
.footer {
  text-align: center;
  padding: 40px 20px;
  background-color: #fff;
  color: #333;
}

.copyright {
  font-size: 8px;
  font-family: "Oswald", sans-serif;
  color: #000000;
  text-align: center;
  margin-top: 9px;
}

@media (min-width: 768px) {
  .copyright {
    font-size: 12px;
    margin-top: 20px;
  }
  .global_nav ul {
    gap: 30px;
  }
  .global_nav a {
    font-size: 18px;
  }
}
/* =========================================
   Media Query: PC Header/Footer
   ========================================= */
@media (min-width: 1024px) {
  .header {
    background-color: #fff;
    height: 170px;
    position: relative;
  }
  .header .header-pc-link-area {
    position: absolute;
    top: 25px;
    right: 30px;
    display: flex;
    gap: 15px;
    justify-content: flex-end;
  }
  .header .header-pc-link-area a {
    display: block;
    width: 26px;
  }
  .header .header-pc-link-area a img {
    width: 100%;
  }
  .header-inner {
    width: 100%;
    height: auto;
    flex-direction: column;
  }
  .header-inner .header-logo-area {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    padding-top: 14px;
    height: auto;
  }
  .header-inner .header-logo-area .cart-icon {
    display: none;
  }
  .header-inner .header-logo-area .logo {
    margin-top: 15px;
    width: 166px;
  }
  .header-inner .header-logo-area .hamburger-menu {
    display: none;
  }
  /* Show PC Nav */
  .pc-nav {
    display: block;
  }
  .global_nav a:hover {
    opacity: 0.8;
  }
  /* Hide SP elements */
  .sp-header-icons {
    display: none;
  }
}
