@charset "utf-8"; /*文字コード指定*/

/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	/*グラデーション設定*/
	background: #ebebeb; /* Old browsers */
	background: -moz-linear-gradient(top,  #ebebeb 0%, #ededed 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ebebeb), color-stop(100%,#ededed)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #ebebeb 0%,#ededed 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #ebebeb 0%,#ededed 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #ebebeb 0%,#ededed 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #ebebeb 0%,#ededed 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ebebeb', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
	/*ここまでグラデーション設定*/
	color: #333; /*文字色指定*/
	font-size: 75%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	line-height: 1;	/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
}

ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}

a {
	color: #333; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover {
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

.color1 {
	color: #990000; /*文字色指定*/
}

/* ----- ヘッダー(ページの一番上の部分) ----- */

header {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 40px; /*オリジナル 30px領域の高さ指定*/
	/*グラデーション設定*/
	background: #4173a6; /* Old browsers */
	background: -moz-linear-gradient(top,  #4173a6 0%, #274789 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#4173a6), color-stop(100%,#274789)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #4173a6 0%,#274789 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #4173a6 0%,#274789 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #4173a6 0%,#274789 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #4173a6 0%,#274789 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4173a6', endColorstr='#274789',GradientType=0 ); /* IE6-9 */
	/*ここまでグラデーション設定*/
}

header h1 {
	color: #fff; /*文字色指定*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 50px; /*オリジナル 30px 行の高さ指定*/
}

#logo a {
	color:#fff; /*文字色指定*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-size: 2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-family: 'Ceviche One', cursive; /*フォントの種類指定(googleのwebフォント)*/
}

#logo a:hover {
	color:#ccc; /*文字色指定*/
	/*アニメーション（ふわっと変化）設定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;/*ここまでアニメーション設定*/
}

/* ----- ページ左の内容 ----- */

#logo_2 {
	margin: 0px 10px 20px 10px; /*オリジナル 全体15px ボックス外側の余白*/
}

#logo_2 a {
	font-weight: bold; /*フォントの太さ指定(normalは標準)*/
	font-size: 2.5em; /*フォントサイズ指定(オリジナル 2.5em emはフォントの高さを１とした相対指定)*/
	
	font-family: 'Ceviche One', cursive; 
	/*　font-family:"ＭＳ Ｐゴシック", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, Osaka, "Hiragino Kaku Gothic Pro";*/
	/*フォントの種類指定(googleのwebフォント)*/
}

#logo_2 a:hover {
	color:#999; /*文字色指定*/
	/*アニメーション（ふわっと変化）設定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;/*ここまでアニメーション設定*/
}

#sidebar ul {
	margin: 50px 10px 20px 20px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	width: 130px; /*幅指定*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

#sidebar li {
	border-bottom: 1px solid #bbb; /*境界線設定*/
      	line-height: 1.9em; /*行の高さ指定*/
}

#sidebar li a {
	color: #999; /*文字色指定*/
}

#sidebar li a:hover {
	color:#333; /*文字色指定*/
	/*アニメーション（ふわっと変化）設定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;/*ここまでアニメーション設定*/
}

/* ----- ページ中央の内容 ----- */

/*youtube playerのレスポンシブ設定*/
#topcontent {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	overflow: hidden; /*ボックスからはみ出た部分の設定（hiddenは非表示）*/
	padding-top: 30px; /*ボックス内側上の余白*/
	padding-bottom: 56.25%; /*ボックス内側下の余白*/
	height: 0; /*領域の高さ指定*/
}

#topcontent iframe {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 0; /*左からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 100%; /*領域の高さ指定(100%は縦いっぱいに表示)*/
}

/*ここまでyoutube playerのレスポンシブ設定*/

article h2 {
	margin: 20px 10px 15px 10px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-size: 1.2em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

article ul {
	margin-left: 20px; /*ボックス外側左の余白*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 25px; /*行の高さ指定*/
}

article a {
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}

/*ギャラリー設定*/
section {
	clear: both; /*floatの回り込みを解除*/
	margin: 10px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	padding-top: 20px; /*ボックス内側上の余白*/
}

#photo {
	margin-right: -10px; /*ボックス外側右の余白*/
}

