@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-allergy {
  margin-left: 20px;
  margin-right: 20px;
}
@media screen and (min-width: 1120px) {
  .p-allergy {
    width: 100%;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-allergy .c-heading.p-allergy__heading {
  min-height: auto;
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 769px) {
  .p-allergy .c-heading.p-allergy__heading {
    min-height: 100px;
    padding: 32px 0px 24px 0px;
  }
}
.p-allergy .c-heading.p-allergy__heading .c-headingInner {
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .p-allergy .c-heading.p-allergy__heading .c-headingInner {
    justify-content: center;
    align-items: center;
  }
}
.p-allergy .c-heading.p-allergy__heading h1 {
  font-weight: 700;
  font-size: 25px;
  text-align: left;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .p-allergy .c-heading.p-allergy__heading h1 {
    text-align: center;
    font-size: 34px;
  }
}
.p-allergy .p-allergy__content {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__content {
    gap: 40px 0;
  }
}
.p-allergy .search_form {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media screen and (min-width: 769px) {
  .p-allergy .search_form {
    gap: 56px 0;
  }
}
.p-allergy .p-allergy__stepText {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__stepText {
    font-size: 17px;
  }
}
.p-allergy .p-allergy__checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2%;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__checkbox {
    gap: 20px 12px;
  }
}
.p-allergy .p-allergy__checkbox label {
  position: relative;
  display: block;
  width: 48.5%;
  min-width: 150px;
  font-weight: 500;
  border: 1px solid #E6E9F1;
  border-radius: 5px;
  padding: 16px 12px;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__checkbox label {
    width: 170px;
  }
}
.p-allergy .p-allergy__checkbox label::before {
  content: "";
  width: 8px;
  height: 9px;
  position: absolute;
  top: calc(50% + 1px);
  right: 13px;
  transform: translateY(-50%);
  background: url(/store/images/check.svg) center center/contain no-repeat;
  opacity: 0;
  z-index: 2;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__checkbox label:hover {
    background-color: var(--color-dark);
    color: #fff;
  }
  .p-allergy .p-allergy__checkbox label:hover::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
    background-color: #fff;
    border-radius: 999px;
  }
}
.p-allergy .p-allergy__checkbox label:has(input[type=checkbox]:checked) {
  background-color: var(--color-dark);
  color: #fff;
  border: 1px solid var(--color-dark);
}
.p-allergy .p-allergy__checkbox label:has(input[type=checkbox]:checked)::before {
  opacity: 1;
}
.p-allergy .p-allergy__checkbox label:has(input[type=checkbox]:checked)::after {
  content: "";
  width: 15px;
  height: 15px;
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 1;
  background-color: #fff;
  border-radius: 999px;
}
.p-allergy .p-allergy__checkbox input[type=checkbox] {
  position: absolute;
  visibility: hidden;
}
.p-allergy .p-allergy__selectTitle {
  font-size: 17px;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__selectTitle {
    font-size: 20px;
  }
}
.p-allergy .p-allergy__select {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 0 15px;
  padding-bottom: 40px;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__select {
    padding-bottom: 48px;
  }
}
.p-allergy .p-allergy__select::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  content: "";
  width: 81px;
  height: 16px;
  background-color: #b2b2b2;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateX(-50%);
}
.p-allergy .p-allergy__select label {
  color: var(--color-rightgray);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #b2b2b2;
  border-radius: 5px;
  padding: 16px 20px;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__select label {
    padding: 20px;
    cursor: pointer;
  }
}
.p-allergy .p-allergy__select label input[type=radio] {
  position: absolute;
  visibility: hidden;
}
.p-allergy .p-allergy__select label span {
  display: block;
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__select label span {
    display: inline-block;
  }
}
.p-allergy .p-allergy__select label:hover {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.p-allergy .p-allergy__select label:has(input[type=radio]:checked) {
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
}
.p-allergy .p-allergy__btnWrapper {
  width: 300px;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__btnWrapper {
    width: 340px;
  }
}
.p-allergy .p-allergy__btnWrapper .p-allergy__btn {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 17px;
  text-align: center;
  padding: 32px 40px 32px 16px;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__btnWrapper .p-allergy__btn {
    cursor: pointer;
  }
}
.p-allergy .p-allergy__linkArea {
  border-top: 1px dotted #b2b2b2;
}
.p-allergy .p-allergy__linkArea.--noborder {
  border: none;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__linkWrapper {
    width: 388px;
    margin: 0 auto;
  }
}
.p-allergy .c-btn.p-allergy__back {
  padding: 20px 16px 20px 56px;
}
.p-allergy .c-btn.p-allergy__back::after {
  left: 16px;
  right: unset;
  transform: rotate(180deg);
}
.p-allergy .result_ingredient {
  display: flex;
  justify-content: flex-start;
}
.p-allergy .result_ingredient .ingredient {
  width: 55px;
}
@media screen and (min-width: 769px) {
  .p-allergy .result_ingredient .ingredient {
    width: 62px;
  }
}
.p-allergy .result_ingredient .material {
  width: calc(100% - 55px);
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-allergy .result_ingredient .material {
    width: calc(100% - 62px);
    line-height: 24px;
  }
}
.p-allergy .result_other {
  font-size: 17px;
  font-weight: 700;
}
@media screen and (min-width: 769px) {
  .p-allergy .result_other {
    font-size: 20px;
  }
}
.p-allergy .result_other span {
  font-weight: 700;
}
.p-allergy .result_other span.include {
  color: var(--color-primary);
}
.p-allergy .attention {
  line-height: 2;
}
.p-allergy .foodAllergy_tbl th {
  width: 50%;
  background-color: var(--color-gray);
  font-weight: 700;
}
.p-allergy .attend {
  font-weight: 500;
  margin-top: 24px;
}
@media screen and (min-width: 769px) {
  .p-allergy .attend {
    margin-top: 32px;
  }
}
.p-allergy .brackets {
  display: block;
}
.p-allergy .p-allergy__defaultFontSize {
  font-size: 14px;
}
@media screen and (min-width: 769px) {
  .p-allergy .p-allergy__defaultFontSize {
    font-size: 16px;
  }
}
/*# sourceMappingURL=../../sourcemaps/assets_2025/css/allergy.css.map */