﻿@charset "UTF-8";
/*////////////////////////////// RESET ///
	リセットCSS
///////////////////////////////////*/
body {
	line-height: 1;
	margin: 0;
}
h1, h2, h3, h4, p {
	margin: 0;
}
header,nav,section,footer {
	display: block;
}
ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
li {
	padding: 0;
}
a {
	display: block;
	/* リンクをタップしたときの半透明を消す */
	-webkit-tap-highlight-color: transparent;
}
/*////////////////////////////// GENERAL SETTING ///
	サイト全体の設定
///////////////////////////////////*/
body {
	background: #eff7ff;
	color: #535353;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",Osaka,  sans-serif;
	font-size: 14px;
	text-align: center;
	-webkit-text-size-adjust: none; 
}
a {
	color: #4169e1;
}
img {
	border: none;
	/* 画像の縦方向の揃え位置を指定 */
	vertical-align: bottom;
}
/*////////////////////////////// LAYOUT ///
	レイアウト
///////////////////////////////////*/
header, #main, #menu, #smap, footer {
	background: #eff7ff;
}
#pank, #main, #menu, #smap, #back, footer {
	margin-top: 5px;
}
/*////////////////////////////// HEADER ///
	ヘッダー
///////////////////////////////////*/
header h1 {
	height: 40px;
	line-height: 40px;
	overflow: hidden;
	font-size: 130%;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*////////////////////////////// PANK ///
	パンくずリスト
///////////////////////////////////*/
#pank li {
	list-style: none;
	float: left;
	line-height:14px;
	padding-left: 10px;
	font-size: 70%;
	text-align: center;
}
#pank li a {
	color: #808080;
	text-decoration: none;
}
#pank ul:after {
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	content: ".";
}
/*////////////////////////////// MAIN ///
	メイン
///////////////////////////////////*/
#main h2 {
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 110%;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
#main article {
	padding: 10px 15px 10px 15px;
	border-top: 1px solid #d3d3d3;
}
#main article p {
	margin: 0px 0px 15px 0px;
}
.mr {
	color: #cc0000;
}
.green {
	color: #2e8b57;
}
/*////////////////////////////// NAV MENU ///
	メニュー
///////////////////////////////////*/
#menu h2 {
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 110%;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
#menu ul {
	text-align: left;
}
#menu li {
	height: 45px;
	line-height: 45px;
	border-top: 1px solid #d3d3d3;
	background: url(images/list_mark.png) no-repeat 98% 50%;
}
#menu li a {
	overflow: hidden;
	padding-right: 30px;
	padding-left: 10px;
	color: #808080;
	text-decoration: none;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*////////////////////////////// BACKLINK ///
	バックリンク
///////////////////////////////////*/
#back a {
	color: #808080;
	text-decoration: none;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
/*////////////////////////////// FOOTER ///
	フッター
///////////////////////////////////*/
.sm {
	height: 35px;
	line-height: 35px;
	font-size: 85%;
}
.sm a {
	color: #808080;
}
.copy {
	height: 30px;
	line-height: 30px;
	font-size: 70%;
}
/*////////////////////////////// MAP ///
	サイトマップ
///////////////////////////////////*/
#smap h2 {
	line-height: 30px;
	padding-right: 10px;
	padding-left: 10px;
	font-size: 110%;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
}
#smap ul {
	padding: 10px;
	border-top: 1px solid #d3d3d3;
	text-align: left;
}
#smap li {
	list-style-image: url('images/list_mark2.png');
	list-style-position: inside;
	height: 35px;
	line-height: 35px;
}
#smap li a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
/*////////////////////////////// EFFECT ///
	ボックスシャドウのエフェクト
///////////////////////////////////*/
.effect {
	position:relative;
	-webkit-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	-moz-box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
	box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effect:before, .effect:after {
	content:"";
	position:absolute;
	z-index:-1;
	-webkit-box-shadow:0 0 20px rgba(0,0,0,0.8);
	-moz-box-shadow:0 0 20px rgba(0,0,0,0.8);
	box-shadow:0 0 20px rgba(0,0,0,0.8);
	top:0;
	bottom:0;
	left:10px;
	right:10px;
	-moz-border-radius:100px / 10px;
	border-radius:100px / 10px;
}
.effect:after {
	right:10px;
	left:auto;
	-webkit-transform:skew(8deg) rotate(3deg);
	-moz-transform:skew(8deg) rotate(3deg);
	-ms-transform:skew(8deg) rotate(3deg);
	-o-transform:skew(8deg) rotate(3deg);
	transform:skew(8deg) rotate(3deg);
}