@charset "utf-8";

/*----------------------------------------------------
 elements
----------------------------------------------------*/
body {
	background: #ccc;
	color: #333;
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", メイリオ, sans-serif;
	font-size: 14px;
	line-height: 1.5;
	-webkit-text-size-adjust: auto; /* フォントサイズ自動調整 none */
}

a {
	-webkit-tap-highlight-color: rgba(200,200,555,.6);
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

img {
	vertical-align: top;
}

img:not([width]) {
	zoom: .5; /* Retinaディスプレイ対応のためimg要素は半分の大きさに */
}

p, dl, ol, ul {
	margin-bottom: 10px;
}

ol, ul {
	margin-left: 25px;
}


/*----------------------------------------------------
 #page
----------------------------------------------------*/
#page {
	overflow: hidden;
	/* width: 480px;  320px; */
	margin: 0 auto;
	background: #fff;
}

/*----------------------------------------------------
 ランドスケープ表示
----------------------------------------------------*/
@media all and (orientation:landscape) {
	#page {
		width: 480px;
	}
}


/*----------------------------------------------------
 header
----------------------------------------------------*/
header.global {
	padding: 10px 0;
	/* background: #333; */
	color: #fff;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #09c302), color-stop(1.00, #00270b));
	background: -webkit-linear-gradient(#09c302, #00270b);
	background: -moz-linear-gradient(#09c302, #00270b);
	background: -o-linear-gradient(#09c302, #00270b);
	background: -ms-linear-gradient(#09c302, #00270b);
	background: linear-gradient(#09c302, #00270b);
}

header.global h1 {
	padding: 0 10px 10px;
}

header.global nav {
	margin: 0;
}

header.global nav ul {
	margin: 0;
	padding: 0;
}

header.global nav ul li {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	float: left;
	width: 33%;
	margin: 0;
	text-align: center;
	background: #eee;
	border-right: 1px solid #fff;
}

header.global nav ul li:last-child {
	border-right: 0;
}

header.global nav ul li a {
	display: block;
	padding: 5px;
}


/*----------------------------------------------------
 footer
----------------------------------------------------*/
footer.global {
	padding: 10px 0 50px;
	background: #333;
	color: #fff;
}

footer.global p.copyright {
	margin: 0;
	text-align: center;
}


/*----------------------------------------------------
 main
----------------------------------------------------*/
section.main {
	padding: 0 10px 10px;
}


/*----------------------------------------------------
 clearfix
----------------------------------------------------*/
header.global nav ul:after { content: ''; display: block; clear: both; }


/*----------------------------------------------------
 select box
----------------------------------------------------*/

select {
	padding: 0.2em;
	height: 2em;
	}

/*----------------------------------------------------
 table http://weboook.blog22.fc2.com/blog-entry-329.html
----------------------------------------------------*/
table {
  width: auto;
  border-spacing: 0;
  font-size:14px;
}
table th {
  color: #fff;
  padding: 8px 8px;
  background: #258;
  background:-moz-linear-gradient(rgba(34,85,136,0.7), rgba(34,85,136,0.9) 50%);
  background:-webkit-gradient(linear, 100% 0%, 100% 50%, from(rgba(34,85,136,0.7)), to(rgba(34,85,136,0.9)));
  font-weight: bold;
  border-left:1px solid #258;
  border-top:1px solid #258;
  border-bottom:1px solid #258;
  line-height: 120%;
  text-align: center;
  text-shadow:0 -1px 0 rgba(34,85,136,0.9);
  box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset;
}
table th:first-child {
  border-radius: 5px 0 0 0;	
}
table th:last-child {
  border-radius:0 5px 0 0;
  border-right:1px solid #258;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr td {
  padding: 8px 8px;
  border-bottom: 1px solid #84b2e0;
  border-left: 1px solid #84b2e0;
  text-align: center;
}
table tr td:last-child {
  border-right: 1px solid #84b2e0;
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr {
  background: #fff;
}
table tr:nth-child(2n+1) {
  background: #f1f6fc;
}
table tr:last-child td {
  box-shadow: 2px 2px 1px rgba(0,0,0,0.1);
}
table tr:last-child td:first-child {
  border-radius: 0 0 0 5px;
}
table tr:last-child td:last-child {
  border-radius: 0 0 5px 0;
}
table tr:hover {
  background: #bbd4ee;
  cursor:pointer;
}


