:target,
[id] {
  scroll-margin-top: 80px;
}
html {
  scroll-behavior: smooth;
}
body {
  font-feature-settings: "palt";
  color: #353f63;
}
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;
}
.fs-c-productList {
  display: none;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
header.glass {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
header h1 {
  width: 35%;
  min-width: 150px;
}
header .right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 15%;
  min-width: 150px;
}
header .right .logo {
  width: 67%;
  min-width: 100px;
}
header .right .cart {
  width: 16%;
  min-width: 24px;
}
header .right .menuBtn {
  position: relative;
  width: 23px;
  height: 23px;
}
header .right .menuBtn span {
  position: absolute;
  z-index: 4;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.4s;
}
header .right .menuBtn span:nth-of-type(1) {
  top: 3px;
}
header .right .menuBtn span:nth-of-type(2) {
  top: 50%;
  transform: translate(0, calc(-50% + 1px));
  transition: all 0.1s;
}
header .right .menuBtn span:nth-of-type(3) {
  bottom: 0;
}
header .right .menuBtn.menu-open span {
  background-color: #353f63;
  filter: none;
}
header .right .menuBtn.menu-open span:nth-of-type(1) {
  transform: translateY(9px) rotate(-135deg);
}
header .right .menuBtn.menu-open span:nth-of-type(2) {
  visibility: hidden;
}
header .right .menuBtn.menu-open span:nth-of-type(3) {
  transform: translateY(-9px) rotate(135deg);
}
header .right .logo img,
header .right .cart img,
header .right .menuBtn span {
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.5));
}
header .right .menu {
  opacity: 0;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 3;
  width: 65%;
  max-width: 430px;
  height: 100vh;
  overflow-y: auto;
  background: #dedede;
  padding: 70px 30px 30px 30px;
  -webkit-transition: opacity .5s, right .5s;
  transition: opacity .5s, right .5s;
}
header .right .menuBtn.menu-open + .menu {
  opacity: 1;
  right: 0;
}
header .right .menu ul li a {
  display: block;
  font-family: myriad-variable, sans-serif;
  font-size: 5vw;
  font-variation-settings: "wdth" 100, "wght" 400;
  padding: 10px 0;
  color: #353f63;
}

/* FVスライダー */
#FV-slider .swiper-container {
  position: relative;
}
#FV-slider .swiper-container .swiper-wrapper .swiper-slide a:hover {
  opacity: 1;
}
#FV-slider .swiper-container .swiper-pagination {
  bottom: 20px;
  z-index: 1;
}
#FV-slider .swiper-container .swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  margin: 0 10px;
  background-color: #fff;
  opacity: 0.5;
}
#FV-slider .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
}

/* 商品ラインナップ */
#lineup {
  padding-top: 45px;
}
#lineup h2 {
  font-family: myriad-variable, sans-serif;
  font-size: 5.25vw;
  font-variation-settings: "wdth" 100, "wght" 400;
  text-align: center;
  letter-spacing: 0.2em;
}
#lineup ul.product-wrap {
  padding: 35px 4%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  row-gap: 30px;
}
#lineup ul.product-wrap > li {
  width: calc((100% / 2) - 8px);
}
#lineup ul.product-wrap > li ul.product-images {
  display: grid;
  grid-template-areas: "stack";
}
#lineup ul.product-wrap > li ul.product-images li {
  grid-area: stack;
  opacity: 0;
  visibility: hidden;
  transition: all 1s;
}
#lineup ul.product-wrap > li ul.product-images li.is-active {
  opacity: 1;
  visibility: visible;
}
#lineup ul.product-wrap > li .textArea {
  margin-top: 15px;
}
#lineup ul.product-wrap > li .textArea p.product-name {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 3.25vw;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
#lineup ul.product-wrap > li .textArea p.product-price {
  margin-top: 8px;
}
#lineup ul.product-wrap > li .textArea p.product-price span.price {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 3.25vw;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
#lineup ul.product-wrap > li .textArea p.product-price span.tax {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 1.8vw;
  font-weight: 400;
  font-style: normal;
  line-height: 1.3;
  letter-spacing: 0.05em;
  margin-left: 3px;
}

/* footer */

@media screen and (min-width: 750px) {
  :target,
  [id] {
    scroll-margin-top: 140px;
  }
  a:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  
  main.fs-l-main {
    display: block;
    max-width: unset;
  }
  
  /* header */
  header {
    padding: 20px 40px;
  }
  header h1 {
    max-width: 290px;
  }
  header .right {
    width: 15%;
  }
  header .right .logo {
    max-width: 180px;
  }
  header .right .cart {
    max-width: 40px;
  }
  header .right .menuBtn {
    width: 38px;
    height: 38px;
    cursor: pointer;
  }
  header .right .menuBtn span:nth-of-type(1) {
    top: 8px;
  }
  header .right .menuBtn span:nth-of-type(2) {
    transform: translate(0, calc(-50% + 3px));
  }
  header .right .menuBtn span:nth-of-type(3) {
    bottom: 2px;
  }
  header .right .menuBtn.menu-open span:nth-of-type(1) {
    transform: translateY(13px) rotate(-135deg);
  }
  header .right .menuBtn.menu-open span:nth-of-type(3) {
    transform: translateY(-13px) rotate(135deg);
  }
  header .right .menu {
    padding: 100px 60px 60px 60px;
  }
  header .right .menu ul li a {
    font-size: 35px;
  }
  
  /* FVスライダー */
  #FV-slider .swiper-container .swiper-pagination {
    bottom: 45px;
  }
  #FV-slider .swiper-container .swiper-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 20px;
  }
  
  /* 商品ラインナップ */
  #lineup {
    padding-top: 100px;
  }
  #lineup h2 {
    font-size: 45px;
  }
  #lineup ul.product-wrap {
    padding: 80px 0 150px 0;
    max-width: 1280px;
    margin: auto;
    row-gap: 50px;
  }
  #lineup ul.product-wrap > li {
    width: calc((100% / 3) - 30px);
  }
  #lineup ul.product-wrap > li .textArea {
    margin-top: 20px;
  }
  #lineup ul.product-wrap > li .textArea p.product-name {
    font-size: 28px;
  }
  #lineup ul.product-wrap > li .textArea p.product-price {
    margin-top: 20px;
  }
  #lineup ul.product-wrap > li .textArea p.product-price span.price {
    font-size: 28px;
  }
  #lineup ul.product-wrap > li .textArea p.product-price span.tax {
    font-size: 14px;
  }
}