@charset "UTF-8";
/*
*
* product_module_addition.css
* 商品ページ共通モジュールを個別に上書き・追加するCSS
* 初期値はデフォルトのスタイルを当てていますので、値を変更してご使用下さい
*
*/
:root {
    --base-color: #c02;
    --hover-color: #333;
    --bg-color: #f2f2f2;
    --heading-color: #000;
}

/* ----- hs-pointcard ----- */
.hs-pointcard.hs-pointcard--castai-cloud .hs-pointcard__image::after {
    background: url(/castai/asset/images/top/features_icon_01.svg) no-repeat center center;
}
.hs-pointcard.hs-pointcard--castai-cube .hs-pointcard__image::after {
    background: url(/castai/asset/images/top/features_icon_02.svg) no-repeat center center;
}
/* ----- hs-feature-icon ----- */
.hs-feature-icon--castai-cloud::before {
    -webkit-mask-image: url(/castai/asset/images/top/features_icon_01.svg);
    mask-image: url(/castai/asset/images/top/features_icon_01.svg);
}
.hs-feature-icon--castai-cube::before {
    -webkit-mask-image: url(/castai/asset/images/top/features_icon_02.svg);
    mask-image: url(/castai/asset/images/top/features_icon_02.svg);
}
