@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400..900&display=swap");
/*テーマカラー設定*/
:root {
  --main-color: #4ba0bd;
  --accent-color: #1e2c51;
  --lp-nav-color: var(--main-color);
  --main-bg-color: #fff;
  --sub-font: "Noto Serif JP", serif;
  --content-max-width: 1040px;
}

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

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

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

/* セクション背景色設定 */
.p-lp-bg-wrapper--bg01 {
  position: relative;
  background: url(https://stprodaeonblob.blob.core.windows.net/eshop/assets/common/images/page/20230615035.png);
}
.p-lp-bg-wrapper--bg01 .l-inner {
  position: relative;
  z-index: 1;
}
.p-lp-bg-wrapper--bg01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(from var(--main-color) r g b/0.8);
  mix-blend-mode: overlay;
}

/* ================================================================
  カタログバナー
================================================================= */
.p-lp-flow-bnr {
  max-width: max-content;
  margin-inline: auto;
  margin-bottom: 50px;
}
@media (width < 768px) {
  .p-lp-flow-bnr {
    margin-bottom: 30px;
  }
  .p-lp-flow-bnr img {
    aspect-ratio: 850/150;
    object-fit: cover;
  }
}

/* ================================================================
  カテゴリ一覧
================================================================= */
.p-lp-category-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  max-width: var(--content-max-width);
  margin-inline: auto;
}
.p-lp-category-list img {
  width: 100%;
  height: auto;
}
@media (width >= 768px) {
  .p-lp-category-list .p-lp-category-list__item {
    grid-column: span 2;
  }
  .p-lp-category-list .p-lp-category-list__item.--span2 {
    grid-column: span 3;
  }
}
@media (width < 768px) {
  .p-lp-category-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-lp-category-list .p-lp-category-list__item.--span2 {
    grid-column: span 2;
  }
}

/* ================================================================
  カテゴリーセクションタイトル
================================================================= */
.c-lp-section-title {
  padding: 16px 20px;
  margin-bottom: 50px;
  font-family: var(--sub-font);
  font-size: min(4vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  background-color: var(--accent-color);
  color: #fff;
}
@media (width < 768px) {
  .c-lp-section-title {
    padding: 12px 0;
    font-size: min(6.4vw, 2rem);
    margin-bottom: 10px;
  }
}

/* ================================================================
  カテゴリ商品一覧（ピックアップ）
================================================================= */
.p-lp-category-product-box {
  padding: 30px;
  max-width: var(--content-max-width);
  margin-inline: auto;
  background-color: #fff;
}
@media (width < 768px) {
  .p-lp-category-product-box {
    padding: 20px;
  }
}

.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-img-list img {
  margin-inline: auto;
}

.p-lp-creator-section {
  margin-top: 30px;
  max-width: var(--content-max-width);
  margin-inline: auto;
  background-color: #fff;
}

.p-lp-creator-section__name {
  margin-bottom: 20px;
}
.p-lp-creator-section__name img {
  max-width: 200px;
}
@media (width < 768px) {
  .p-lp-creator-section__name img {
    max-width: 150px;
  }
}

.p-lp-creator-section__description {
  font-family: var(--sub-font);
  font-size: 1.1rem;
  line-height: 2;
}
@media (width < 768px) {
  .p-lp-creator-section__description {
    font-size: 0.9rem;
  }
}
.p-lp-creator-section__description p + p {
  margin-top: 20px;
}
@media (width < 768px) {
  .p-lp-creator-section__description p + p {
    margin-top: 10px;
  }
}

.p-lp-creator-section__image {
  margin-top: 30px;
}
@media (width < 768px) {
  .p-lp-creator-section__image {
    margin-top: 20px;
  }
}