.p-lp-wrapper {
  width: 100%;
  font-family: sans-serif;
  background-color: #fcf3ed;
}

/* =====================
   共通
===================== */
.p-lp-wrapper .lp-section {
  padding: 40px 20px;
}

.p-lp-wrapper img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================
   A：タイトルバナー
===================== */
.p-lp-wrapper .lp-hero {
  background-color: #493f3f;
}

.p-lp-wrapper .lp-hero__inner {
  max-width: 1140px;
  margin: 0 auto;
}

.p-lp-wrapper .lp-hero__image {
  width: 100%;
}

.p-lp-wrapper .lp-hero__image--sp {
  display: none;
}

/* =====================
   B：コンセプト
===================== */
.p-lp-wrapper .lp-concept {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
}

.p-lp-wrapper .lp-concept__movie iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.p-lp-wrapper .lp-concept__lead {
  font-weight: bold;
  margin-top: 20px;
}

.p-lp-wrapper .lp-concept__links {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.p-lp-wrapper .lp-concept__button {
  flex: 1;
  border: 1px solid #000;
  padding: 16px;
  border-radius: 10px;
  background-color: #493f3f;
  text-decoration: none;
  color: #ffffff;
}

.p-lp-wrapper .lp-concept__catch {
  font-size: 14px;
}

.p-lp-wrapper .lp-concept__name {
  font-size: 16px;
  font-weight: bold;
}

/* =====================
   商品紹介（C＋D）
===================== */
.p-lp-wrapper .lp-product {
  max-width: 1140px;
  margin: 0 auto;
}

/* 商品名 */
.p-lp-wrapper .lp-product__title {
  background-color: #493f3f;
  text-align: center;
  padding: 16px;
  color: #ffffff;
}

.p-lp-wrapper .lp-product__title-text {
  font-size: 24px;
  font-weight: bold;
}

.p-lp-wrapper .lp-product__description {
  text-align: center;
  margin-top: 20px;
}

/* ★ PC：おすすめポイント 2 / スペック 1 */
.p-lp-wrapper .lp-product__detail {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-top: 40px;
}

.p-lp-wrapper .lp-product__heading {
  text-align: center;
  font-weight: bold;
  margin-bottom: 16px;
}

.p-lp-wrapper .lp-product__point-list {
  font-size: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
}

/* スペック表 */
.p-lp-wrapper .lp-product__spec-list {
  border-top: 2px solid #000;
  border-bottom: 2px solid #000;
  padding: 16px 0;
}

.p-lp-wrapper .lp-product__spec-list div {
  display: grid;
  grid-template-columns: 10em 1fr;
  gap: 8px;
  margin-bottom: 8px;
}

.p-lp-wrapper .lp-product__spec-list dt {
  font-weight: bold;
}

.p-lp-wrapper .lp-product__spec-list dd {
  font-size: 14px;
}

/* =====================
   E：フッターバナー
===================== */
.p-lp-wrapper .lp-footer-banner {
  background-color: #fcf3ed;
  text-align: center;
}

/* ★ 重要：クリック領域を画像サイズに限定 */
.p-lp-wrapper .lp-footer-banner__link {
  display: inline-block;   /* ← 横いっぱいにしない */
  line-height: 0;          /* 画像下の余白防止 */
}

.p-lp-wrapper .lp-footer-banner__image {
  max-width: 1140px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* =====================
   SP対応（重要）
===================== */
@media (max-width: 767px) {

  /* ヒーロー */
  .p-lp-wrapper .lp-hero__image--pc {
    display: none;
  }

  .p-lp-wrapper .lp-hero__image--sp {
    display: block;
  }

  /* コンセプト */
  .p-lp-wrapper .lp-concept__links {
    flex-direction: column;
  }

  /* 商品詳細：必ず縦並び */
  .p-lp-wrapper .lp-product__detail {
    grid-template-columns: 1fr;
  }

  .p-lp-wrapper .lp-product__point-list {
    grid-template-columns: 1fr;
  }
}

/*テーマカラー設定*/
:root {
  --swiper-dots-color: #493f3f;
  --swiper-allow-color: #fff;
  --sub-font: "Hina Mincho", serif;
}

/* カテゴリ-ピックアップ */
.p-lp-wrapper figure > img {
  aspect-ratio: 1/1;
}
.p-lp-wrapper .c-card {
  position: relative;
}
.p-lp-wrapper .c-card figure {
  aspect-ratio: 1/1;
  display: block;
  background-color: var(--card-bg);
}
.p-lp-wrapper .c-card .c-card__textarea,
.p-lp-wrapper .c-card img {
  transition: opacity 0.3s ease;
}
.p-lp-wrapper .c-card:hover {
  opacity: 1;
}
.p-lp-wrapper .c-card:hover .c-card__textarea,
.p-lp-wrapper .c-card:hover img {
  opacity: 0.6;
}

.p-lp-category-product--pickup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.p-lp-category-product--pickup .p-item-list-category__item {
  /* width: calc(50% - ((30px * 1) / 2)); */
  width: calc(33.333% - 10px);
}

.p-lp-category-product--pickup .c-card {
  /* max-width: 480px; */
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
}

.p-lp-category-product--pickup .c-card .c-price {
  font-size: 2rem;
}

.p-lp-category-product--pickup .c-card .c-price span {
  font-size: 50%;
}

.p-lp-category-product--pickup .c-card .c-price small {
  font-size: 80%;
}

@media (width < 768px) {
  .p-lp-category-product--pickup {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .p-lp-category-product--pickup .p-item-list-category__item {
    width: 100%;
  }
}
@media (width >= 768px) {
  .p-lp-category-product--pickup:has(> :nth-child(2n+1):last-child) .p-item-list-category__item:first-of-type {
    width: 50%;
  }
}
.p-lp-category-product--normal {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 30px;
}

.p-lp-category-product--normal .p-item-list-category__item {
  width: calc(25% - 22.5px);
}

.p-lp-category-product--normal .c-card {
  padding: 10px;
  background-color: #fff;
  /* .c-price{
    font-size: 2rem;
    span{
      font-size: 50%;
    }
    small{
      font-size: 80%;
    }
  } */
}

@media (width < 768px) {
  .p-lp-category-product--normal {
    /* flex-direction: column; */
    align-items: center;
    gap: 10px;
  }
  .p-lp-category-product--normal .p-item-list-category__item {
    width: calc(50% - 5px);
  }
}
/* もっと見るボタン */
.c-lp-more-btn {
  display: grid;
  place-content: center;
  grid-template-columns: 100%;
  padding: 20px 0 40px;
}

@media (width < 768px) {
  .c-lp-more-btn {
    padding: 0px 0 30px;
  }
}
.c-lp-more-btn a {
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  max-width: 600px;
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: min(3.5vw, 1.4rem);
  line-height: 1.3;
  text-align: center;
  color: #fff;
  background: var(--main-color);
  border-radius: 50px;
}

.c-lp-more-btn a::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  display: block;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.c-lp-more-btn a.-blue {
  background-color: var(--sub-color);
}

@media (width < 768px) {
  .c-lp-more-btn a {
    /* width: 80vw; */
    min-height: 60px;
  }
}

/* 商品スライダーコントローラー
========================= */
.swiper-wrapper {
  display: flex;
}

.swiper-wrapper .c-card {
  padding: 12px;
  background-color: #fff;
}

.p-lp-pickup-slider {
  overflow: clip;
  margin-top: 30px;
  padding-bottom: 25px;
}

.p-lp-pickup-slider .p-item-list-category__item {
  height: initial;
}

.p-lp-products-slider {
  overflow: clip;
  margin-top: 30px;
  padding-bottom: 15px;
}

.js-lpPickupSwiper .swiper-wrapper {
  display: flex;
}
.js-lpPickupSwiper .p-item-list-category__item {
  width: calc((100% - 30px) / 3);
  margin-right: 15px;
}
@media (width < 960px) {
  .js-lpPickupSwiper .p-item-list-category__item {
    width: calc((100% - 12px) / 2);
    margin-right: 12px;
  }
}

.js-lpProductSwiper .swiper-wrapper {
  display: flex;
}
.js-lpProductSwiper .p-item-list-category__item {
  width: calc((100% - 60px) / 5);
  margin-right: 15px;
}
@media (width < 960px) {
  .js-lpProductSwiper .p-item-list-category__item {
    width: calc((100% - 12px) / 2);
    margin-right: 12px;
  }
}

.p-lp-wrapper .c-card__point {
  max-width: 72px;
  color: #252525;
}

.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 (width >= 768px) {
  .p-lp-controller {
    margin-top: 15px;
  }
}
.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: 0.3;
  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: var(--swiper-dots-color);
  border-radius: 50%;
}

.p-lp-controller__button {
  cursor: pointer;
  position: relative;
  /* position: absolute; */
  display: block;
  /* top: 0; */
  width: 35px;
  height: 35px;
  color: var(--swiper-allow-color);
  background-color: var(--swiper-dots-color);
  border-radius: 50%;
  z-index: 1;
  order: 1;
  transition: filter 0.3s ease;
}
.p-lp-controller__button:hover {
  opacity: 1 !important;
  filter: brightness(1.2);
}

.p-lp-controller__button:before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6.5px);
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
}

.p-lp-controller__button.-prev:before {
  left: 40%;
  border-left: 2px solid currentColor;
  transform: rotate(-45deg);
}

.p-lp-controller__button.-next {
  order: 3;
  /* right: 0; */
}

.p-lp-controller__button.-next:before {
  right: 40%;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.p-lp-controller__button:hover,
.p-lp-controller__button.swiper-button-disabled {
  opacity: 0.6;
}

.p-lp-comingsoon {
  pointer-events: none;
  position: relative;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
}

.p-lp-comingsoon img {
  display: block;
  aspect-ratio: 1/2;
  object-fit: cover;
}

.p-lp-comingsoon::after {
  content: "COMING SOON";
  white-space: pre;
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  width: 100%;
  height: 100%;
  font-size: min(6vw, 3rem);
  font-weight: bold;
  color: #fff;
  background: rgba(143, 171, 195, 0.5);
}
``