.grid {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	background-color: #fff; /*背景色指定*/
	/*ボックスの影設定*/
	-webkit-box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	-moz-box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	box-shadow: 0 1px 3px rgba(34,25,25,0.4);
	/*ここまでボックスの影設定*/
	/*ボックスの時間変化の設定*/
	-webkit-transition: top 1s ease, left 1s ease;
	-moz-transition: top 1s ease, left 1s ease;
	-ms-transition: top 1s ease, left 1s ease;
	-o-transition: top 1s ease, left 1s ease;/*ここまでボックスの時間変化の設定*/
}

.grid img {
	padding: 5px 0 3px 2.5%; /*ボックス内側の余白(値4つは左から上,右,下,左の値)*/
	width: 95%; /*幅指定*/
}

.grid:hover {
	color:#a22041; /*文字色指定*/
}

.grid p {
	padding: 5px 0; /*ボックス内側の余白(値2つは左から上下、左右の値)*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

.more {
	margin: 20px auto; /*ボックス外側の余白(値2つは左から上下、左右の値)*/
	padding-bottom: 5px; /*ボックス内側下の余白*/
	width: 200px; /*幅指定*/
	height: 30px; /*領域の高さ指定*/
	/*ボックスの設定*/
	border-radius: 15px;
	background: #bfbfbf; /* Old browsers */
	background: -moz-linear-gradient(top,  #bfbfbf 0%, #939393 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#bfbfbf), color-stop(100%,#939393)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #bfbfbf 0%,#939393 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #bfbfbf 0%,#939393 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #bfbfbf 0%,#939393 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #bfbfbf 0%,#939393 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#bfbfbf', endColorstr='#939393',GradientType=0 ); /* IE6-9 */
	/*ここまでボックスの設定*/
	color: #fff; /*文字色指定*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-family: 'Artifika', cursive; /*フォントの種類指定(googleのwebフォント)*/
	line-height: 30px; /*行の高さ指定*/
	/*透明度設定*/
	opacity: 0.8;
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;/*ここまで透明度設定*/
}

.more:hover {
	color: #000; /*文字色指定*/
	/*透明度設定*/
	opacity: 0.6;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	/*ここまで透明度設定*/
	cursor: pointer; /*マウスカーソルの形状を指定(pointerはリンクカーソル)*/
	/*アニメーション（ふわっと変化）設定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	transition: 0.5s;/*ここまでアニメーション設定*/
}

/* ----- ページ右の内容 ----- */

#column2 h2 {
	margin: 30px 10px 5px 5px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	color: #333; /*文字色指定*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

#scroll {
	margin: 5px 0 5px 10px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	width: 290px; /*幅指定*/
	height: 200px; /*領域の高さ指定*/
}

#newlist dl {
	padding-left: 5px; /*ボックス内側左の余白*/
	text-align: left; /*行の水平方向の揃え方(leftは左寄せ)*/
}

#newlist dt {
	padding: 5px 10px 5px 0; /*ボックス内側の余白(値4つは左から上,右,下,左の値)*/
	color: #666; /*文字色指定*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
}

#newlist dd {
	padding: 5px 10px 5px 5px; /*ボックス内側の余白(値4つは左から上,右,下,左の値)*/
	border-bottom: 1px solid #ccc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
}

/* ----- ページトップに戻るボックスの設定 ----- */

