@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&family=Dela+Gothic+One&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kaisei+Tokumin:wght@400;500;700;800&display=swap");
:root {
  --text-color: #402113;
  --main-color: #ae692d;
  --accent-color: #e62e8b;
  --red-color: #e62e8b;
  --grad-main: linear-gradient(0deg, #a23434, #782b2b 90%);
  --main-bg-color: #decfac;
  --sheer-bg-color: rgba(255, 255, 245, 0.6);
  --border-radius: 10px;
  --sub-font: "Kaisei Tokumin", serif;
}

.-bg-main {
  position: relative;
  padding: 0 0 50px;
  background: var(--main-bg-color);
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/outlet_sale_bg.jpg) no-repeat center center/cover;
  background-attachment: fixed;
}
.-bg-main::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  max-width: 1370px;
  height: 100%;
  backdrop-filter: blur(0.5px);
}
.-bg-main > * {
  position: relative;
}
@media (width < 768px) {
  .-bg-main {
    background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/outlet_sale_bg.jpg) no-repeat center center/cover;
    background-attachment: fixed;
  }
}

/* タイトルバナー
========================== */
.p-lp-hero {
  background: var(--grad-main);
}
.p-lp-hero .l-inner {
  padding: 0;
}

.p-lp-hero img {
  width: 100%;
  margin: 0 auto;
}

/* 大枠
========================== */
.p-lp-wrapper {
  overflow: clip;
  color: var(--text-color);
}

