@charset "utf-8";

.price_switch {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 22px;
  padding: 0 22px;
  margin: 120px auto 0;
  max-width: 1100px;
}

.price_switch_btn {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 0;
  padding: 6px 10px;
  border: 1px solid #e6e6e6;
  background: #dedede;
  cursor: pointer;
  text-decoration: none;
}

.price_switch_btn .default_txt {
  margin: 0;
  letter-spacing: 0.18em;
  color: #333;
  text-align: center;
}

.price_switch_btn.is_active {
  background: #2f3437;
  border-color: #2f3437;
}

.price_switch_btn.is_active .default_txt {
  color: #fff;
}

.price_switch_btn:hover:not(.is_active) {
  background: #cfcfcf;
}

@media (max-width: 768px) {
  .price_switch_btn {
    flex: 1 1 calc(50% - 22px);
  }
}

@media (max-width: 576px) {
  .price_switch_btn {
    flex: 1 1 100%;
  }
  .price_switch_btn .default_txt {
    font-size: 13px;
    letter-spacing: 0.02em;
  }
}

.menu_cardwrap {
  gap: 60px;
  padding: 60px 0;
}

.menu_card {
  background: #f3f3f3;
  width: 100%;
}

.menu_card .menu_card_inner {
  border: 1px solid #e5e5e5;
  padding: 50px clamp(20px, 5vw, 50px);
  gap: clamp(10px, 6vw, 80px);
  max-width: 1280px;
  align-items: flex-start;
  margin: 0 auto;
}

.menu_card .imgbox {
  flex: 0 0 420px;
}

.menu_card .imgbox img {
  width: 100%;
  height: auto;
  display: block;
}

.menu_card .menu_card_body {
  flex: 1;
  min-width: 0;
}

.menu_card .menu_card_head {
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 14px;
}

.menu_card p {
  margin: 0;
}

.menu_card .menu_card_desc_wrap {
  margin-bottom: 18px;
}

.menu_card .menu_card_price_wrap {
  margin-bottom: 18px;
  align-items: baseline;
  justify-content: flex-start;
  font-family: "Zen Old Mincho", serif;
}

.menu_card .menu_card_btn {
  width: 100%;
  height: 54px;
  background: #3b3f42;
  color: #fff;
  text-decoration: none;
  padding: 0 20px;
  gap: 30px;
}

.menu_card .menu_card_btn_txt {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
}

.menu_card .menu_card_btn .icon img {
  width: 16px;
  height: auto;
  display: block;
}

@media (max-width: 1080px) {
  .menu_card .menu_card_inner {
    flex-direction: column;
  }
  .menu_card .imgbox {
    flex: 0 0 auto;
    width: 100%;
  }
}
