﻿@charset "utf-8";
/* 黄金の一矢　CSS */

/* =====================================
   base.css
   サイト全体の共通スタイル（土台）
   ・トップページ
   ・CGIページ
   ・今後追加する全ページで共通
===================================== */

/* ---- 基本リセット（最低限） ---- */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  line-height: 1.7;

  color: #eee;
  background-color: #020409;
}

/* ---- テキスト要素 ---- */

p {
  margin: 0 0 1em;
}

h1, h2, h3, h4 {
  font-weight: 300;
  margin: 0 0 0.6em;
}

/* ---- リンク（全ページ共通） ---- */

a {
  color: #e8dcc4;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ---- 画像 ---- */

img {
  max-width: 100%;
  height: auto;
}






/* =====================================
   CGIスキン上書き（共通）
   ・古いskin/common.css対策
===================================== */

body {
  background-image: none !important;
  background-color: #020409 !important;
  color: #eee !important;
  text-align: left;
}

/* フォントを統一 */
* {
  font-family: "Noto Serif JP", serif !important;
}

/* リンク色をサイト基準に */
a:link,
a:visited {
  color: #e8dcc4;
}

a:hover {
  background: none;
  color: #fff;
}
