   /* 全体のコンテナ */
    .asmkc-schema-container { background: transparent; }

    /* メインスイッチエリア */
    .asmkc-main-switch {
      padding: 15px 20px;
      background: #fff;
      border: 1px solid #ccd0d4;
      border-radius: 4px;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
      flex-wrap: wrap; /* スマホ対応 */
      gap: 10px;
    }
    .asmkc-main-switch label {
      font-size: 14px;
      font-weight: bold;
      cursor: pointer;
      color: #1d2327;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .asmkc-main-switch input[type="checkbox"] { transform: scale(1.2); }

    /* ★診断ボタンエリア */
    .asmkc-scan-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* ★追加：状態ボックス */
    .asmkc-status-box {
      background: #fff;
      border: 1px solid #ccd0d4;
      border-radius: 4px;
      margin-bottom: 20px;
      padding: 15px 20px;
      box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    }
    .asmkc-status-box h3 {
      margin: 0 0 10px 0;
      font-size: 14px;
    }
    .asmkc-status-box ul {
      margin: 0;
      padding-left: 18px;
    }
    .asmkc-status-box li {
      margin: 6px 0;
      font-size: 13px;
      line-height: 1.5;
    }
    .asmkc-status-legend {
      margin-top: 10px;
      font-size: 12px;
      color: #666;
      background: #f9f9f9;
      padding: 10px;
      border-radius: 4px;
      border: 1px solid #eee;
    }

    /* リスト */
    .asmkc-item-list {
      display: flex;
      flex-direction: column;
      gap: 10px; 
    }
    /* detailsタグのスタイルリセットと整形 */
    .asmkc-item-list details, 
    #asmkc-post-scan-result-area details {
      background: #fff;
      margin: 0 !important;
      padding: 0 !important;
      border: 1px solid #ccd0d4 !important;
      border-radius: 4px !important;
      transition: all 0.2s ease;
      box-shadow: 0 1px 1px rgba(0,0,0,0.04);
    }
    .asmkc-item-list details:hover,
    #asmkc-post-scan-result-area details:hover {
      border-color: #999 !important;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    .asmkc-item-list details[open],
    #asmkc-post-scan-result-area details[open] {
      border: 1px solid #0073aa !important;
      box-shadow: 0 4px 10px rgba(0,115,170,0.1);
    }
    
    /* Summary (ヘッダー) */
    .asmkc-item-list details > summary,
    #asmkc-post-scan-result-area details > summary {
      padding: 15px 20px !important;
      cursor: pointer;
      font-weight: 600;
      color: #444;
      background: #fff;
      display: flex;
      align-items: center;
      outline: none;
      list-style: none;
      border-radius: 4px;
      margin: 0 !important;
    }
    .asmkc-item-list details > summary::-webkit-details-marker,
    #asmkc-post-scan-result-area details > summary::-webkit-details-marker { display: none; }

    .asmkc-item-list details[open] > summary,
    #asmkc-post-scan-result-area details[open] > summary {
      background: #f0f6fc;
      border-bottom: 1px solid #c5d9ed !important;
      color: #0073aa;
      border-radius: 4px 4px 0 0;
    }

    /* アイコン設定 */
    .asmkc-item-list details > summary::before {
      font-family: "dashicons";
      margin-right: 12px;
      font-size: 20px;
      color: #a0a5aa;
      font-weight: normal;
      width: 20px;
      text-align: center;
    }
    .asmkc-item-list details[open] > summary::before { color: #0073aa; }

    /* 各セクション固有アイコン */
    #asmkc-article-fields summary::before { content: "\f109"; }
    #asmkc-service-fields summary::before { content: "\f513"; }
    #asmkc-product-fields summary::before { content: "\f174"; }
    #asmkc-faq-fields summary::before     { content: "\f348"; }
    #asmkc-person-fields summary::before  { content: "\f110"; }
    #asmkc-event-fields summary::before   { content: "\f145"; }
    #asmkc-job-fields summary::before     { content: "\f337"; }
    #asmkc-video-fields summary::before   { content: "\f126"; }

    /* 矢印アイコン */
    .asmkc-item-list details > summary::after,
    #asmkc-post-scan-result-area details > summary::after {
      content: "\f140";
      font-family: "dashicons";
      margin-left: auto;
      color: #ccc;
    }
    .asmkc-item-list details[open] > summary::after,
    #asmkc-post-scan-result-area details[open] > summary::after {
      content: "\f142";
      color: #0073aa;
    }

    /* コンテンツエリア */
    .asmkc-item-list details > div,
    #asmkc-post-scan-result-area details > div {
      padding: 20px;
      background: #fff;
      border-radius: 0 0 4px 4px;
      margin-top: 0 !important;
    }
    
    /* 入力フォーム共通 */
    .asmkc-item-list label { font-weight: 600; color: #3c434a; display: block; margin-bottom: 6px; font-size: 13px; }
    .asmkc-item-list input[type="text"], .asmkc-item-list input[type="url"], .asmkc-item-list input[type="number"],
    .asmkc-item-list input[type="date"], .asmkc-item-list input[type="datetime-local"],
    .asmkc-item-list textarea, .asmkc-item-list select {
      border: 1px solid #8c8f94; border-radius: 4px; padding: 8px 12px; font-size: 14px; width: 100%; box-sizing: border-box; background-color: #fff;
    }
    .asmkc-item-list input:focus, .asmkc-item-list textarea:focus, .asmkc-item-list select:focus {
      border-color: #0073aa; box-shadow: 0 0 0 1px #0073aa; outline: none;
    }
    .asmkc-item-list p { margin-bottom: 15px; }
    .asmkc-item-list small { color: #646970; font-size: 12px; margin-top: 5px; display: block; line-height: 1.4; }
    .asmkc-item-list hr { border: 0; border-top: 1px solid #f0f0f1; margin: 20px 0; }

    /* 診断結果表示エリア */
    #asmkc-post-scan-result-area {
        display: none;
        margin-bottom: 20px;
        padding: 15px;
        border: 1px solid #ccc;
        background: #f9f9f9;
        border-radius: 4px;
    }
   
        .asmkc-pro-badge { background: #333; color: #fff; font-size: 9px; padding: 1px 4px; border-radius: 3px; margin-left: 5px; }
        .asmkc-modal-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.7); z-index: 99999; align-items: center; justify-content: center; backdrop-filter: blur(2px); }
        .asmkc-modal-box { background: #fff; width: 90%; max-width: 450px; border-radius: 12px; box-shadow: 0 15px 30px rgba(0,0,0,0.4); overflow: hidden; animation: asmkcPop 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
        .asmkc-modal-header { padding: 20px 20px 15px; color: #fff; text-align: center; }
        .asmkc-modal-header h3 { margin: 0; font-size: 20px; color: #fff; display: flex; align-items: center; justify-content: center; gap: 8px; }
        .asmkc-modal-header .subtitle { margin: 5px 0 0; font-size: 11px; opacity: 0.9; letter-spacing: 0.5px; }
        .service-bg { background: linear-gradient(135deg, #00b09b, #96c93d); }
        .product-bg { background: linear-gradient(135deg, #f093fb, #f5576c); }
        .event-bg   { background: linear-gradient(135deg, #4facfe, #00f2fe); }
        .job-bg     { background: linear-gradient(135deg, #43e97b, #38f9d7); color:#333 !important; } .job-bg h3, .job-bg p { color:#005c45 !important; }
        .video-bg   { background: linear-gradient(135deg, #fa709a, #fee140); }
        .asmkc-modal-content { padding: 25px; }
        .main-copy { font-size: 16px; font-weight: bold; color: #333; line-height: 1.4; margin-bottom: 15px; border-bottom: 2px solid #f0f0f1; padding-bottom: 10px; }
        .asmkc-modal-content p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 15px; }
        .asmkc-check-list { background: #f9f9fa; padding: 15px; border-radius: 8px; border-left: 4px solid #ddd; }
        .asmkc-check-list ul { margin: 0; padding: 0; list-style: none; }
        .asmkc-check-list li { margin-bottom: 8px; font-size: 13px; font-weight: bold; color: #444; display: flex; align-items: flex-start; }
        .asmkc-check-list .check { color: #2271b1; margin-right: 8px; font-size: 14px; }
        .asmkc-close-modal { width: 100%; border-radius: 0; border: none; padding: 15px; background: #f0f0f1; color: #666; font-weight: bold; cursor: pointer; transition: background 0.2s; }
        .asmkc-close-modal:hover { background: #e5e5e5; color: #333; }
        @keyframes asmkcPop { 0% { opacity: 0; transform: scale(0.8); } 100% { opacity: 1; transform: scale(1); } }
   