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

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

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

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

fs1{font-size:100%;}
fs2{font-size:120%;}
fs5{font-size:150%;}
fs8{font-size:80%;}
fs9{font-size:90%; letter-spacing:-0.05em}
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;}

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

.br-smt{display:none;}  /*スマホ版のみ表示*/
.tx-smt{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: sticky;
	z-index: 999;	/* positionがstickyの時に有効にすること */
	top: 0;	/* positionがstickyの時に有効にすること */
}

.logo{
	width:45%;
	margin:0.5%;
	padding-left: 1%;
	/* border: solid green 1px; */
	overflow: hidden;
	background-color:transparent;
	text-align:justify; 
	text-align-last:justify;
	text-justify: inter-ideograph; /* IEで必要 */
	text-justify: inter-character; /* 古いFirefoxで必要 */
        display: flex;
        float: left;
        font-family: "machineJIS", "Yu Gothic", "YuGothic", sans-serif;
        flex-wrap: nowrap;
        justify-content: center;
        flex-direction: row;
}

/* ロゴにおけるSafari対応 */
_::-webkit-full-page-media, _:future, :root .header .logo{
	display:flex;
	justify-content: space-between;
}

.logo a{
	text-decoration: none;
}

.logo p{
	color:aliceblue;
}

.hamburger-menu{
	width:49%;
}

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

#branding{
	width: 80%; /*横幅指定*/
	margin-top: 1%;
	margin-left: 10%;
	padding-bottom: 60%;
	/* background-color: #313131; */ /*背景色の指定*/
	background-image: url(../img/sample.png); /*背景画像の指定*/
	/* background-size: 1024px 512px contain; */ /* 写真の大きさ指定 */
	overflow: hidden; /*おまじない*/
}

#branding p{
	color: white;
	letter-spacing:5px;
	font-size:150%;
	line-height:30px;
	padding-left:10%;
	padding-top:5%;
        font-family: "machineJIS", "Yu Gothic", "YuGothic", sans-serif;
}


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

.slide{
	width: 720px;	/* スライドショーの横px、出来れば使用する写真の縦pxと同じ方が良い*/
	height: 408px;	/* スライドショーの縦px、使用する写真の横pxと同じ縦横比にすること*/
	overflow: hidden;
	margin: 1em auto;
	/* border: 5px solid #ffffff; */
	box-shadow:0px 0px 5px 0px rgba(0,0,0,0.5);
	position: relative;
}

.slide img{
	display: block;
	position: absolute;
	width: inherit; /* ここで画像を上記サイズに合わせる */
	height: inherit; /* ここで画像を上記サイズに合わせる */
	opacity: 0; /* 透明度、0で完全透明、1で不透明 */
	animation: slideAnime 24s ease infinite; /* スライドショー全体の秒数を設定可能 */
}

.slide img:nth-of-type(1) { animation-delay: 0s }
.slide img:nth-of-type(2) { animation-delay: 8s } /* [(スライドショー全体の秒数)÷(スライド枚数)]の秒数を設定 */
.slide img:nth-of-type(3) { animation-delay: 16s }

@keyframes slideAnime{
	0% { opacity: 0 }
	2% { opacity: 1 }
	31% { opacity: 1 } /* [100÷(スライド枚数)-2]の%数値を設定すること */
	33% { opacity: 0 } /* [100÷(スライド枚数)]の%数値を設定すること */
	100% { opacity: 0 }
}



/* Navigation (ナビ、不要なら省略)*/

.nav{
	width: 100%; /* ナビ全体の幅 */
	margin-top: 1%;
	margin-left: 2%;
	/* border-top: solid 1px royalblue; */ /* ナビ上側の線 */
	/* border-bottom: solid 1px royalblue; */ /* ナビ下側の線 */
	overflow: hidden;
	display:block;
}

.nav ul{
	width: 98%; /* 各ナビの幅 */
	margin-left: 1%; /* ナビ左側のマージン */
}

