@charset "utf-8";


@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*全端末（PC・タブレット・スマホ）共通設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #fff;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 18px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #000;	/*背景色*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form,select,input,textarea {margin: 0px;padding: 0px;font-size: 100%;}
ul {list-style-type: none;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}
video,audio {max-width: 100%;}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #fff;		/*リンクテキストの色*/
	transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
a:hover {
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*container
---------------------------------------------------------------------------*/
#container {
	max-width: 1000px;	/*サイトの最大幅*/
	margin: 0 auto;
	text-align: center;
}
.bg1 {
	background: #101721;
}
.bg2 {
	background: #4e5766;
}
/*h1タグ*/
#container h1 {
	background-color: #b8860b;	/*背景色*/
	text-align: center;			/*テキストをセンタリング*/
	padding: 10px 20px;			/*上下、左右へのボックス内の余白*/
	/*font-size: 30px;			文字サイズ*/
	font-size: 160%;
}
/*h2タグ*/
#container h2 {
	background-color: #464646;	/*背景色*/
	text-align: left;			/*テキストを左寄せ*/
	padding: 20px;				/*ボックス内の余白*/
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	margin: 0px auto 5px;
}
/*ロゴ画像ブロック*/
header #logo {
	width: 90%;	/*画像幅*/
}

/*footer
---------------------------------------------------------------------------*/
footer {
	text-align: center;
	font-size: 13px;
	padding-top: 20px;
}
footer li {
	display: inline;
}
footer li a {
	margin: 0 5px;
}

/*コピーライト
---------------------------------------------------------------------------*/
#copyright {
	clear: both;
	background: #333;	/*背景色*/
}
#copyright a {
	text-decoration: none;
}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
/*通常時のボタンは非表示*/
body .nav-fix-pos-pagetop a {display: none;}
/*fixmenu_pagetop.jsで設定している設定値になったら出現するボタンスタイル*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a {
	display: block;text-decoration: none;text-align: center;
	width: 50px;		/*幅*/
	line-height: 50px;	/*高さ*/
	z-index: 1;
	position: fixed;
	bottom: 20px;	/*下から20pxの場所に配置*/
	right: 3%;		/*右から3%の場所に配置*/
	background: #666;	/*背景色（古いブラウザ用）*/
	background: rgba(0,0,0,0.6);	/*背景色。0,0,0は黒の事。0.6は60%色がついた状態。*/
	color: #fff;	/*文字色*/
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	animation-name: opa1;	/*冒頭のアニメーションで指定しているkeyframesの名前*/
	animation-duration: 1S;	/*アニメーションの実行時間*/
	animation-fill-mode: forwards;	/*アニメーションの完了後、最後のキーフレームを維持する*/
	border-radius: 50%;	/*角丸の設定。円形にする。*/
}
/*マウスオン時*/
body.is-fixed-pagetop .nav-fix-pos-pagetop a:hover {
	background: #999;	/*背景色*/
}

/*3列写真
---------------------------------------------------------------------------*/
.photo3 {
	padding: 0 2%;
}
.photo3 a img {
	width: 33%;
	margin-left: 0.5%;
}
.photo3 a:first-of-type img {
	margin-left: 0;
}

/*その他
---------------------------------------------------------------------------*/
.l {text-align: left !important;}
.padding1 img {
	display: block;
	margin: 0 auto;
}



/*画面幅800px以下の設定
------------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (max-width:800px){

/*全体の設定
---------------------------------------------------------------------------*/
body {
	font-size: 80%;			/*文字サイズ*/
	line-height: 1.6;		/*行間*/
}

/*その他
---------------------------------------------------------------------------*/
.padding1 img {
	width: 80%;
}
/*.text1 {
	font-size: 10px;
	line-height: 1.5;
	padding: 10px;
}*/

}
