html {
  font-size: 62.5%;
}

body.active {
  height: 100%;
  overflow: hidden;
}

.fadein {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
}

.fadein.active {
  opacity: 1;
  visibility: visible;
}

header {
  transform: translateY(-100px);
  opacity: 0;
  transition: transform 0.6s, opacity 0.6s;
}
header.is-show {
  z-index: 10;
  transform: translateY(0);
  opacity: 1;
}

header {
  width: 100%;
  position: fixed;
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-font-smoothing: antialiased;
}
header .header-area {
  display: flex;
  justify-content: space-between;
  height: 100px;
  padding: 0 30px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 640px) {
  header .header-area {
    height: 13.888vw;
    padding: 0 4.166vw;
  }
}
@media screen and (max-width: 640px) {
  header .header-area p {
    width: 20vw;
  }
}
header .header-area h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  line-height: 0;
}
@media screen and (max-width: 640px) {
  header .header-area h1 {
    width: 11.111vw;
  }
}
header .header-area .hamburger {
  width: 40px;
  height: 20px;
  position: relative;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (max-width: 640px) {
  header .header-area .hamburger {
    width: 30px;
    height: 15px;
  }
}
@media screen and (min-width: 641px) {
  header .header-area .hamburger:hover {
    opacity: 0.5;
  }
}
header .header-area .hamburger span {
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #1a1a1a;
  transition: 0.5s;
}
header .header-area .hamburger span:first-of-type {
  top: 0;
}
header .header-area .hamburger span:nth-of-type(2) {
  top: 50%;
}
header .header-area .hamburger span:last-of-type {
  top: 100%;
}
header .header-area .hamburger.active {
  transform: rotateY(360deg);
}
header .header-area .hamburger.active span:first-of-type {
  top: 50%;
  transform: rotate(30deg);
}
header .header-area .hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
header .header-area .hamburger.active span:last-of-type {
  top: 50%;
  transform: rotate(-30deg);
}
header .menu {
  font-family: "Aoto Gothic Regular", YuGothic, "Yu Gothic", sans-serif;
  background-color: rgba(77, 77, 77, 0.9);
  position: fixed;
  top: 100px;
  width: 100%;
  height: 100vh;
  left: 0;
  opacity: 0;
  display: none;
}
@media screen and (max-width: 640px) {
  header .menu {
    top: 13.888vw;
  }
}
header .menu a {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2.875;
  position: relative;
  display: inline-block;
  transition: opacity 0.3s;
}
@media screen and (max-width: 640px) {
  header .menu a {
    font-size: 1.5rem;
  }
}
header .menu a::before {
  content: "";
  display: block;
  width: 28px;
  height: 24px;
  position: absolute;
  top: 12px;
  left: -40px;
}
@media screen and (max-width: 640px) {
  header .menu a::before {
    width: 26px;
    height: 22.2857px;
  }
}
header .menu a.cart::before {
  background: url(../images/icon_cart.svg) no-repeat;
  background-size: contain;
}
header .menu a.account::before {
  background: url(../images/icon_account.svg) no-repeat;
  background-size: contain;
}
header .menu a.inquiry::before {
  background: url(../images/icon_inquiry.svg) no-repeat;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  header .menu a:hover {
    opacity: 0.6;
  }
}
header .menu.active {
  opacity: 1;
}
@media screen and (min-width: 641px) {
  header .menu div {
    width: 300px;
    margin: 60px auto;
  }
}
@media screen and (max-width: 640px) {
  header .menu div {
    width: 76vw;
    margin: 40px auto;
  }
}
header .menu div p {
  padding-left: 70px;
  margin: 0;
}
header .menu div hr {
  height: 1px;
  border: none;
  background-color: #ffffff;
  margin: 15px;
}

.wrapper > div {
  position: relative;
}

footer {
  -webkit-font-smoothing: antialiased;
}
footer .inner {
  max-width: 1000px;
  width: 91%;
  margin: 0 auto;
  color: #4d4d4d;
  font-family: "Aoto Gothic Regular", YuGothic, "Yu Gothic", sans-serif;
}
@media screen and (min-width: 641px) {
  footer .inner {
    display: flex;
    padding: 65px 0;
    font-size: 1.5rem;
  }
  footer .inner > div {
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  footer .inner {
    padding: 45px 0;
  }
}
footer .inner a {
  color: #4d4d4d;
  transition: opacity 0.3s;
}
@media screen and (min-width: 641px) {
  footer .inner a:hover {
    opacity: 0.5;
  }
}
footer .inner a[target=_blank]:after {
  display: none;
}
footer .inner div:first-of-type {
  letter-spacing: 0.1em;
}
footer .inner div:last-of-type {
  letter-spacing: 0.11em;
}
footer .inner .hobo {
  font-size: 1.6rem;
  line-height: 2.375;
  font-family: "Aoto Gothic Bold", YuGothic, "Yu Gothic", sans-serif;
  padding-bottom: 20px;
}
@media screen and (max-width: 640px) {
  footer .inner .hobo {
    font-size: 1.5rem;
  }
}
footer .inner .hobo .mail {
  padding-top: 0;
  margin-left: 0;
}
@media screen and (min-width: 641px) {
  footer .inner .sns {
    display: inline-block;
  }
}
footer .inner .sns > div {
  display: flex;
  align-items: center;
  border-top: #4d4d4d 1px dashed;
  border-bottom: #4d4d4d 1px dashed;
}
@media screen and (min-width: 641px) {
  footer .inner .sns > div {
    padding: 25px 0;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .sns > div {
    padding: 15px 0;
  }
}
footer .inner .sns > div p {
  font-family: "Aoto Gothic Bold", YuGothic, "Yu Gothic", sans-serif;
  padding-right: 1em;
  white-space: nowrap;
}
@media screen and (min-width: 641px) {
  footer .inner .sns > div p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 640px) {
  footer .inner .sns > div p {
    font-size: 1.2rem;
  }
}
footer .inner .sns > div ul {
  display: flex;
  line-height: 0;
}
@media screen and (max-width: 640px) {
  footer .inner .sns > div ul {
    width: 100%;
    justify-content: space-around;
  }
}
@media screen and (min-width: 641px) {
  footer .inner .sns > div ul li {
    padding: 0 0.7em;
  }
}
footer .inner .sns > div ul li a span {
  font-size: 3.8rem;
}
footer .inner .menu {
  font-size: 1.2rem;
  line-height: 2.33;
}
@media screen and (max-width: 640px) {
  footer .inner .menu {
    padding-top: 30px;
  }
}
footer .inner .copyright {
  font-size: 1.2rem;
  padding-top: 2em;
  text-align: left;
}/*# sourceMappingURL=common.css.map */