/* 引越し手続きチェックリストのスタイル */
.moving-checklist-container {
    max-width: 800px;
    margin: 0 auto;
}

.moving-checklist-section {
    border: 2px solid #efefef;
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 24px;
    margin-bottom: 24px;
}

.mc-title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin: 0 !important;
}

.mc-description {
    font-size: 14px;
    text-align: center;
    margin: 0 0 10px !important;
}

.mc-section {
    margin-bottom: 24px;
}

.mc-section-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 !important;
}

.mc-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mc-checkbox-item {
    display: flex;
    align-items: center;
}

.mc-checkbox-item input[type="checkbox"] {
    margin-right: 8px;
}

.mc-checkbox-item label {
    cursor: pointer;
    user-select: none;
}

.mc-result-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.mc-result-title {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-weight: 500;
}

.mc-checkmark {
    color: #4CAF50;
    margin-right: 8px;
}

.mc-result-description {
    color: #666;
    white-space: pre-line;
}

.mc-result-description ul, .mc-result-description ol {
    margin: 12px 0;
    padding-left: 20px;
}

.mc-result-description li {
    margin-bottom: 4px;
}

.mc-result-description strong {
    color: #333;
    font-weight: 600;
}

.mc-procedure-step {
    background-color: #f8f9fa;
    padding: 12px;
    margin: 12px 0;
    border-radius: 4px;
    border-left: 4px solid #4285f4;
}

.mc-procedure-step h4 {
    margin: 0 0 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mc-procedure-step ul, .mc-procedure-step ol {
    margin: 0;
    padding-left: 20px;
}

.mc-image-container {
    margin-top: 16px;
    text-align: center;
}

.mc-procedure-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.mc-button {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.mc-primary-button {
    background-color: #2f6db6;
    color: white;
}

.mc-primary-button:hover {
    background-color: #235fa5;
}

.mc-secondary-button {
    background-color: #757575;
    color: white;
}

.mc-secondary-button:hover {
    background-color: #616161;
}

.mc-results-section {
    margin-bottom: 24px;
}

.mc-results-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .moving-checklist-section {
        padding: 16px;
    }
}