@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap");
/*テーマカラー設定*/
:root {
  --main-color: #d60222;
  --main-bg-color: #EEE0C9;
  --swiper-dots-color: #252525;
  --swiper-allow-color: #fff;
  --content-side-padding: 30px;
  --content-side-padding-sp: 15px;
}

.p-lp-wrapper {
  overflow: clip;
  background: var(--main-bg-color);
  background-color: #827057;
  background-attachment: fixed;
  padding-bottom: 1px;
}

.-bg01 {
  padding: 80px 0;
  background-color: rgba(255, 255, 255, 0.4666666667);
}
@media (width < 768px) {
  .-bg01 {
    padding: 40px 0;
  }
}

.p-lp-hero {
  margin-bottom: 0;
  background: var(--main-color);
}
.p-lp-hero img {
  margin: 0 auto;
}

.p-lp-catchcopy {
  font-size: min(4vw, 1.6rem);
  line-height: 1.8;
  text-align: center;
  text-shadow: 1px 1px 3px #fff;
}

.p-lp-limit {
  max-width: max-content;
  margin: 30px auto 0;
  padding: 30px 50px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (width < 768px) {
  .p-lp-limit {
    padding: 30px 20px;
  }
}

.p-lp-limit__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  line-height: 1.4;
}

.p-lp-limit__row + .p-lp-limit__row {
  margin-top: 20px;
}

.p-lp-limit__row dt {
  width: 200px;
  padding: 5px 0;
  font-size: 1.3rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 10px;
}

.p-lp-limit__row dd {
  align-self: center;
  width: calc(100% - 160px);
  font-size: 1.6rem;
}

.p-lp-limit__row dd .notes {
  margin-top: 10px;
  font-size: 0.9rem;
}

.p-lp-limit__row .c-text:not(:last-child) {
  margin-bottom: 10px;
}

@media (width < 768px) {
  .p-lp-limit {
    margin: 30px auto 0;
  }
  .p-lp-limit__row {
    display: block;
    text-align: center;
  }
  .p-lp-limit__row dt {
    width: 180px;
    margin: 0 auto 10px;
    padding: 2px 0;
    font-size: 1.2rem;
  }
  .p-lp-limit__row dd {
    width: 100%;
    font-size: min(5vw, 1.5rem);
    line-height: 1.5;
  }
}
.c-lp-section-title {
  margin-bottom: 20px;
  padding: 10px 0;
  font-size: min(4.5vw, 2rem);
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: var(--main-color);
}
@media (width < 768px) {
  .c-lp-section-title {
    padding: 5px 0;
  }
}

.p-lp-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
}
.p-lp-products .p-item-list-category__item {
  width: 100%;
}
.p-lp-products .c-card .c-card__name, .p-lp-products .c-card .c-card__desc {
  height: auto;
  font-size: 1.2rem;
}
.p-lp-products .c-card .c-price {
  font-size: 2rem;
}
.p-lp-products .c-card .c-price span {
  font-size: 50%;
}
.p-lp-products .c-card .c-price small {
  font-size: 80%;
}
@media (width < 768px) {
  .p-lp-products {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
}

.p-lp-products__item {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.8);
}
@media (width < 768px) {
  .p-lp-products__item {
    padding: 20px;
  }
}

.p-lp-products__desc {
  margin-top: 20px;
  line-height: 1.6;
}

/* もっと見るボタン */
.c-lp-more-btn {
  margin-top: 20px;
}
@media (width < 768px) {
  .c-lp-more-btn {
    margin-top: 15px;
  }
}

.c-lp-more-btn a {
  position: relative;
  display: grid;
  place-content: center;
  max-width: 600px;
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: min(3.5vw, 1.4rem);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 50px;
}
@media (width < 768px) {
  .c-lp-more-btn a {
    width: 80vw;
    min-height: 50px;
  }
}