@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@600..900&display=swap");
/*テーマカラー設定*/
:root {
  --lp-main-color: #8a7854;
  --lp-accent-color: #a89c8e;
  --lp-nav-color: var(--lp-main-color);
  --lp-main-bg-color: #fff;
  --lp-border-color: #ccc;
  --lp-swiper-nav-color: var(--lp-main-color);
  --lp-font-base: "Noto Serif JP", serif;
  --lp-font-serif: "Noto Serif JP", serif;
}

/* ================================================================
  大枠・共通パーツ
================================================================= */
.p-lp-wrapper {
  padding-bottom: 1px;
  background-color: var(--lp-main-bg-color);
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg.jpg);
  background-attachment: fixed;
  overflow: clip;
}
.p-lp-wrapper .c-card {
  padding: 10px;
  background-color: #fff;
}
.p-lp-wrapper .c-card figure img {
  border-radius: 0;
}
.p-lp-wrapper .c-card .c-card__name {
  display: block;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: inherit;
  overflow: hidden;
  height: auto;
}
.p-lp-wrapper .p-index-useful__item {
  border-radius: 0;
}

.p-lp-hero {
  position: relative;
  margin-bottom: 0;
  background-color: color-mix(in srgb, var(--lp-accent-color), #fff 70%);
}
.p-lp-hero .l-inner {
  padding: 0;
}
.p-lp-hero img {
  width: 100%;
  margin-inline: auto;
}

.p-lp-hero-slider {
  position: relative;
  z-index: 0;
  max-height: calc(100vh - 155px);
}
.p-lp-hero-slider img {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-lp-hero-title {
  pointer-events: none;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/* セクション背景色設定 */
.p-lp-bg-wrapper--bg01 {
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_01.png) no-repeat center center/cover;
  background-color: rgb(from #fff r g b/0.6);
  background-attachment: fixed;
}
@media (width < 768px) {
  .p-lp-bg-wrapper--bg01 {
    background-image: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_01_sp.png);
  }
}

.p-lp-bg-wrapper--bg02 {
  background: #fff;
}

.p-lp-bg-wrapper--bg03 {
  background-image: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_03_left.png), url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_03_right.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: max(180px, 10vw) auto;
  background-attachment: fixed;
  background-color: rgb(from #fff r g b/0.75);
}
@media (width < 768px) {
  .p-lp-bg-wrapper--bg03 {
    background-size: contain;
    background-position: left -15% center, right -15% center;
  }
}

.p-lp-bg-wrapper--bg04 {
  background-image: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_04_left.png), url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_04_right.png);
  background-repeat: no-repeat, no-repeat;
  background-position: left center, right center;
  background-size: contain, contain;
  background-color: rgb(from #fff r g b/0.5);
  background-attachment: fixed;
}
@media (width < 768px) {
  .p-lp-bg-wrapper--bg04 {
    background-size: contain;
    background-position: left -15% center, right -15% center;
  }
}

.p-lp-bg-wrapper--bg05 {
  background-color: #ece5d5;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_bg_05.jpg) no-repeat center center/cover;
}

.p-lp-bg-wrapper--bg06 {
  background: transparent;
}

.p-lp-bg-wrapper--bg-transparent {
  background: transparent;
}

/* ================================================================
  カタログバナー
================================================================= */
.p-lp-catalog-bnr {
  max-width: max-content;
  margin-inline: auto;
}

.p-lp-banner-list {
  --lp-banner-list-gap: 1px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-banner-list-gap);
}
.p-lp-banner-list li {
  width: calc((100% - var(--lp-banner-list-gap) * 3) / 4);
}
@media (width < 768px) {
  .p-lp-banner-list li {
    width: calc((100% - var(--lp-banner-list-gap) * 1) / 2);
  }
}

/* ================================================================
  アンカーリンク
================================================================= */
.p-lp-anchor {
  --lp-anchor-gap: 5px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-anchor-gap);
}
@media (width < 768px) {
  .p-lp-anchor {
    --lp-anchor-gap: 1px;
  }
}

.p-lp-anchor li {
  width: 49%;
}

