﻿@charset "UTF-8";

/* このファイルに記載することでCSSを上書きできます
html {
  color: #F00;
}
*/

/* =============================================================
   追加カスタマイズ（変更禁止ルール対応）
============================================================= */

/* ① サイト全体のテーマ色（水色部分）を「黄緑色」に変更 */
:root {
  --color-primary: #a3cf5e !important;
  --color-blue: #a3cf5e !important;
  --color-warning: #f5f5f5 !important; /* 注意書きの背景色をグレーに */
}

/* ② NP後払いのテキストリンクに下線を引く */
p a[href*="netprotections"], 
p a[href*="np-atobarai"] {
    text-decoration: underline !important;
}

