@charset "UTF-8";

/* =========================================================
   料金表ページ専用スタイル
   ========================================================= */

/* 取り付け基本料金（3プラン） */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.plan {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 38px 30px 34px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.plan:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.plan--featured { border-color: transparent; background: var(--grad-blue); color: #fff; box-shadow: var(--shadow-lg); }
.plan__ribbon {
  position: absolute; top: 16px; right: -34px;
  transform: rotate(45deg);
  background: var(--aqua); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 4px 40px;
}
.plan__size { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; margin-bottom: 6px; }
.plan__cond { font-size: 0.82rem; opacity: 0.8; margin-bottom: 22px; }
.plan--featured .plan__cond { color: rgba(255,255,255,0.85); }
.plan__price {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  color: var(--blue-600);
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.plan--featured .plan__price { color: #fff; }
.plan__price .unit { font-family: var(--font-jp); font-size: 1.1rem; font-weight: 700; }
.plan__tax { font-size: 0.78rem; margin-top: 10px; opacity: 0.75; }
.plan--featured .plan__tax { color: rgba(255,255,255,0.85); }

.plans-note {
  margin-top: 22px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* 料金テーブル */
.ptable-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.ptable { width: 100%; border-collapse: collapse; background: #fff; min-width: 460px; }
.ptable caption {
  text-align: left;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  padding: 22px 24px 0;
  color: var(--blue-800);
}
.ptable th, .ptable td { text-align: left; padding: 16px 24px; border-bottom: 1px solid var(--line); }
.ptable thead th {
  background: var(--sky-50);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--blue-700);
}
.ptable tbody tr:last-child td { border-bottom: none; }
.ptable tbody tr:hover { background: var(--sky-50); }
.ptable .item { font-weight: 500; }
.ptable .price {
  text-align: right;
  white-space: nowrap;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--blue-700);
}
.ptable .price .yen { font-family: var(--font-jp); font-size: 0.82rem; color: var(--ink-soft); margin-left: 2px; }
.ptable .price--ask { font-family: var(--font-jp); font-size: 0.92rem; color: var(--ink-soft); }
.ptable .tax-badge {
  display: inline-block;
  font-family: var(--font-jp);
  font-size: 0.66rem;
  color: var(--ink-soft);
  margin-left: 8px;
}

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

/* 注意書き */
.notice {
  background: var(--sky-50);
  border: 1px dashed var(--blue-400);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.notice__title { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; margin-bottom: 12px; color: var(--blue-800); }
.notice ul { display: flex; flex-direction: column; gap: 8px; }
.notice li { position: relative; padding-left: 20px; font-size: 0.92rem; color: var(--ink-soft); }
.notice li::before { content: ""; position: absolute; left: 0; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--aqua); }

@media (max-width: 860px) {
  .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .price-grid { grid-template-columns: 1fr; }
}