.nav li{
	width: calc(24% - 2px); /* 各ナビから削るべき幅指定(borderにより1pxずつ縮小) */
	background-color: white;
	font-size: 120%; /* フォントサイズ */
	letter-spacing: 1px; /* 文字間隔 */
	line-height: 30px; /* ナビの高さ */
	/* border-left: solid 1px royalblue; */ /* ナビの左側に線を引く */ 
	/* border-bottom: solid 1px royalblue; */ /* ナビ下側の線 */
	cursor: pointer; /* ナビにカーソルが当たった場合のアイコン指定 */
	text-align: center; /* 各ナビのテキストの位置 */
	float: left; /* 並び順 */
	margin-bottom:1%;
	margin-left:0.5%;
	margin-right:0.5%;
}

.nav a{
	text-decoration: none;
	color: navy;
	vertical-align:middle;
}

.nav li:last-child{
	/*border-right: solid 1px royalblue; */ /* 右端ナビの右側に線を引く */
}

.nav li:hover{
	background-color: gold; /* ナビにカーソルが当たった場合の背景色 */
	transition: background-color 0.3s ease-out; /* カーソルが当たった場合の反応 */
	color: blue;  /*文字色の指定*/
}

.nav li a{
	display: block;
	height: 100%;
	width: 100%
}

.nav li a:hover{
	color: blue;  /*文字色の指定*/
}

/* main */

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

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

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

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

.main30 {
	box-sizing: border-box;
	width: 15%;
	/* border: solid green 1px; */
	border-radius: 5px;
	/* margin-left: 4%; */
	margin-right: 3px;
	margin-bottom: 5px;
	padding: 5px;
	overflow: hidden;
	float:left;
}

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

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

.left30 {
	box-sizing: border-box;
	width: 25%;
	/* border: solid green 1px; */
	border-radius: 5px;
	margin-left: 4%;
	margin-right: 3px;
	margin-bottom: 5px;
	padding: 5px;
	overflow: hidden;
	float:left;
	text-align:right;
	font-weight:600;
}

.sub30 {
	box-sizing: border-box;
	width: 20%;
	/* border: solid green 1px; */
	border-radius: 0px;
	margin: 0, 0.5, 0, 0;
	padding: 5px;
	overflow: hidden;
	/* float:left; */
	/* text-align:right; */
}

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

.box_shader {
	width: 30%;
	margin-left: 35%;
	margin-top: 2%;
	margin-bottom: 2%;
	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{
	width: 100%;
	box-sizing: border-box;
	/* border: solid green 1px; */
	float: left;
	overflow: hidden;
}

.article90{
	width:90%;
	/* border: solid green 1px; */
	margin-left: 4.5%;
	/* margin-right: 4.5%; */
	/* padding:0.5% 2% 2% 2%; */
	overflow: hidden;
}

.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:28%;
	/*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;
	display: inline-block;
}

.btn:hover{
	background-color: yellow; /*背景色の指定*/
	border:solid 1px yellow;   /*線を描く*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;   /*ホバー時の変化をなめらかに*/
	color: blue;  /*文字色の指定*/
	overflow: hidden;   /*おまじない*/
}

.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:hover{
	background-color: yellow; /*背景色の指定*/
	border:solid 1px yellow;   /*線を描く*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;   /*ホバー時の変化をなめらかに*/
	color: blue;  /*文字色の指定*/
	overflow: hidden;   /*おまじない*/
}

.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% 68%;
	text-align: center;
}

.btn3:hover{
	background-color: yellow; /*背景色の指定*/
	border:solid 1px yellow;   /*線を描く*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;   /*ホバー時の変化をなめらかに*/
	color: blue;  /*文字色の指定*/
	overflow: hidden;   /*おまじない*/
}

.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% 56%;
	text-align: center;
}

.btn4:hover{
	background-color: yellow; /*背景色の指定*/
	border:solid 1px yellow;   /*線を描く*/
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;   /*ホバー時の変化をなめらかに*/
	color: blue;  /*文字色の指定*/
	overflow: hidden;   /*おまじない*/
}

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