@media (width >= 768px) {
  .p-lp-anchor.-line3 li {
    width: calc((100% - var(--lp-anchor-gap) * 2) / 3);
  }
  .p-lp-anchor.-line4 li {
    width: calc((100% - var(--lp-anchor-gap) * 3) / 4);
  }
  .p-lp-anchor.-line5 li {
    width: calc((100% - var(--lp-anchor-gap) * 4) / 5);
  }
  .p-lp-anchor.-line6 li {
    width: calc((100% - var(--lp-anchor-gap) * 5) / 6);
  }
}
@media (width < 768px) {
  .p-lp-anchor.-sp-line3 li {
    width: calc((100% - var(--lp-anchor-gap) * 2) / 3);
  }
  .p-lp-anchor.-sp-line4 li {
    width: calc((100% - var(--lp-anchor-gap) * 3) / 4);
  }
  .p-lp-anchor.-sp-line5 li {
    width: calc((100% - var(--lp-anchor-gap) * 4) / 5);
  }
  .p-lp-anchor.-sp-line6 li {
    width: calc((100% - var(--lp-anchor-gap) * 5) / 6);
  }
}
.p-lp-anchor li a {
  display: grid;
  place-content: center;
  height: 100%;
  min-height: 70px;
  padding: 12px 5px;
  font-family: var(--lp-font-serif);
  font-size: min(3vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 5%;
  text-align: center;
  color: #fff;
  background: var(--lp-nav-color);
}
@media (width < 768px) {
  .p-lp-anchor li a {
    padding: 8px 10px;
    min-height: 50px;
    font-size: min(3.5vw, 1.05rem);
  }
}

/* ================================================================
  追従ナビゲーション
================================================================= */
.p-lp-nav-sticky {
  color: #fff;
  backdrop-filter: blur(5px);
  z-index: 101;
}
@media (width < 768px) {
  .p-lp-nav-sticky {
    position: sticky;
    bottom: 0;
    width: 100%;
    padding: 0;
    background-color: rgb(from #fff r g b/0.7);
  }
}
@media (width >= 768px) {
  .p-lp-nav-sticky {
    position: fixed;
    right: 0;
    bottom: 70px;
    width: max-content;
    padding: 35px 45px 35px 70px;
    border-radius: 6px 0 0 6px;
    background-color: rgb(from var(--lp-main-color) r g b/0.5);
    transform: translateX(calc(100% - 45px));
    transition: transform 0.5s ease;
  }
  .p-lp-nav-sticky .l-inner {
    width: 100%;
    padding-inline: 0;
  }
  .p-lp-nav-sticky:hover {
    transform: translateX(0);
  }
}

.p-lp-nav-sticky.active {
  transform: translateY(0);
}

@media (width < 768px) {
  .l-main--item-category {
    overflow-x: clip !important;
  }
}
.p-lp-nav-sticky__label {
  position: absolute;
  left: 10px;
  top: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.7rem;
  transform: translateY(-50%);
}
@media (width < 768px) {
  .p-lp-nav-sticky__label {
    display: none;
  }
}
.p-lp-nav-sticky__label::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  rotate: -45deg;
  border-top: 2px solid currentColor;
  border-left: 2px solid currentColor;
}

.p-lp-nav-sticky__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  line-height: 1;
  font-size: 0.9rem;
}
@media (width < 768px) {
  .p-lp-nav-sticky__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
  }
  .p-lp-nav-sticky__list a {
    display: grid;
    place-content: center;
    height: 100%;
    font-size: min(3.5vw, 0.9rem);
    padding: 12px 0;
    background-color: var(--lp-main-color);
    color: #fff;
  }
  .p-lp-nav-sticky__list a:hover {
    background-color: color-mix(in srgb, var(--lp-main-color), white 25%);
  }
}
@media (width >= 768px) {
  .p-lp-nav-sticky__list small {
    font-size: 100%;
  }
}

/* ================================================================
  カテゴリーセクションタイトル
================================================================= */
.c-lp-section-title {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  margin-bottom: 40px;
  font-family: var(--lp-font-serif);
  font-size: min(4vw, 2.4rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 2%;
  text-align: center;
  color: color-mix(in srgb, var(--lp-main-color), #000 35%);
}
.c-lp-section-title small {
  display: block;
}
.c-lp-section-title::before, .c-lp-section-title::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--lp-main-color);
}
@media (width < 768px) {
  .c-lp-section-title {
    margin-bottom: 20px;
    padding: 12px 0;
    font-size: min(6vw, 1.8rem);
  }
}

