﻿@charset "utf-8";


/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #FFF;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #000;	/*背景色*/
	-webkit-text-size-adjust: none;
}
/*トップページの背景画像*/
body#top {
	background: #000 url(../images/bgimg.jpg) no-repeat center bottom;	/*古いブラウザ用*/
	background: #000 url(../images/bgimg.jpg) no-repeat center bottom/120%;	/*背景色、背景画像の読み込み、リピートしない、中央下部に配置、ウィンドウに対する表示サイズ幅。サイズは古いブラウザには未対応。*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	max-width: 100%;
	height: auto;
}
input,textarea,select {
	font-size: 14px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #f7cb33;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	background: #686153;	/*背景色*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.3);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.3);			/*同上*/
	margin-bottom: 60px;	/*ヘッダーの下に空けるスペース*/
}
header #inner {
	width: 980px;	/*幅。下にある「#contents」の幅に合わせる。*/
	margin: 0 auto;
	padding: 20px 0px;	/*上下、左右へのボックス内の余白*/
	text-align: center;	/*中身をセンタリング*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	overflow: hidden;
}
/*メニュー１個あたりの設定*/
#menubar li {
	display: inline-block;
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
}
#menubar a {
	display: block;
	color: #fff;	/*文字色*/
	text-decoration: none;
	border-bottom: 3px solid transparent;	/*下線の幅、線種、色。transparentは透明。*/
	padding: 0px 20px;	/*上下、左右へとる余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時*/
#menubar a:hover {
	border-bottom: 3px solid #FFF;	/*下線の幅、線種、色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 980px;	/*幅。上の「header #inner」の幅に合わせる*/
	margin: 0 auto;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	clear: both;
	width: 100%;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #FFF;		/*文字色*/
	background: #686153;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#746a56), to(#686153));	/*グラデーション*/
	background: -webkit-linear-gradient(#746a56, #686153);	/*同上*/
	background: linear-gradient(#746a56, #686153);			/*同上*/
	padding: 5px 15px;	/*上下、左右への余白*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #111;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#111), to(#000));	/*グラデーション*/
	background: -webkit-linear-gradient(#111, #000);	/*同上*/
	background: linear-gradient(#111, #000);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #686153;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #686153;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}



/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	position: fixed;	/*上下にスクロールしてもブロックを固定表示させる設定。不要ならこの１行削除。*/
	padding-bottom: 30px;
}
/*白コンテンツ用*/
.white #sub,
.white #sub a {
	color: #FFF;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	background: #1d1d1d url(../images/bg2.png);	/*背景色と背景画像（※古いブラウザ用）*/
	background: url(../images/bg2.png), -webkit-linear-gradient(#333, #1d1d1d);	/*背景画像とグラデーション*/
	background: url(../images/bg2.png), linear-gradient(#333, #1d1d1d);		/*同上*/
	padding: 10px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-bottom: 3px solid #ff6b12;	/*下線の幅、線種、色*/
	padding-left: 10px;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	margin-bottom: 15px;	/*メニューブロックの下にあけるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #222;	/*下側の線の幅、線種、色*/
	padding-left: 10px;
	background: #000;	/*背景色*/
	color: #FFF;
}
#sub ul li a:hover {
	background: #ff6b12;	/*マウスオン時のボックス色*/
}

/*subコンテンツ内のbox1
---------------------------------------------------------------------------*/
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background: #7f3509;		/*背景色*/
	padding: 10px;				/*ボックス内の余白*/
	margin-bottom: 15px;		/*ボックスの下にあけるスペース*/
}
/*box1の中にメニューが入った� �合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0;
}

/*subコンテンツ内のlistボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.list {
	font-size: 11px;	/*文字サイズ*/
	background: #5A795F;	/*背景色（※古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background: -webkit-linear-gradient(#222, #000);									/*同上*/
	background: linear-gradient(#222, #000);											/*同上*/
	line-height: 1.6;	/*行間*/
	overflow: hidden;
	border-right: 1px solid #222;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #222;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #222;	/*左側の線の幅、線種、色*/
	position: relative;
}
#sub section.list a {
	padding: 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
#sub section.list a:hover {
	background: #000;	/*マウスオン時のボックス色*/
}
/*h4見出しタグ*/
#sub section.list h4 {
	color: #ff6b12;		/*文字色*/
	margin-left: 34%;	/*左の画像とバランスをとって設定する*/
	font-size: 100%;
}
/*p段落タグ*/
#sub section.list p {
	margin-left: 34%;	/*左の画像とバランスをとって設定する*/
}
/*サ� ネイル画像設定*/
#sub section.list figure img {
	float: left;	/*左に回り込みさせる設定*/
	width: 30%;	/*写真の幅*/
	border: 1px solid #999;	/*� 線の幅、線種、色*/
}

