@charset "utf-8";
/* ------------------------------------- */
/* １.共通
/* ------------------------------------- */

/* ボックスサイズの計算方法を指定  「border-box」はpaddhing とborderを幅と高さに含める*/
* {
	box-sizing: border-box;
}

/* ページ全体の基本スタイル */
body {
	color: white;
	text-align: center;
	font-size: 16px;
	font-family: メイリオ,Meiryo,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","MS Pゴシック", sans-seirf;
	line-height: 1.2;
	background-color: black;
	padding: 75px 0 0 0;
}

/* リンクの基本スタイル */
a {
	color: #ffff99;
	text-decoration-line: none;
	transition: 0.5s;
}

/* リンクがマウスに乗ったときのスタイル */
a:hover {
	opacity: 0.9;
	text-decoration: underline;
}

/* 画像の基本スタイル */
img {
	vertical-align: bottom;
}
	
/* ボックス*/
.biz-box {
	padding: 0 4px;
}

/* ------------------------------------- */
/* 2.レイアウト
/* ------------------------------------- */

/*ページ全体を囲む枠 */
#wrapper {
	margin: 0 auto;
	width: 98%;
}

/* ------------------------------------- */
/* 3.ヘッダー
/* ------------------------------------- */

/* エリア外枠のスタイル */
header {
	padding-top: 3px;
	padding-bottom: 3px;
}

/* 見出しのスタイル */
.maintitle {
	font-size: 30px;
	color: gold;
	line-height: 1.2;
	border: 1px solid gold;
	border-radius: 5px;
	background: midnightblue;
	padding-top: 8px;
	padding-bottom: 8px;
	margin-bottom: 10px;
}

h1 {
	font-size: 25px;
	line-height: 1;
	text-align: center;
	margin: 0.5em 0;
	font-style: normal;
	color: gold;
	
}

h2 {
	font-size: 22px;
	line-height: 1;
	text-align: left;
	font-style: normal;
	margin: 0.5em 0;
	color: #0f6;
	
}

h3 {
	font-size : 20px;
	text-align: left;
	color: gold;
	line-height: 1.6;
	margin: 0.5em 0;
	
}

h4 {
	font-size : 18px;
	text-align: left;
	color: lightblue;
	line-height: 1;
	margin: 0.5em 0;

}

h5 {
	font-size: 16px;
	color: gold;
	line-height: 1;
	text-align: center;
	margin: 0.3em 0;
	
	
}

h6 {
	font-size: 15px;
	line-height: 1;
	text-align: center;
	color: white;
	
}

p {
	margin: 1em 10px;   /*上下に1em・左右に10px */
	text-align: left;
	line-height: 1.5em;
}

small {
	font-size:12px;
	line-height: 1;
	text-align; left;
	color: grey;
}

/* ------------------------------------- */
/* 4.グローバルナビゲーション
/* ------------------------------------- */

/* エリア外枠のスタイル */
.gNav {
	margin-bottom: 2px;
}
.gNav2 {
	margin-bottom: 15px;
}

/* メニューリストを囲む枠 */
.gNav ul {
	display: -webkit-flex;	/* safari用 */
	display: flex;
}

.gNav2 ul {
	display: -webkit-flex;	/* safari用 */
	display: flex;
}

/* メニューリストの共通スタイル */
.gNav li {
	border: 0.6px solid gold;
	height: 1.6;
	text-align: center;
	width: 	90%;
	margin: 0 auto;
	background-color: midnightblue;
}
.gNav2 li {
	border: 0.6px solid gold;
	height: 1.6;
	text-align: center;
	width: 90%;
	margin: 0;
	background-color: indigo;
}
/* メニューリストのリンクスタイル */
.gNav a {
	color: gold;
	font-size: 18px;
	text-decoration: none;
}

.gNav2 a {
	color: gold;
	font-size: 18px;
	text-decoration: none;
}

/* メニューにマウスを乗せたときのスタイル */
.gNav a:hover {
	background-color: blue;
	color: lightyellow;
	font-weight: bold;
}

.gNav2 a:hover {
	background-color: blue;
	color: lightyellow;
	font-weight: bold;
}

