@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@200..900&display=swap");
/* テーマカラー設定 */
:root {
  --main-color: #2C877B;
  --accent-color: #695C3B;
  --sub-font: "Noto Serif JP", serif;
}

.beer-section {
  padding: 60px 20px;
  color: white;
  text-align: center;
  font-family: "Arial", sans-serif;
}

.beer-main-image {
  width: 100%;
}

.p-lp-hero__title {
  font-size: 28px;
  margin-bottom: 10px;
}

.p-lp-wrapper {
  padding: 0 0 1px;
  /* background: url(https://stprodaeonblob.blob.core.windows.net/eshop-files/images/other/food_alcohol_005_bg.jpg) no-repeat top center / cover; */
  background: radial-gradient(farthest-corner circle, #178EB8 15%, #0B2A98);
  background-attachment: fixed;
}

/* タイトル */
.p-lp-hero {
  padding: 50px 0;
  color: #fff;
  text-align: center;
}

.p-lp-hero__imgs {
  position: relative;
}

.p-lp-hero__title {
  font-size: min(12vw, 5rem);
  line-height: 1.4;
  color: #fff;
  font-family: var(--sub-font);
  font-weight: 900;
  text-shadow: 2px 2px 5px #000;
}

.p-lp-hero__notice {
  font-size: min(4.5vw, 1.8rem);
  background-color: #e60033;
  line-height: 1.6;
  padding: 12px;
  border-radius: 5px;
  font-weight: bold;
  margin-block: 20px;
}

/* ストップ！20歳未満飲酒・飲酒運転 */
.p-lp-stop {
  display: grid;
  grid-template-columns: 80px max-content;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 20px;
  background: #fff;
}
@media (width < 768px) {
  .p-lp-stop {
    gap: min(4vw, 15px);
    grid-template-columns: min(12vw, 80px) max-content;
    padding: min(5.3vw, 20px);
  }
}

.p-lp-stop__text {
  font-size: min(3.2vw, 1.1rem);
  font-weight: 600;
  line-height: 1.7;
}

.p-lp-stop-img {
  padding: 20px 0;
  background: #fff;
}
.p-lp-stop-img img {
  margin: 0 auto;
}
@media (width < 768px) {
  .p-lp-stop-img {
    padding: min(5.3vw, 20px) 0;
  }
}

.p-lp-catchcopy {
  margin-bottom: 20px;
  font-size: min(5vw, 2.2rem);
  line-height: 2;
  color: #fff;
  font-family: var(--sub-font);
  font-weight: 800;
  text-align: center;
  text-shadow: 2px 2px 5px #000;
}

.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;
  background-color: #fff;
}

@media (width >= 768px) {
  .p-lp-category-product--pickup:has(> :nth-child(1):last-child) .p-item-list-category__item {
    width: 100%;
  }
}
@media (width >= 768px) {
  .p-lp-category-product--pickup .c-card {
    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: 10px;
  }
  .p-lp-category-product--pickup .p-item-list-category__item {
    /* width: 100%; */
    width: calc(50% - 5px);
  }
  .p-lp-category-product--pickup .c-card {
    padding: 10px;
  }
}
.p-lp-category-product--normal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 30px;
  gap: 30px;
}

.p-lp-category-product--normal .p-item-list-category__item {
  width: calc(25% - 22.5px);
  background-color: #fff;
}

@media (width >= 768px) {
  .p-lp-category-product--normal:has(> :nth-child(-n+3):last-child) .p-item-list-category__item,
  .p-lp-category-product--normal:has(> :nth-child(3):last-child) .p-item-list-category__item,
  .p-lp-category-product--normal:has(> :nth-child(6):last-child) .p-item-list-category__item {
    width: calc(33.333% - 20px);
  }
}
.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);
  }
}