@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@600..900&display=swap");
/*テーマカラー設定*/
:root {
  --main-color: #E94045;
  --main-bg-color: #fff;
  --swiper-dots-color: #E94045;
  --swiper-allow-color: #fff;
}

.p-lp-wrapper {
  overflow: clip;
  /* background: var(--main-bg-color); */
  padding-bottom: 1px;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/event/2025/swiming.png) no-repeat center center/cover;
  background-attachment: fixed;
}

.p-lp-hero {
  margin-left: auto;
  margin-right: auto;
}

.p-lp-hero img {
  width: 100%;
  max-width: inherit;
}

.p-lp-catchcopy {
  /* margin-top: 60px; */
  font-size: min(4vw, 2rem);
  line-height: 1.8;
  text-align: center;
  color: var(--main-color);
}

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

.c-lp-section-title {
  position: relative;
  width: 90%;
  margin: 0 auto 20px;
  padding: 10px 0;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #000000;
  background: var(--main-color);
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/campaign/yellowline.png) no-repeat center center/cover;
}

.c-lp-section-title::before, .c-lp-section-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 120px;
}

.c-lp-section-title::before {
  top: -30px;
  left: -50px;
  background: url() no-repeat top left/contain;
}

.c-lp-section-title::after {
  bottom: -20px;
  right: -50px;
  background: url() no-repeat bottom right/contain;
}

@media (width < 768px) {
  .c-lp-section-title {
    padding: 5px 0;
    font-size: 1.6rem;
  }
  .c-lp-section-title::before, .c-lp-section-title::after {
    width: 80px;
    height: 80px;
  }
  .c-lp-section-title::before {
    top: -10px;
    left: -35px;
  }
  .c-lp-section-title::after {
    bottom: -10px;
    right: -35px;
  }
}
/* アンカーリンク
========================== */
/* .p-lp-anchor{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  @media (width < 768px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.p-lp-anchor a{
  position: relative;
  display: grid;
  place-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 25px 25px 25px 5px;
  font-size: min(3.8vw, 1.5rem);
  font-weight: bold;
  line-height: 1;
  text-align: center;
  color: #fff;

  background: var(--sub-color);
  border-radius: 10px;

  @media (width < 768px) {
    padding: 20px 5px 20px 5px;
  }

} */
.p-lp-category-product--pickup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 30px;
}

.p-lp-category-product--pickup .p-item-list-category__item {
  width: calc(50% - 15px);
  /* width: calc(33.333% - ((30px * 2) / 3)); */
  max-width: 480px;
}

.p-lp-category-product--pickup .c-card {
  padding: 10px;
  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%;
  }
}
.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 {
  aspect-ratio: 1/1;
  display: grid;
  place-content: center;
  grid-template-columns: 100%;
  /* margin-top: 30px;
  @media (width < 768px) {
    margin-top: 15px;
  } */
}

.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;
}

@media (width < 768px) {
  .c-lp-more-btn a {
    /* width: 80vw; */
    min-height: 60px;
  }
}
/* 商品スライダーコントローラー
========================= */
.swiper-wrapper {
  display: flex;
}

.p-lp-products-swiper {
  overflow: clip;
  background: rgba(255, 255, 255, 0.6);
  padding-bottom: 25px;
}

.p-lp-wrapper .c-card__point {
  max-width: 72px;
  color: #252525;
}

.p-lp-products-swiper__main {
  padding: 10px 10px 5px;
  background-color: var(--bf-black-sheer);
}

@media (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: 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;
  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 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-attention {
  width: 96%;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 30px;
  border-radius: 10px;
  /* border-radius: 0 0 10px 10px; */
  background-color: rgb(255, 255, 255);
  border: 3px solid var(--main-color);
  /* border-top: none; */
}

.p-lp-attention-title {
  width: 96%;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}

.p-lp-attention .c-ttl-deco-block {
  border-left-color: var(--main-color);
}

.p-lp-attention__limit dl {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  line-height: 1.6;
}

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

.p-lp-attention__limit dt {
  width: 140px;
  padding: 5px 0;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: center;
  color: #fff;
  background-color: var(--main-color);
  border-radius: 10px;
}

.p-lp-attention__limit dd {
  align-self: center;
  width: calc(100% - 160px);
  font-size: 1.2rem;
}

.p-lp-attention__limit dd .notes {
  font-size: 0.9rem;
}

.p-lp-attention .c-text:not(:last-child) {
  margin-bottom: 10px;
}

@media (max-width: 767px) {
  .p-lp-attention {
    padding: 30px 20px;
  }
  .p-lp-attention__limit dl {
    display: block;
    margin-bottom: 20px;
    text-align: center;
  }
  .p-lp-attention__limit dt {
    width: 180px;
    margin: 0 auto 10px;
    padding: 2px 0;
    font-size: 1.2rem;
  }
  .p-lp-attention__limit dd {
    width: 100%;
    font-size: min(5.5vw, 1.2rem);
    line-height: 1.5;
  }
}