﻿body{
	font-family:"Yu Gothic", "YuGothic", sans-serif;
}

.container{
	margin: 0 auto;
	background-color:white;/*ページ全体の背景色*/
}

.wrapper{
	max-width: 100%;	/*ページ全体の幅*//* style.cssとの変更点 */
	margin: 0 auto;
	padding-top: 10px;	/*タイトルとブラウザ最上部との隙間調整*/
	background-color:transparent;/*背景色、transparentで.containerの色そのままに*/
}

/* Text Accessories (<>で文章の装飾を行う場合に利用、自由に追加可)*/

f1{font-size:100%;}
f5{font-size:130%;}
f8{font-size:80%;}
bold{font-weight:bold}
float-right{float:right;}
underline{text-decoration: underline;}
sub{vertical-align: sub; font-size: 0.8em;}
sup{vertical-align: super; font-size: 0.8em;}


/* 特殊動作 (PC版のみ特殊な動作を起こしたい場合に挿入) */

.tx-pc {display:none;}  /*PC版のみ文字表示*/
.br-pc {display:none;}  /*PC版のみ文字表示*/

#inv table tr.tr-pc{
	display:none;
}		/* style.cssとの変更点 *//*PC版のみ表示*/

#ora table tr.tr-pc{
	display:none;
}		/* style.cssとの変更点 *//*PC版のみ表示*/


/* Line Accessories (段落として線を引きたい場合に利用)*/

hr.grey {
	border-width: 2px 0px 0px 0px; /* 太さ */
	border-style: solid; /* 線種 */
	border-color: grey;   /* 線色 */
	height: 0px;         /* 高さ(※古いIE用に最適化する場合はwidthと同じ数値を入れる) */
	margin-bottom: 10px;
}


/* header (タイトル部分の調整)*/

.header{
	box-sizing:border-box;   /* style2.cssとの変更点 */
	width:98%;  /* style.cssとの変更点 */
	background-color:khaki;
	margin-left: 1%;   /* style.cssとの変更点 */
	margin-right: 1%;   /* style.cssとの変更点 */
	margin-bottom: 10px;
	padding-left: 10px;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	border:1px aliceblue;
	border-radius: 5px;
	letter-spacing: 2px;
	line-height: 1.5em;
	text-align:center;
	overflow: hidden;
}

/* main (分割不要な場合)*/

.main{
	width:100%;
	border-radius: 5px;
	margin-bottom: 10px;
	line-height: 1.2em;
	overflow: hidden;
}

.main80{
	width:98%;   /* style2.cssとの変更点 */
	margin-left: 1%;   /* style2.cssとの変更点 */
	margin-right: 1%;   /* style2.cssとの変更点 */
	border-radius: 5px;
	line-height: 1.5em;
	overflow: hidden;
}


/* main (3分割用)*/


/* Article (文章を記入する部分に設置、mainの内部で使う)*/

.article{

	box-sizing: border-box;
	width: 95%;
	margin-left:5%;
	padding-left: 2%;
	padding-right: 1%;
	padding-bottom: 2%;
	overflow: hidden;
	float: left;
}

.article-center{

	box-sizing: border-box;
	width: 100%;
	padding-left: 2%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 2%;
	overflow: hidden;
	float: left;
}

.article-right{

	box-sizing: border-box;
	width: 100%;
	padding-left: 2%;
	padding-top: 1%;
	padding-right: 1%;
	padding-bottom: 2%;
	overflow: hidden;
	float: left;
}


ul{
	padding-left:20px;
	padding-right:5px;
	padding:bottom:10px;
	line-height: 20px;
}

p {
	font-size: 100%;
	color: black;
	letter-spacing: 0px;
	line-height: 1;
}

p5 {
	width: 80%;
	margin-left:10%;
	font-size: 110%;
	color: black;
	letter-spacing: 1px;
	line-height: 105%;
	float: left;
	text-align: center;
}

/* Table */

#inv table {
	width: 100%;
	border-collapse: collapse;　/*ボーダーの線を一重線に(各セル間の隙間を0にする)*/
	text-align: float;	/* style.cssとの変更点 */
	height:auto;
}

#inv table tr:nth-child(even){
	background:mistyrose;
	height:calc(100%-10px);
}		/* style.cssとの変更点 */

#inv table th{
	width: 100%;
	color:white;
	background:maroon;
	vertical-align:middle;
	padding:3px;
}

#inv table td{
	width: 100%;
	vertical-align:middle;
	padding:3px;
	display:block;
}

#inv table td:nth-child(4){
	margin-bottom:15px;
}

#inv table td a{
	text-decoration:none;
}

#inv table td a:hover{
	background-color:yellow;
}

#ora table {
	width: 100%;
	border-collapse: collapse;　/*ボーダーの線を一重線に(各セル間の隙間を0にする)*/
	text-align: float;	/* style.cssとの変更点 */
}

#ora table tr:nth-child(even){
	background:aliceblue;
}		/* style.cssとの変更点 */

#ora table th{
	color:white;
	background:navy;
	vertical-align:middle;
	padding:3px;
}

#ora table td{
	vertical-align:middle;
	padding:3px;
	display:block;
}

#ora table td:nth-child(5){
	margin-bottom:15px;
}


#ora table td a{
	text-decoration:none;
}

#ora table td a:hover{
	background-color:yellow;
}

.tx-smt{
	background:none;
	color:maroon;
	font-weight:bold
}

.tx-smt2{
	background:none;
	color:navy;
	font-weight:bold
}

/* Footer */

footer {
	padding-top: 5px;
	padding-bottom: 5px;
	background: maroon;
	text-align: center;
}

footer address{
	color: white;
	letter-spacing: 1px;
}

footer a{
	text-decoration: none;
	color: white;
}

.small {
	font-size:80%;
	letter-spacing: 0px;
}