@charset "UTF-8";

/**
@prefix : <http://purl.org/ns/doas#> .
<> a :CSSStylesheet;
 :shortdesc "サイト共通の文字サイズや共通パーツ（ヘッダーなど）の大枠スタイル";
 :created "2007-12-26";
 :release [:revision "1.0"; :created "2007-12-27"];
 :author [:name "Takuya Seki"; :homepage <http://www.anchor.jp/> ];
 :licence <http://creativecommons.org/licenses/by-nc-nd/2.1/jp/>;
 :rights <http://www.anchor.jp/copyright/>;
 :note <http://www.kanzaki.com/works/2005/rap/graph-check>;
 :dependencies "none" .
*/


/*  ****************  Style TOC  ****************  */
/** 01: General styles
/**	02: Header
/**	03: Navigation
/**	04: Content
/**	05: #content #sub
/**	06: #content #main
/**	07: Footer
/**	08: iPhone
/*  *********************************************  */


/* =============================================== */
/** 01: General styles
/* ----------------------------------------------- */


* {
	padding: 0;
	margin: 0;
}

body {
	font-family: "ＭＳ Ｐゴシック", "平成角ゴシック", sans-serif;
	line-height: 1.5;
    -webkit-text-size-adjust: none;
}

h1 {
	font-size: 1.2em;
}

h2 {
	clear: both;
	font-size: 1em;
}

h3 {
	clear: both;
	font-size: 0.9em;
}

h4 {
	clear: both;
	font-size: 0.9em;
}

p {
	font-size: 0.9em;
}

ul, ol, dl, form, address {
	font-size: 0.8em;
}

ul ul, ol ul, dl ul,
ul ol, ol ol, dl ol,
form dl {
	font-size: 1em;
}

/* misc */

img {
	max-width: 100%;
}

a img {
	border: none;
}

abbr, acronym, dfn {
	border-bottom: 1px dotted gray;
	font-style: normal;
}

blockquote {
	font-weight: bold;
	margin-top: 0;
}

/* link */

a:link {
	color: #048;
}

a:visited {
	color: #636;
}

a:hover {
	text-decoration: none;
}


/* =============================================== */
/** 02: Header
/* ----------------------------------------------- */


#header {
	float: left;
	width: 100%;
	margin-bottom: 0.5em;
	border-bottom: 1px solid silver;
	background: #eee;
}

#header img.logo {
	float: left;
	margin-left: 1em;
}

#header ul {
	float: right;
	margin: 0.2em 0.5em 0.2em 0;
	font-weight: bold;
}

#header li {
	margin-right: 1em;
	display: inline;
}

#header li.navskip {
	visibility: hidden;
	display: block;
}

#header ul a {
	font-weight: normal;
	color: #555;
	text-decoration: none;
}

#header ul a:hover {
	text-decoration: underline;
}


/* =============================================== */
/** 03: Navigation
/* ----------------------------------------------- */


#nav {
	clear: both;
	padding-bottom: 0.2em;
	margin-bottom: 0.5em;
	border-top: 1px solid silver;
	border-bottom: 1px solid silver;
	font-size: 0.9em;
	font-weight: bold;
	color: white;
	text-align: center;
	background: #8a8a8a url("/common/parts/nav/nav_bg.png") repeat-x;
}

#nav a {
	font-weight: normal;
	color: white;
	text-decoration: none;
}

#nav a:hover {
	text-decoration: underline;
}

/* Site search */

#nav form {
	display: inline;
}

#nav .field {
	display: inline;
}

#nav input#search {
	width: 150px;
	margin: 0 0.2em 0 0;
}

#nav input#button {
	position: relative;
	top: 2px;
}




/* =============================================== */
/** 04: Content
/* ----------------------------------------------- */

#content {
	clear: both;
	margin-bottom: 1em;
}

#content #left {
	float: left;
	width: 64%;
}


#content #right {
	float: right;
	width: 35%;
}

/* =============================================== */
/** 05: #content #sub
/* ----------------------------------------------- */

#content #sub {
	float: left;
	width: 25%;
}


/* =============================================== */
/** 06: #content #main
/* ----------------------------------------------- */

#content #main {
	float: right;
	width: 74%;
}


/* =============================================== */
/** 07: Footer
/* ----------------------------------------------- */

#footer {
	clear: both;
	width: 100%;
	padding-bottom: 0.5em;
	border-top: 1px solid silver;
}

#footer p {
	padding: 0.2em 0;	
	border-bottom: 1px solid silver;
	text-align: center;
}

#footer p a {
	margin: 0 1em;
	font-weight: normal;
	color: #555;
	text-decoration: none;
}

#footer p a:hover {
	text-decoration: underline;
}

#footer p.rdf {
	border: none;
}

#footer address {
	font-style: normal;
	text-align: center;
	padding-top: 0.5em;
}

#footer address a {
	color: #555;
}

#footer address a:hover {
	text-decoration: underline;
}


/* =============================================== */
/** 08: iPhone
/* ----------------------------------------------- */

/*ここにPC専用のCSSを記述します。*/
	#content #pcHide {
		display: none;
	}
	
/*ここにiPhone専用のCSSを記述します。*/
@media screen and (max-device-width:480px) {
	#content #pcHide {
		display: block;
	}
	#content #externaltheme p {
		display: none;
	}
	#content .iphoneHide {
		display: none;
	}
	body {
		display: none;
	}
}

/* =============================================== */
/** 09: 共通スタイル（調整用）
/* ----------------------------------------------- */

.center{text-align:center;}
.block{display:block;}
.txtSmall {font-size: 85%; letter-spacing: 0.1mm !important;}
.marTop5 {margin-top: 5px;}
.marTop10 {margin-top: 10px;}
.marTop15 {margin-top: 15px;}
.marTop20 {margin-top: 20px;}
.marBottom0 {margin-bottom: 0px;}
.marBottom5 {margin-bottom: 5px;}
.marBottom10 {margin-bottom: 10px;}
.marBottom15 {margin-bottom: 15px;}
.marBottom20 {margin-bottom: 20px;}
.marBottom30 {margin-bottom: 30px;}
.marBottom40 {margin-bottom: 40px;}
.marBottom50 {margin-bottom: 50px;}
.marBottom80 {margin-bottom: 80px;}
.marLef5 {margin-left: 5px;}
.marLef5_{margin-left: 5px;}
.marLef10 {margin-left: 10px;}
.marLef15 {margin-left: 15px;}
.marLef20 {margin-left: 20px;}
.marRig5 {margin-right: 5px;}
.marRig10 {margin-right: 10px;}
.marRig15 {margin-right: 15px;}
.marRig20 {margin-right: 20px;}
.fl {float: left;}
.fr {float: right;}
.clear {clear: both;}