                    /* =========================
  共通幅設定
========================= */
                    .bee_content {
                      max-width: 1200px;
                      width: 90%;
                      margin: 0 auto;
                      padding: 0 30px;
                      box-sizing: border-box;
                    }

                    .price-section {
                      width: 100%;
                      margin-top: 40px;
                      margin-bottom: 40px;
                    }

                    /* =========================
  料金表 - テーブルレイアウト
========================= */

                    .price-container {
                      max-width: 1200px;
                      width: 90%;
                      margin: 0 auto;
                      border: 1px solid #e0e0e0;
                      padding: 30px;
                      border-radius: 8px;
                      background: #f6f0f0;
                      box-sizing: border-box;
                    }

                    .price-table {
                      width: 100%;
                      border-collapse: separate;
                      border-spacing: 0 8px;
                      margin: 20px 0;
                      table-layout: fixed;
                    }

                    .price-table thead th:nth-child(1),
                    .price-table tbody td:nth-child(1) {
                      width: 35%;
                    }

                    .price-table thead th:nth-child(2),
                    .price-table tbody td:nth-child(2) {
                      width: 35%;
                    }

                    .price-table thead th:nth-child(3),
                    .price-table tbody td:nth-child(3) {
                      width: 30%;
                    }

                    .price-table thead th {
                      background: transparent;
                      padding: 14px 18px;
                      font-size: 16px;
                      font-weight: 700;
                      text-align: left;
                      border: none;
                      color: #213E3C;
                    }

                    .price-table thead th:first-child {
                      border-radius: 4px 0 0 4px;
                    }

                    .price-table thead th:last-child {
                      border-radius: 0 4px 4px 0;
                    }

                    .price-table tbody tr {
                      background: #ffffff;
                    }

                    .price-table tbody tr:nth-child(even) {
                      background: #f6f0f0;
                    }

                    .price-table tbody td {
                      padding: 14px 18px;
                      font-size: 16px;
                      line-height: 1.7;
                      border: none;
                      color: #213E3C;
                    }

                    .price-table tbody tr td:first-child {
                      border-radius: 4px 0 0 4px;
                    }

                    .price-table tbody tr td:last-child {
                      border-radius: 0 4px 4px 0;
                    }

                    /* =========================
  見出し - bee専用
========================= */
                    .bee_title {
                      margin: 40px 0;
                      font-size: 20px;
                      font-weight: 700;
                      color: #213E3C;
                    }

                    .service-title {
                      max-width: 95%;
                      margin: 70px 0 24px;
                      font-size: 35px;
                      font-weight: 700;
                    }

                    /* =========================
  media セクション共通
========================= */
                    .media {
                      margin: 40px 0;
                    }

                    .media-text {
                      font-size: 16px;
                      line-height: 1.8;
                      margin: 0 0 18px;
                      color: #213e3c;
                    }

                    /* =========================
  図＋文章（横並びレイアウト）
========================= */
                    .media-grid {
                      display: grid;
                      grid-template-columns: 400px 1fr;
                      gap: 40px;
                      align-items: start;
                      margin: 40px 0;
                    }

                    .media-img img {
                      width: 100%;
                      height: auto;
                      display: block;
                    }

                    .media-content {
                      min-width: 0;
                      padding-top: 8px;
                    }

                    /* =========================
  1300px以下のレイアウト調整
========================= */
                    @media screen and (max-width: 1300px) {
                      .media-grid {
                        grid-template-columns: 300px 1fr;
                      }
                    }

                    /* =========================
  SP
========================= */
                    @media screen and (max-width: 768px) {
                      .price-table {
                        border-spacing: 0 6px;
                      }

                      .price-table thead th,
                      .price-table tbody td {
                        padding: 10px 12px;
                        font-size: 14px;
                      }

                      .media-grid {
                        grid-template-columns: 1fr;
                        gap: 16px;
                      }

                      .media-text {
                        font-size: 14px;
                      }

                      .bee_title {
                        font-size: 18px;
                        margin: 28px 0 20px;
                      }

                      .service-title {
                        font-size: 32px;
                      }

                    }