.c-lp-section-subtitle {
  text-align: center;
  margin-bottom: 30px;
  padding-block: 12px;
  font-family: var(--lp-font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  background-color: var(--lp-main-color);
  clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 10px, 100% calc(100% - 10px), calc(100% - 10px) 100%, 10px 100%, 0 calc(100% - 10px), 0 10px);
}
@media (width < 768px) {
  .c-lp-section-subtitle {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}

/* ================================================================
  カテゴリ商品一覧（ピックアップ）
================================================================= */
.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: 450px;
}

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

/* ================================================================
  カテゴリ商品一覧（通常）
================================================================= */
.p-lp-category-product--normal {
  --lp-category-product-gap: 12px;
  --lp-category-product-column: 4;
  margin-top: 50px;
  justify-content: flex-start;
}
@media (width < 960px) {
  .p-lp-category-product--normal {
    --lp-category-product-column: 3;
    --lp-category-product-gap: 10px;
  }
}
@media (width < 768px) {
  .p-lp-category-product--normal {
    --lp-category-product-gap: 10px;
  }
}
.p-lp-category-product--normal .p-item-list-category__item {
  width: calc((100% - var(--lp-category-product-gap) * (var(--lp-category-product-column) - 1)) / var(--lp-category-product-column));
}
@media (width < 768px) {
  .p-lp-category-product--normal .p-item-list-category__item {
    width: calc((100% - var(--lp-category-product-gap) * 1) / 2);
  }
}

/* ================================================================
  カテゴリ商品一覧（列数自動調整）
================================================================= */
.p-lp-category-product--fluid {
  --lp-category-product-gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (width < 768px) {
  .p-lp-category-product--fluid {
    --lp-category-product-gap: 10px;
  }
}

@media (width < 768px) {
  .p-lp-category-product--fluid:has(> :nth-child(1):last-child) .p-item-list-category__item {
    width: 100%;
  }
  .p-lp-category-product--fluid:has(> :nth-child(3):last-child) .p-item-list-category__item:first-of-type, .p-lp-category-product--fluid:has(> :nth-child(5):last-child) .p-item-list-category__item:first-of-type, .p-lp-category-product--fluid:has(> :nth-child(7):last-child) .p-item-list-category__item:first-of-type {
    width: 100%;
  }
}
@media (width >= 768px) {
  .p-lp-category-product--fluid :where(.p-item-list-category__item) {
    width: calc((100% - var(--lp-category-product-gap) * 3) / 4);
  }
  .p-lp-category-product--fluid:has(> :nth-child(1):last-child) .p-item-list-category__item {
    width: 100%;
  }
  .p-lp-category-product--fluid:has(> :nth-child(2):last-child) .p-item-list-category__item {
    width: calc((100% - var(--lp-category-product-gap) * 1) / 2);
  }
  .p-lp-category-product--fluid:has(> :nth-child(3):last-child) .p-item-list-category__item, .p-lp-category-product--fluid:has(> :nth-child(6):last-child) .p-item-list-category__item, .p-lp-category-product--fluid:has(> :nth-child(9):last-child) .p-item-list-category__item, .p-lp-category-product--fluid:has(> :nth-child(15):last-child) .p-item-list-category__item {
    width: calc((100% - var(--lp-category-product-gap) * 2) / 3);
  }
  .p-lp-category-product--fluid:has(> :nth-child(5):last-child) .p-item-list-category__item {
    width: calc((100% - var(--lp-category-product-gap) * 2) / 3);
  }
}
/* ================================================================
  商品グリッド
================================================================= */
.p-lp-item-grid-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (width < 768px) {
  .p-lp-item-grid-list {
    gap: 40px;
  }
}

.p-lp-item-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr 1.4fr;
  background-color: rgb(from #fff r g b/0.75);
}
@media (width < 768px) {
  .p-lp-item-grid {
    grid-template-columns: 100%;
  }
}

.p-lp-item-grid:has(.p-lp-item-grid__link:hover) .p-lp-item-grid__image::after {
  opacity: 1;
}

.p-lp-item-grid__image {
  position: relative;
  width: 100%;
}
.p-lp-item-grid__image::after {
  content: "注文する";
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 1/1;
  width: 100%;
  display: grid;
  place-content: center;
  font-family: var(--lp-font-serif);
  font-size: 1.5rem;
  letter-spacing: 10%;
  line-height: 1;
  color: #fff;
  opacity: 0;
  background-color: rgb(from var(--lp-main-color) r g b/0.5);
  transition: opacity 0.3s ease;
}

.p-lp-item-grid__content {
  align-self: center;
  font-family: var(--lp-font-serif);
  padding-block: 30px;
  padding-inline: 70px;
}
@media (width < 768px) {
  .p-lp-item-grid__content {
    padding-block: 20px;
    padding-inline: 20px;
  }
}

.p-lp-item-grid__description {
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__description {
    font-size: 0.9rem;
  }
}

.p-lp-item-grid__brand {
  margin-bottom: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__brand {
    font-size: 1.1rem;
  }
}

.p-lp-item-grid__name {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (width < 768px) {
  .p-lp-item-grid__name {
    font-size: 1.4rem;
  }
}

.p-lp-item-grid__link {
  color: inherit;
  text-decoration: none;
}
.p-lp-item-grid__link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-lp-item-grid__link:hover {
  opacity: 1;
}

.p-lp-item-grid__spec {
  margin-top: 5px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.8;
}
@media (width < 768px) {
  .p-lp-item-grid__spec {
    font-size: 1.1rem;
  }
}

.p-lp-item-grid__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 15px;
}
.p-lp-item-grid__tags li {
  padding: 8px 16px;
  background-color: var(--lp-accent-color);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}
@media (width < 768px) {
  .p-lp-item-grid__tags li {
    font-size: 1rem;
    padding: 6px 12px;
  }
}
.p-lp-item-grid__tags .bonus_point {
  background-color: #b50080;
}
.p-lp-item-grid__tags .cold {
  background-color: #01a1eb;
}
.p-lp-item-grid__tags .chilled {
  background-color: #1d2089;
}
.p-lp-item-grid__tags .wa {
  background-color: #95c4a5;
}
.p-lp-item-grid__tags .yo {
  background-color: #f4bf6a;
}
.p-lp-item-grid__tags .chu {
  background-color: #f78686;
}

.p-lp-item-grid__price {
  line-height: 1;
  text-align: right;
}

.p-lp-item-grid__price-main {
  margin-top: 10px;
  font-size: 1.3rem;
  font-weight: 600;
}
.p-lp-item-grid__price-main span {
  font-size: 200%;
}
@media (width < 768px) {
  .p-lp-item-grid__price-main {
    font-size: 1.2rem;
  }
  .p-lp-item-grid__price-main span {
    font-size: 180%;
  }
}

.p-lp-item-grid__price-icon {
  display: inline-block;
  vertical-align: bottom;
  margin-top: 10px;
  margin-right: 8px;
}
@media (width < 768px) {
  .p-lp-item-grid__price-icon img {
    max-width: 70px;
  }
}

.p-lp-item-grid__price-sub {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}
.p-lp-item-grid__price-sub span {
  font-size: 120%;
}

.p-lp-item-grid__point {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-lp-item-grid__point li {
  position: relative;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
}
@media (width < 768px) {
  .p-lp-item-grid__point li {
    grid-template-columns: 1fr;
  }
}
.p-lp-item-grid__point li::before {
  content: "";
  display: block;
  width: 100px;
  height: 42px;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_point_01.png) no-repeat top left/contain;
}
.p-lp-item-grid__point li:nth-child(2)::before {
  background-image: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_point_02.png);
}
.p-lp-item-grid__point li:nth-child(3)::before {
  background-image: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/osechi_2026_point_03.png);
}