.pagetop {
	margin: 20px; /*ボックス外側の余白*/
	padding-bottom: 15px; /*ボックス内側下の余白*/
	width: 120px; /*幅指定*/
	height: 40px; /*領域の高さ指定*/
	/*ボックスの設定*/
	border-radius: 15px;
	background: #6288b2; /* Old browsers */
	background: -moz-linear-gradient(top,  #6288b2 0%, #4f699e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#6288b2), color-stop(100%,#4f699e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #6288b2 0%,#4f699e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #6288b2 0%,#4f699e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #6288b2 0%,#4f699e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #6288b2 0%,#4f699e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#6288b2', endColorstr='#4f699e',GradientType=0 ); /* IE6-9 */
	/*ここまでボックスの設定*/
	color: #fff; /*文字色指定*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
	font-size: 1.5em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-family: 'Artifika', serif;
	line-height: 50px; /*行の高さ指定*/
	/*透明度設定*/	opacity: 0.8;
	filter:alpha(opacity=80);
	-moz-opacity: 0.8;/*ここまで透明度設定*/
}

.pagetop:hover {
	color: #000; /*文字色指定*/
	/*透明度設定*/
	opacity: 0.6;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	/*ここまで透明度設定*/
	/*アニメーション（ふわっと変化）設定*/
	-webkit-transition: 0.5s;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
 -o-transition: 0.s;
	transition: 0.5s;/*ここまでアニメーション設定*/
}

/* ----- フッター（ページの一番下の部分） ----- */

footer {
	clear: both; /*floatの回り込みを解除*/
	width: 100%; /*幅指定(100%は画面横幅いっぱいに表示)*/
	height: 30px; /*領域の高さ指定*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
	font-size: 0.8em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 30px; /*行の高さ指定*/
}

/*レスポンシブレイアウト設定*/

@media screen and (max-width: 480px) {

/*レイアウト*/	
#wrapper {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	width: 100%; /*幅指定*/
}

header h1 {
	color: #333; /*文字色指定*/
	padding-top: 30px; /*ボックス外側上の余白*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#logo {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 20px; /*左からの距離(positionで指定している場合に適用)*/
}

#logo_2 {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#column1 {
	margin: 0px auto 10px; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	width: 100%; /*幅指定*/
}

#topcontent {
	margin-top: 30px; /*ボックス外側上の余白*/
}

article {
	margin-right: 20px; /*ボックス外側右の余白*/
}

article h2 {
	margin: 20px; /*ボックス外側の余白*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#sidebar ul {
	margin: 20px 0; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
	width: 100%; /*幅指定*/
}

#sidebar li {
	line-height: 30px; /*行の高さ指定*/
	margin: 0 20px; /*ボックス外側右の余白*/
}

#column2 {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	top: -230px; /*上からの距離(positionで指定している場合に適用)*/
	width: 100%; /*幅指定*/
}

#column2 h2 {
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

#scroll {
	height: 150px; /*領域の高さ指定*/
	width: 100%; /*幅指定*/
	margin-right: 20px; /*ボックス外側右の余白*/
}

#newlist dd {
	margin-right: 20px; /*ボックス外側右の余白*/
}

#afir {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#afir2 {
	/*　display: none; オリジナル　要素の表示指定（noneは非表示）*/
	display: block;
}

section {
	margin-top: 20px; /*ボックス外側上の余白*/
}

#photo {
	margin: 0; /*ボックス外側の余白*/
}
#photo a {
	margin: 1%; /*ボックス外側の余白*/
	width: 98%; /*幅指定*/
}
#photo_2 a {
	margin: 1%; /*ボックス外側の余白*/
	width: 98%; /*幅指定*/
}
}
 @media screen and (min-width: 481px) and (max-width: 768px) {

/*レイアウト*/	
#wrapper {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	width: 100%; /*幅指定*/
}

header h1 {
	padding-right: 20px; /*ボックス内側右の余白*/
	text-align: right; /*行の水平方向の揃え方(rightは右寄せ)*/
}

#logo {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	top: 0; /*上からの距離(positionで指定している場合に適用)*/
	left: 20px; /*左からの距離(positionで指定している場合に適用)*/
}

#logo_2 {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#column1 {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-right: 10px; /*ボックス外側右の余白*/
	margin-left: -220px; /*ボックス外側右の余白*/
	width: 100%; /*幅指定*/
}

#column1_inner {
	margin-left: 230px; /*ボックス外側左の余白*/
}

