/* ==========================
   price Page Styles
   ========================== */

/* 共通 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fafafa;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
}

/* HERO (タイトル部分) */
.price-hero {
    background: #0a5eb7;
    color: #fff;
    margin-top: 70px;
    padding: 60px 0;
    text-align: center;
}

.price-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

/* PDFボタン */
.btn-pdf {
    display: inline-block;
    padding: 12px 20px;
    background: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
    font-size: 1rem;
    transition: 0.3s;
}

.btn-pdf:hover {
    background: #004c99;
}

/* 見出し */
.price-intro h2,
.price-table-section h2,
.contact-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

/* プレースホルダー */
.price-table-placeholder {
    background: #eee;
    padding: 30px;
    border-radius: 6px;
    text-align: center;
    margin-top: 20px;
}

/* 電話ボタン */
.btn-call {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #d9534f;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-call:hover {
    background: #c9302c;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .price-hero h1 {
        font-size: 1.8rem;
    }

    .container {
        padding: 30px 0;
    }
}


/* ============================
   料金表（メイン）
============================ */
.price-accordion {
  width: 100%;
  margin-top: 20px;
}

.price-item {
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
}

.price-toggle {
  width: 100%;
  padding: 14px;
  background: #5480ff;
  color: #fff;
  border: none;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  position: relative;
}

.price-toggle::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 18px;
}

.price-item.open .price-toggle::after {
  content: "-";
}

.price-content {
  display: none;
  background: #fff;
  padding: 14px;
}

/* 表 */
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.price-table td {
  border-bottom: 1px solid #eee;
  padding: 8px 5px;
}

.price-table tr td:first-child {
  font-weight: bold;
  width: 68%;
}

.sub-label {
  font-size: 15px;
  font-weight: bold;
  background: #eef3ff;
  border-left: 4px solid #4a6eff;
  padding: 6px 10px;
  margin: 18px 0 8px;
  border-radius: 3px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}

.price-table td {
  padding: 6px 8px;
  border-bottom: 1px solid #e6e6e6;
  font-size: 14px;
}

.price-table td:last-child {
  text-align: right;
  font-weight: 600;
}