/* Table */

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

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

table th{
	vertical-align:middle;
}

table td{
	vertical-align:middle;
	font-weight:600;
	padding-bottom:2%;
}


table tr td .job{
	text-align:justify; 
	text-align-last:justify;
}

/*
table td:first-child {
	text-align:justify; 
	text-align-last:justify;
}
*/


table td wd{
	width: 14%;
	vertical-align:middle;
}

/* Table for Supporters */

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

#awd table tr{
	/* border: solid 1px powderblue; */
	color:black;
	background:none;
}

#awd table tr:nth-child(odd){
	background:white;
}

#awd table tr:nth-child(even){
	background:aliceblue;
}

#awd table th{
	/* border: solid 1px maroon; */
	color:aliceblue;
	background:blue;
	vertical-align:middle;
	padding:3px;
}


#awd table td{
	/* border: solid 1px powderblue; */
	vertical-align:middle;
	padding:7px 0px 7px 15px;
}

#awd table td:nth-last-child(2){
	/* border: solid 1px powderblue; */
	vertical-align:middle;
	text-align:center;
}

#awd table td:nth-last-child(3){
	/* border: solid 1px powderblue; */
	width:25%;
	vertical-align:middle;
	text-align:center;
}

/* Table for Awards */

#awd2 table {
	width: 100%;
	border-collapse: collapse;　/*ボーダーの線を一重線に(各セル間の隙間を0にする)*/
	border: solid 2px grey;
	text-align: center;
	margin-bottom:10px;
}

#awd2 table tr{
	/* border: solid 1px powderblue; */
	color:black;
	background:none;
}

#awd2 table tr:nth-child(odd){
	background:white;
}

#awd2 table tr:nth-child(even){
	background:honeydew;
}

#awd2 table th{
	/* border: solid 1px palegreen; */
	color:white;
	background:darkgreen;
	vertical-align:middle;
	padding:3px;
}

#awd2 table td{
	/* border: solid 1px darkgreen; */
	vertical-align:middle;
	padding:7px 0px 7px 15px;
}

#awd2 table td:last-child{
	/* border: solid 1px darkgreen; */
	vertical-align:middle;
	text-align:left;
}

#awd2 table td:nth-last-child(2){
	/* border: solid 1px darkgreen; */
	vertical-align:middle;
	text-align:center;
}

#awd2 table td:nth-last-child(3){
	/* border: solid 1px darkgreen; */
	width:25%;
	vertical-align:middle;
	text-align:center;
}


/* Table for Schedule*/

#sch table {
	width: 100%;
	border-collapse: collapse;　/*ボーダーの線を一重線に(各セル間の隙間を0にする)*/
	border: solid 2px grey;
	text-align: center;
	margin-bottom:10px;
}

#sch table tr{
	border: solid 1px #99967a;
	color:black;
	background:none;
}

#sch table tr:nth-child(odd){
	background:white;
}

#sch table tr:nth-child(even){
	background:lemonchiffon;
}

#sch table th{
	border: solid 1px maroon;
	color:maroon;
	background:mistyrose;
	vertical-align:middle;
	padding:3px;
}

#sch table td{
	border: solid 1px #99967a;
	vertical-align:middle;
	padding-top:10px;
	padding-bottom:10px;
}

/* Figure */

figure img{
	width:80%;　/*使用する写真の大きさを調整*/
	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: 50%;
	z-index: 20;
	margin-left: -380px;
	width: 720px;
	padding:10px;
	overflow-x: hidden;
	text-align:center;
	border-radius: 2px;
	background: #fff;
	-webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

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

.popup-window .popup-close {
	display: block;
	text-indent: -100px;
	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: 2px;
	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;
}

/* キャプションのリンクを有効化 */

.cs_description label p a{
	text-decoration:none;
	display: block;
	height: 100%;
	width: 100%
}

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