@charset "utf-8";

/* ------------------------------
   CssTemplate: default.css 
   ------------------------------
   Color Setting
   Custom Style
------------------------------ */

/*==================================================================
   Color Setting
==================================================================*/

/* サイトカラーの変更 */
:root {
   --site-color1 :#f6738c; 
   --site-color2 :#f6738c;
   --sub-color   :#01aab2;
   --form-color  :#f7f7f7;
   --pink-color  :#f6738c;
   --new-color   :#e0cf32;
   
   --head-color1 :#01aab2; /* 登録前ヘッダ */
   --head-color2 :#01aab2; /* 項目選択ヘッダ */
}

/*==================================================================
   Custom Style
==================================================================*/

/* ここにスタイルを記述 */
/*-- チャット・お知らせ内のテキスト選択禁止 --*/
#area_chat{
  user-select: none;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none;    /* Firefox */
  -ms-user-select: none;     /* IE/Edge */
}