#sidebar {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-left: 10px; /*ボックス外側左の余白*/
	width: 200px; /*幅指定*/
}

#sidebar ul {
	margin-top: 450px; /*ボックス外側上の余白*/
}

#sidebar li {
	line-height: 30px; /*行の高さ指定*/
}

#column2 {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	top: 20px; /*上からの距離(positionで指定している場合に適用)*/
	left: 10px; /*左からの距離(positionで指定している場合に適用)*/
	width: 200px; /*幅指定*/
}

#column2 h2 {
	margin-left: 10px; /*ボックス外側左の余白*/
}

#scroll {
	margin-left: 10px; /*ボックス外側左の余白*/
	width: 180px; /*幅指定*/
	height: 150px; /*領域の高さ指定*/
}

#afir {
	display: none; /*要素の表示指定（noneは非表示）*/
}
#afir2 {
	/*グラデーション設定*/
	background: #f3e2c7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f3e2c7 0%, #c19e67 50%, #b68d4c 51%, #e9d4b3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3e2c7), color-stop(50%,#c19e67), color-stop(51%,#b68d4c), color-stop(100%,#e9d4b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e2c7', endColorstr='#e9d4b3',GradientType=0 ); /* IE6-9 */
	/*ここまでグラデーション設定*/
	width: 200px; /*幅指定*/
	height: 200px; /*領域の高さ指定*/
}

#photo a {
	margin: 1%; /*ボックス外側の余白*/
	width: 31.33%; /*幅指定*/
}
#photo_2 a {
	margin: 1%; /*ボックス外側の余白*/
	width: 31.33%; /*幅指定*/
}
}
 @media screen and (min-width: 769px) and (max-width: 1129px) {

/*レイアウト*/	
#wrapper {
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	width: 100%; /*幅指定*/
}

#logo {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#contents {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-right: -220px; /*ボックス外側右の余白*/
	width: 100%; /*幅指定*/
}

#column1 {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-left: -220px; /*ボックス外側左の余白*/
	width: 100%; /*幅指定*/
}

#column1_inner {
	margin-right: 230px; /*ボックス外側右の余白*/
	margin-left: 190px; /*ボックス外側左の余白*/
}

#sidebar {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-left: 10px; /*ボックス外側左の余白*/
	width: 170px; /*幅指定*/
}

#column2 {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-right: 10px; /*ボックス外側右の余白*/
	width: 200px; /*幅指定*/
}

#afir {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#afir2 {
	/*グラデーション設定*/
	background: #f3e2c7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f3e2c7 0%, #c19e67 50%, #b68d4c 51%, #e9d4b3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3e2c7), color-stop(50%,#c19e67), color-stop(51%,#b68d4c), color-stop(100%,#e9d4b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e2c7', endColorstr='#e9d4b3',GradientType=0 ); /* IE6-9 */
	/*ここまでグラデーション設定*/
	margin-top: 20px; /*ボックス外側上の余白*/
	width: 200px; /*幅指定*/
	height: 200px; /*領域の高さ指定*/
}

#photo a {
	margin: 1%; /*ボックス外側の余白*/
	width: 23%; /*幅指定*/
}
#photo_2 a {
	margin: 1%; /*ボックス外側の余白*/
	width: 23%; /*幅指定*/
}
}
 @media screen and (min-width: 1130px) {

/*レイアウト*/	
#wrapper {
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	width: 1130px; /*幅指定*/
}

#logo {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#contents {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	width: 800px; /*幅指定*/
}

#column1 {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	width: 610px; /*幅指定*/
}

#sidebar {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-left: 10px; /*ボックス外側左の余白*/
	width: 170px; /*幅指定*/
}

#column2 {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-right: 10px; /*ボックス外側右の余白*/
	width: 300px; /*幅指定*/
}

