body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-feature-settings: "palt";
  color: #030303;
}
a {
  -webkit-transition: all .3s !important;
  transition: all .3s !important;
}
img,
video {
  vertical-align: bottom;
}
picture {
  display: block;
}
picture img {
  width: 100%;
}

.pc {
  display: none;
}

main.fs-l-main {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
section.fs-l-pageMain {
  max-width: unset;
}

/* ヘッダー */
header {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  align-items: start;
  box-shadow: none;
  z-index: 2;
  margin: auto;
  padding: 4.5vw;
  padding-left: 3vw;
}
header h1 a.logo picture {
  width: 140px;
}
header .inner {
  display: flex;
  margin-right: 10px;
}
header .inner a.amepla-top {
  display: flex;
  align-items: center;
  margin-top: 2px;
  margin-right: 4px;
}
header .inner a.amepla-top img {
  width: 90px;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}
header .inner a.cart {
  display: initial;
  width: 55px;
  margin-right: 5px;
}
header .inner .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: space-evenly;
  width: 25px;
  height: 35px;
  z-index: 4;
  margin-top: 11px;
  padding: 0;
}
header .inner .menu span {
  height: 2px;
  width: 100%;
  background: #fff;
  display: block;
  margin: 0;
  transition: all 0.4s;
  filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.4));
}
.menu-open {
  overflow: hidden;
}
body.menu-open header .inner .menu {
  position: fixed;
  top: 20px;
  right: 30px;
}
body.menu-open header .inner .menu span:nth-of-type(1) {
  transform: translateY(9.5px) rotate(-135deg);
}
body.menu-open header .inner .menu span:nth-of-type(2) {
  visibility: hidden;
  transition: all 0.1s;
}
body.menu-open header .inner .menu span:nth-of-type(3) {
  transform: translateY(-9.5px) rotate(135deg);
}
header .memu-wrap {
  opacity: 0;
  position: fixed;
  top: 0;
  right: -100%;
  width: 90%;
  max-width: 427px;
  height: 100%;
  overflow-y: auto;
  z-index: 3;
  background: rgba(0, 0, 0, 0.9);
  box-sizing: border-box;
  padding: 10px 0;
  font-size: 0;
  -webkit-transition: opacity .5s, right .5s;
  transition: opacity .5s, right .5s;
}
body.menu-open header .memu-wrap {
  opacity: 1;
  right: 0;
}
header .memu-wrap ul {
  margin: 0;
  width: 100%;
  padding: 15vw 0 15vw 9vw;
}
header .memu-wrap ul li a img {
  width: auto;
  height: 5.3vw;
}
header .memu-wrap ul li + li {
  margin-top: 10%;
}

/* フッター */
footer {
  position: relative;
}
footer ul.footer-contents {
  width: 100%;
  position: absolute;
  bottom: 5vw;
  right: 5vw;
  z-index: 0;
  display: flex;
  justify-content: right;
  align-items: end;
  gap: 10vw;
}
footer ul.footer-contents li:nth-of-type(1) {
  width: 24%;
}
footer ul.footer-contents li:nth-of-type(2) {
  width: 48%;
}

@media screen and (min-width: 750px) {
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  
  main.fs-l-main {
    display: block;
    max-width: unset;
  }
  
  /* ヘッダー */
  header {
    padding: 20px 40px;
  }
  header h1 a.logo picture {
    width: 200px;
  }
  header .inner {
    margin-right: 25px;
  }
  header .inner a.amepla-top {
    margin-top: 3px;
    margin-right: 4px;
  }
  header .inner a.amepla-top img {
    width: 120px;
  }
  header .inner a.cart {
    width: 70px;
  }
  header .inner .menu {
    width: 35px;
    height: 50px;
  }
  body.menu-open header .inner .menu span:nth-of-type(1) {
    transform: translateY(13px) rotate(-135deg);
  }
  body.menu-open header .inner .menu span:nth-of-type(3) {
    transform: translateY(-13px) rotate(135deg);
  }
  header .memu-wrap ul {
    padding: 80px 0 80px 80px;
  }
  header .memu-wrap ul li a img {
    height: 25px;
  }
  header .memu-wrap ul li + li {
    margin-top: 30px;
  }
  
  /* フッター */
  footer ul.footer-contents {
    bottom: 80px;
    right: 55px;
    gap: 40px;
  }
  footer ul.footer-contents li:nth-of-type(1) {
    width: 120px;
  }
  footer ul.footer-contents li:nth-of-type(2) {
    width: 320px;
  }
}