/* Cost Comparison Block Styles */
.it-cost-comparison-block {
    font-family: 'Noto Sans JP', sans-serif;
    color: #0F1C2E;
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #f9f9f9;
}

.it-cc-header {
    text-align: center;
    margin-bottom: 50px;
}

.it-cc-header h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    font-weight: 400;
    margin: 0 0 15px 0;
    color: #0F1C2E;
    line-height: 1.2;
}

.it-cc-header p {
    font-size: 0.9rem;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #333;
    font-weight: 500;
}

/* Comparison Row */
.it-cc-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: stretch;
}

/* Image Placeholder */
.it-cc-image-placeholder {
    flex: 0 0 240px;
    background-color: #e0e0e0;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    position: relative;
    overflow: hidden;
}

.it-cc-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
}

/* Text Box */
.it-cc-content-box {
    flex: 1;
    border: 2px solid #0F1C2E;
    padding: 30px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.it-cc-content-box h3 {
    margin: 0 0 20px 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F1C2E;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.it-cc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.it-cc-list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 1.5em;
    text-indent: -1.5em;
}

/* Responsive */
@media (max-width: 768px) {
    .it-cc-header h2 {
        font-size: 1.8rem;
    }

    .it-cc-row {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }

    .it-cc-image-placeholder {
        flex: none;
        width: 100%;
        height: 200px;
        min-height: auto;
        border-bottom: none;
    }

    .it-cc-content-box {
        border-top: none;
    }
}