#afir {
	/*グラデーション設定*/
	background: #f3e2c7; /* Old browsers */
	background: -moz-linear-gradient(top,  #f3e2c7 0%, #c19e67 50%, #b68d4c 51%, #e9d4b3 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f3e2c7), color-stop(50%,#c19e67), color-stop(51%,#b68d4c), color-stop(100%,#e9d4b3)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #f3e2c7 0%,#c19e67 50%,#b68d4c 51%,#e9d4b3 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e2c7', endColorstr='#e9d4b3',GradientType=0 ); /* IE6-9 */
	/*ここまでグラデーション設定*/
	margin-top: 20px; /*ボックス外側上の余白*/
	width: 300px; /*幅指定*/
	height: 250px; /*領域の高さ指定*/
}

#afir2 {
	display: none; /*要素の表示指定（noneは非表示）*/
}

#photo a {
	margin: 1%; /*ボックス外側の余白*/
	width: 18%; /*幅指定*/
}
#photo_2 a {
	margin: 1%; /*ボックス外側の余白*/
	width: 18%; /*幅指定*/
}
}

@charset "utf-8"; /*文字コード指定*/

/* ----- css reset(各ブラウザで指定されているスタイルを初期化)と全体設定 ----- */

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, form, input, textarea, p, th, td, img {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	border: 0; /*境界線指定*/
}

body {
	line-height: 2;	/*行の高さ指定(数値のみの場合はfont-sizeの倍数)*/
	font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro"; /*フォントの種類指定(左から優先順位)*/
	font-size: 75%; /* フォントサイズ指定(%はブラウザに設定した標準文字サイズ(通常16px)に対する値)*/
	color: #333333; /*文字色指定*/
}

ol, ul {
	list-style: none; /*リストマーカーの種類指定(noneはなし)*/
}

a { /*リンクの文字設定(マウスをのせる前)*/
	color: #0000FF; /*文字色指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
}

a:hover { /*リンクの文字設定(マウスをのせた時)*/
	color: #C74B15; /*文字色指定*/
	text-decoration: underline; /*テキストの装飾指定(下線、上線など)(underlineは下線を引く)*/
}

.color1 {
	color: #FF0033; /*文字色指定*/
}

/* ----- ヘッダー(ページの一番上の部分) ----- */

#header {
	position: relative; /*ボックスの配置方法(relativeは相対位置配置)*/
	height: 80px; /*領域の高さ指定*/
	width: 950px; /*幅指定(autoは初期値に戻す)*/
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	color: #333333; /*文字色指定*/
}

#header h1 {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	right: 10px; /*右からの距離(positionで指定している場合に適用)*/
	bottom: 5px; /*下からの距離(positionで指定している場合に適用)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	font-weight: normal; /*フォントの太さ指定(normalは標準)*/
}

#logo {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	left: 5px; /*左からの距離(positionで指定している場合に適用)*/
	top: 5px; /*上からの距離(positionで指定している場合に適用)*/
}

/* ----- ナビゲーションメニュー(ヘッダー内のメインメニュー) ----- */

.nav ul {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-top: 5px; /*ボックス外側上の余白*/
}

.nav li {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	font-weight: bold; /*フォントの太さ指定(boldは太字)*/
}

.nav li a {
	width: 100px; /*幅指定*/
	color: #16160e; /*文字色指定*/
	line-height: 30px; /*行の高さ指定*/
	text-decoration: none; /*テキストの装飾指定(下線、上線など)(noneはなし)*/
	display: block; /*要素の表示形式指定(blockはブロックレベルで表示)*/
	text-align: center; /*行の水平方向の揃え方(centerは中央揃え)*/
}

.nav a:hover {
	background-image: url(../images/menu.gif); /*背景画像指定　url(画像ファイルを指定)*/
	background-repeat: repeat-x; /*背景画像の並べかた(repeat-xは横方向に繰り返し並べる)*/
}

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

#container { /*container(入れ物、容器)の中に各要素(ボックス)を配置*/
	width: 950px; /*幅指定(100%は画面横幅いっぱいに表示)*/
	margin: auto; /*ボックス外側の余白(autoはボックス幅や隣接する他ボックス幅による自動余白割り当て)*/
	background-color:#ffffff; /*背景色指定*/
}

