.test-range-a.pc{
    display: block;
}
.test-range-a.sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .test-range-a.pc {
        display: none;
    }
    .test-range-a.sp {
        display: block;
    }
}

.test-range-a.sp {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 8px;
}

.test-range-a.sp p.note {
    /* こちらも左寄せに合わせる場合は left にしてください（今回は中央のままにします） */
    text-align: left;
    font-size: 0.85em;
    color: #777;
    margin-bottom: 0;
}

/* --- 分野ごとのセクション見出し --- */
.test-range-a.sp .section-header {
    margin-top: 40px;
    margin-bottom: 15px;
    padding: 10px 15px;
    /* 背景色 #A8D591、文字色 黒(#000) */
    background-color: #A8D591; 
    color: #000; 
    font-weight: bold;
    border-radius: 4px;
    font-size: 1.1em;
}
.test-range-a.sp .section-header.mt-0 {
    margin-top: 0;
}

/* --- アコーディオン（開閉部分）のスタイル --- */
.test-range-a.sp details {
    margin-bottom: 12px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.3s;
}

.test-range-a.sp details[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-color: #ccc;
}

/* タップする見出し部分（大分野） */
.test-range-a.sp summary {
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafafa;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.test-range-a.sp summary:hover {
    background-color: #f0f0f0;
}

/* iOS等のデフォルト矢印を消す */
.test-range-a.sp summary::-webkit-details-marker {
    display: none;
}

/* 開閉アイコン */
.test-range-a.sp summary::after {
    content: '+';
    font-size: 1.4em;
    color: #888;
    font-weight: normal;
    margin-left: 10px;
}

.test-range-a.sp details[open] summary {
    border-bottom: 1px solid #eee;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.test-range-a.sp details[open] summary::after {
    content: '-';
}

/* --- 中身のコンテンツエリア --- */
.test-range-a.sp .content {
    padding: 15px 20px;
}

/* 中分野（行ごとの塊） */
.test-range-a.sp .field-row {
    margin-bottom: 15px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 10px;
}
.test-range-a.sp .field-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

/* 中分野タイトル */
.test-range-a.sp .mid-field-title {
    display: block;
    font-weight: bold;
    color: #4a7c4a; 
    margin-bottom: 4px;
    font-size: 0.95em;
}

/* 小分野リスト（インライン表示） */
.test-range-a.sp .small-field-list {
    font-size: 0.9em;
    color: #444;
    line-height: 1.8;
}

/* 小分野の区切り文字 */
.test-range-a.sp .separator {
    color: #ccc;
    margin: 0 6px;
}					