/*------------------------------------------
料金表
--------------------------------------------*/


.price-table-wrapper {
  max-width: 960px;
  margin: 40px auto;
  padding: 0 16px;
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.price-table thead {
  background-color: #005bac;
  color: white;
}

.price-table th,
.price-table td {
  padding: 20px;
  text-align: left;
  border-bottom: 1px solid #ddd;
  font-size: 1rem;
}

.price-table th {
  font-weight: bold;
}

.center-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 14px;
    font-size: 0.95rem;
  }

  .price-table-wrapper {
    padding: 0 12px;
    margin: 24px auto;
  }
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.price-table thead {
  background-color: #005bac;
  color: white;
}

.price-table th,
.price-table td {
  padding: 20px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 1px solid #ccc; /* ボーダー強調 */
}

.price-table tbody tr:nth-child(even) {
  background-color: #f8f9fa; /* ゼブラ背景 */
}

.price-table tbody tr:hover {
  background-color: #eef3f8; /* マウスホバーで強調（任意） */
}

.price-table th {
  font-weight: bold;
}

.center-text {
  text-align: center;
  margin-top: 30px;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.price-link {
  color: #005bac;
  text-decoration: underline;
  font-weight: bold;
}

.price-link:hover {
  color: #003f7d;
  text-decoration: none;
}



@media (max-width: 768px) {
  .price-table th,
  .price-table td {
    padding: 14px;
    font-size: 0.95rem;
  }

  .price-table-wrapper {
    padding: 0 12px;
    margin: 24px auto;
  }
}



.cta-box {
  background-color: #005bac;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  border-radius: 12px;
}

.cta-box h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.cta-box .btn {
  background: #ffc107;
  color: #000;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  display: inline-block;
  font-size: 1rem;
}

.cta-box i {
  margin-right: 8px;
}
.cta-box {
  background-color: #005bac;
  color: white;
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
  margin-bottom: 80px; /* ← ここが追加された余白 */
  border-radius: 12px;
}