@charset "utf-8";
/* CSS Document */
.price_c {
  position: relative;
}
.price_c .pricewrap {
  max-width: 1280px;
  margin: 0 auto;
}
.price_c .price_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 60px);
  width: 100%;
  padding: clamp(28px, 3vw, 34px) 0;
  border-bottom: 1px dotted #999;
}
.price_c .menu_name {
  flex: 1;
  max-width: 700px;
}
.price_c .catenamebox {
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.price_c .catename {
  padding: 3px 13px;
  border-radius: 999px;
  background: #eee9cf;
  color: #333;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
}
.price_c .title {
  margin-bottom: 4px;
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.price_c .note {
  line-height: 1.7;
  letter-spacing: 0.06em;
  font-weight: 400;
}
.price_c .pricebox {
  align-items: baseline;
  justify-content: flex-end;
  flex-shrink: 0;
  flex-wrap: nowrap;
  min-width: clamp(160px, 18vw, 220px);
  white-space: nowrap;
}
.price_c .price_num {
  margin-right: 8px;
  color: #9abba6;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1;
  letter-spacing: 0.05em;
}
.price_c .price_tax {
  color: #333;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .price_c .price_item {
    display: block;
    padding: 28px 0;
  }
  .price_c .menu_name {
    max-width: none;
  }
  .price_c .pricebox {
    justify-content: flex-end;
    min-width: 0;
    margin-top: 18px;
  }
}
@media screen and (max-width: 576px) {
  .price_c .catename {
    padding: 3px 10px;
    font-size: 12px;
  }
  .price_c .price_num {
    font-size: 22px;
  }
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {}