﻿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: 0px;	/*タイトルとブラウザ最上部との隙間調整*/
	background-color:transparent;/*背景色、transparentで.containerの色そのままに*/
}

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

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

fs1{font-size:100%;}
fs2{font-size:120%;}
fs5{font-size:150%;}
fs8{font-size:80%;}
fs9{font-size:90%;}
fw1{font-weight:100;}
fw4{font-weight:400;}
fw6{font-weight:600;}
fw8{font-weight:800;}
b{font-weight:bold;}
u{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版のみ文字表示*/

#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{
	background-color: maroon; /* #003F6Cは青20号(新幹線用青色)。 #002569を指定するとドラゴンズブルー。#C00029は名鉄スカーレット */
	/* letter-spacing: -.4em; */
	width:100%;
	/* border: solid green 1px; */
	display: flex;
	flex-wrap: wrap;
	/* position: fixed; */
}

.header .logo{
	width:75%;
	margin-top:0.5%;
	/* margin-left:25%; */
	padding: 3px;
	/* border: solid green 1px; */
	overflow: hidden;
	background-color:transparent;
	text-align:justify; 
	text-align-last:justify;
	display: float;
	/* order:2; */
}

.header .logo a{
	text-decoration: none;
}

.header .logo p{
	color:white;
}

/* Burger (バーガーメニュー、スマホ版で利用)*/

.menu-btn {
	position: static;
	top: 10px;
	right: 10px;
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: chocolate;
	margin-top:25%;
	margin-left:30%;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: #ffffff;
	position: absolute;
}

.menu-btn span:before {
	bottom: 8px;
}

.menu-btn span:after {
	top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}

#menu-btn-check {
	display: none;
}

#menu-btn-check:checked ~ .nav {
	left: 0;
}

/* branding (ブランディング、不要なら省略。以下は画像形式のbranding)*/

#branding{
	display:none;
}

/* branding (ブランディング、不要なら省略。以下はスライドショー形式のbranding)*/

.slide{
	display:none;
}
/* Navigation (ナビ、バーガーメニューに格納)*/

.nav {
	width: 100%;
	height: 100%;
	position: fixed;
	margin-top:23.5%;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: chocolate;
	transition: all 0.5s;/*アニメーション設定*/
}

.nav ul {
	padding: 10px 10px 0;
}

.nav ul li {
	border-bottom: solid 1px #ffffff;
	list-style: none;
}
.nav ul li a {
	display: block;
	width: 100%;
	font-size: 125%;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 3% 1% 3% 1%;
	position: relative;
}

.nav ul li a::before {
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
}

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

.main{
	width:95%;
	border: solid navy 3px;
	border-radius: 3px;
	margin-left: 1%;
	margin-top: 1%;
	padding:1%;
	line-height: 2em;
	text-align: center;
	color:navy;
	/* background-color: lavender; */
	/* font-size:120%; */
	overflow: hidden;
}

.main95{
	width:98%;
	padding:1%;
	line-height: 1em;
	text-align: center;
	color:navy;
	/* background-color: lavender; */
	/* font-size:120%; */
	overflow: hidden;
}

.main90{
	width:90%;
	/* border: solid green 1px; */
	margin: 3% 5% 0% 5%;
	line-height: 1.5em;
	overflow: hidden;
}

.main70 {
	box-sizing: border-box;
	width: 96%;
	margin-left:4%;
	/*margin-right:5%; */
	line-height: 1em;
	text-align: left;
	/* border: solid green 1px; */
	border-radius: 5px;
	padding: 0px 0px 0px 5px;
	overflow: hidden;
	float:left;
}


.main70 ul{
	margin-bottom:2%;
}

.main70 li{
	list-style-type: circle;/* リストの左側に白丸 */
	margin-left: 24px;/* リストの左側に余白 */
	text-align: left;
}

.main70 li li{
	list-style-type: disc;/* リストの左側に黒丸 */
	margin-left: 24px;/* リストの左側に余白 */
	text-align: left;
}

.sub70 {
	box-sizing: border-box;
	width: 70%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin: 2% 0% 2% 0%;
	line-height: 1em;
	overflow: hidden;
	text-align: left;
	float:left;
}

.main50 {
	box-sizing: border-box;
	width: 50%;
	/* border: solid green 1px; */
	border-radius: 5px;
	padding: 5px;
	overflow: hidden;
	float:left;
}

.main40 {
	box-sizing: border-box;
	width: 100%;
	/* border: solid green 1px; */
	border-radius: 5px;
	padding: 5px;
	overflow: hidden;
	float:left;
	margin-left:0%;
}

.main30 {
	box-sizing: border-box;
	width: 30%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin: 0% 70% 0% 5%;
	overflow: hidden;
	text-align: left;
	font-weight:600;
	float:left;
}

.sub30 {
	box-sizing: border-box;
	width: 25%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin: 2% 0% 0% 5%;
	line-height: 1em;
	overflow: hidden;
	text-align: left;
	float:left;
}

.left30 {
	box-sizing: border-box;
	width: 50%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin: 2% 0% 0% 1%;
	overflow: hidden;
	float:left;
	font-weight:600;
}

/* 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;
}

.btn2{
	/*color: auto;*/	/*文字色の変更*/
	border: solid 1px lightblue;   /*線を描く（ホバー時のずれを防ぐため）*/
	background-color: aliceblue;   /*背景色の指定*/
	padding-top: 5px;  /*文字上部の余白を指定*/
	padding-bottom: 5px;   /*文字下部の余白を指定*/
	padding-right: 5px;	/*文字右側の余白を指定*/
	padding-left: 5px; /*文字左側の余白を指定*/
	border-radius: 5px; /*線の角を丸くする*/
	letter-spacing: 1px;	/*文字と文字の間隔をあける*/
	text-decoration: none;  /*ブラウザ標準のリンク装飾をオフに*/
	overflow: hidden;   /*おまじない*/
	float: left;
	margin:1.5% 1% 1.5% 1%;
	text-align: center;
}

.btn2 a{
	text-decoration: none;  /*ブラウザ標準のリンク装飾をオフに*/
}

/* 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;
}