/*
--------------------------------------------------
	Theme Color
	テーマカラーを設定します。
-------------------------------------------------- */

// Theme Color
var themeColor1 = "#A57073"; // Depth
var themeColor2 = "#B2B2B2"; //  ↑
var themeColor3 = "#920A10"; // Base
var themeColor4 = "#EFB6B5"; //  ↓
var themeColor5 = "#D7D7D7"; //  ↓
var themeColor6 = "#E6E6E6"; // Bright
var themeColor7 = "#ffffff"; // white

// Link Color
var fontLinkColor = "#920A10";
var fontALinkColor = "#920A10";

/*
--------------------------------------------------
	Style Write
-------------------------------------------------- */
document.write('<style type="text/css">');
document.write('<!--');

// Background
document.write('body{background:' + themeColor6 + ';}');

// Container Wrap Border
document.write('.container#c1{border-color:' + themeColor5 + ';}');
document.write('.container#c2{border-color:' + themeColor2 + ';}');

// Default
document.write('a{color:' + fontLinkColor + ';}');
document.write('a:hover{color:' + fontALinkColor + ';}');

// Nav
document.write('#nav {background:' + themeColor3 + ';border-color:' + themeColor2 + ';}');
document.write('#nav ul li a {border-color:' + themeColor4 + ';}');

// Heading
document.write('h2.heading{background:' + themeColor3 + ';border-color:' + themeColor2 + ';}');

// OnlineService
document.write('#onlineservice{border-color:' + themeColor2 + ';}');
document.write('#onlineservice h2{background:' + themeColor3 + ';border-color:' + themeColor2 + ';}');

// Score
document.write('table.score,table.score th,table.score td{color:' + themeColor2 + ';border-color:' + themeColor3 + ';}');
document.write('table.score th{background:' + themeColor5 + ';}');

// fNav
document.write('#fnav ul li a:hover{color:' + themeColor3 + ';}');

// Footer
document.write('#footer{background:' + themeColor3 + ';border-color:' + themeColor2 + ';}');

document.write('-->');
document.write('</style>');