/*ギャラリーコンテンツ
---------------------------------------------------------------------------*/
#gmain {
	float: right;	/*左側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#gmain h4 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #ffff;		/*文字色*/
	background: #d00a2f;	/*背景色（古いブラウザ用686153）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#746a56), to(#686153));	/*グラデーション*/
	background: -webkit-linear-gradient(#746a56, #d00a2f);	/*同上*/
	background: linear-gradient(#746a56, #d00a2f);			/*同上*/
	padding: 5px 15px;	/*上下、左右への余白*/
}
/*gmainコンテンツのh2タグの１文字目への設定*/
#gmain h4::first-letter {
	border-left: 3px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*gmainコンテンツのh3タグの設定*/
#gmain h5 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #111;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#111), to(#000));	/*グラデーション*/
	background: -webkit-linear-gradient(#111, #000);	/*同上*/
	background: linear-gradient(#111, #000);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #686153;	/*枠線の幅、線種、色*/
}
/*gmainコンテンツのh3タグの１文字目への設定*/
#gmain h5::first-letter {
	border-left: 3px solid #686153;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*gmainコンテンツの段落タグ設定*/
#gmain gp {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
}
#gmain gp + gp {
	padding-top: 0px;
}
#gmain h4 + gp,
#gmain h5 + gp {
	padding-top: 0px;
	margin-top: -5px;
}

/*GALLERYのサムネイル設定
---------------------------------------------------------------------------*/
/*各ボックス*/
.list {
	float: left;
	width: 23%;	/*ボックスの幅*/
	margin-left: 1.6%;
	margin-bottom: 15px;
}
/*画像*/
.list figure {
	width: 100%;
	height: auto;
	opacity: 0.6;	/*透明度0.6は60%の透明度という意味*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の画像*/
.list figure:hover {
	opacity: 1;	/*透明度。1は100%の事。*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 30px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none !important;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブル内の左側*/
.ta1 th {
	width: 140px;
	padding: 10px;
	text-align: center;
	background: #222;	/*背景色*/
}
/*テーブル内の右側*/
.ta1 td {
	padding: 10px;
}


/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin-bottom: 15px;
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi {
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}
/*テーブル内の左側*/
.ta2 th {
	width: 250px;
	padding: 10px;
	text-align: center;
	background: #222;	/*背景色*/
}
/*テーブル内の右側*/
.ta2 td {
	padding: 10px;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #333;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FF0000;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
.box {
	background: #eee;
	color: #000;
	border: 1px solid #ccc;
	margin: 0px 15px 15px;
	padding: 10px !important;
	word-break: break-all;
}



/*ここからタブレット用（480px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:480px) and (max-width:800px){

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
header #inner {
	width: auto;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}

/*GALLERYのサムネイル設定
---------------------------------------------------------------------------*/
/*画像*/
.list figure {
	opacity: 1;	/*マウスオンができない端末向けに透明度を通常に戻す設定*/
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
header {
	margin-bottom: 20px;
}
header #inner {
	width: auto;
	padding: 20px 0px 10px;	/*上・左右・下へのボックス内の余白*/
	text-align: left;	/*中身を左よせ*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
nav#menubar-s {
	display: block;
	text-align: center;	/*文字をセンタリング*/
}
#menubar-s a {
	display: block;
	color: #fff;	/*文字色*/
	background: #333;	/*背景色*/
	margin-top: 1px;	/*メニュー同士に空ける余白*/
	text-decoration: none;
	padding: 10px 0px;	/*上下、左右へとる余白*/
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

/*３本バーアイコン設定
---------------------------------------------------------------------------*/
/*３本バーブロック*/
#menubar_hdr {
	display: block;
	position: absolute;
	top: 18px;		/*上から18pxの場所に配置*/
	right: 10px;	/*右から10pxの場所に配置*/
	width: 30px;	/*幅*/
	border: 1px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 4px;	/*角丸のサイズ*/
	padding: 12px 10px 5px;	/*上、左右、下へのボックス内余白*/
}
/*３本のバー（1本あたり）*/
#menubar_hdr span {
	display: block;
	border-top: 2px solid #FFF;	/*枠線の幅、線種、色*/
	border-radius: 2px;	/*角丸のサイズ*/
	margin-bottom: 7px;	/*バー同士の余白*/
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin: 2%;
}

/*GALLERYのサムネイル設定
---------------------------------------------------------------------------*/
/*画像*/
.list figure {
	opacity: 1;	/*マウスオンができない端末向けに透明度を通常に戻す設定*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
/*テーブル内の左側*/
.ta1 th{
	width: 100px;
	padding: 2px;
}
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}

/*テーブル２
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
/*テーブル内の左側*/
.ta2 th{
	width: 30%;
	padding: 2px;
}
/*テーブル内の右側*/
.ta2 td{
	width: auto;
	padding: 2px;
}




/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}

}