@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css?family=Pacifico);


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #666;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #fff;	/*背景色*/
	-webkit-text-size-adjust: none;
}
/*トップページの背景画像*/
body#top {
	background: url(../images/sabo-b.jpg) center center / cover no-repeat fixed;
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
ul{list-style-type: none;}
ol {padding-left: 40px;padding-bottom: 15px;}
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

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

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	background: #fff;				/*メニューの背景色（古いブラウザ用）*/
	background: rgba(255,255,255,0.9);	/*メニューの背景色。255,255,255はrgbカラーでの白の事、0.9は透明度90%の事。*/
	color: #81796b;		/*文字色*/
	position: fixed;	/*画面上部に固定表示させる設定。不要ならこの１行削除。*/
	height: 50px;	/*ヘッダーの高さ*/
	-webkit-box-shadow: 0px 0px 6px rgba(0,0,0,0.4);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 6px rgba(0,0,0,0.4);			/*同上*/
    z-index: 10;
}
/*ロゴ画像の設定*/
header #logo {
	width: 130px;	/*ブロック幅*/
	float: left;	/*左に回りこみ*/
	padding: 10px;	/*ロゴブロック内の余白*/
	background: #58b9f1;	/*背景色（古いブラウザ用）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#58b9f1), to(#2f98d5));	/*グラデーション*/
	background: -webkit-linear-gradient(#58b9f1, #2f98d5);	/*同上*/
	background: linear-gradient(#FAFEFF, #F4FDFF);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.2);	/*影の設定。右・下・ぼかし幅・色(rgba)の設定。rgba値は左３つが色指定(この場合は黒)で最後の小数点が透明度。*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.2);			/*同上*/
}

/*inner
---------------------------------------------------------------------------*/
.inner {
	max-width: 980px;	/*幅*/
	margin: 0 auto;
}

/*メニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	float: right;	/*右寄せ*/
	margin-top: 11px;	/*上下バランスを取る為、上に少しスペースをとる。*/
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回りこみ*/
	letter-spacing: 0.2em;	/*文字間隔を少し広くとる設定。通常がいいならこの行削除。*/
}
#menubar a {
	display: block;
	color: #666;	/*文字色*/
	text-decoration: none;
	padding: 0px 20px;	/*上下、左右へとる余白*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時*/
#menubar a:hover {
	color: #f6ebd2;	/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	width: auto;
	padding: 50px 0px;
}
/*コンテンツのh2タグの設定*/
.contents h2 {
	font-family: 'Pacifico', cursive;
	width: 60%;
	margin: 0 auto 40px;
	font-size: 22px;
	font-weight:normal;
	text-align: center;
	background: url(../images/borderBlack.png) repeat-x 0 50%;
	background-size: 1px 1px;
}
.contents h2 span{
	background: #fff;
	padding: 0 80px;
}

/*コンテンツのh3タグの設定*/
.contents h3 {
	clear: both;
	font-family: 'Pacifico', cursive;
	margin: 40px auto;
	padding-left: 20px;
	font-size: 18px;
	font-weight:normal;
}
.contents h4 {
	clear: both;
	font-family: 'Pacifico', cursive;
	padding-left: 20px;
	font-size: 15px;
	font-weight:bold;
}

/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
}

/*main
---------------------------------------------------------------------------*/
.main {
	float: right;	/*右に回りこみ*/
	width: 700px;	/*メインコンテンツ幅*/
	width: 73%;	/*メインコンテンツ幅*/
}
.main2 {
	margin: 0 13%;	/*メインコンテンツ幅*/
	width: 73%;	/*メインコンテンツ幅*/
}

/*アバウトの写真の部分
---------------------------------------------------------------------------*/
.pict img{
	width: 150px;
	margin: 7px;
}
.minilogo{
	float: left;	/*左に回りこみ*/
	width: 35px;	/*サブコンテンツ幅*/
	width: 35px;	/*サブコンテンツ幅*/
	padding: 0px 10px;
}

