@charset "utf-8";

/* readme! *//*
 * これは何？
	このファイルは、サイト内の前ページに読み込ませる基本となるCSSです。
	全てのページに影響が出るため、修正は慎重に行いましょう。
*//* readme! END */


/* CSS Reset */
	/*
	YUI 3.4.1 (build 4118)
	Copyright 2011 Yahoo! Inc. All rights reserved.
	Licensed under the BSD License.
	http://yuilibrary.com/license/
	*/
	html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#000}
	
	/* CSS Reset Patch */ html{ background-color: transparent; background-image: none; }

/* CSS Reset END */

/* フッタを常に下部に配置する */
	html{ height: 100%; }
	body{ height: 100%; }
	div#body {
	    position: relative;
	    min-height: 100%;
	}
	body > #body { height: auto; }
    div#wrapper {
	    padding-bottom:100px;
	}
	#footer_wrapper {
	    position: absolute;
	    bottom: 0;
	    width: 100%;
        height: 100px;
        overflow: hidden;
	}
/* フッタを常に下部に配置する END */

/* 共通部分 */

	* { font-family: 'メイリオ',Meiryo,'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif; }

	body {
		background: #fefefe;
		overflow-y: scroll;
        box-shadow: inset 0 5px 5px rgba(0,0,0,0.2);
	}
    
	a { color: #909090; }
	a:hover { text-decoration: none; }
    a:active { color: #007aaf; }
    
	.icon {
		margin-left: 5px;
		line-height: 1em;
	}
    
	a.extlink { color: #6666ff; }
	
    span.sub { font-size: 80%; }

	/* ボタン風リンク */
	.button {
        
	    line-height: 18px;
	    padding: 0.5em 1em;
	    margin: 4px;
        
	    display: inline-block;
        
    	color: #555;
	    text-decoration: none;
	    vertical-align: middle;
        text-shadow: 0 1px 1px #fff;
        
	    border: 1px solid #e0e0e0;
	    border-radius: 5px;
        
	    background: #f0f0f0;
        
        box-shadow: -1px -1px rgba(0,0,0,0.5),
        		     1px  1px #fff,
        			inset 0  10px 10px rgba(255,255,255,0.5),
                    inset 0 -10px 10px rgba(100,100,100,0.2);
	}
	.link_button:hover,
	.button:hover {
        box-shadow: -1px -1px rgba(0,0,0,0.5),
        			 1px  1px #fff,
        			inset 0  10px 10px rgba(255,255,255,0.7),
                    inset 0 -10px 10px rgba(100,100,100,0.1);
	}
	.link_button:active,
	.button:active {
        box-shadow:  0    0   2px #007aaf,
                     -1px -1px rgba(0,0,0,0.5),
        			 1px  1px #fff,
        			inset 0  10px 10px rgba(255,255,255,0.7),
                    inset 0 -10px 10px rgba(100,100,100,0.1);
	}
	.button .link_icon {
    	padding: 0 0 0 0.25em;
    	opacity: 0.7;
        line-height: 18px;
        vertical-align: middle;
    }
    
    .link_button {
		display: inline-block;
	    border-radius: 3px;
	    padding: 4px 8px 4px 10px;
	    color: #666;
	    background: #eee;
	    box-shadow: -1px -1px rgba(0,0,0,0.5),
	                 1px  1px #fff,
	                inset 0  10px 10px rgba(255,255,255,0.5),
	                inset 0 -10px 10px rgba(100,100,180,0.2);
	    text-decoration: none;
		    margin: 4px;
	}
	.link_button:after {
		content: ">";
	    color: #666;
	    border-left: 1px solid #ccc;
	    padding-left: 8px;
	    margin-left: 5px;
	}
	/* ボタン風リンク END */

    /* ClearFix */
    .clearfix { zoom:1; }
    .clearfix:after {
        content: ""; 
        display: block; 
        clear: both;
    }
	hr.clearfix {
    	/* どうしてもClearFixできないときは<hr class="clearfix" />で強制的にClerFixしてしまう。 */
		width: 0;
		height: 0;
		margin: 0;
		padding: 0;
		border: none;
		clear: both;
		color: none;
		background: none;
	}
    /* ClearFix END */
    
	.wrapepr { width: 100%; }
	.wrapper > *, .copyright {
		margin: 0 auto;
		width: 800px;
	}
/* 共通部分 END */

/* フッタ部分 */
	#footer_wrapper {
        box-shadow: 0 -100px 100px rgba(200,200,200,0.5), inset 0 5px 5px rgba(0,0,0,0.5);
	}
	#footer {
    	padding-top: 1.5em;
        text-align: center;
    }
	#footer p { padding: 0.25em 0; }
		
/* フッタ部分 END */

/* トップへ戻る */
	#gotop {
    	width: 100%;
       	position: fixed;
        bottom: 0;
    }
	#gotop a {
		display: block;
		float: right;
        margin-right: 1em;
		width: 150px;
		height: 30px;
		line-height: 30px;
		background: rgba( 100,100,100,0.5);
		text-align: center;
		font-size: 13px;
        color: #fff;
		text-decoration: none;
        box-shadow: 0 0 3px #aaa;
        border-radius: 5px 5px 0 0;
	}
	#gotop a:hover {
    	background: rgba(80,80,80,0.5);
		text-shadow: 0 0 5px #000;
        box-shadow: 0 0 3px #aaa, inset 0 0 5px #666;
	}
/* トップへ戻る END */


/* メイン部分 */
	#main {
    	padding-top: 40px;
        padding-bottom: 30px;
    }
	.section {
    	margin-bottom: 3em;
        padding-bottom: 2em;
        margin-left: 15px;
        margin-right: 15px;
    }
	.section .header {
        margin: 0 0 1em;
        padding: 1em 0;
		border-left : 15px solid #d70000;
        border-left-color: rgba(100,0,0,0.1);
		color: #0f0f0f;
	}

	.section .header h2 {
    	padding: 0 0 0 15px;
		font-size: 130%;
	}
	.section .header p { padding: 0.5em 0 0 25px; }
	.section .body { padding: 1em 0 1em 25px; }
/* メイン部分 END */