#container a:hover img { /*画像にマウスをのせた時半透明にする*/
	filter: Alpha(opacity=70); /*視覚効果(IE独自) Alphaは透過表示 opacityは開始透明度*/
	opacity: 0.7; /*要素の透明度*/
}

#content {
	width: 760px; /*幅指定(100%は画面横幅いっぱいに表示)*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	margin-bottom: 20px; /*ボックス外側下の余白*/
}

#rightside {
	width: 160px; /*幅指定*/
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
	margin-bottom: 20px; /*ボックス外側下の余白*/
}

/* ----- フッター(ページの一番下の部分) ----- */

#footer {
	clear: both; /*floatの回り込みを解除*/
	height: 30px; /*領域の高さを指定*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
	font-size: 0.75em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
}

#footer p {
	float: right; /*要素を左か右に寄せて配置(rightは右に寄せる)*/
}

/* ----- フッターメニュー ----- */

#footmenu {
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
}

#footmenu li {
	padding-left: 15px; /*ボックス内側左の余白*/
	display: inline; /*要素の表示形式指定(inlineはインラインレベルで表示(リストを横並び))*/
	list-style-type: none; /*リストマーカーの種類指定(noneはなし)*/
}

#footmenu li.first {
	padding-left: 0; /*ボックス内側左の余白*/
}

/* ----- コンテンツ ----- */

.post {
	clear: both; /*floatの回り込みを解除*/
	width: auto; /*幅指定(autoは初期値に戻す)*/
}

.post h2 {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 30px; /*行の高さ指定*/
	border-bottom: solid 1px #cccccc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	margin-bottom: 20px; /*ボックス外側下の余白*/
}

.post ul {
	margin-bottom: 20px; /*ボックス外側下の余白*/
}

.post ul li {
	padding-left: 15px; /*ボックス内側左の余白*/
}

.newlist {
	margin-bottom: 15px; /*ボックス外側下の余白*/
}

.newlist dl {
	width: auto; /*幅指定(autoは初期値に戻す)*/
	height: 200px; /*領域の高さ指定*/
	overflow: auto; /*領域に入りきらない内容の処理(autoはブラウザに依存(通常はみ出す場合はスクロール表示))*/
	padding-left: 5px; /*ボックス内側左の余白*/
	text-align: left; /*行の水平方向の揃え方(leftは左寄せ)*/
}

.newlist dd {
	border-bottom: solid 1px #cccccc; /*下境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	margin: 5px 10px 10px 5px; /*ボックス外側の余白(値4つは左から上,右,下,左の値)*/
}

/* ---- 画像リストの設定 ----- */

.imglist ul {
	margin-left: -26px; /*ボックス外側左の余白*/
}

.imglist ul li {
	padding: 0; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	float: left; /*要素を左か右に寄せて配置(leftは左に寄せる)*/
	display: inline; /*要素の表示形式指定(inlineはインラインレベルで表示(リストを横並び))*/
	margin-left: 26px; /*ボックス外側左の余白*/
	margin-bottom: 26px; /*ボックス外側下の余白*/
	
}

#preview {
	position: absolute; /*ボックスの配置方法(absoluteは絶対位置配置)*/
	border: solid 1px #16160e; /*境界線の一括指定(solidは1本線,線の太さ,線の色)*/
	background-color: #16160e; /*背景色指定*/
	padding: 2px; /*ボックス内側の余白(値1つは上下左右をまとめて指定)*/
	display:none; /*要素の表示形式指定(noneは表示しない)*/
	color: #ffffff; /*文字色指定*/
	
}

/* ----- ページ右の内容 ----- */

#rightside h2 {
	margin: 0; /*ボックス外側の余白(値1つは上下左右をまとめて指定)*/
	font-size: 1em; /*フォントサイズ指定(emはフォントの高さを１とした相対指定)*/
	line-height: 30px; /*行の高さ指定*/
}



