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

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

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

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

fs1{font-size:90%;}
fs2{font-size:105%;}
fs5{font-size:108%; font-weight:800;}
fs8{font-size:80%;}
fs9{font-size:80%; letter-spacing:-0.1em;}
fw1{font-weight:100;}
fw4{font-weight:400;}
fw6{font-weight:600;}
fw8{font-weight:800;}
u{text-decoration: underline;}
b{font-weight:800;}
sub{vertical-align: sub; font-size: 0.8em;}
sup{vertical-align: super; font-size: 0.8em;}

/* 特殊改行 (スマホ版のみ改行したい場合に挿入) */

.br-pc{display:none;}
.tx-smt{display:none;}  /*スマホ版のみ文字表示*/
.csslider1{display:none;}

/* フォントファイル指定 */
@font-face {
	font-family: "machineJIS";
	src: url(../fonts/KikaiChokokuJIS-Md.otf) format("otf");
}


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

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

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


/* header (ヘッダーの調整)*/

.header{
	background-color: navy; /* #003F6Cは青20号(新幹線用青色)。 #002569を指定するとドラゴンズブルー。#C00029は名鉄スカーレット */
	/* letter-spacing: -.4em; */
	width:100%;
	/* border: solid green 1px; */
	display: flex;
	flex-wrap: wrap;
	/* position: fixed; */
	position: sticky;
	z-index: 999;	/* positionがstickyの時に有効にすること */
	top: 0;	/* positionがstickyの時に有効にすること */
}

.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:aliceblue;
}

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

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

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: navy;
	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:18%;
	top: 0;
	left: 100%;/*leftの値を変更してメニューを画面外へ*/
	z-index: 80;
	background-color: aliceblue;
	transition: all 0.5s;/*アニメーション設定*/
}

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

.nav ul li {
	border-bottom: solid 1px navy;
	list-style: none;
}
.nav ul li a {
	display: block;
	width: 100%;
	font-size: 125%;
	box-sizing: border-box;
	color:navy;
	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;
}

.main90{
	width:95%;
	/* border: solid green 1px; */
	margin-left: 2.5%;
	margin-right: 2.5%;
	line-height: 1.5em;
	overflow: hidden;
	display:flex
	flex-direction:column;
	align-items: center;
	justify-content: center;

.main70 {
	box-sizing: border-box;
	width: 90%;
	margin-left:4%;
	margin-bottom: 3%;/* リストの左側に余白 */
	/* border: solid green 1px; */
	border-radius: 5px;
	padding: 0px 5px 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;
}

.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: 25%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin: 2% 0% 0% 5%;
	overflow: hidden;
	float:left;
}

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

.left70 {
	box-sizing: border-box;
	width:100%;
	height:150px;
	/* border: solid green 1px; */
	border-radius: 5px;
	padding: 5px;
	overflow: hidden;
	float:left;
	/* margin-left:15%; */
	order:10;
	text-align:center;
	position:relative;
}

.left70 div{
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	width:100%;
}

.sub30 {
	box-sizing: border-box;
	width: 100%;
	/* border: solid green 1px; */
	border-radius: 0px;
	padding: 5px;
	overflow: hidden;
	float:left;
	text-align:center;
	order:-1;
}


.notice{
	display:inline-block;
	padding-top:15%;
	line-height:1.5em;
}

.box_shader {
	width: 40%;
	margin-left: 30%;
	margin-top: 2%;
	margin-bottom: 3%;
	float:center;
	background:honeydew; /*背景色の指定*/
	border:darkgreen 1px solid; /*境界線の指定*/
	box-shadow: 0px 0px 4px 2px rgba(162,162,162,0.2); /*影の指定*/
	padding:3px;

}

.box_shader p {
	margin:0;
	padding:0;
	font-weight:800;
	text-align:center;
	color:darkgreen;
	padding:2%;
	letter-spacing:0.2em;
	font-size: 110%;
}

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

.article{
	/* margin-top:1%; */
	margin-bottom:5%;
	width: 100%;
	box-sizing: border-box;
	/* border: solid green 1px; */
	float: left;
	overflow: hidden;
}

.article90{
	width:100%;
	/* border: solid green 1px; */
	margin-top: 5%;
	overflow: hidden;
	float: left;
}

.article90 p{
	padding-left:15%;
	font-weight:600;
}

ol{
	list-style-type:decimal;
	padding-left:3%;
	font-size:105%;
}

.title{
	position: relative;
	display: inline-block;
 	font-weight: bold;
	padding: 0.25em 0.5em;
	text-decoration: none;
	border-bottom: solid 1px #003F6C;
	border-left: solid 1px #003F6C;
	color: #003F6C;
	transition: .4s;
}

.title:hover {	/* 完全なる遊び */
  padding-left: 0.7em;
  padding-right: 0.3em;
}

