@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100..700;1,100..700&display=swap");
.header-bnr {
  display: none !important;
}

.font-animation {
  display: flex;
  align-items: baseline;
  justify-content: center;
  overflow: hidden;
}

.font-animation .fadeIn {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.5s;
  animation-fill-mode: forwards;
}

.font-animation.-visible .fadeIn {
  transform: translate(0, 0);
}

.font-animation .fadeIn:nth-child(2) {
  transition-delay: 0.06s;
}
.font-animation .fadeIn:nth-child(3) {
  transition-delay: 0.12s;
}
.font-animation .fadeIn:nth-child(4) {
  transition-delay: 0.18s;
}
.font-animation .fadeIn:nth-child(5) {
  transition-delay: 0.24s;
}
.font-animation .fadeIn:nth-child(6) {
  transition-delay: 0.3s;
}
.font-animation .fadeIn:nth-child(7) {
  transition-delay: 0.36s;
}
.font-animation .fadeIn:nth-child(8) {
  transition-delay: 0.42s;
}
.font-animation .fadeIn:nth-child(9) {
  transition-delay: 0.48s;
}
.font-animation .fadeIn:nth-child(10) {
  transition-delay: 0.54s;
}
.font-animation .fadeIn:nth-child(11) {
  transition-delay: 0.6s;
}
.font-animation .fadeIn:nth-child(12) {
  transition-delay: 0.66s;
}
.font-animation .fadeIn:nth-child(13) {
  transition-delay: 0.72s;
}
.font-animation .fadeIn:nth-child(14) {
  transition-delay: 0.78s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
@keyframes fadeUpAnimeVertical {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.curtain::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #dcdcdc;
  z-index: 2;
  transition: 0.5s;
}

.curtain.-visible::before {
  transform: translateX(100%);
}

.curtain picture {
  opacity: 0;
  transition: 0.5s;
}

.curtain.-visible picture {
  opacity: 1;
}

.p-blk-schedule__img {
  opacity: 0;
}

.p-blk-schedule__img.isActive {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}

.p-blk-schedule__column:nth-child(1) .p-blk-schedule__img.isActive {
  animation-name: fadeLeftAnime;
}

.p-blk-schedule__column:nth-child(2) .p-blk-schedule__img.isActive {
  animation-name: fadeRightAnime;
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.p-blk-schedule__detail-container {
  opacity: 0;
  background: #a7a7a7;
}

.p-blk-schedule__detail-container.isActive {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
}
.p-blk-schedule__column:nth-child(2) .p-blk-schedule__detail-container.isActive {
  animation-name: fadeLeftAnime;
}

.p-blk-schedule__column:nth-child(1) .p-blk-schedule__detail-container.isActive {
  animation-name: fadeRightAnime;
}

.l-main-comingsoon .p-blk-sns__anchor {
  opacity: 0;
}

.l-main-comingsoon .p-blk-sns__anchor.isActive {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-name: fadeRightAnime;
}

.p-blk {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-blk-mv {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv {
    margin-bottom: 4rem;
  }
}
.p-blk-mv__inner {
  position: relative;
}

.p-blk-mv__image {
  text-align: center;
}

.p-blk-mv__image-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30%;
  opacity: 0;
}

.p-blk-mv__image-logo-concept {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30%;
  width: 30%;
  opacity: 0;
}

.p-blk-mv__box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(140, 140, 140, 0.72);
}
@media screen and (min-width: 768px) {
  .p-blk-mv__box {
    bottom: -10rem;
    min-width: 500px;
    padding: 35px 35px;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__box {
    bottom: -6rem;
    padding: 25px 45px;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-mv__box > *:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__box > *:not(:last-child) {
    margin-bottom: 1rem;
  }
}

.p-blk-mv .swiper-pagination {
  position: relative;
}

.p-blk-mv .swiper-pagination-bullet-active {
  background: #333333;
}

.p-blk-mv__logo {
  margin: 0 auto 2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-blk-mv__logo {
    width: 22rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__logo {
    width: 10rem;
  }
}

.p-blk-mv__date {
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-family: "Times New Roman", serif;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-blk-mv__date {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__date {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-mv__date--bold {
    font-size: 5.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__date--bold {
    font-size: 2.8rem;
  }
}

.p-blk-mv__text {
  text-align: center;
  color: #fff;
  font-family: "Times New Roman", serif;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-blk-mv__text {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mv__text {
    font-size: 2rem;
  }
}

.p-blk-concept__inner {
  padding: 4rem 2rem;
}

.p-blk-concept__text {
  font-weight: 600;
  text-align: center;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 4s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-concept__text {
    font-size: 1.5rem;
    line-height: 3;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-concept__text {
    font-size: 1rem;
    line-height: 2;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-blk-schedule__column {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__column {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__column {
    margin-bottom: 4rem;
  }
}
.p-blk-schedule__column:nth-child(odd) {
  text-align: left;
}

.p-blk-schedule__column:nth-child(even) {
  text-align: right;
}

.p-blk-schedule__img {
  width: 50%;
}

.p-blk-schedule__detail {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 70%;
}
.p-blk-schedule__column:nth-child(odd) .p-blk-schedule__detail {
  right: 0;
}

.p-blk-schedule__column:nth-child(even) .p-blk-schedule__detail {
  left: 0;
}

.p-blk-schedule__detail-container {
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__detail-container {
    padding: 1.5rem 1.5rem 1.5rem 6rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(odd) .p-blk-schedule__detail-container {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(even) .p-blk-schedule__detail-container {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__column:nth-child(even) .p-blk-schedule__detail-container {
    text-align: right;
    padding: 1.5rem 10rem 1.5rem 0.5rem;
  }
}

.p-blk-schedule__title {
  padding-bottom: 10px;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.2em;
  color: #fff;
  border-bottom: 2px solid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3.8rem;
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__title {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(odd) .p-blk-schedule__title {
    left: -12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__column:nth-child(odd) .p-blk-schedule__title {
    left: -5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(even) .p-blk-schedule__title {
    right: -12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__column:nth-child(even) .p-blk-schedule__title {
    right: -4rem;
  }
}

.p-blk-schedule__date-list {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(odd) .p-blk-schedule__date-list {
    padding: 4rem 4rem 4rem 18rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-schedule__column:nth-child(even) .p-blk-schedule__date-list {
    padding: 4rem 18rem 4rem 15rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-schedule__date-item {
    padding-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__date-item {
    padding-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
  }
}

.p-blk-schedule__date-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 768px) {
  .p-blk-schedule__date-img {
    width: 13rem;
    padding-bottom: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__date-img {
    width: 3.5rem;
    padding-bottom: 1rem;
  }
}

.p-blk-schedule__date-time {
  font-family: "Times New Roman", serif;
  font-weight: 800;
  font-size: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__date-time {
    font-size: 3.5rem;
    margin: 0 1.5rem 0 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__date-time {
    font-size: 1rem;
    margin: 0 0.5rem 0;
  }
}

.p-blk-schedule__comment {
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-blk-schedule__comment {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-schedule__comment {
    font-size: 0.8rem;
  }
}

.l-main-comingsoon .p-blk-sns {
  position: absolute;
  width: 50%;
  right: 0;
}
@media screen and (min-width: 768px) {
  .l-main-comingsoon .p-blk-sns {
    bottom: 4.5vh;
  }
}
@media screen and (max-width: 767px) {
  .l-main-comingsoon .p-blk-sns {
    bottom: 1.5vh;
  }
}
.l-main-comingsoon .p-blk-sns__anchor {
  display: block;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .l-main-comingsoon .p-blk-sns__image {
    width: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-main-comingsoon .p-blk-sns__image {
    width: 30px;
  }
}

.l-main-comingsoon .p-blk-sns__text {
  border-bottom: 1px solid;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .l-main-comingsoon .p-blk-sns__text {
    margin-left: 2rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .l-main-comingsoon .p-blk-sns__text {
    font-size: 1.2rem;
  }
}

.p-blk-aboutus.jsAnimation {
  opacity: 0;
}
.p-blk-aboutus.jsAnimation.isActive {
  animation-name: fadeUpAnimation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus {
    margin-bottom: 4rem;
  }
}
.p-blk-aboutus__inner {
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-blk-aboutus__img {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__img {
    width: 60%;
  }
}

.p-blk-aboutus__detail {
  background: rgba(233, 233, 233, 0.88);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus__detail {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 70%;
    padding: 80px 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__detail {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    padding: 2rem;
  }
}
.p-blk-aboutus__comment {
  white-space: nowrap;
  display: inline-block;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus__comment {
    font-size: 1.8rem;
    line-height: 2.5;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__comment {
    line-height: 1.2;
    font-size: 1rem;
  }
}

.p-blk-aboutus__more {
  display: block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus__more {
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__more {
    margin-top: 1rem;
  }
}
.p-blk-aboutus__more-text {
  display: inline-block;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0;
  border-bottom: 1px solid;
  padding: 0 16px 3px;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus__more-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__more-text {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-aboutus__more-image {
    width: 130px;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus__more-image {
    width: 8rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-minibnr {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-minibnr {
    margin-bottom: 4rem;
  }
}
.p-blk-minibnr a {
  display: block;
}
.p-blk-minibnr img {
  width: 100%;
}

.p-blk-category.jsAnimation {
  opacity: 0;
}
.p-blk-category.jsAnimation.isActive {
  animation-name: fadeUpAnimation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-category {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-category {
    margin-bottom: 4rem;
  }
}
.p-blk-category__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 2%;
}
@media screen and (min-width: 768px) {
  .p-blk-category__list {
    width: 900px;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-category__list {
    width: 96%;
  }
}

.p-blk-category__item {
  margin-bottom: 2%;
  width: 32%;
  text-align: center;
}

.p-blk-category__link {
  display: block;
}

.p-blk-ranking.jsAnimation {
  opacity: 0;
}
.p-blk-ranking.jsAnimation.isActive {
  animation-name: fadeUpAnimation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-ranking {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-ranking {
    margin-bottom: 4rem;
  }
}
.p-blk-ranking .fs-p-heading--lv2 {
  display: none;
}
.p-blk-ranking .fr3-item__rankContainer {
  height: auto;
}
.p-blk-ranking .fr3-item__productName,
.p-blk-ranking .fr3-item__productPrice,
.p-blk-ranking .fr3-item__productPrice__value,
.p-blk-ranking .fr3-item__productPrice__currencyMark {
  gap: 0;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-ranking .fr3-item__productName,
  .p-blk-ranking .fr3-item__productPrice,
  .p-blk-ranking .fr3-item__productPrice__value,
  .p-blk-ranking .fr3-item__productPrice__currencyMark {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-ranking .fr3-item__productName,
  .p-blk-ranking .fr3-item__productPrice,
  .p-blk-ranking .fr3-item__productPrice__value,
  .p-blk-ranking .fr3-item__productPrice__currencyMark {
    font-size: 1.1rem;
  }
}
.p-blk-ranking .fr3-item__productPrice__addon {
  display: none;
}
.p-blk-ranking .fr3-item__productPrice::after {
  content: "tax in";
}
@media screen and (min-width: 768px) {
  .p-blk-ranking .fr3-item__productPrice::after {
    margin-left: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-ranking .fr3-item__productPrice::after {
    margin-left: 0.4rem;
    font-size: 0.8rem;
  }
}
.p-blk-ranking .fr3-item {
  padding: 3rem 0;
}
.p-blk-ranking .fr3-item__rank {
  background: none;
  display: block;
  width: auto;
  margin-bottom: 0.5rem;
  line-height: 1.5;
  font-weight: normal;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-blk-ranking .fr3-item__rank {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-ranking .fr3-item__rank {
    font-size: 1rem;
  }
}
.p-blk-ranking .fr3-item__rank:before {
  content: "NO.";
}
@media screen and (max-width: 767px) {
  .p-blk-ranking .fr3-productListCarousel__responsive_1 .fr3-productListCarousel__slide {
    flex: 0 0 calc((100% - 16px) / 2.5);
  }
  .p-blk-ranking .fr3-productListCarousel {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 0.4rem;
  }
  .p-blk-ranking .fr3-productListCarousel__ButtonContainer {
    display: none;
  }
}

.p-blk-product.jsAnimation {
  opacity: 0;
}
.p-blk-product.jsAnimation.isActive {
  animation-name: fadeUpAnimation;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-product {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product {
    margin-bottom: 4rem;
  }
}
.p-blk-product #new-product-list .fs-c-productListItem__image {
  position: relative;
}

.p-blk-product #new-product-list .fs-c-productListItem__image::before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: -1px;
  width: 0;
  height: 0;
  z-index: 3;
  border-top: 22px solid #7b7b7b;
  border-right: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 22px solid #7b7b7b;
}

.p-blk-product #new-product-list .fs-c-productListItem__image::after {
  position: absolute;
  content: "NEW";
  color: #ffffff;
  top: 5px;
  left: 2px;
  z-index: 4;
  transform: rotate(-10deg);
  -moz-transform: rotate(-10deg);
  -webkit-transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
  .p-blk-product #new-product-list .fs-c-productListItem__image::after {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product #new-product-list .fs-c-productListItem__image::after {
    font-size: 1.1rem;
  }
}

.p-blk-product .fs-c-productListItem__productName a .fs-c-productName__name,
.p-blk-product .fs-c-productPrice__main {
  display: flex;
  flex-wrap: wrap;
  letter-spacing: 0;
}

@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productListItem__productName a .fs-c-productName__name {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productListItem__productName a .fs-c-productName__name {
    font-size: 1.1rem;
  }
}

.p-blk-product .fs-c-productPrice__main {
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productPrice__main {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productPrice__main {
    font-size: 1.1rem;
  }
}

.p-blk-product .fs-c-productPrice__main::after {
  content: "tax in";
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productPrice__main::after {
    margin-left: 0.5rem;
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productPrice__main::after {
    margin-left: 0.4rem;
    font-size: 0.8rem;
  }
}

.p-blk-product .fs-c-productPrice--listed .fs-c-price__value,
.fs-c-productPrice--listed .fs-c-price__currencyMark {
  font-size: 1rem;
}

.p-blk-product .fs-c-productPrice--listed + .fs-c-productPrice--selling .fs-c-price__value,
.fs-c-productPrice--listed + .fs-c-productPrice--selling .fs-c-price__currencyMark {
  color: #a54d50;
}

.p-blk-product .fs-c-productPrice--listed .fs-c-price__value {
  text-decoration: line-through;
}

.p-blk-product .p-blk-product .fs-c-productPrice--listed + .fs-c-productPrice--selling .fs-c-productPrice__main::after,
.p-blk-product .fs-c-productPrice--listed + .fs-c-productPrice--selling .fs-c-productPrice__main::after {
  color: #a54d50;
}

.p-blk-product .fs-c-productPrice--listed::after {
  content: "↓";
  font-size: 1rem;
  padding-left: 0.5rem;
}

.p-blk-product .fs-c-productPrice__addon {
  display: none;
}

.p-blk-product .fs-c-productListItem__outOfStock {
  position: relative;
  white-space: nowrap;
  background: #fbeaea;
  color: #fbeaea;
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productListItem__outOfStock {
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productListItem__outOfStock {
    width: 12rem;
  }
}
.p-blk-product .fs-c-productListItem__outOfStock::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "SOLD OUT";
  color: #b73030;
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productListItem__outOfStock::after {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productListItem__outOfStock::after {
    font-size: 0.8rem;
  }
}

.p-blk-product .fs-c-productListItem__salesPeriodNotice {
  position: relative;
  white-space: nowrap;
  background: #eaf5fb;
  color: #eaf5fb;
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productListItem__salesPeriodNotice {
    width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productListItem__salesPeriodNotice {
    width: 12rem;
  }
}
#all-product-list .fs-c-productListItem__salesPeriodNotice {
  display: none;
}

.p-blk-product .fs-c-productListItem__salesPeriodNotice::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "COMING SOON";
  color: #3087b7;
}
@media screen and (min-width: 768px) {
  .p-blk-product .fs-c-productListItem__salesPeriodNotice::after {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .fs-c-productListItem__salesPeriodNotice::after {
    font-size: 0.8rem;
  }
}

.p-blk-product .p-blk-product__viewmore {
  margin-top: 3rem;
  text-align: center;
}
.p-blk-product .p-blk-product__viewmore a {
  display: inline-block;
  border: 1px solid;
  margin: 0 auto;
  padding: 0px 8rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-blk-product .p-blk-product__viewmore a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-product .p-blk-product__viewmore a {
    font-size: 1.1rem;
  }
}

.p-blk-sns__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3%;
}

.p-blk-sns__item {
  width: 50px;
}

.p-blk-sns__anchor {
  display: block;
}

.p-blk-title {
  text-align: center;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-blk-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-title {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-aboutus-mv {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus-mv {
    margin-bottom: 2rem;
  }
}
.p-blk-aboutus-mv__inner {
  position: relative;
}

.p-blk-aboutus-mv__image {
  text-align: center;
}

.p-blk-aboutus-mv__image-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30%;
  width: 30%;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .p-blk-aboutus-concept {
    margin-bottom: 12rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus-concept {
    margin-bottom: 4rem;
  }
}
.p-blk-aboutus-concept__text {
  font-weight: 600;
  text-align: center;
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 2.5s;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus-concept__text {
    font-size: 2rem;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus-concept__text {
    font-size: 1.2rem;
    line-height: 1.8;
  }
}

.p-blk-aboutus01__inner {
  position: relative;
  background-color: #d7d7d7;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus01__inner {
    margin-top: 1.5rem;
    padding-bottom: 8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus01__inner {
    margin-top: 1.2rem;
    padding-bottom: 5rem;
  }
}

.p-blk-aboutus01__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Hind", sans-serif;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus01__title {
    top: -2.5rem;
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus01__title {
    top: -1.2rem;
    font-size: 2.2rem;
  }
}

.p-blk-aboutus01__column.jsAnimation {
  opacity: 0;
}
.p-blk-aboutus01__column.jsAnimation.isActive {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.p-blk-aboutus01__column.jsAnimation.isActive:nth-child(even) {
  animation-name: fadeLeftAnime;
}
.p-blk-aboutus01__column.jsAnimation.isActive:nth-child(odd) {
  animation-name: fadeRightAnime;
}
.p-blk-aboutus01__column dt {
  font-family: "Times New Roman", serif;
  color: #ebebeb;
  text-align: center;
  letter-spacing: -2px;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus01__column dt {
    padding-top: 8rem;
    font-size: 8rem;
    line-height: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus01__column dt {
    padding-top: 5rem;
    font-size: 4.5rem;
    line-height: 3rem;
  }
}

.p-blk-aboutus01__column dd {
  text-align: center;
  line-height: 2;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus01__column dd {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus01__column dd {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-aboutus02 {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus02 {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus02__image {
    width: 500px;
    display: block;
    margin: 10rem auto;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus02__image {
    margin-bottom: 4rem;
  }
}

.p-blk-aboutus02__comment {
  text-align: center;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus02__comment {
    margin-bottom: 7rem;
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus02__comment {
    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
}

.p-blk-aboutus02__title-container.jsAnimation {
  opacity: 0;
}
.p-blk-aboutus02__title-container.jsAnimation.isActive {
  animation-name: fadeUpAnimeVertical;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus02__title-container {
    margin: 7rem auto 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus02__title-container {
    margin: 2rem auto 4rem;
  }
}

.p-blk-aboutus02__title {
  text-align: center;
}
.p-blk-aboutus02__title span {
  position: relative;
  z-index: 1;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus02__title span {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus02__title span {
    font-size: 2rem;
  }
}
.p-blk-aboutus02__title span::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0px;
  width: 110%;
  height: 6px;
  background: #e1e1e1;
  z-index: -1;
}

.p-blk-difficulty {
  position: relative;
  border: 1px solid;
}
.p-blk-difficulty.jsAnimation {
  opacity: 0;
}
.p-blk-difficulty.jsAnimation.isActive2 {
  animation-name: fadeUpAnimeVertical;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-difficulty {
    margin: 0 auto;
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-difficulty {
    width: 90%;
    margin: 0 auto 2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-blk-difficulty-wrapper {
    display: flex;
    gap: 1rem;
  }
}

.p-blk-difficulty__title {
  position: absolute;
  top: -1rem;
  left: 20px;
  background: #fff;
  padding: 0 1rem;
  font-family: "Hind", sans-serif;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .p-blk-difficulty__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-difficulty__title {
    font-size: 1.4rem;
  }
}

.p-blk-difficulty__container {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-blk-difficulty__container {
    padding: 3rem 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-difficulty__container {
    padding: 1.5rem 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-difficulty__head, .p-blk-difficulty__content {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-difficulty__head, .p-blk-difficulty__content {
    font-size: 1.2rem;
  }
}

.p-blk-difficulty__head {
  font-weight: 600;
  display: inline;
  background: linear-gradient(transparent 70%, #e1e1e1 0%);
}

.p-blk-difficulty__content {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 0.5rem;
}
.p-blk-difficulty__content::before {
  content: "→";
  position: absolute;
  top: 0;
  left: 0;
}

.p-blk-aboutus03 {
  padding: 2rem;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus03 {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus03 {
    background: rgba(204, 204, 204, 0.8);
  }
}
.p-blk-aboutus03__inr {
  background: #8c8c8c;
  max-width: 750px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus03__inr {
    padding: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus03__inr {
    padding: 3rem 2rem;
  }
}

.p-blk-aboutus03__title {
  text-align: center;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus03__title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus03__title {
    font-size: 2rem;
  }
}

.p-blk-aboutus03__logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus03__logo {
    margin: 5rem auto 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus03__logo {
    margin: 3rem auto 1rem;
  }
}
.p-blk-aboutus03__logo-image {
  width: 70%;
  max-width: 350px;
}

.p-blk-aboutus03__logo-jp {
  color: #ffffff;
  letter-spacing: 0.3rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus03__logo-jp {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus03__logo-jp {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) {
  .p-blk-mean {
    padding-top: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mean {
    padding-top: 4rem;
  }
}
.p-blk-mean__head {
  position: relative;
  border-bottom: 1px solid;
}
@media screen and (min-width: 768px) {
  .p-blk-mean__head {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mean__head {
    margin-bottom: 2rem;
  }
}
.p-blk-mean__head span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -1.5rem;
  background: #333;
  color: #fff;
  text-align: center;
  letter-spacing: 0.5em;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #000000;
  color: #ffffff;
  border-radius: 10px;
  border-radius: 20px;
  padding-bottom: 0.3rem;
}
@media screen and (min-width: 768px) {
  .p-blk-mean__head span {
    top: -1.8rem;
    width: 30rem;
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mean__head span {
    top: -1.8rem;
    width: 20rem;
    font-size: 2rem;
  }
}
.p-blk-mean__head span.p-blk-mean-overcurves {
  letter-spacing: 0;
}

.p-blk-mean__content {
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blk-mean__content {
    padding-top: 2.5rem;
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-mean__content {
    padding-top: 0.5rem;
    font-size: 1.2rem;
  }
}

.p-blk-aboutus04__image-container {
  position: relative;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus04__image-container {
    grid-template-columns: 25% 25% 25% 25%;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus04__image-container {
    grid-template-columns: 50% 50%;
  }
}

.p-blk-aboutus04__image {
  width: 100%;
}
.p-blk-aboutus04__image.jsAnimation {
  opacity: 0;
}
.p-blk-aboutus04__image.jsAnimation.isActive2 {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.p-blk-aboutus04__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "GFS Didot", serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-blk-aboutus04__text {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-blk-aboutus04__text {
    font-size: 4rem;
  }
}

.jsFadeIn {
  opacity: 0;
}
.jsFadeIn.isActive {
  animation-name: fadeInAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

.jsFadeUp {
  opacity: 0;
}
.jsFadeUp.isActive {
  animation-name: fadeUpAnimeVertical;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 1;
}

@keyframes fadeUpAnimation {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}