@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #212121;
  font-family: "Ryo Gothic PlusN", sans-serif;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none !important;
  border: transparent;
  outline: none !important;
  outline-color: transparent;
}

.fs-l-page {
  padding-top: 86px;
}

.l-footer {
  margin-top: 120px;
}

a:hover {
  opacity: 1;
}

.p-main-content {
  width: 100%;
}
.p-main-content__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p-mv {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p-mv__image {
  aspect-ratio: 390/703;
}

.p-lead {
  padding: 64px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-lead__text {
  line-height: 2 !important;
  color: #212121;
}

.p-prod-section {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.p-prod-section__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.p-prod-section__image-wrapper {
  width: 100%;
  overflow: hidden;
}
.p-prod-section__desc-wrapper {
  padding: 48px 19.5px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-prod-section__desc {
  line-height: 2;
  color: #212121;
}
.p-prod-section__grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 1px;
  row-gap: 0;
}

.js-product-list {
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.c-prod-card {
  width: calc(50% - 0.5px);
  background-color: #ffffff;
  overflow: hidden;
  outline: 1px #ffffff solid;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-prod-card a {
  width: 100%;
}
.c-prod-card__image-wrapper {
  width: 100%;
  aspect-ratio: 194/259;
  position: relative;
  background-color: #F2F2F2;
  display: block;
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.c-prod-card__image-wrapper::-webkit-scrollbar {
  display: none;
}
.c-prod-card__image-wrapper .simplebar-content {
  display: flex;
  flex-wrap: nowrap;
}
.c-prod-card__image-wrapper .simplebar-content-wrapper {
  scroll-padding-left: 0;
}
.c-prod-card__image-wrapper .simplebar-track.simplebar-horizontal {
  width: 50px;
}
.c-prod-card__image {
  width: 100%;
  display: inline-block;
  flex: 0 0 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
  scroll-snap-align: center;
  scroll-snap-stop: always;
}
.c-prod-card__image.js-hover-img {
  opacity: 1;
}
.c-prod-card__content {
  width: 100%;
  padding: 12px 12px 24px 12px;
  background: linear-gradient(0deg, #ffffff 0%, #F2F2F2 100%);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-prod-card__name {
  width: 100%;
  max-width: 480px;
  font-size: 13px;
  color: #212121;
  line-height: 19.5px;
  font-feature-settings: "palt";
}
.c-prod-card__price {
  flex: 1;
  line-height: 12px;
  letter-spacing: 0.6px;
  color: #212121;
}
.c-prod-card__price::before {
  content: "¥";
  margin-right: 2px;
}
.c-prod-card__status {
  text-align: right;
  line-height: 12px;
  letter-spacing: 0.6px;
}
.c-prod-card__status--soldout {
  color: #C20000;
}
.c-prod-card__tags {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.c-prod-card__tag {
  padding: 4px;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 10px;
  letter-spacing: 0.5px;
  color: #212121;
}

.c-product-list__more {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.c-product-list__more-btn {
  width: 83%;
  max-width: 330px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  line-height: 1;
  color: #737373;
  padding: 0;
  margin: 0 auto;
}
.c-product-list__more-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #737373;
  border-right: 1px solid #737373;
  margin-bottom: 2px;
  transform: rotate(135deg);
}
.c-product-list__more-btn.is-open::after {
  margin-top: 3px;
  margin-bottom: 0;
  transform: rotate(-45deg);
}

@media (min-width: 1024px) {
  .fs-l-page {
    padding-top: 108px;
  }
  .p-main-content {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 64px;
  }
  .p-main-content__inner {
    gap: 64px;
  }
  .p-mv {
    align-self: stretch;
  }
  .p-mv__image {
    aspect-ratio: 2/1;
  }
  .p-lead {
    width: 100%;
    max-width: 800px;
    padding: 0;
  }
  .p-lead__text {
    line-height: 32px;
  }
  .p-prod-section__hero {
    flex-direction: row;
    overflow: hidden;
  }
  .p-prod-section__image-wrapper {
    width: 50%;
    height: auto;
  }
  .p-prod-section__image {
    position: static;
    object-fit: cover;
    aspect-ratio: 720/900;
  }
  .p-prod-section__desc-wrapper {
    width: 50%;
    padding: 0;
  }
  .p-prod-section__desc {
    width: 75%;
    line-height: 32px;
  }
  .p-prod-section__grid {
    flex-direction: row;
  }
  .c-prod-card {
    width: calc(25% - 1px);
  }
  .c-prod-card__image-wrapper {
    display: block;
    overflow: hidden;
    aspect-ratio: 3/4;
  }
  .c-prod-card__image-wrapper .simplebar-content {
    display: block;
  }
  .c-prod-card__image {
    transition: opacity 0.4s ease;
  }
  .c-prod-card__image.js-hover-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .c-prod-card:hover {
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.25);
    z-index: 2;
  }
  .c-prod-card:hover .js-hover-img {
    opacity: 1;
  }
  .c-prod-card__content {
    padding: 16px 16px 24px;
    gap: 12px;
  }
  .c-prod-card__name {
    line-height: 21px;
  }
  .c-prod-card__price {
    line-height: 14px;
    letter-spacing: 0.7px;
  }
  .c-product-list__more {
    margin-top: 48px;
    margin-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */