@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: 30px;
  padding: 34px 0;
  border-bottom: 1px dotted #999;
  width: 100%;
}
.price_c .menu_name{
    max-width: 700px;
}


.price_c .catenamebox{
  gap: 8px;
  justify-content: flex-start;
  margin-bottom: 12px;
}

.price_c .catename{
  background: #eee9cf;
  border-radius: 999px;
  padding: 3px 13px;
  color: #333;
  line-height: 1;
  font-size: 13px;
  letter-spacing: .06em;
}

.price_c .title{
  margin-bottom: 4px;
  line-height: 1.7;
  letter-spacing: .08em;
}

.price_c .note{
  line-height: 1.7;
  letter-spacing: .06em;
  color: #333;
}

.price_c .pricebox{
  align-items: baseline;
  justify-content: flex-end;
  flex-wrap: nowrap;
  white-space: nowrap;
  min-width: 160px;
}

.price_c .price_num{
  color: #9ABBA6;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: .05em;
  line-height: 1;
  margin-right: 8px;
}

.price_c .price_tax{
  color: #333;
  line-height: 1;
  letter-spacing: .04em;
}

@media screen and (max-width: 768px){
  .price_c .price_item{
    display: block;
    padding: 28px 0;
  }

  .price_c .pricebox{
    justify-content: flex-start;
    margin-top: 18px;
  }
}

@media screen and (max-width: 576px){
  .price_c .catename{
    font-size: 12px;
    padding: 3px 10px;
  }

  .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){
}

