@charset "UTF-8";

    :root { --card-radius: 22px; }
    body {
      font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Noto Sans JP", sans-serif;
      background: #fafafa;
    }

        /* ベースフォント設定 */
    body {
      font-family: 'Noto Sans JP', sans-serif;
      color: #333;
    }
    


    /* ロゴ設定 */
    .uk-logo {
      font-size: 1.8rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-text-sub {
      font-size: 0.75rem;
      font-weight: 400;
      color: #666;
      line-height: 1.2;
      display: block;
    }

    .page-wrap { max-width: 1140px; margin: 36px auto; padding: 0 16px; }

    .hero {
      margin-bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 12px;
    }
    .hero h1 { margin: 0; font-size: 42px; }
    .hero .sub { color: #666; margin-top: 6px; }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(240px, 1fr));
      gap: 16px;
    }
    @media (max-width: 1100px) {
      .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 640px) {
      .pricing-grid { grid-template-columns: 1fr; }
    }

    .plan-card {
      background: #fff;
      border-radius: var(--card-radius);
      border: 1px solid rgba(0,0,0,.08);
      box-shadow: 0 10px 28px rgba(0,0,0,.06);
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-height: 520px;
    }

    .plan-card .head {
      padding: 18px 18px 12px;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
    }

    .plan-title {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
    }

    .badge {
      font-size: 12px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(0,0,0,.06);
      white-space: nowrap;
    }

    .badge.popular {
      background: rgba(255,193,7,.25);
      border: 1px solid rgba(255,193,7,.7);
    }

    .plan-body {
      padding: 0 18px 18px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .plan-desc {
      margin: 4px 0 14px;
      color: #555;
      min-height: 48px;
    }

    .price {
      display: flex;
      align-items: baseline;
      gap: 10px;
      margin: 8px 0 10px;
    }

    .price .amount {
      font-size: 36px;
      font-weight: 800;
    }

    .cta .uk-button {
      border-radius: 999px;
      font-weight: 700;
    }

    .divider {
      height: 1px;
      background: rgba(0,0,0,.08);
      margin: 16px 0;
    }

    .features h4 {
      font-size: 13px;
      margin-bottom: 6px;
      font-weight: 800;
      color: #444;
    }

    .features ul {
      padding-left: 1.1rem;
      margin: 0;
    }

    .features li {
      margin: 6px 0;
    }

    .plan-foot {
      padding: 14px 18px;
      background: rgba(0,0,0,.02);
      border-top: 1px solid rgba(0,0,0,.06);
      font-size: 12.5px;
      color: #666;
    }

    .highlight {
      border: 2px solid rgba(255,193,7,.9);
      box-shadow: 0 16px 40px rgba(255,193,7,.18);
      transform: translateY(-4px);
    }

    /* Off-canvasメニューのダーク対応 */
    [data-theme='dark'] .uk-offcanvas-bar {
        background: #1e1e1e;
    }

    .uk-table th {
    font-weight: 600;
    color: #999;
    }

  .notice {
      color: #666;
      background: #fefedf;
      font-size: 14px;
      white-space: nowrap;
      border: 1px solid #dfdf44;
      border-radius: 4px;
      text-align: center;
      margin: 10px;
      padding: 4px;
      width: 90%;
      max-width: 90%;
  }