.btn{
	width:35%;
	/*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: 0px;	/*文字と文字の間隔をあける*/
	text-decoration: none;  /*ブラウザ標準のリンク装飾をオフに*/
	overflow: hidden;   /*おまじない*/
	float: left;
	margin:1.5% 1% 1.5% 1%;
	text-align: center;
	display: inline-block;
}

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



.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;  /*ブラウザ標準のリンク装飾をオフに*/
}

.btn3{
	/*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% 38%;
	text-align: center;
}

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

.btn4{
	/*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% 10%;
	text-align: center;
}

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

/* Table */

table {
	width: 100%;
	border-collapse: collapse;　/*ボーダーの線を一重線に(各セル間の隙間を0にする)*/
	margin-bottom:10px;
	table-layout: fixed;
}

table tr{
	color:black;
	background:none;
}

table th{
	vertical-align:middle;
}

table tr td{
	width: 100%;
	vertical-align:middle;
	/* text-align:center; */
	/* font-weight:600; */
	padding-top:2.5%;
	padding-bottom:2.5%;	
}

/* Table for Supporters */


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

#awd table tr:nth-child(odd){
	background:white;
	height:calc(100%-10px);
}

#awd table tr:nth-child(even){
	background:aliceblue;
	height:calc(100%-10px);
}

#awd table tr{
	width: 100%;
	background:maroon;
	vertical-align:middle;
	padding:3px;
}

#awd table th{
	width: 100%;
	color:aliceblue;
	background:blue;
	vertical-align:middle;
	padding:3px;
}

#awd table tr td{
	width: 100%;
	vertical-align:middle;
	/* display:block; */
	text-align:center;
	font-weight:600;
}

#awd table td:{
	padding-top:20px;
}

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

/* Table for Awards */


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

#awd2 table tr:nth-child(odd){
	background:white;
	height:calc(100%-10px);
}

#awd2 table tr:nth-child(even){
	background:honeydew;
	height:calc(100%-10px);
}

#awd2 table tr{
	width: 100%;
	background:maroon;
	vertical-align:middle;
	padding:3px;
}

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

#awd2 table tr td{
	width: 100%;
	vertical-align:middle;
	/* display:block; */
	text-align:center;
	font-weight:600;
}

#awd2 table td:{
	padding-top:20px;
}


/* Table for Schedule*/

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

#sch table tr:nth-child(odd){
	background:white;
	/* height:calc(100%-10px); */
}

#sch table tr:nth-child(even){
	background:ivory;
	/* height:calc(100%-10px); */
}

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

#sch table td{
	width: 100%;
	vertical-align:middle;
	display:block;
}

#sch table td:nth-child(1){
	padding-top:15px;
}

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

/* Figure */

figure img{
	width:100%;　/*使用する写真の大きさを調整*//* style.cssとの変更点 */
	height:auto;
}

section{
	white-space: nowrap;
}

section img{
	width:100%;　/*使用する写真の大きさを調整*//* style.cssとの変更点 */
	height:auto;
}

/* Popup */

.popup-window {
	-webkit-transform: translate(0, 100%);
	-moz-transform: translate(0, 100%);
	-o-transform: translate(0, 100%);
	-ms-transform: translate(0, 100%);
	transform: translate(0, 100%);
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 999;
	opacity: 0;
}

.popup-window:target {
	-webkit-transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
	opacity: 1;
}

.popup-window .popup-inner {
	position: absolute;
	top: 100px;
	left: 0.5%;
	z-index: 20;
	margin-left: 0px;
	width: 97%;
	padding:3px;
	overflow-x: hidden;
	text-align:center;
	border-radius: 2px;
	background: #fff;
	-webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.6);
}

.popup-window .popup-inner p {
	padding: 0 10px;
}

.popup-window .popup-close {
	display: block;
	text-indent: -10px;
	overflow: hidden;
}

.popup-window .popup-close:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.6);
}

.popup-window .popup-close:after {
	content: '\00d7';
	position: absolute;
	top: 70px;
	left: 50%;
	z-index: 20;
	margin-left: 260px;
	background: #fff;
	border-radius: 1px;
	padding: 2px 15px;
	font-size: 18px;
	text-decoration: none;
	text-indent: 0;
}

.popup-window {
	-webkit-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
}

/* List */
#list-refmark li{
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	align-items: baseline;
}
 
#list-refmark li:before {
	content: "\203b";
	margin-right: 11px;
	color: navy;
}

/* Footer */

footer {
	padding-top: 5px;
	padding-bottom: 5px;
	background: navy; /* #C00029は名鉄スカーレット。#8f0e36は近鉄マルーン。#D70C18に指定するとバーバリアンレッド(グランパス) */
	text-align: center;
}

footer address{
	color: aliceblue;
	letter-spacing: 1.5px;
}

footer address a{
	text-decoration: none;
	color: aliceblue;
}

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

/* img */

img.class1{
	width: 180px;
	height: 254px;
}