@charset "utf-8";


/*全端末共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 160%;		/*行間*/
	background: #fff url(../images/bg.jpg);	/*背景色、背景画像の読み込み*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #c80000;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container（全てのブロックを囲む一番外側のブロック）
---------------------------------------------------------------------------*/
#container {
	max-width: 650px;	/*900pxを最大幅とする。これ以上にはならないようにする設定。*/
	margin: 20px auto;	/*上下に20pxあける。autoは左右自動という意味で、画面の中央にブロックを配置する設定。*/
}


/*角丸ボックス
---------------------------------------------------------------------------*/
.box {
	padding: 20px;			/*ボックス内の余白*/
	margin-bottom: 30px !important;	/*ボックスの下に空けるスペース*/
	background: #4f0046;	/*背景色*/
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 2px 2px 6px rgba(0,0,0,0.3);			/*同上*/
	border-radius: 10px;	/*角丸のサイズ*/
	color: #fff;	/*文字色*/
}
/*角丸ボックス内のリンクテキスト*/
.box a {
	color: #fff;	/*文字色*/
}


/*ロゴ画像
---------------------------------------------------------------------------*/
#banner {
	position: relative;
	padding-bottom: 0;
}

#top-logo {
	position: absolute;
	top: 30px;
	left:30px;
	color: white;
	font-weight: bold;
	text-align: center;
	line-height: 200%;
}

#top-logo-j{
	font-size:2em;
	font-family: serif;
	letter-spacing: 0.2em;
}
#top-logo-e{
	font-size:1.7em;
	font-family:"Times","Times New Roman",serif;
}
#credit {
	color: white;
	line-height: 1;
	padding: 0 0 2px 10px;
}
#credit a {
	text-decoration: none;
}
#credit a:hover {
	color: yellow;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar {
	margin: -20px auto 10px;
	text-align: center;
}

#menubar li {
	display: inline-block;
	text-align: center;		/*文字をセンタリング*/
	font-size: 1.2em;
	letter-spacing: 0.1em;
	margin: 3px 0;
}
#menubar li a {
	border: 1px solid #4f0046;	/*枠線の幅、線種、色*/
	border-radius: 10px;	/*角丸のサイズ*/
	display: block;
	text-decoration: none;
	padding: 10px 0px;	/*上下、左右へとる余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	color: white;
	background: #4f0046;
	-webkit-box-shadow: 2px 2px 6px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 2px 2px 6px rgba(0,0,0,0.3);			/*同上*/
	width: 8em;
}
/*マウスオン時*/
#menubar li a:hover {
	color: #4f0046;		/*文字色*/
	background: #fff;	/*背景色*/
}


/*mainブロック（右側のブロック）
---------------------------------------------------------------------------*/
#main {
	clear: both;
}
/*h2タグの設定*/
#main h2 {
	margin-bottom: 15px;
	font-size: 120%;
	color: #fff;		/*文字色*/
	background: #4f0046;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4f0046), to(#1e001b));	/*グラデーション*/
	background: -webkit-linear-gradient(#4f0046, #1e001b);	/*同上*/
	background: linear-gradient(#4f0046, #1e001b);			/*同上*/
	padding: 5px 15px;	/*上下、左右への余白*/
	border: 1px solid #1d001a;
	letter-spacing: 0.1em;
}
/*角丸ボックス内のh2タグの設定*/
#main .box h2 {
	color: #4f0046;		/*文字色*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f1f1f1));	/*グラデーション*/
	background: -webkit-linear-gradient(#fff, #f1f1f1);	/*同上*/
	background: linear-gradient(#fff, #f1f1f1);			/*同上*/
}
/*コンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: lightgreen;	/*文字色*/
	padding: 4px 15px;	/*上下、左右への余白*/
	background: #1d001a;	/*背景色（古いブラウザ用）*/
/*	background: -webkit-gradient(linear, left top, left bottom, from(#4f0046), to(#1d001a));	/*グラデーション*/
/*	background: -webkit-linear-gradient(#4f0046, #1d001a);	/*同上*/
/*	background: linear-gradient(#4f0046, #1d001a);			/*同上*/
	border: 1px solid #1d001a;
}
/*コンテンツの段落タグ設定*/
#main p {
	padding: 10px 15px 15px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}
#main dl {
	border: solid 1px white;
	padding: 1em;
	margin: 1em;
}
#main dt {
}
#main dd {
	margin: 0 0 1.5em 2em;
}
#main ul,
#main ol {
	padding: 1em;
	margin: 1em;
	border: solid 1px white;

}
#main li {
	margin-bottom: 1em;
	margin-left: 1.5em;
	padding-left: 0.5em;
}
#main a:hover {
		color: yellow;			/*マウスオン時の文字色（全体）*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl{
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	max-width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	margin: -20px 0 0 10px;
	text-align: center;
}
footer .pr {
	display: block;
	font-size: ;
}
footer a {
	text-decoration: none;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #000;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
}
/*テーブル内の左側*/
.ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}
/*角丸ボックス内で使う場合の設定*/
.box .ta1, .box .ta1 td, .box .ta1 th {
	border: 1px solid #fff;	/*テーブルの枠線の幅、線種、色*/
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #000;
	display: inline-block;
	padding: 5px;
	border-radius: 4px;
	color: #fff;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
.color1 {
	color: #f3b700;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
em {
	color: #66FF99;
}

/*800px以下の端末で横向きに見た場合の設定
---------------------------------------------------------------------------*/
@media screen and (max-width:480px){


/*角丸ボックス
---------------------------------------------------------------------------*/
.box {
	padding: 10px;
}

#top-logo {
	left: 10px;
	line-height: 150%;
}
#top-logo-j,
#top-logo-e {
	font-size: 1.7em;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 2px;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}

}
