@charset "UTF-8";
._w90 {
  width: 90%;
}

._center {
  margin: 0 auto;
}

.Menu_Img img {
  border-radius: 1rem;
}

.Menu_Title {
  margin: 0;
  padding: 0.5rem 0;
  font-size: 1.2rem;
}

.Menu_Price {
  margin: 0;
  padding: 0;
  font-size: 1rem;
}
.Menu_Price::before {
  content: "¥";
}
.Menu_Price::after {
  content: "(Taxin)";
  font-size: 0.6rem;
  margin-left: 0.2rem;
}

.Menu_Flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Menu_Flex .Menu_List {
  width: 47%;
}
.Menu_Flex .Menu_List .Menu {
  margin-bottom: 2rem;
}
.Menu_Flex .Menu_List .Menu .Menu_Title {
  font-size: 1rem;
  font-weight: normal;
  padding: 0.5rem 0 0 0;
}
.Menu_Flex .Menu_List .Menu .Menu_Price {
  font-size: 0.85rem;
}

.campaign {
  margin-bottom: 3rem;
}

.Wrap {
  max-width: 700px;
  margin: 0 auto;
}

#Item {
  padding: 0 0 2rem 0;
  margin-bottom: 3rem;
  background-color: #EFEFEF;
}
#Item .Menu_Img img {
  border-radius: 0;
  width: 100%;
}

a.Menu_Allergy {
  font-size: 0.9rem;
  display: inline;
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 999rem;
}

/*--モーダル--*/
/* モーダルを開くボタン */
.modal-open {
  position: relative;
  cursor: pointer;
}

/*モーダルと背景の指定*/
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 10;
}

/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}

/* クラスが追加された時の指定 */
.modal.is-active {
  opacity: 1;
  visibility: visible;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 600px;
  width: 90%;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #000;
  border-radius: 50%;
  cursor: pointer;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 20px;
}

/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
  margin: 1em 0;
}/*# sourceMappingURL=contents.css.map */