@charset "UTF-8";
/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
/* ******************************
 *
 * Keyframes
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/* =========================================================
  S3C Table (Beige / SwiftUI-ish)
  - thead / th 対応
  - 7列でも崩れない
  - SPは横スクロール
========================================================= */
:root {
  --s3c-bg: 190 171 154; /* #beab9a */
  --s3c-text: 30 28 26;
  --s3c-white: 255 255 255;
  --s3c-surface: rgba(255,255,255,.22);
  --s3c-surface-2: rgba(255,255,255,.14);
  --s3c-line: rgba(0,0,0,.08);
  --s3c-line-2: rgba(255,255,255,.22);
}

/* WPのfigureをスクロールコンテナにして崩れ防止 */
figure.wp-block-table.s3cTable {
  margin: 22px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 2px; /* iOSで影が欠けるの防止 */
}

/* テーブル本体 */
figure.wp-block-table.s3cTable table {
  width: 100%;
  min-width: 980px; /* 7列なので最低幅を確保（SPは横スクロール） */
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  background: var(--s3c-surface);
  border: 1px solid var(--s3c-line-2);
  -webkit-box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
          box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08), 0 1px 0 rgba(255, 255, 255, 0.18) inset;
}

/* caption */
figure.wp-block-table.s3cTable caption {
  caption-side: top;
  text-align: left;
  padding: 0 2px 10px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(var(--s3c-text)/0.65);
}

/* 共通セル */
figure.wp-block-table.s3cTable th,
figure.wp-block-table.s3cTable td {
  padding: 14px 14px;
  vertical-align: middle;
  line-height: 1.6;
  border: 0;
  color: rgba(var(--s3c-text)/0.92);
  background: transparent;
}

/* ヘッダー行 */
figure.wp-block-table.s3cTable thead th {
  position: sticky; /* 横スクロールでも見出しが残る（任意） */
  top: 0;
  z-index: 1;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.32);
  color: rgba(var(--s3c-text)/0.92);
  border-bottom: 1px solid var(--s3c-line);
}

/* 行見出し（左端） */
figure.wp-block-table.s3cTable tbody th[scope=row] {
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.1);
}

