@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* テーマカラー設定 */
:root {
  --main-color: #6f0b0b;
  --accent-color: #d8b77e;
  --main-font: "Noto Serif JP", serif;
  --sans-font: "Noto Sans JP", serif;
  --pc-padding: 40px;
  --sp-padding: 10px;
  --blur-size: 30px;
}

.p-lp-wrapper {
  background: #8A2735;
  background: linear-gradient(to right bottom, #8A2735 50%, #4F0F1C);
  padding-bottom: 1px;
  font-family: var(--main-font);
  background-attachment: fixed;
}

/* タイトルバナー */
.p-lp-hero {
  margin-bottom: 0;
  /* background: #4F0F1C; */
  background: linear-gradient(to right bottom, #8A2735, #4F0F1C);
}

.p-lp-hero img {
  margin-inline: auto;
}

.p-lp-catchcopy {
  font-size: min(5.2vw, 1.6rem);
  font-weight: 800;
  line-height: 2.2;
  text-align: center;
  background-color: #fff;
  text-shadow: 1px 1px 2px #fff, 2px 2px 10px #fff;
}
.p-lp-catchcopy .l-inner {
  padding-block: min(15vw, 100px);
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/food_sweets_01_catch_bg.jpg) no-repeat center center/cover;
}

.p-lp-catchcopy p + p {
  margin-top: 15px;
}

.p-lp-bg-wrap {
  width: 90%;
  max-width: 1140px;
  margin-inline: auto;
  padding: 30px var(--pc-padding);
  background-color: #fff;
}

@media (width < 768px) {
  .p-lp-bg-wrap {
    width: calc(100% - 30px);
    padding: 10px var(--sp-padding) 5px;
  }
}
.p-lp-category {
  width: 100%;
  padding-block: 40px 10px;
  margin-inline: auto;
  /* width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 50px;
  background-color: #fff; */
}

.p-lp-category + .p-lp-category {
  border-top: 3px double var(--accent-color);
}

@media (width < 768px) {
  .p-lp-category {
    width: 100%;
    padding-block: 30px 10px;
  }
}
.p-lp-category-section {
  margin-bottom: 50px;
}

@media (width < 768px) {
  .p-lp-category-section {
    margin-bottom: 35px;
  }
}
.p-lp-category-section__title {
  padding-block: 20px;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

/* カテゴリ見出し */
.p-lp-category-header {
  text-align: center;
  margin-bottom: 20px;
}

.p-lp-category-header small {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent-color);
}

.p-lp-category-header p {
  margin-top: 15px;
  font-size: min(4vw, 1.1rem);
  font-weight: 600;
}

.p-lp-category-header__main {
  display: grid;
  grid-template-columns: max-content auto max-content;
  align-items: center;
  justify-content: center;
  gap: 5px;
  /* width: max-content; */
  margin-inline: auto;
  margin-bottom: 10px;
  font-size: min(6.5vw, 2.4rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.05em;
  background: linear-gradient(to bottom, #edd58f, #c19d5e 90%, #a98944);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* text-shadow: 0 0 1px rgba(255, 215, 0, 0.5); */
  color: transparent;
}

.p-lp-category-header__main::before, .p-lp-category-header__main::after {
  content: "＝";
}

/* 画像背景＋テキスト */
.p-lp-image-with-text {
  position: relative;
  width: calc(100% + var(--pc-padding) * 2);
  margin-left: calc(var(--pc-padding) * -1);
}

@media (width < 768px) {
  .p-lp-image-with-text {
    width: calc(100% + var(--sp-padding) * 2);
    margin-left: calc(var(--sp-padding) * -1);
  }
}
.p-lp-image-with-text__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-lp-image-with-text__overlay .splide,
.p-lp-image-with-text__overlay .splide__track {
  height: 100%;
}

.p-lp-image-with-text__overlay img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-lp-image-with-text__overlay img.-karakara {
  object-position: 0 20%;
}

.p-lp-image-with-text__text {
  position: relative;
  align-content: center;
  min-height: 400px;
  padding: 80px var(--pc-padding);
  margin-top: 30px;
  font-size: 1.2rem;
  font-weight: 700;
  z-index: 1;
  line-height: 2.5;
}

.p-lp-image-with-text__text.-white {
  color: #fff;
  text-shadow: 2px 2px 3px rgba(34, 34, 34, 0.8);
}

.p-lp-image-with-text__text .-heading {
  font-size: min(6vw, 1.8rem);
  line-height: 1.6;
}

.p-lp-image-with-text__text .-heading + p {
  margin-top: 16px;
}

@media (width < 768px) {
  .p-lp-image-with-text__text {
    min-height: 80vw;
    padding: 70px calc(var(--sp-padding) * 2);
    font-size: 1rem;
  }
}
/* 2カラム枠 */
.p-lp-category-columns {
  display: grid;
  grid-template-columns: 48% 1fr;
  align-items: center;
  gap: 30px;
}

@media (width < 768px) {
  .p-lp-category-columns {
    grid-template-columns: 100%;
    gap: 15px;
    font-size: 0.9rem;
  }
}
@media (width >= 768px) {
  .p-lp-category-columns.-reverse {
    grid-template-columns: 1fr 48%;
  }
  .p-lp-category-columns.-reverse > *:nth-child(1) {
    order: 2;
  }
  .p-lp-category-columns.-reverse > *:nth-child(2) {
    order: 1;
  }
}
.p-lp-category-columns.-half {
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (width < 768px) {
  .p-lp-category-columns.-half {
    grid-template-columns: 100%;
    gap: 0;
  }
}
.p-lp-price-columns {
  display: grid;
  grid-template-columns: auto min(30vw, 400px);
  /* align-items: end; */
  align-items: center;
  justify-content: center;
  gap: 0 30px;
  margin-inline: auto;
}

@media (width >= 768px) {
  .p-lp-price-columns {
    max-width: 950px;
  }
  .p-lp-price-columns .product-detail {
    min-width: 25vw;
  }
  .p-lp-price-columns .product-order {
    grid-column: span 2;
  }
}
@media (width < 768px) {
  .p-lp-price-columns {
    grid-template-columns: 100%;
    gap: 0;
  }
}
/* 縁ぼかし画像 */
.c-blur-image {
  position: relative;
  overflow: hidden;
  padding: 2px;
  /* --blur-size: 30px;
  width: calc(100% + var(--blur-size));
  margin-left: calc(var(--blur-size) / -2); */
}

.c-blur-image::before {
  --blur-size: 30px;
  content: "";
  display: block;
  position: absolute;
  top: calc(var(--blur-size) * -1 / 2);
  left: calc(var(--blur-size) * -1 / 2);
  width: calc(100% + var(--blur-size));
  height: calc(100% + var(--blur-size));
  border: var(--blur-size) solid #fff;
  filter: blur(5px);
}

.c-blur-image__caption {
  position: absolute;
  bottom: calc(var(--blur-size) / 1.5);
  right: calc(var(--blur-size) / 1);
  color: #fff;
  text-shadow: 2px 2px 3px rgba(34, 34, 34, 0.5333333333);
}

.product-name {
  font-size: min(4.6vw, 1.5rem);
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 8px;
}

.product-name small {
  display: block;
}

.product-description .product-name {
  /* text-align: center; */
  margin-bottom: 16px;
}

@media (width < 768px) {
  .product-description,
  .product-detail,
  .product-price,
  .product-order {
    padding-inline: var(--sp-padding);
  }
}
.product-notes {
  margin-top: 8px;
  font-size: 0.9rem;
  line-height: 1.6;
}

.product-price {
  text-align: right;
  line-height: 1.3;
}

:where(.product-price) {
  margin-top: 16px;
}

@media (width < 768px) {
  :where(.product-price) {
    margin-top: 8px;
  }
}
.product-price .price {
  font-size: 1.1rem;
  font-weight: bold;
}

.product-price .price span {
  font-size: 2.4rem;
}

.product-price .tax-price {
  font-size: 0.9rem;
  color: #666;
}

.product-price .tax-price span {
  font-size: 1.2rem;
}

.order-button {
  cursor: pointer;
  display: block;
  max-width: 380px;
  margin-top: 20px;
  margin-inline: auto;
  background-color: var(--accent-color);
  background: linear-gradient(to right bottom, #d8b77e, #c19b5e);
  /* background: linear-gradient(to right bottom, #c6a300, #b38b00); */
  /* background: linear-gradient(to right bottom, #c6a300, #b38b00, #a37100); */
  text-shadow: 1px 1px 2px rgba(79, 15, 28, 0.4);
  color: white;
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 30px;
  text-align: center;
  line-height: 1;
}

.order-button.-modal {
  position: relative;
  place-content: center;
  padding: 0 30px;
  text-align: left;
  min-height: 100px;
  border-radius: 100px;
  overflow: hidden;
}
.order-button.-modal span {
  position: relative;
  z-index: 1;
}
.order-button.-modal::before {
  --mask-grad: linear-gradient(90deg, transparent 30%, #000);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 80%;
  height: 100%;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/food_sweets_01_ichigo_flow03.jpg) no-repeat center center/cover;
  background-color: #fff;
  z-index: 0;
  -webkit-mask-image: var(--mask-grad);
  mask-image: var(--mask-grad);
}

.order-button.-large {
  width: 100%;
  max-width: 500px;
  font-size: 1.4rem;
}

.note {
  font-size: 0.9em;
  color: #666;
}

/* モーダル */
.p-lp-modal {
  width: 100%;
  max-width: inherit;
  height: 100%;
  background: none;
}

.p-lp-modal-inner {
  position: absolute;
  /* position: relative; */
  display: grid;
  place-content: center;
  width: 100%;
  max-width: inherit;
  height: 100%;
}

.p-lp-modal-back {
  position: absolute;
  width: 100%;
  max-width: inherit;
  height: 100%;
  background: rgba(37, 37, 37, 0.8);
  /* backdrop-filter: blur(0.5px); */
}

.p-lp-modal-box {
  position: relative;
  padding: 20px;
  max-width: 700px;
  max-height: 100dvh;
  margin-inline: auto;
  background: #fff;
  overflow-y: auto;
}

.p-lp-modal-box .p-lp-category-section__title {
  padding-top: 0;
}

.splide__slide.is-active img {
  animation: animationZoom 4s ease-in-out forwards;
}

@keyframes animationZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.p-lp-category-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 20px;
}
.p-lp-category-flow li > p {
  margin-top: 5px;
  line-height: 1.6;
  font-size: 0.9rem;
}
@media (width < 768px) {
  .p-lp-category-flow {
    grid-template-columns: 1fr;
  }
}