.p-lp-item-grid__point-content {
  align-self: center;
}
.p-lp-item-grid__point-content .c-text {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (width < 768px) {
  .p-lp-item-grid__point-content .c-text {
    font-size: 1rem;
  }
}
.p-lp-item-grid__point-content .c-text + .c-text-s {
  margin-top: 8px;
}

.p-lp-item-grid__food-title {
  padding-block: 10px;
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  color: #fff;
  background-color: var(--lp-accent-color);
}
@media (width < 768px) {
  .p-lp-item-grid__food-title {
    font-size: 1rem;
  }
}

.p-lp-item-grid__food-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-lp-item-grid__food-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 15px;
}
@media (width < 768px) {
  .p-lp-item-grid__food-item {
    grid-template-columns: 80px 1fr;
    gap: 12px;
  }
}

.p-lp-item-grid__food-name {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (width < 768px) {
  .p-lp-item-grid__food-name {
    font-size: 0.9rem;
  }
}
.p-lp-item-grid__food-name + .c-text-s {
  margin-top: 8px;
}

.p-lp-item-grid__accordion {
  position: relative;
  z-index: 2;
}

.p-lp-item-grid__accordion-head {
  cursor: pointer;
  position: relative;
  color: #fff;
  width: 100%;
  margin-top: 20px;
  padding: 8px 20px;
  font-size: 1.1rem;
  background-color: var(--lp-main-color);
  text-align: center;
}
@media (width < 768px) {
  .p-lp-item-grid__accordion-head {
    margin-top: 15px;
    padding: 6px 15px;
    font-size: 1rem;
  }
}
.p-lp-item-grid__accordion-head::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -80%;
  width: 12px;
  height: 12px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: 45deg;
}
@media (width < 768px) {
  .p-lp-item-grid__accordion-head::before {
    width: 10px;
    height: 10px;
    right: 15px;
  }
}
.is-active .p-lp-item-grid__accordion-head::before {
  translate: 0 -20%;
  rotate: 225deg;
}

