@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
/**  common  **/
html {
  scroll-padding: 6.5rem;
}

body {
  color: #000;
  font-family: "Yu Gothic Pr6N D", sans-serif;
}

header {
  height: 6.5rem;
  background-color: #B7C0C1;
  position: sticky;
  top: 0;
  z-index: 100;
}
header a,
header button {
  padding-right: 0.8rem;
  padding-left: 0.8rem;
}
header a:hover,
header button:hover {
  opacity: 0.5;
}
header .menu-toggle {
  margin-right: 0.8rem;
  margin-left: 0.8rem;
}
@media (min-width: 600px) {
  header .menu-toggle {
    order: 1;
    margin-right: 0;
    margin-left: 0;
  }
}
header div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  overflow: hidden;
}
@media (min-width: 600px) {
  header div {
    margin-right: 1.6rem;
    margin-left: 1.6rem;
  }
}
header h1 {
  margin-right: auto;
}
header .badge {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1rem;
  background-color: #7FB9B6;
  padding: 0.2rem 0.6rem;
  border-radius: 1rem;
  z-index: 10;
}
header .nav_cart {
  position: relative;
}

.header-nav {
  position: relative;
  z-index: 100;
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.8rem;
}
@media (min-width: 600px) {
  .header-nav {
    width: min(100%, 37.5rem);
    margin-left: auto;
  }
}
.header-nav li {
  border-top: 1px solid currentColor;
}
.header-nav a {
  padding: 0.4em 1em;
  display: block;
}
.header-nav .global-menu {
  background-color: #B7C0C1;
}
.header-nav .global-menu a {
  background-color: #B7C0C1;
}
.header-nav .hobo-menu {
  background-color: #EDEDED;
}
.header-nav .hobo-menu a {
  background-color: #EDEDED;
}

.page-header {
  position: relative;
  aspect-ratio: 375/148;
  width: 100%;
}
@media (min-width: 600px) {
  .page-header {
    aspect-ratio: 1512/217;
    max-height: 21.7rem;
  }
}
.page-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.breadcrumbs {
  font-family: "Yu Gothic Pr6N B", sans-serif;
  font-size: 1.2rem;
  margin: 1em;
}
@media (min-width: 992px) {
  .breadcrumbs {
    font-size: 1.4rem;
    margin-right: 0;
    margin-left: 0;
  }
}
.breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumbs ul li:not(:last-of-type)::after {
  content: "/";
  margin: 0 0.5em;
}
.breadcrumbs a {
  color: #646464;
}

footer {
  background-color: #EDEDED;
  padding: 4rem 5.2rem;
}
footer a:hover {
  opacity: 0.5;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: min(100%, 120rem);
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 600px) {
  footer .wrapper {
    gap: 2.8rem;
  }
}
footer .footer-share {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2.6rem;
}
footer .footer-share li:first-child {
  margin-right: 0.8rem;
}
footer .footer-hobo {
  font-size: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media (min-width: 600px) {
  footer .footer-hobo {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.8rem 4rem;
  }
}
footer .footer-store {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .footer-store ul {
  font-size: 1rem;
}
footer .footer-store div {
  font-size: 1.2rem;
}
footer .footer-store div span {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}