@charset "UTF-8";
:root {
  --color-primary: #B50080;
  --color-dark: #1A1A1A;
  --color-gray: #F3F4F8;
  --color-gray2: #B2B2B2;
  --color-rightgray: #666666;
  --color-rightgray2: #888888;
  --color-rightgray3: #E6E9F1;
  --color-blue: #007AAB;
  --color-rightblue: #0099CE;
  --color-skyblue: #E7F5F9;
  --color-skyblue2: #007AAB;
  --color-red: #D70606;
}

/*
  フォントサイズ
    $font-size: フォントサイズ(必須)
    $line-height: ラインハイト or 空
    $letter-spacing: レタースペーシング or 空
*/
/*

*/
/*
  Hタグ
    $type: 2(H2サイズ)
*/
/*
  共通ボタン 大
  default: skyblue2
*/
/*
  共通ボタン 小
  default: skyblue2
*/
/*
  通常
  SP 左右のマージン20px
  PC 幅900px
*/
/*
  角丸border付きレイアウト
*/
/*
  グレーの文字の補足系
*/
.p-store__heading {
  margin: 24px 0px 16px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 940px) {
  .p-store__heading {
    width: 100%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .p-store__heading {
    margin: 48px 0px 24px;
    text-align: center;
  }
}
.p-store__heading h1 {
  font-size: 2.5rem;
  line-height: 1.48;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-store__heading h1 {
    font-size: 3.4rem;
    line-height: 1.5;
  }
}

.p-store__section {
  padding-top: 32px;
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 1120px) {
  .p-store__section {
    width: 100%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 769px) {
  .p-store__section {
    padding-top: 64px;
  }
  .p-store__section:first-of-type {
    padding-top: 32px;
  }
}

.p-store__lists {
  display: flex;
  gap: 16px 16px;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) {
  .p-store__lists {
    gap: 36px 36px;
  }
}
.p-store__lists picture {
  overflow: hidden;
  aspect-ratio: 5/7;
}
.p-store__lists picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-store__lists a {
  width: calc(50% - 8px);
  color: var(--color-dark);
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  .p-store__lists a {
    transition: opacity 0.4s ease;
  }
  .p-store__lists a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 769px) {
  .p-store__lists a {
    width: calc(33.33% - 24px);
  }
}
@media screen and (min-width: 1080px) {
  .p-store__lists a {
    width: calc(25% - 27px);
  }
}
.p-store__lists h3 {
  margin-top: 12px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .p-store__lists h3 {
    font-size: 1.4rem;
  }
}

.p-store__limited::after {
  content: "期間限定";
  margin-left: 4px;
  border-radius: 2px;
  padding: 0px 3px 1px 3px;
  background: var(--color-primary);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  display: inline;
  vertical-align: middle;
}

/* allergy-notice */
.allergy-notice {
  background-color: #fef1f4;
  font-weight: 400;
}

.p-food__section .allergy-notice {
  margin: 24px auto 0;
}

.allergy-notice_content {
  position: relative;
  min-height: 58px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-left: 3.5px solid #b50081;
  padding: 10px 12px 12px 70px;
}

.allergy-notice_content::before {
  position: absolute;
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  left: 18px;
  background: center/contain no-repeat url(/store/images/allergy-notice_content.svg);
}

.allergy-notice_text {
  font-size: 14px;
}

.allergy-notice_text a {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 700;
  line-height: 1.2;
  color: #b50081;
}

.allergy-notice_text strong {
  font-weight: 700;
  color: #b50081;
}

.allergy-notice_text a:hover {
  border-color: #b50081;
  opacity: 0.8;
}

.allergy-notice_link {
  padding: 0;
}

.allergy-notice_link a {
  position: relative;
  display: inline-block;
  background-color: #b50081;
  border-radius: 1.5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: opacity 0.3s ease;
  padding: 4px 18px 4px 9px;
  color: #ffffff;
}

.allergy-notice_link a:hover {
  opacity: 0.8;
}

.allergy-notice_link a::after {
  position: absolute;
  display: inline-block;
  content: "";
  width: 6.146px;
  height: 11.707px;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  background: center/contain no-repeat url(/store/images/allergy-notice_link.svg);
}

.p-food__section .allergy-notice_link a {
  padding-right: 20px;
}

.p-food__section .allergy-notice_link a::after {
  transform: translateY(-50%) rotate(90deg);
}

@media only screen and (max-width: 640px) {
  .p-food__section .allergy-notice {
    margin-top: 6.25vw;
  }
  .allergy-notice_content {
    display: block;
    min-height: 95px;
    border-left: 3px solid #b50081;
    padding: 18px 18px 18px 64px;
  }
  .allergy-notice_content::before {
    left: 2.8125vw;
  }
  .allergy-notice_text {
    padding-top: 8px;
  }
  .allergy-notice_link {
    position: absolute;
    right: 3.90625vw;
    bottom: 2.5vw;
    padding: 0;
  }
  .allergy-notice_link a::after {
    right: 6px;
  }
  .p-food__section .allergy-notice_link a::after {
    right: 8px;
  }
}
@media only screen and (max-width: 480px) {
  .allergy-notice_content {
    border-width: 0.625vw;
    padding: 3.75vw 3.75vw 3.75vw 13.3333333333vw;
  }
  .allergy-notice_content::before {
    min-width: 28px;
    min-height: 28px;
    width: 7.5vw;
    height: 7.5vw;
  }
  .allergy-notice_text {
    padding-top: 1.0416666667vw;
  }
}
@media only screen and (max-width: 400px) {
  .allergy-notice_content {
    padding-left: 45px;
  }
}
/*# sourceMappingURL=../../sourcemaps/assets_2025/css/store.css.map */