.p-lp-item-grid__accordion-body {
  display: none;
}

.p-lp-item-grid__accordion-body-inner {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px;
  background-color: #fff;
}
@media (width < 768px) {
  .p-lp-item-grid__accordion-body-inner {
    padding: 15px;
  }
}

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

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

.c-lp-link-button--small a {
  font-size: 1.1rem;
  letter-spacing: 0;
}
@media (width < 768px) {
  .c-lp-link-button--small a {
    font-size: 1rem;
  }
}

/* ================================================================
  特集バナー
================================================================= */
.p-lp-feature-banner {
  --lp-feature-banner-gap: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--lp-feature-banner-gap);
  margin-bottom: 30px;
}
@media (width < 768px) {
  .p-lp-feature-banner {
    --lp-feature-banner-gap: 6px;
    margin-bottom: 20px;
  }
}
.p-lp-feature-banner li {
  width: calc((100% - var(--lp-feature-banner-gap) * 2) / 3);
  background-color: #fff;
}
@media (width < 768px) {
  .p-lp-feature-banner li {
    width: calc((100% - var(--lp-feature-banner-gap) * 1) / 2);
  }
}

.p-lp-feature-banner__image {
  position: relative;
}
.p-lp-feature-banner__image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(from var(--lp-main-color) r g b/0.5);
}
.p-lp-feature-banner__image::after {
  --lp-feature-banner-border-width: 16px;
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - var(--lp-feature-banner-border-width));
  height: calc(100% - var(--lp-feature-banner-border-width));
  border: 1px solid #fff;
}
@media (width < 768px) {
  .p-lp-feature-banner__image::after {
    --lp-feature-banner-border-width: 12px;
  }
}

.p-lp-feature-banner__title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  font-family: var(--lp-font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  z-index: 1;
  text-shadow: 0 0 10px rgb(from #000 r g b/0.8);
  color: #fff;
}
@media (width < 768px) {
  .p-lp-feature-banner__title {
    font-size: min(1.2rem, 4.5vw);
  }
}

/* ================================================================
  特集セクション
================================================================= */
.p-lp-feature-section {
  --lp-feature-theme-color: var(--lp-main-color);
  --lp-swiper-nav-color: var(--lp-feature-theme-color);
  padding: 50px 30px;
  margin-bottom: 0;
  background-color: rgb(from var(--lp-feature-theme-color) r g b/var(--lp-feature-bg-opacity, 0.15));
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}
@media (width < 768px) {
  .p-lp-feature-section {
    padding: 30px 5px;
  }
}
.p-lp-feature-section .c-lp-section-subtitle {
  background-color: var(--lp-feature-theme-color);
}
.p-lp-feature-section .p-lp-item-grid__image::after {
  background-color: rgb(from var(--lp-feature-theme-color) r g b/var(--lp-feature-thumb-opacity, 0.35));
}
.p-lp-feature-section#feature_original {
  --lp-feature-theme-color: #97b26e;
  --lp-feature-bg-opacity: 0.1;
}
.p-lp-feature-section#feature_hokkaido {
  --lp-feature-theme-color: #e4bc75;
  --lp-feature-bg-opacity: 0.1;
}
.p-lp-feature-section#feature_hotel {
  --lp-feature-theme-color: #f47070;
  --lp-feature-bg-opacity: 0.1;
}
.p-lp-feature-section#feature_eshop {
  --lp-feature-theme-color: #AD2379;
}
.p-lp-feature-section#feature_topvalu {
  --lp-feature-theme-color: #6abb85;
}
.p-lp-feature-section#feature_ryotei {
  --lp-feature-theme-color: #a68749;
}
.p-lp-feature-section#feature_horsdoeuvre {
  --lp-feature-theme-color: #e47642;
}

