/* koken Document */
/* ----------------------------------------- */
/* ＢＯＤＹ・ページ全般                      */
/* ----------------------------------------- */
body { /* ▼ページ全般 */
	margin:0;
	padding:0;
	/*font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
    font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック Medium',YuGothic, meiryo, sans-serif;
    /*font-family: 'Merriweather', serif;*/
	font-size: 16px;
	line-height:1.4;
	letter-spacing:0;
	color:#000;
    background:#fff;
}

/* リンク (全般) */
a {
	color:blue;
	text-decoration:underline;
}
a:visited  { /*color:#33C;*/ }
a:hover { 
	color:#F66;
	text-decoration:none;
}

.clearfloat:after { /* フロートの後処理 */
	content:".";
	display:block;
	clear:both;
	height:0;
	visibility:hidden;
}
.clearfloat { min-height:1px; }
*html .clearfloat { /* IE対策 */
	height:1px;
	/*\//*/
	height:auto;
	overflow:hidden;
	/**/
}

/* ----------------------------------------- */
/* レイアウト（ページ全般で使用）            */
/* ----------------------------------------- */
#container { /* コンテンツ全体 */
	position:relative;
    width:100%;
	height:auto;
	margin:0 auto;
	/*padding:0 15px;*/
	z-index:0;
}

/* ヘッダー ////////////////////////// */

/* ヘッダー・タイトル */
header {
    position: relative;
    height:auto;
	margin:0 auto;
	padding:0;
}

/* コンテンツエリア ////////////////// */
main {
	height:auto;
	margin:0 auto;
    padding:0;
	clear:both;
}
main:after { /* floatボックスの後処理 */
    content: "";
    display: block;
    clear: both;
    height:0;
    overflow: hidden;
}

/* コンテンツメイン ////// */
main article {
	height:auto;
	padding:5px 10px 10px 20px;
	margin:0;
}

/* コンテンツサイド ////// */
aside {
	margin:20px 10px 10px 0;
	padding:0;
}

/* フッター ////////////////////////// */
footer {
	position:relative;
    clear:both;
	width:100%;
	height:auto;
	margin:0 auto;
	padding:0 0 10px 0;
}

address { font-style:normal; } 

/* ----------------------------------------- */
/* 改行処理（P）の書式設定                   */
/* ----------------------------------------- */

p {
	margin:8px 10px 8px 15px;
	padding:0;
	line-height:1.6;
}

p.print { /*印刷改行処理*/
    page-break-before: always;
    page-break-after: always;
}

/* ----------------------------------------- */
/* リスト（ul）の書式設定                    */
/* ----------------------------------------- */
/* ▼ リスト全般 */
ul { 
	margin:0 0 0 10px;
	padding:6px 0;
	list-style-type:disc;
}
ul ul {
	margin:0;
	list-style-type:circle;
}

li { 
	margin:4px 8px 14px 30px;
	line-height:1.45;
	list-style-image: none;
	letter-spacing:1px;
}

ul strong, ol strong{
	font-size:110%;
}

ul p, ol p{
	font-weight:normal;
	margin:0;
	padding:0;
}

/* ----------------------------------------- */
/* 装飾（H1〜H6）の書式設定                  */
/* ----------------------------------------- */
h1,h2,h3,h4,h5 {
	line-height:1.3;
	clear:both;
}

/* ----------------------------------------- */
/* テーブル装飾                              */
/* ----------------------------------------- */
/* テーブル全般 */
td, th { 
	font-size:100%;
	text-align:left;
	vertical-align:top;
	padding:5px;
}

/* ノーマル・テーブルコンテンツ ///// */
table.normal { 
	margin:5px 0 10px 20px;
	line-height:1.45;
}
.normal td, .normal th { /* ノーマル */
	text-align:left;
	padding:5px;
	vertical-align:top;
}

