@charset "utf-8";
/*-----------------------------------------------------------------------
root
----------------------------------------------------------------------*/

/* Croudy Afternoon */
:root {
  --color-text: #464646;/* フォントの色 */
  --color-accent: #5f9ea0;/* 強調色。リンクの色など */
  --color-bg: rgba(255, 255, 255, 0.8);/* コンテンツ背景色と透明度 */
  --color-wh: #fff;
  --color-grey: rgba(0, 0, 0, 0.5);
  --color-mgrey: rgba(0, 0, 0, 0.2);
  --color-lgrey: rgba(0, 0, 0, 0.05);
  --img-bg:linear-gradient(0deg, rgba(0, 0, 0, 0.3) 50%, transparent 100%), url(../_img/bg_03.jpg);/* 背景 */
}

/* Rainy Night */
:root {
  --color-text: #ffffff;/* フォントの色 */
  --color-accent: #d2b48c;/* 強調色。リンクの色など */
  --color-bg: rgba(0, 0, 0, 0.3);/* コンテンツの背景色と透明度 */
  --color-wh: #fff;
  --color-grey: rgba(255, 255, 255, 0.5);
  --color-mgrey: rgba(255, 255, 255, 0.2);
  --color-lgrey: rgba(255, 255, 255, 0.1);
  --img-bg: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 80%, transparent 100%), url(../_img/bg_02.jpg);/* 背景 */
}

/* Sunny Morning */
:root {
  --color-text: #1a1a1a;/* フォントの色 */
  --color-accent: #f0616e;/* 強調色。リンクの色など */
  --color-bg: rgba(255, 255, 255, 0.7);/* コンテンツ背景色と透明度 */
  --color-wh: #fff;
  --color-grey: rgba(0, 0, 0, 0.5);
  --color-mgrey: rgba(0, 0, 0, 0.2);
  --color-lgrey: rgba(0, 0, 0, 0.05);
  --img-bg: url(../_img/bg_01.jpg);/* 背景 */
}