@charset "UTF-8";

/*/////////////////////////////////////////////////////////////
サイト名

Copyright (C) 著作者名 All Rights Reserved.
-----------------------------------------------------------
[Base] Formatting browser's default styles
	0. Zeroing out the margins and paddings
	1. HTML, Body, Anchor
	2. Headings, Paragraphs
	3. Lists
	4. Tables
	5. Forms
	6. Others

[Layout] 
	0. Base Layout
	1. Header
	2. Content
	3. Footer

[Module] 
	1. Common Elements
	2. Common Module
	90. Others
	99. Clearfix

//////////////////////////////////////////////////////////////*/


/*/////////////////////////////////////////////////////////////
[Base] 
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	0. Zeroing out the margins and paddings
------------------------------------------------------------ */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ul, ol, li,
fieldset, form, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video, canvas {
	margin: 0;
	padding: 0;
}

/* ------------------------------------------------------------
	1. HTML, Body, Anchor
------------------------------------------------------------ */
html {-webkit-text-size-adjust:none}

body {
	font-family: ArialMT, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3"; /* iPhoneバンドル */
	font-size: 16px;
	line-height: 1.5; /* 1.5～1.8が読みやすい */
}

a {
	color: #00e;
	-webkit-tap-highlight-color: rgba(00,33,99,0.3); /* タップ時の背景色 */
	vertical-align: baseline;
}

/* ------------------------------------------------------------
	2. Headings, Paragraphs
------------------------------------------------------------ */

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

/* p {} */

/* ------------------------------------------------------------
	3. Lists
------------------------------------------------------------ */

li {
	list-style: none;
}

/* ------------------------------------------------------------
	4. Tables
------------------------------------------------------------ */

table {
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
}

caption, th, td {
	text-align: left;
	vertical-align: top;
	font-weight: normal;
}

/* ------------------------------------------------------------
	5. Forms
------------------------------------------------------------ */

fieldset {
	border: none;
}

input, textarea, select, label {
	margin-top: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-bottom: 0;
	font-size: 100%;
	vertical-align: middle;
}

label, button {
	cursor: pointer;
}

textarea {
	overflow: auto;
}

/* ------------------------------------------------------------
	6. Others
------------------------------------------------------------ */

header, hgroup, footer,
article, section,
nav, aside, figure {
	display: block;
}

img {
	border: none;
	vertical-align: middle;
}

em, strong {
	font-weight: bold;
	font-style: normal;
}

mark {
	font-weight: bold;
}

object {
	vertical-align: middle;
	outline: none;
}

blockquote, q {
	quotes: none;
}

q:before, q:after {
	content: '';
}

code {
	font-family: monospace;
}

sup {
	vertical-align: text-top;
}

sub {
	vertical-align: text-bottom;
}

ins {
	text-decoration: none;
}

del {
	text-decoration: line-through;
}

abbr, acronym {
	border: none;
	font-variant: normal;
}

abbr[title], dfn[title] {
	border-bottom: 1px dotted #333;
	cursor: help;
}

address, caption, cite, code, dfn, var {
	font-weight: normal;
	font-style: normal;
}

hr {
	display: none;
}

pre {
	font-family: monospace;
}

/*/////////////////////////////////////////////////////////////
[Layout] 
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	0. Base Layout
------------------------------------------------------------ */

body {
	padding: 10px;
}

/* ------------------------------------------------------------
	1. Header
------------------------------------------------------------ */

body > header {
	margin-bottom: 10px;
	padding: 10px;
	border: 5px solid #ccc;
}

body > header h1 {
	font-size: 20px;
}

/* ------------------------------------------------------------
	2. Content
------------------------------------------------------------ */

#content {
	margin-bottom: 10px;
	padding: 10px;
	border: 5px solid #ccc;
}

#content h1 {
	font-size: 20px;
}

/* ------------------------------------------------------------
	3. Footer
------------------------------------------------------------ */

body > footer {
	padding: 10px;
	border: 5px solid #ccc;
	text-align: center;
}

/* NavUtility
------------------------------------------------- */
.navUtility {
	margin-bottom: 10px;
	border: 3px solid #ccc;
}

.navUtility li {
	float: left;
	width: 33%;
}

.navUtility li:first-child {
	width: 34%;
}

.navUtility a {
	display: block;
	padding: 10px 0;
	border-left: 1px solid #ccc;
	text-decoration: none;
}

.navUtility li:first-child a {
	border-left: 0;
}

/* Copyright
------------------------------------------------- */
#copyright {
	font-size: 14px;
}

/*/////////////////////////////////////////////////////////////
[Module] 
//////////////////////////////////////////////////////////////*/

/* ------------------------------------------------------------
	1. Common Elements
------------------------------------------------------------ */

/* Title
------------------------------------------------- */

/* Text
------------------------------------------------- */

/* List
------------------------------------------------- */

/* Form
------------------------------------------------- */
input[type="text"],
input[type="password"],
input[type="email"] {
	width: 95%;
	margin-bottom: 5px;
	padding: 10px 5px;
}

input[type="password"] {
	width: 50%;
}

/* ------------------------------------------------------------
	2. Common Module
------------------------------------------------------------ */

/* ------------------------------------------------------------
	90. Others
------------------------------------------------------------ */

/* for Voice Browser */
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	margin: 0;
	padding: 0;
}

/* Noscript Message */
p#msgNoscript {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 100%;
	padding: 5px 0;
	border-top: 1px solid #f00;
	border-bottom: 1px solid #f00;
	background: #fcc;
	color: #f00;
	line-height: 1.2;
	text-align: center;
	opacity: 0.7;
}

/* ------------------------------------------------------------
	99. Clearfix
------------------------------------------------------------ */

.group:after {
	content: ".";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
	font-size: 0.1em;
	line-height: 0;
}