@charset "UTF-8";
/* =========================
  Price Grid（統合版）
  - ネスト崩れ/重複除去
  - post_content の相殺対策込み
========================= */
/* 1) ベース（コンポーネント） */
.p-priceGrid {
  margin: 24px 0;
}
.p-priceGrid__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.p-priceGrid__item {
  background: #fff;
  border-radius: 12px;
}
.p-priceGrid__media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.0666666667);
  margin-bottom: 0.75rem;
}
.p-priceGrid__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-priceGrid {
  /* タイトル（h3でも崩れないようmargin-topも明示） */
}
.p-priceGrid__title {
  font-weight: 600;
  margin: 0 0 4px;
  line-height: 1.4;
}
.p-priceGrid {
  /* 価格行 */
}
.p-priceGrid__price {
  margin: 0;
  font-weight: 700;
  color: #111;
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1.2;
}
.p-priceGrid {
  /* 金額 */
}
.p-priceGrid__price_en {
  font-size: 1.4rem;
  font-weight: 900;
  color: red;
  display: block;
}
.p-priceGrid__price_en::after {
  content: "円（税込）";
  margin-left: 4px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.p-priceGrid {
  /* 画像右上バッジ（1人前など） */
}
.p-priceGrid__price_unit {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 0.5rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  border-radius: 0 0 0 0.5rem;
}
.p-priceGrid {
  /* Accordion（details/summary） */
}
.p-priceGrid__acc {
  margin: 8px 0 0;
  text-align: left;
  font-size: 0.7rem;
  border-top: 1px solid #ccc;
  padding-top: 0.5rem;
}
.p-priceGrid__accBtn {
  list-style: none;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 10px;
  background: #f6f6f6;
  font-size: 12px;
  font-weight: 600;
  color: #111;
  margin: 0;
}
.p-priceGrid__accBtn::-webkit-details-marker {
  display: none;
}
.p-priceGrid__accBtn::after {
  content: "+";
  font-size: 14px;
  opacity: 0.8;
  line-height: normal;
}
.p-priceGrid__accBtn:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.p-priceGrid__note {
  opacity: 0.7;
  line-height: normal;
}
.p-priceGrid__acc[open] .p-priceGrid__accBtn::after {
  content: "−";
}
.p-priceGrid__acc[open] .p-priceGrid__note {
  padding: 8px 10px 0;
}

/* 2) PC：3カラム（現状維持） */
@media (min-width: 768px) {
  .p-priceGrid__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}
/* 3) TCD（design-plus）相殺対策：post_content 内だけ強制上書き */
.post_content .p-priceGrid .p-priceGrid__title {
  margin-top: 0;
  font-size: 16px;
  margin-bottom: 0;
}
.post_content .p-priceGrid .p-priceGrid__price {
  margin: 0;
  line-height: normal;
}
.post_content .p-priceGrid .p-priceGrid__acc {
  margin: 8px 0 0;
}
.post_content .p-priceGrid .p-priceGrid__accBtn {
  margin: 0;
}

/* ===============================
   固定ページ デフォルトテーブル
   SPファースト
================================ */
.page table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  margin-bottom: 24px;
}
.page td,
.page th {
  padding: 12px 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  vertical-align: top;
  word-break: break-word;
}
.page {
  /* ===============================
     SP（デフォルト）縦積み
  ============================== */
}
.page table,
.page tbody,
.page tr,
.page td,
.page th {
  display: block;
  width: 100%;
}
.page tr {
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.page td,
.page th {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.page tr > td:first-child,
.page tr > th:first-child {
  background: rgba(0, 183, 194, 0.1);
  font-weight: 600;
}
.page {
  /* ===============================
     TAB以上：通常テーブルへ戻す
  ============================== */
}
@media (max-width: 768px) {
  .page table {
    display: table;
  }
  .page tbody {
    display: table-row-group;
  }
  .page tr {
    display: table-row;
    border: none;
    border-radius: 0;
    margin: 0;
  }
  .page td,
  .page th {
    display: table-cell;
    border: 1px solid rgba(0, 0, 0, 0.12);
  }
  .page tr > td:first-child,
  .page tr > th:first-child {
    width: 32%;
  }
}
.page {
  /* ===============================
     PC：左列幅だけ微調整
  ============================== */
}
@media (max-width: 1024px) {
  .page tr > td:first-child,
  .page tr > th:first-child {
    width: 28%;
  }
}
@media (max-width: 412px) {
  .page .post_content .s_table, .page .post_content .wp-block-table {
    white-space: break-spaces;
  }
}

.post_content h2 {
  text-align: left;
  font-size: medium;
  font-size: xx-large;
}
.post_content h2 span {
  display: block;
  font-family: "Londrina Solid", cursive;
  font-size: larger;
  color: #0077B6;
}/*# sourceMappingURL=price.css.map */