@charset "UTF-8";

h3.title_price {
display: block;
	background-color: #999;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	padding: 4px 8px;
}

h3.title_price span {
margin-left: 1em;
font-weight: 400;
font-size: 90%;
}
@media only screen and (max-width: 640px) {
h3.title_price span {
margin-left: 0;
display: block;
}
}


.price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.price-menu {
  display: flex;
  flex-direction: column;
}

.item_price {
  display: grid;
  line-height: 1.6;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 0;
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px dotted #CCC;
}
.item_price:last-child {
  margin-bottom: 0;
}

.title_price {
  grid-column: 1;
  font-weight: bold;
}

.price {
  grid-column: 2;
  justify-self: end;
  white-space: nowrap;
  font-weight: bold;
}

.desc {
  grid-column: 1 / -1;
  color: #555;
line-height: 1.3;
  font-size: 0.95em;
}

.price-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* スマホ対応 */
@media only screen and (max-width: 640px) {

  .price-grid {
    grid-template-columns: 1fr;
	gap: 8px;
  }
  .price-image {
    order: 2;
  }
  .price-menu {
    order: 1;
  }
}

p.price_kaisetsu {
padding-bottom: 4px;
  border-bottom: 1px dotted #CCC;
}



table.credit {
margin: 0;
padding: 0;
background: none;
border: none;
	width: 100%;
	table-layout: fixed;
}

table.credit tr {
margin: 0;
padding: 0;
background: none;
border: none;
}

table.credit th,
table.credit td {
margin: 0;
padding: 0;
background: none;
border: none;
}

table.credit td {
	border-collapse: separate;
	border: none;
	padding: 0 4px;
}
table.credit td img {
	display: block;
	max-width: 100%;
}