/* ========================================
   高級チェックマークアイコンスタイル
   Font Awesomeの代わりに使用
======================================== */

/* チェックマークアイコンのベーススタイル */
.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

/* SVGチェックマークスタイル（グラデーション） */
.check-icon svg {
    width: 100%;
    height: 100%;
}

/* グラデーション定義 */
.check-gradient-1 {
    stop-color: var(--primary-color);
}

.check-gradient-2 {
    stop-color: var(--secondary-color);
}

/* アニメーション付きチェックマーク */
.check-icon.animated svg path {
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkmarkDraw 0.6s ease forwards;
}

@keyframes checkmarkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

/* ホバーエフェクト */
.check-icon:hover svg {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

/* リストアイテム内のチェックマーク調整 */
li .check-icon {
    vertical-align: middle;
    margin-top: -2px;
}

/* サービスリスト用のチェックマーク（より大きい） */
.service-features .check-icon,
.environment-features .check-icon,
.model-features .check-icon {
    width: 18px;
    height: 18px;
}

/* 円形背景付きチェックマーク（オプション） */
.check-icon.with-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    padding: 4px;
}

.check-icon.with-circle svg path {
    stroke: white;
    fill: none;
}

/* 円形背景付き（塗りつぶし版） */
.check-icon.filled-circle {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    position: relative;
}

.check-icon.filled-circle::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    font-weight: 700;
}

/* ミニマルスタイル */
.check-icon.minimal svg {
    opacity: 0.8;
}

.check-icon.minimal:hover svg {
    opacity: 1;
}

/* 強調版チェックマーク */
.check-icon.prominent {
    width: 22px;
    height: 22px;
    filter: drop-shadow(0 2px 4px rgba(74, 144, 226, 0.2));
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .check-icon {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }
    
    .service-features .check-icon,
    .environment-features .check-icon,
    .model-features .check-icon {
        width: 16px;
        height: 16px;
    }
}
