@charset "UTF-8";

/* ... (existing styles) ... */

/* 取扱業務一覧のトグルスタイル */
.service-list-toggle {
    margin-top: 30px;
}

.service-details {
    background: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
}

.service-summary {
    padding: 15px;
    font-weight: bold;
    cursor: pointer;
    list-style: none; /* デフォルトの三角を消す */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f0f0f0;
    color: #333;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.service-summary:hover {
    background: #e0e0e0;
}

.service-summary::-webkit-details-marker {
    display: none; /* Chrome/Safari用 */
}

.toggle-icon {
    transition: transform 0.3s;
    font-size: 0.8rem;
    color: #666;
}

.service-details[open] .toggle-icon {
    transform: rotate(180deg);
}

.service-list-content {
    padding: 15px 20px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    font-size: 0.85rem;
    color: #666;
    border-top: 1px solid #eee;
}

.service-list-content li {
    list-style-type: disc;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .service-list-content {
        grid-template-columns: 1fr; /* モバイルは1列 */
        gap: 8px;
    }
}