/*sub
---------------------------------------------------------------------------*/
.sub {
	float: left;	/*左に回りこみ*/
	width: 230px;	/*サブコンテンツ幅*/
	width: 23%;	/*サブコンテンツ幅*/
}
/*subコンテンツ内のh2タグ設定*/
.sub h2 {
	background: none;
	margin-bottom: 0px;
	color: #333;	/*文字色*/
	padding: 0px 0px 10px;
}
/*subコンテンツのh2タグの１文字目への設定*/
.sub h2::first-letter {
	border-left: 3px solid #b5b5b5;	/*左側のアクセント用ラインの幅、線種、色*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
.sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
	border-top: solid 1px #e4e4e4;	/*上の線の線種、幅、色*/
}
/*メニュー１個ごとの設定*/
.sub ul.submenu li {
	background: #fff;	/*背景色*/
	border-bottom: solid 1px #e4e4e4;	/*下の線の線種、幅、色*/
}
.sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
.hako300{
	width: 500px;
	margin: 0 20%;
}
.hako300n{
	width:450px;
	height:50px;
	overflow:auto;
	text-align:left;
	padding:10px;
	border-style:solid;
	border-width:1px;
	border-color:#ffffff;
}
#new {
	background: rgba(255,255,255,0.8);
	margin: 0 auto;
	padding-bottom: 50px;
	width: 80%;
}
#new dl{
	width: 300px;
	padding-left: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	background: #fff;	/*背景色*/
	color: #485257;		/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	max-width: 980px;
	margin: 0 auto;
	padding-top: 40px;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 20px;	/*文字サイズ*/
	padding: 0px 30px;
	background: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	display: block;
	float: right;
	border-radius: 4px 4px 0px 0px;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #fff;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*トップページのNEWアイコン
---------------------------------------------------------------------------*/
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-family: 'Pacifico', cursive;
	font-size: 80px;
	line-height: 1.2;
	letter-spacing: 0.1em;
	margin-top: 200px;
	margin-bottom: 30px;
	padding-left: 15px;
}
#tit{
	margin-bottom: 250px;
}

/*その他
---------------------------------------------------------------------------*/
.look {background: #000;border-radius: 4px;color: #fff;padding: 5px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #ba0917;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.r {text-align: right;}
.bg1 {overflow: hidden;}
.pt150 {padding-top: 150px !important;}


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

/*inner
---------------------------------------------------------------------------*/
.inner {
	width: auto;
	margin: 0 10px;
}

/*contents
---------------------------------------------------------------------------*/
.contents {
	padding: 10px 0px;
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	width: auto;
	margin-right: 10px;
}
}



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

/*全体の設定
---------------------------------------------------------------------------*/
/*トップページの背景画像*/
body#top {
	background: url(../images/sabo-s.jpg) center center / cover no-repeat fixed;
}

/*ヘッダー（サイトロゴとメニューが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	position: static;
	height: 80px;	/*ヘッダーの高さ*/
}

/*メニュー
---------------------------------------------------------------------------*/
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	position: absolute;
	top: 110px;	/*画面の上から110pxの場所に配置*/
	left: 0px;	/*画面の左から0pxの場所に配置*/
	width: 100%;
	z-index: 105;
	border-top: 1px solid #81796b;	/*上の線の幅、線種、色*/
}
/*メニュー１個あたりの設定*/
#menubar-s li {
	color: #81796b;	
	float: left;
	width: 50%;
	border-bottom: 1px solid #81796b;	/*下線の幅、線種、色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
#menubar-s li:nth-child(even)  {
	border-left: 1px solid #81796b;	/*偶数番目のメニューのみ左側に線をいれる*/
}
#menubar-s a {
	display: block;
	height: 70px;		/*メニューの高さ*/
	line-height: 70px;	/*メニューの高さ*/
	text-decoration: none;
	background: rgba(255,255,255,0.9);	/*メニューの背景色。255,255,255はrgbカラーでの白の事、0.9は透明度90%の事。*/
	color: #81796b;		/*文字色*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*メニューのテキストの前に入れる文字*/
#menubar-s a::before {
	content: "→";	/*「→」と入れる*/
	padding-right: 10px;	/*「→」と文字の間に空ける余白*/
	padding-left: 10px;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

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

/*main,subコンテンツ
---------------------------------------------------------------------------*/
.main, .sub {
	float: none;
	width: auto;
}

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 50px;
}

/*その他
---------------------------------------------------------------------------*/
.pt150 {padding-top: 30px !important;}
}


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

/*メニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar-s li {
	float: none;
	width: auto;
}
#menubar-s li:nth-child(even)  {
	border-left: none;
}

body#top {
	background: url(../images/sabo-ss.jpg) center center / cover no-repeat fixed;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px,linear-gradient(#958c7c, #81796b);
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px,linear-gradient(#958c7c, #81796b);
}

#new {
	padding-bottom: 50px;
	width: 90%;
}
#new dl{
	width: 300px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: none;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 0em;
}
#new h2 span {
	padding-left: -20px;
}

.pict img{
	width: 170px;
	margin: 7px;
}
#thumbs {
	position: relative;
	width: 300px;
	margin:0 auto;
}

/*トップページで使っている大きな文字
---------------------------------------------------------------------------*/
h1.type1 {
	font-size: 45px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {width: 92%;}
.pt150 {padding-top: 30px !important;}
}