/*body {
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
    font-size: 62.5%;
}

section {
    max-width: 750px;
    margin: 60px auto;
}

section .continer {
    font-size: 1rem;
}

h1 {
    margin-bottom: 20px;
    text-align: center;
}*/

/*ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

li {
  border: 1px #ccc solid;
  padding: 20px;
  height: 100px;
  margin: 10px;
  flex-basis: 45%;
  background-color: beige;
}*/

.note {
  color: darkred;
  font-size: 0.9rem;
}

.is-hide {
  display: none;
}

.grad-btn {
  /*.grad-btnのCSSは表示/非表示の動作には関係ないので、ご自由にどうぞ。*/
  z-index: 2;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 148px;
  margin: auto;
  padding: 0.5em 0;
  border-radius: 2px;
  background: #009e8f;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
  transform: translateY(80%);
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
}

.grad-btn::before {
  content: "続きを見る";
}

.grad-item {
  position: relative;
  overflow: hidden;
  height: 80px;
  /*隠した状態の高さ*/
}

.grad-item::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  /*グラデーションで隠す高さ*/
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  background: linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 50%, rgba(255, 255, 255, 0.9) 50%, #fff 100%);
  content: "";
}

.get-item-large-height {
  height: 300px;
}

.grad-trigger {
  display: none;
  /*チェックボックスは常に非表示*/
}

.grad-trigger:checked ~ .grad-btn::before {
  content: "閉じる"; /*チェックされていたら、文言を変更する*/
}

.grad-trigger:checked ~ .grad-item {
  height: auto;
  /*チェックされていたら、高さを戻す*/
}

.grad-trigger:checked ~ .grad-item::before {
  display: none;
  /*チェックされていたら、grad-itemのbeforeを非表示にする*/
}

.allergy_check {
  padding-top: 35px;
  margin: 5px;
  width: 90px;
  border-radius: 5px;
}

li .allergy_check {
  margin: 5px;
}

.allergy_check label {
  color: #fff;
  background: #74c649;
  max-width: 300px;
  width: 90%;
  /* padding: 40px 84px; */
  /* height: 80px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px;
  border-radius: 5px;
}

.allergy_check label:hover {
  cursor: pointer;
  opacity: 0.7;
}

#app input:checked + label {
  background: #ff0062;
}

.search-image {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.js_target {
  display: none;
}
.js_target.js_selected {
  display: block;
}

@media (min-width: 480px) {
  .allergy_check label {
    /*  height: 100px;
               padding: 10px;  */
  }
  .allergy_check {
    padding: 10px;
    max-width: 300px;
    width: 100%;
    /*  height: 100px; */
  }
}

/* URLコピー欄 */
#copyTarget {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