/* 現在ページのメニュースタイル */
.gNav .current-menu-item a {
	background-color: blue;
	color: yellow;
	font-weight: bold;
	
}
.gNav2 .current-menu-item a {
	background-color: blue;
	color: yellow;
	font-weight: bold;
	
}

#fixednav{
	position: fixed;
	top: 0px;
	left: auto;
	right: auto;
	width: 100%;
	height: 75px;
	background-color: black;
}

/* 横スクロール */
.box {
	display: flex;
	width: 98%;
	height: 1.6;
	overflow-x: scroll;
	margin-top: 1.6;
}

.box div {
	width: 60%;
	margin: 3px;
	flex-shrink: 0;
}
/* ------------------------------------- */
/* 5.コンテンツ
/* ------------------------------------- */
.contents {
	font-size: 16px;
	text-align: left;
	margin: 3px;
}

.backtotop {
	text-align: center;
}

.contents_gold {
	text-align: left;
	color: gold;
}

.left_list {
	list-style-type: none;
	margin-left: 20px;
	text-align: left;
	color: white;
}

.left_list1 {
	list-style-type: circle;
	margin-left: 20px;
	text-align: left;
	color: gold;
}

.left_list2 {
	list-style-type: circle;
	margin-left: 20px;
	text-align: left;
	color: #99ff00;
}

.left_list3 {
	list-style-type: disc;
	margin-left: 20px;
	margin-bottom: 5px;
	text-align: left;
	color: white;
}

ul li {
padding-top:5px;
padding-bottom:5px;
}

/* 写真の右配置33% */
.photo_right {
	float: right;
	margin: 30px;
	width: 33%;
}

/* 写真の右配置50% */
.photo_right2 {
	float: right;
	margin: 30px;
	width: 50%;
}

.clear {
	clear: both;
}

figure {
	margin-bottom: 20px;
}

 img {
	margin-bottom: 10px;
	max-width: 100%;
}

figcaption {
	text-align: left;
}

dd {
margin-left: 2em;
text-align: left;
margin-bottom: 1em;
}

dt {
color: gold;
text-align: left;
}

.newsframe {
	border: 2px solid grey;
	border-radius: 7px;
	background: black;
	padding-top: 5px;
	padding-bottom:5	px;
	margin-bottom: 15px;
}

.blogframe {
	border: 1px solid #33ff66;
	background: #003333;
	padding-top: 5px;
	padding-bottom:5px;
	margin-bottom: 15px;
}


.hr{
	border-bottom: 1px dotted grey;
}

.col-12 {
	width: 100%;
}

.col-9 {
	width: 75%;
}

.col-6 {
	width: 50%;
}

.col-4 {
	width: 33.33%;	
}

.col-3 {
	width: 25%;
}


.flex {
	display: -webkit-flex;  /*safari 用 */
	flex-wrap: wrap;
	display: flex;
}

.link {
	font-size: 20px;
	color: white;
}

.photocenter {
	margin-left: auto;
	margin-right: auto;
}

/* セクション間隔 */
section + section {
	margin-top: 20px;
}

/* 中央寄せ */
.chuo {
	text-align: center;
	line-height: 1;
	
}

/* 右寄せ */
.migi {
	text-align: right;
	line-height: 1;
	}

/* 左寄せ */
.hidari {
	text-align: left;
	line-height: 1;
	}

/* ボトムスペース */
.bottom_space {
	margin-bottom: 30px;
}

/* アンダーライン */
.underred {
	border-bottom: solid 1px red;
}

.underlightblue {
	border-bottom: solid 1px lightblue;
}

.underyellow {
	border-bottom: solid 1px yellow;
}

/* 強調 */
.str {
	color: #ffccff;
}

.ita {
	font-style: italic;
}

/* リンク時のズレを調整 固定の指定と連動させること */
.anchor {
	padding-top: 75px;
	margin-top: -75px;
}

/* ------------------------------------- */
/* 表のスタイル
/* ------------------------------------- */
table {
	line-height: 18px;
	font-size: 16px;
	margin: 0 auto;
	width: 99%;
	margin-bottom: 21px;
	border-collapse: collapse;   /*線を重ねる*/
}

th, td {
	border: solid;
	border-width: thin;
	padding: 2px;
	vertical-align: middle;
}

th {
	width: 200;
	height: 25px;
)
