/* サービスグリッドレイアウト */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* サービスカードスタイル */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* アイコンスタイル */
.icon-wrapper {
    margin-bottom: 1rem;
}

.circle-icon {
    max-width: 100%;
    transform: scale(0.7);
    transform-origin: top center;
}

/* サービス見出し */
.service-card h3 {
    text-align: center;
    color: #0f2350;
    font-size: 1.0rem;
    margin: 1rem 0;
    font-weight: bold;
}

/* サービス説明文 */
.service-description {
    font-size: 14px;
    text-align: left;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333333;
}

/* サービス画像 */
.service-image {
    width: 100%;
    margin-top: auto;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .services-section {
        padding: 2rem 0;
    }

    .services-section h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .service-description {
        font-size: 0.95rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}