/* ================================================================
  自分にぴったりのおせちをみつける
================================================================= */
.p-lp-search-form {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: center;
  gap: 50px;
}
@media (width < 768px) {
  .p-lp-search-form {
    grid-template-columns: 100%;
    gap: 12px;
  }
}

.p-lp-search-form__item {
  display: grid;
  position: relative;
}
@media (width >= 768px) {
  .p-lp-search-form__item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .p-lp-search-form__item:not(:first-child)::before {
    content: "×";
    position: absolute;
    bottom: 12px;
    left: -35px;
    font-size: 1.2rem;
    line-height: 1;
    color: var(--lp-main-color);
  }
}
@media (width < 768px) {
  .p-lp-search-form__item {
    display: grid;
    grid-template-columns: 80px 1fr;
    align-items: center;
    gap: 10px;
  }
}

.p-lp-search-form__item-label {
  display: block;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 2%;
  text-align: center;
  color: var(--lp-main-color);
}

.p-lp-search-form__item-select {
  position: relative;
  min-width: 220px;
  background-color: #fff;
}
.p-lp-search-form__item-select select {
  cursor: pointer;
  width: 100%;
  height: 100%;
  padding: 12px 16px;
  line-height: 1.2;
}
.p-lp-search-form__item-select::after {
  pointer-events: none;
  content: "▼";
  position: absolute;
  top: 50%;
  right: 12px;
  translate: 0 -50%;
  font-size: 0.8rem;
  line-height: 1;
  color: var(--lp-accent-color);
}

/* ================================================================
  よくあるご質問
================================================================= */
.p-lp-faq-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-lp-faq-item {
  background-color: #fff;
}
.p-lp-faq-item.is-active .p-lp-faq-item__icon::after {
  display: none;
}

.p-lp-faq-item__head {
  cursor: pointer;
  display: grid;
  grid-template-columns: max-content 1fr max-content;
  gap: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding-block: 20px;
  padding-inline: 24px;
}
@media (width < 768px) {
  .p-lp-faq-item__head {
    padding-block: 16px;
  }
}
.p-lp-faq-item__head::before {
  content: "Q";
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--lp-main-color);
}

.p-lp-faq-item__icon {
  position: relative;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  margin-left: 8px;
}
.p-lp-faq-item__icon::before, .p-lp-faq-item__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: currentColor;
}
.p-lp-faq-item__icon::after {
  rotate: 90deg;
}

.p-lp-faq-item__body {
  display: none;
  padding-inline: 24px;
}
.p-lp-faq-item__body .c-text {
  font-weight: 300;
}

.p-lp-faq-item__inner {
  position: relative;
  padding-left: 32px;
  padding-block: 20px 24px;
  border-top: 1px solid var(--lp-border-color);
}
@media (width < 768px) {
  .p-lp-faq-item__inner {
    padding-block: 16px;
  }
}
.p-lp-faq-item__inner::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 2px;
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--lp-main-color);
}
@media (width < 768px) {
  .p-lp-faq-item__inner::before {
    top: 15px;
  }
}

/* ================================================================
  商品スライダーコントローラー
================================================================= */
.p-lp-products-swiper {
  overflow: clip;
  margin-top: 30px;
}

.p-psale-wrapper .c-card__point {
  max-width: 72px;
}

.js-lpProductSwiperWrapper {
  display: flex;
}

.p-lp-products-swiper__main {
  padding: 12px;
  background-color: rgb(from #fff r g b/0.5);
}
.p-lp-products-swiper__main .p-item-list-category__item {
  width: calc((100% - 20px) / 2);
  margin-right: 20px;
}

@media (min-width: 768px) {
  .p-lp-products-swiper__main {
    padding: 30px 40px;
  }
  .p-lp-products-swiper__main .p-item-list-category__item {
    width: calc((100% - 120px) / 5);
    margin-right: 30px;
  }
}
.p-lp-controller {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  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;
  background-color: transparent;
}

.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: var(--lp-swiper-nav-color);
  border-radius: 50%;
}

.p-lp-controller__button {
  cursor: pointer;
  position: relative;
  /* position: absolute; */
  display: block;
  /* top: 0; */
  width: 35px;
  height: 35px;
  background-color: var(--lp-swiper-nav-color);
  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: 2px solid #fff;
}

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

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

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

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

/* ================================================================
  特別割引
================================================================= */
.tokubai {
  color: rgb(211, 14, 14);
}