@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
body {
	background-size: 150%;
		color: #666;	/*全体の文字色*/
	font: 12px/1.6 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}


h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
		font: 12px/1.8 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}

#site-box{
	margin: 0px;
	padding: 0px;
		font: 11px/1.5 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}



}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 12px;
	padding: 3px 5px;
	border-radius: 1px;
	margin: 0px 5px;
}


/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	text-align: center;
	height: auto;
	margin-bottom: 15px;
}
/*h1ロゴの設定*/
header h1 {
	position: static;
	padding: 10px 0px;	/*ロゴの上下にあける余白が10px*/
}
/*電話番号ボックスの設定*/
header address {
	position: static;
	width: 100%;	/*ボックス幅*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ロゴ画像の設定*/
header h1 img {
	width: 80%;	/*画面に対して80％の幅に*/
	height: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
nav#menu ul {
	height: auto;
	padding: 0;
	margin: 0;
	background-image: none;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(247,103,154,0.7)), to(rgba(241,57,109,0.7)));	/*グラデーション。RGBA設定。0.7が透明度で他の数字が色のRGB値。*/
	background-image: -webkit-linear-gradient(rgba(247,103,154,0.7), rgba(241,57,109,0.7));	/*同上*/
	background-image: linear-gradient(rgba(247,103,154,0.7), rgba(241,57,109,0.7));			/*同上*/
	border-radius: 8px;		/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 7px #ccc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #ccc;			/*同上*/
	float: left;
	border: none !important;
	margin-bottom: 5px;	/*メニューの上下間の余白*/
	margin-left: 1%;	/*メニューの左右間の余白*/
	width: 49%;			/*メニュー幅*/
}
nav#menu ul li a {
	padding: 10px;	/*メニュー内の余白*/
}
/*奇数番目のメニューの設定*/
nav#menu ul li:nth-child(odd) {
	margin-left: 0;
	width: 50%;
}
/*最後のメニューの設定*/
nav#menu ul li:last-child {
	margin-bottom: 20px;
}
/*英語表記の設定*/
nav#menu ul li a span {
	display: none;	/*表示させない設定*/
}

}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}
#sub > * {
	clear: both;
}
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}



/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#666, #333);									/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#666, #333);											/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#666), to(#333));	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#666, #333);									/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#666, #333);											/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 5px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*スタッフサムネイルボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#main .list section {
	width: 32%;		/*ボックス幅*/
	margin-left: 1%;	/*ボックスの左右間の余白*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 5px;
	font-size: 5px;	/*文字サイズ*/
}
#main .list section a {
	width: 100%;
	height: 220px;	/*ボックスの高さ*/
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	padding: 3px;	/*ボックス内の余白*/
		font-size: 10px;	/*名前年齢職業の文字サイズ*/
}
/*写真の設定*/
#main .list section figure img {
	width: 100%;
	height: auto;
}

/*スタッフ詳細ページ　staff.html
---------------------------------------------------------------------------*/
/*左側ボックス*/
#main .staff .left {
	float: none;
	width: auto;
	padding-bottom: 2px;
	text-align: center;
}
/*写真の設定*/
#main .staff .left figure img {
	width: 95%;
	height: auto;
}
/*右側ボックス*/
#main .staff .right {
	width: auto;
	float: none;
	padding-bottom: 2px;
}


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

/*その他
---------------------------------------------------------------------------*/
/*写真の設定*/
img.wa {
	width: 100%;
	height: auto;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}



/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	height: auto;
	width: 100%;
}
#slide_image {
	height: auto;
	width: 100%;
	position: relative;
}
#slide_image2 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image3 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image4 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}
#slide_image5 {
	height: auto;
	width: 100%;
	position: absolute;
	left:0px;
	top:0px;
}


figcaption {
	font-size: 10px;
}



/*ランクの共通設定*/
.mark1, .mark2, .mark3, .mark4 {
	display: inline-block;
	position: absolute;
	left: 1px;	/*ボックス内の左から5pxの場所に配置*/
	top: 1px;	/*ボックス内の上から5pxの場所に配置*/
	text-align: center;
	border-radius: 50%;	/*角丸のサイズ*/
	transform: rotate(-30deg);	/*左回転で30度傾ける設定*/
	-webkit-box-shadow: 1px 2px 4px rgba(0,0,0,0.6);	/*ボックスの影。下へ、右へ、広げる範囲、rgb指定での色。0,0,0は黒のことで、0.6が透明度60%の事。*/
	box-shadow: 1px 2px 4px rgba(0,0,0,0.6);
}
.mark1 {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #fcff00), color-stop(1.00, #5f4500));
　　background: -webkit-linear-gradient(#fcff00, #5f4500);
　　background: -moz-linear-gradient(#fcff00, #5f4500);
　　background: -o-linear-gradient(#fcff00, #5f4500);
　　background: -ms-linear-gradient(#fcff00, #5f4500);
　　background: linear-gradient(#fcff00, #5f4500);
	     width: 35px;		/*幅*/
   line-height: 35px;	/*高さ*/
	 font-size: 7px;		/*文字サイズ*/
	     color: #fff;	/*文字色*/
}
.mark2 {
	background: #F2D785;	/*レギュラー銀色6000yen*/
	     color: #383636;	/*文字色*/
		 width: 30px;		/*幅*/
   line-height: 30px;	/*高さ*/
	font-size: 7px;		/*文字サイズ*/

}
.mark3 {
	background: #D0F5C4;	/*ジュニア　銀色5000yen*/
		 width: 30px;		/*幅*/
   line-height: 30px;	/*高さ*/
	     color: #383636;	/*文字色*/
	 font-size: 7px;		/*文字サイズ*/
}
.mark4 {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #cade97), color-stop(0.49, #9bbb50), color-stop(1.00, #388235));
　　background: -webkit-linear-gradient(top, #cade97 0%, #9bbb50 49%, #388235 100%);
　　background: -moz-linear-gradient(top, #cade97 0%, #9bbb50 49%, #388235 100%);
　　background: -o-linear-gradient(top, #cade97 0%, #9bbb50 49%, #388235 100%);
　　background: -ms-linear-gradient(top, #cade97 0%, #9bbb50 49%, #388235 100%);
　　background: linear-gradient(to bottom, #cade97 0%, #9bbb50 49%, #388235 100%);/*フレッシュ緑色5000yen*/	
	     width: 30px;		/*幅*/
   line-height: 30px;	/*高さ*/
	     color: #fff;	/*文字色*/
}