/* キャッチコピー
========================== */
.p-lp-catchcopy {
  font-family: var(--sub-font);
  font-size: min(5.5vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 2;
  text-align: center;
}

.p-lp-catchcopy-notes {
  max-width: max-content;
  margin: 30px auto 0;
  font-size: 1.1rem;
  font-weight: 700;
}
@media (width < 768px) {
  .p-lp-catchcopy-notes {
    margin-top: 20px;
    font-size: 0.85rem;
    line-height: 1.6;
  }
}

/* 見出し
========================== */
.p-lp-heading {
  position: relative;
  /* overflow: hidden; */
  margin-bottom: 30px;
  padding: 15px 10px;
  font-family: var(--sub-font);
  font-size: min(6.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.15em;
  text-align: center;
  color: #fff;
  background: var(--grad-main);
  border: 5px outset #b85450;
}
.p-lp-heading span {
  position: relative;
  filter: drop-shadow(-2px -2px 1px rgba(0, 0, 0, 0.6));
  background: linear-gradient(170deg, #f7b314 20%, #ffed79 35%, #fffdbe 55%, #e7a12f 60%, #FCE96B 70%, #f4ba33 80%);
  background-size: calc(min(6.5vw, 2.8rem) + 0.15em) 100%; /* 1文字幅ごとに区切る */
  background-position: left -0.15em top 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-lp-heading span::before {
  content: "";
  display: block;
  position: absolute;
}
.p-lp-heading span.-ico-check::before {
  left: 0;
  top: 50%;
  translate: -120% -50%;
  width: 55px;
  height: 50px;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/outlet_sale_ico_check.png) no-repeat center center/contain;
}
@media (width < 768px) {
  .p-lp-heading span.-ico-check::before {
    width: 35px;
    height: 30px;
  }
}
.p-lp-heading span.-ico-lupe::before {
  right: 0;
  top: 30%;
  translate: 70% 0;
  width: 70px;
  height: 70px;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/outlet_sale_ico_lupe.png) no-repeat center center/contain;
}
@media (width < 768px) {
  .p-lp-heading span.-ico-lupe::before {
    width: 50px;
    height: 50px;
  }
}
@media (width < 768px) {
  .p-lp-heading {
    padding: 8px 0px;
    border-width: 3px;
    letter-spacing: 0.1em;
  }
}

/* カテゴリ-ピックアップ */
/* ピックアップ
========================== */
.p-lp-pickup-sub {
  overflow: hidden;
  margin-top: 30px;
}
.p-lp-pickup-sub .swiper-wrapper {
  display: flex;
}
.p-lp-pickup-sub .swiper-slide {
  width: calc(25% - 9px);
  margin-right: 12px;
}
@media (width < 768px) {
  .p-lp-pickup-sub .swiper-slide {
    width: calc(33.333% - 5.3333333333px);
    margin-right: 8px;
  }
}

.p-lp-pickup-sub__grid {
  --gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
}
.p-lp-pickup-sub__grid > li {
  width: calc(25% - var(--gap) * 3 / 4);
}
@media (width < 768px) {
  .p-lp-pickup-sub__grid > li {
    width: calc(50% - var(--gap) * 1 / 2);
  }
}

/* カテゴリ-ピックアップ */
.js-lpProductSwiperWrapper > li {
  width: calc(20% - 24px);
  margin-right: 30px;
}
@media (width < 768px) {
  .js-lpProductSwiperWrapper > li {
    width: calc(50% - 10px);
    margin-right: 20px;
  }
}

/* もっと見るボタン */
/* 商品スライダーコントローラー
========================= */
.p-lp-products-swiper {
  overflow: clip;
}

.p-lp-products-swiper__main {
  padding: 10px 10px 5px;
  background-color: var(--sheer-bg-color);
}
@media (width < 768px) {
  .p-lp-products-swiper__main {
    background-size: cover;
  }
}

@media (min-width: 768px) {
  .p-lp-products-swiper__main {
    padding: 20px 20px 10px;
  }
}
.p-lp-controller {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.p-lp-controller:has(.swiper-button-lock) {
  display: none;
}

@media screen and (min-width: 768px) {
  .p-lp-controller {
    /* width: 85%; */
    margin-top: 30px;
  }
}
.p-lp-controller__pagination {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  bottom: inherit !important;
  left: inherit !important;
  width: auto !important;
  max-width: calc(100% - 70px);
  height: 100%;
  margin: 0;
  padding: 0 12px;
  order: 2;
}

.p-lp-controller__pagination.swiper-scrollbar-horizontal {
  display: block;
  max-width: 560px;
  width: calc(90% - 40px) !important;
  height: 8px;
  margin: 0 20px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0;
  opacity: 1;
  background-color: transparent;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination-clickable .swiper-pagination-bullet:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: calc(50% - 5px);
  width: 10px;
  height: 10px;
  background-color: rgba(51, 51, 51, 0.4);
  border-radius: 50%;
}

.swiper-pagination-clickable .swiper-pagination-bullet-active:before {
  background-color: #ffbe28;
  opacity: 1;
}

.p-lp-controller__button {
  cursor: pointer;
  position: relative;
  /* position: absolute; */
  display: block;
  /* top: 0; */
  width: 40px;
  height: 40px;
  background: var(--main-color);
  background: linear-gradient(135deg, #cb8d30, #f2cd5d, #FFFCAD, #FCE96B, #f7cf57, #de9527);
  border: 2px solid #c08935;
  border-radius: 50%;
  z-index: 1;
  transition: opacity 0.3s ease;
  order: 1;
}

.p-lp-controller__button:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6.5px);
  width: 13px;
  height: 13px;
  border-top: 3px solid #AB681C;
}

.p-lp-controller__button.-prev:before {
  left: 40%;
  border-left: 3px solid #894f0d;
  transform: rotate(-45deg);
}

.p-lp-controller__button.-next {
  order: 3;
  /* right: 0; */
}

.p-lp-controller__button.-next:before {
  right: 40%;
  border-right: 3px solid #653805;
  transform: rotate(45deg);
}

.p-lp-controller__button:hover,
.p-lp-controller__button.swiper-button-disabled {
  opacity: 0.6;
}

/* Coming Soon
========================== */
.p-lp-products-comingsoon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  font-family: var(--sub-font);
  font-size: min(5.5vw, 2.4rem);
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.0666666667);
  color: var(--main-color);
  background-color: var(--sheer-bg-color);
}
@media (width < 768px) {
  .p-lp-products-comingsoon {
    height: 150px;
  }
}