/* データセル（価格）は右寄せ */
figure.wp-block-table.s3cTable tbody td {
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* 罫線 */
@media screen and (min-width: 320px) {
  figure.wp-block-table.s3cTable tbody tr th, figure.wp-block-table.s3cTable tbody tr td {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 600px) {
  figure.wp-block-table.s3cTable tbody tr th, figure.wp-block-table.s3cTable tbody tr td {
    font-size: 2rem;
  }
}

figure.wp-block-table.s3cTable tbody tr + tr th,
figure.wp-block-table.s3cTable tbody tr + tr td {
  border-top: 1px solid var(--s3c-line);
}

figure.wp-block-table.s3cTable thead th {
  background: #867463;
  color: #FFFFFF;
}
figure.wp-block-table.s3cTable thead th:first-child {
  border-radius: 12px 0 0 0;
}
figure.wp-block-table.s3cTable thead th:last-child {
  border-radius: 0 12px 0 0;
}

figure.wp-block-table.s3cTable th + th,
figure.wp-block-table.s3cTable th + td,
figure.wp-block-table.s3cTable td + td {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

/* 交互背景 */
figure.wp-block-table.s3cTable tbody tr:nth-child(even) th,
figure.wp-block-table.s3cTable tbody tr:nth-child(even) td {
  background: var(--s3c-surface-2);
}

/* hover（PC） */
@media (hover: hover) {
  figure.wp-block-table.s3cTable tbody tr:hover th,
  figure.wp-block-table.s3cTable tbody tr:hover td {
    background: rgba(255, 255, 255, 0.2);
  }
}
/* SPは余白を少し圧縮（ただし横スクロール前提） */
@media (max-width: 720px) {
  figure.wp-block-table.s3cTable th,
  figure.wp-block-table.s3cTable td {
    padding: 12px 12px;
    font-size: 13px;
  }
}
:root {
  --bg: 190 171 154; /* #beab9a */
  --panel: 255 255 255;
  --ink: 30 28 26;
  --stroke: 255 255 255 / .18;
  --stroke2: 0 0 0 / .08;
  --radius: 28px;
  --radiusTab: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,.10);
  --shadow2: 0 10px 30px rgba(0,0,0,.08);
}

.priceTabs {
  padding: 64px 0;
  color: rgb(var(--ink));
}

.priceTabs__shell {
  margin: 0 auto;
  position: relative;
}

.priceTabs__head {
  margin: 0 0 22px;
}

.priceTabs__kicker {
  margin: 0 0 10px;
  letter-spacing: 0.14em;
  font-size: 12px;
  opacity: 0.85;
}

.priceTabs__title {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.2;
}

.priceTabs__lead {
  margin: 0;
  opacity: 0.85;
  line-height: 1.8;
  font-size: 14px;
}

/* Tabs row */
.priceTabs__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* Individual tab */
.priceTabs__tab {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: rgb(var(--color-wh));
  outline: none;
  padding: 12px 16px;
  border-radius: 8px 8px 0 0;
  border: solid 1px rgb(var(--color-main));
  background: rgb(var(--color-wh));
  color: rgb(var(--color-main));
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  -webkit-transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: background 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease, -webkit-box-shadow 0.18s ease;
}
.priceTabs__tab.is-active {
  background: rgb(var(--color-main));
  color: rgb(var(--color-wh));
  position: relative;
}
.priceTabs__tab:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Panels container */
.priceTabs__panels {
  background: rgb(var(--color-main));
  color: rgb(var(--color-wh));
  border-radius: 0 0 24px 24px;
  -webkit-box-shadow: var(--shadow);
          box-shadow: var(--shadow);
  padding: 26px;
  position: relative;
  z-index: 1;
}

.priceTabs__panel {
  display: none;
}

.priceTabs__panel.is-active {
  display: block;
}

.priceTabs__panelHead {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
}

.priceTabs__panelTitle {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.priceTabs__panelDesc {
  margin: 0;
  opacity: 0.75;
  font-size: 13px;
  line-height: 1.7;
}

.priceTabs__note {
  margin: 14px 0 0;
  font-size: 12px;
  opacity: 0.7;
}

.priceTabs__footnotes {
  margin: 14px 0 0;
  padding-left: 1.2em;
  font-size: 12px;
  opacity: 0.75;
  line-height: 1.75;
}

/* Table */
.priceTable {
  margin: 0;
}

.priceTable__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(var(--stroke2));
  -webkit-box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
}

.priceTable__table thead th {
  background: rgba(190, 171, 154, 0.18);
  color: rgb(var(--ink));
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 14px;
  border-bottom: 1px solid rgba(var(--stroke2));
  text-align: left;
  vertical-align: bottom;
}

.priceTable__table tbody th,
.priceTable__table tbody td {
  padding: 14px 14px;
  border-bottom: 1px solid rgba(var(--stroke2));
  vertical-align: top;
  font-size: 13px;
  line-height: 1.6;
}

.priceTable__table tbody tr:last-child th,
.priceTable__table tbody tr:last-child td {
  border-bottom: none;
}

.priceTable__table tbody th {
  font-weight: 650;
  width: 22%;
}

.priceTable__table strong {
  font-weight: 750;
}

.priceTable__table small {
  display: inline-block;
  margin-top: 4px;
  opacity: 0.7;
  font-size: 11px;
  line-height: 1.45;
}

.priceTable__table--compact tbody th {
  width: 40%;
}

/* Responsive */
@media (max-width: 860px) {
  .priceTabs__panels {
    padding: 18px;
  }
  .priceTable__table {
    display: block;
    overflow-x: auto;
  }
  .priceTable__table thead th,
  .priceTable__table tbody th,
  .priceTable__table tbody td {
    white-space: nowrap;
  }
}/*# sourceMappingURL=table.css.map */