@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600..900&display=swap");
/*テーマカラー設定*/
:root {
  --lp-main-color: #D2251E;
  --lp-accent-color: #D2251E;
  --lp-nav-color: var(--lp-main-color);
  --lp-main-bg-color: #D2251E;
  --lp-border-color: #ccc;
  --sheer-bg-color: rgb(from #fff r g b / 0.8);
}

/* ================================================================
  大枠・共通パーツ
================================================================= */
.p-lp-wrapper {
  background-color: var(--lp-main-bg-color);
}

.p-lp-hero {
  margin-bottom: 0;
  background-color: var(--lp-main-color);
}
.p-lp-hero .l-inner {
  max-width: 100%;
  padding: 0;
}
.p-lp-hero img {
  width: 100%;
  margin: 0 auto;
}

/* セクション背景Wrapper */
.p-lp-bg-wrapper {
  padding-block: 70px 1px;
  margin-bottom: 70px;
}
@media (width < 768px) {
  .p-lp-bg-wrapper {
    padding-block: 50px 1px;
    margin-bottom: 50px;
  }
}

/* セクション背景色設定 */
.p-lp-bg-wrapper--bg01 {
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/food_alcohol_014_2026_bg.jpg) no-repeat bottom center/cover;
}

/* ================================================================
  商品グリッド
================================================================= */
.p-lp-item-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 30px;
}
@media (width < 768px) {
  .p-lp-item-grid {
    grid-template-columns: 100%;
    gap: 20px;
  }
}

.p-lp-item-grid__image {
  width: 100%;
}
@media (width < 768px) {
  .p-lp-item-grid__image {
    width: 80%;
    margin-inline: auto;
  }
}

.p-lp-item-grid__content {
  padding-inline: 30px;
}
@media (width < 768px) {
  .p-lp-item-grid__content {
    padding-inline: 5px;
  }
}

.p-lp-item-grid__description {
  padding: 40px 30px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 2.2;
  background-color: var(--sheer-bg-color);
  border-radius: 20px;
}
@media (width < 768px) {
  .p-lp-item-grid__description {
    font-size: 0.95rem;
    padding: 20px;
    border-radius: 10px;
  }
}

@media (width >= 768px) {
  .p-lp-item-grid--reverse {
    grid-template-columns: 1.5fr 1fr;
  }
}
.p-lp-item-grid--reverse .p-lp-item-grid__image {
  order: 2;
}
.p-lp-item-grid--reverse .p-lp-item-grid__content {
  order: 1;
}

/* ================================================================
  カテゴリ商品一覧（ピックアップ）
================================================================= */
.p-lp-category-product {
  --lp-category-product-gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-category-product-gap);
}
@media (width < 768px) {
  .p-lp-category-product {
    --lp-category-product-gap: 10px;
  }
}
.p-lp-category-product .p-item-list-category__item {
  max-width: 600px;
}
.p-lp-category-product figure > img {
  aspect-ratio: 1/1;
}
.p-lp-category-product .c-card {
  padding: 20px;
  background-color: #fff;
}
@media (width < 768px) {
  .p-lp-category-product .c-card {
    padding: 15px;
  }
}
.p-lp-category-product .c-card figure {
  display: block;
  background-color: #fff;
}
.p-lp-category-product .c-card .c-card__textarea,
.p-lp-category-product .c-card img {
  transition: opacity 0.3s ease;
}
.p-lp-category-product .c-card .c-price {
  font-size: 2rem;
}
.p-lp-category-product .c-card .c-price span {
  font-size: 50%;
}
.p-lp-category-product .c-card .c-price small {
  font-size: 80%;
}
.p-lp-category-product .c-card .c-text.c-card__name {
  font-size: 1.2rem;
  height: auto;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: inherit;
  overflow: visible;
}
@media (width < 768px) {
  .p-lp-category-product .c-card .c-text.c-card__name {
    font-size: 1rem;
  }
}
.p-lp-category-product .c-card:hover {
  opacity: 1;
}
.p-lp-category-product .c-card:hover .c-card__textarea,
.p-lp-category-product .c-card:hover img {
  opacity: 0.6;
}

.p-lp-category-product--pickup .p-item-list-category__item {
  width: calc((100% - var(--lp-category-product-gap) * 1) / 2);
}
@media (width < 768px) {
  .p-lp-category-product--pickup .p-item-list-category__item {
    width: 100%;
  }
}

/* ================================================================
  商品発送日
================================================================= */
.p-lp-limit-description {
  margin-top: 40px;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 5%;
  text-align: center;
  color: #fff;
  border: 1px solid currentColor;
  padding: 15px 10px;
}
@media (width < 768px) {
  .p-lp-limit-description {
    margin-top: 30px;
    font-size: 1.2rem;
  }
}

/* ================================================================
  リンクボタン
================================================================= */
.c-lp-link-button {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.c-lp-link-button a {
  display: block;
  width: 100%;
  padding: 16px 20px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 6%;
  text-align: center;
  color: #fff;
  background: var(--lp-accent-color);
  border-radius: 4px;
}
@media (width < 768px) {
  .c-lp-link-button a {
    font-size: 1.4rem;
    padding: 15px 0;
  }
}

/* ================================================================
  注意事項
================================================================= */
.p-lp-notice {
  padding-block: 60px;
  background-color: rgb(from #fff r g b/1);
  backdrop-filter: blur(3px);
}
@media (width < 768px) {
  .p-lp-notice {
    padding-block: 30px;
  }
}

.p-lp-notice-list {
  max-width: max-content;
  margin-inline: auto;
  font-weight: 500;
}
.p-lp-notice-list li {
  text-indent: -1rem;
  padding-left: 1rem;
}