
/* =====================================================
   PRICE SECTION (MONOCHROME, CLEAN)
   ===================================================== */

.price-section {
  text-align: center;
  padding: 80px 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
}

/* ご利用料金 */
.price-ja {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 60px;
  color: #111;
}

/* Optional English label */
.price-en {
  color: #111;
  font-weight: 700;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

/* Cards layout */
.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Card */
.price-card {
  background: #ffffff;
  box-shadow: 0 8px 24px rgba(20, 20, 20, 0.08);
}

/* プラン名 */
.price-header {
  background: #f2f2f2;
  color: #111;
  font-weight: 700;
  padding: 24px 10px;
  font-size: 1.25rem;
}

/* Body */
.price-body {
  padding: 32px 20px 40px;
}

/* Optional note */
.price-note {
  color: #d4a200;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Description */
.price-desc {
  margin-bottom: 20px;
  font-weight: 600;
  color: #111;
}

/* Price amount */
.price-amount {
  font-size: 2.4rem;
  font-weight: 700;
  color: #111;
}

.price-amount span {
  font-size: 1rem;
  font-weight: 500;
  margin-left: 4px;
  color: #111;
}

/* Mobile */
@media (max-width: 768px) {
  .price-cards {
    grid-template-columns: 1fr;
  }

  .price-ja {
    font-size: 1.8rem;
  }
}


/* =====================================================
   PLAN TABLE (MONOCHROME, CLEAN)
   ===================================================== */

.plan-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
}

/* Cells */
.plan-table th,
.plan-table td {
border-color: #777;
  border: 1px solid #111;
  padding: 16px;
  text-align: center;
  vertical-align: middle;

  word-break: break-word;
  white-space: normal;

  color: #111;
}

/* Header row */
.plan-table thead th {
  background: #888888;
  color: #111;
}

/* Feature column (会員限定〜) */
.plan-table tbody th {
  background: #888888;
  color: #111;
  text-align: left;
  font-weight: 600;
}

/* Column sizing */
.feature-col {
  background: #ffffff;
  width: 28%;
}

.plan-col {
  width: 24%;
}

/* Icons */
.ok {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid #111;
  border-radius: 50%;
}

.dash {
  font-size: 1.4rem;
  color: #111;
}

/* Mobile table */
@media (max-width: 768px) {
  .plan-table {
    font-size: 0.85rem;
  }

  .plan-table th,
  .plan-table td {
    padding: 10px 6px;
border-color: #777;
  }
}


.plan-table thead th,
.plan-table tbody th {
  background: #888888;
  color: #ffffff;
}
