@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	background: #282828;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-linear-gradient(#684C02,#1A0E00);	/*背景壁紙とグラデーション*/
	-webkit-text-size-adjust: none;
}
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;}
a img:hover {opacity: 0.7;}/*マウスオン時に画像を半透明にする設定。0.7は70%の透明度の意味。*/
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}

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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;	/*横一杯使う為に100%指定*/
	border-top: 0px solid #000;	/*上のアクセント用の線の幅、線種、色*/
	background: url(../images/bg.jpg) no-repeat ;	/*背景色*/
}
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: 990px;	/*幅*/
	height: 100px;	/*高さ*/
	margin: 0 auto;
	position: relative;
}
/*ロゴ画像*/
header #logo {
	position: absolute;
	left: 0px;	/*header #innerに対して左から10pxの場所に配置*/
	top: 6px;	/*header #innerに対して上から10pxの場所に配置*/
}

.pc { display: block !important; }
.sp { display: none !important; }
@media only screen and (max-width: 480px){
.pc { display: none !important; }
.sp { display: block !important; }	
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	width: 100%;
	overflow: hidden;
	background: #282828;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#282828), to(#0f0f0f));	/*グラデーション*/
	background: -webkit-linear-gradient(#282828, #0f0f0f);	/*同上*/
	background: linear-gradient(#282828, #0f0f0f);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.8);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.8);			/*同上*/
	margin-bottom: 10px;	/*メニューと下のコンテンツとの間に空けるスペース*/
}
#menubar,
#menubar-s {
	width: 840px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	width: auto;	/*メニュー幅*/
}
#menubar a,
#menubar-s a {
	margin: 12px 4px;	/*１個あたりのメニューの外側にとるスペース。上下、左右。*/
	display: block;
	text-decoration: none;
	padding: 0px 16px;	/*上下、左右へとる余白*/
	color: #fff;	/*文字色*/
	text-shadow: 0px -1px #776b47;	/*テキストの影。左右、上下、色。*/
	background: #2D2D2D; /*背景色*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2), 0px 0px 1px  1px #808080 inset;			/*同上*/
}

#menubar li,
#menubar-s li {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	width: auto;	/*メニュー幅*/
}
#menubar-s a {
	margin: 0px 4px;	/*１個あたりのメニューの外側にとるスペース。上下、左右。*/
	display: block;
	text-decoration: none;
	padding: 4px 16px;	/*上下、左右へとる余白*/
	color: #fff;	/*文字色*/
	text-shadow: 0px -1px #776b47;	/*テキストの影。左右、上下、色。*/
	background: #2D2D2D; /*背景色*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2), 0px 0px 1px  1px #808080 inset;			/*同上*/
}





/*ＯＮボタン*/
#menu-box {
	width: 100%;
	overflow: hidden;
	background: #282828;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#282828), to(#0f0f0f));	/*グラデーション*/
	background: -webkit-linear-gradient(#282828, #0f0f0f);	/*同上*/
	background: linear-gradient(#282828, #0f0f0f);			/*同上*/
	-webkit-box-shadow: 0px 0px 10px rgba(0,0,0,0.8);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 0px 10px rgba(0,0,0,0.8);			/*同上*/
	margin-bottom: 10px;	/*メニューと下のコンテンツとの間に空けるスペース*/
}
#menubar,
#menubar-s {
	width: 840px;	/*幅*/
	overflow: hidden;
	margin: 0 auto;
}
/*メニュー１個あたりの設定*/
#menubar li2,
#menubar-s li2 {
	float: left;	/*左に回り込み*/
	text-align: center;	/*文字をセンタリング*/
	width: auto;	/*メニュー幅*/
}
#menubar a2,
#menubar-s a2 {
	margin: 12px 4px;	/*１個あたりのメニューの外側にとるスペース。上下、左右。*/
	display: block;
	text-decoration: none;
	padding: 4px 16px;	/*上下、左右へとる余白*/
	color: #FFF;	/*文字色*/
	background: #84690A; /*背景色*/
	box-shadow: 1px 2px 6px rgba(0,0,0,0.2), 0px 0px 1px  1px #808080 inset;			/*同上*/
}


/*マウスオン時と、現在表示中*/
#menubar a:hover,
#menubar li.current a {
	position: relative;
	left: 1px;	/*左から1px移動*/
	top: 1px;	/*上から1px移動*/
	background: #372302; /*背景色*/
}


/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	width: 940px;	/*幅。header #innerや#menubarの980pxからここのpadding(左右の合計幅)を差し引いた数字で設定するといい。*/
	padding: 20px 20px 0px;	/*ボックス内の余白。上下、左右、下。*/
	margin: 0px auto 30px;
	background: #242424;	/*背景色*/
	overflow: hidden;
	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.1);	/*影の設定*/
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);			/*同上*/
}



/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 730px;	/*幅*/
	padding-bottom: 8px;
	background: #D8CFA9;	/*背景色（古いブラウザ用）*/
}

#main h2 {
	clear: both;
	margin-bottom: 0px;
	font-size: 110%;
	color: #FFF;		/*文字色*/
	padding: 8px 15px;	/*上下、左右への余白*/
	background: #8D700B;	/*背景色（古いブラウザ用）*/
	-webkit-box-shadow: 2px 3px 6px rgba(0,0,0,0.1), 0px -30px 20px rgba(0,0,0,0.1) inset;/*#menu-boxの説明を参考にして下さい*/
	box-shadow: 2px 3px 6px rgba(0,0,0,0.1), 0px -30px 20px rgba(0,0,0,0.1) inset;			/*同上*/
}
/*mainコンテンツのh2タグの１文字目への設定*/
#main h2:first-letter {
	border-left: 4px solid #fff;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #F2F1DD;	/*背景色*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #D2CDAA;	/*枠線の幅、線種、色*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3{
	height:35px;
 	width: 120px;
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

a.bt-1{
text-decoration: none;
  line-height: 37px;
  background: #fff;
  text-align: center;
  padding: 4px 15px;	/*上下、左右への余白*/
  color: #5D4301;
  border:solid 1px #5D4301;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
  transition: 0.3s;
}

a.bt-2{

  position: relative;
  display: inline-block;
  padding: 7px 10px;	/*上下、左右への余白*/
  line-height: 26px;
  text-align: center;
  color: #fff;
  border:10px #5D4301;
  background: #5D4301;
  font-weight: bold;
  font-size: 110%;
}

a.bt-3{
  display: block;
  line-height: 20px;
  text-align: center;
  color: #000;
  background: #fff;
  font-weight: bold;
  font-size: 90%;
}
a.bt-4{
  display: block;
  line-height: 20px;
  text-align: left;
  padding : 10px ;
  color: #000;
  background: #fff;;
  font-size: 80%;

}

a.arrow{
	width: 0;
	height: 0px;
	border: 20px solid transparent;
	border-top: 20px solid #5D4301;
}
a.equal{
	border-left: double 10px #5D4301;
}

center{
 	background: #D8CFA9;	/*背景色*/	
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 7px 15px 14px;	/*上、左右、下への余白*/
	background: #D8CFA9;	/*背景色*/	
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

#main p2 {
	font-size: 80%;
}

.box4 {
    padding: 0.0em 0em;
    margin: 0em 0;
	font-size: 90%;
    color: #5D4301;
    box-shadow: 0 2px 1px rgba(0, 0, 0, 0.22);
}

/*youtube　チャンネル*/
.button-youtube {
	display: inline-block;
	text-decoration: none;
    position: relative;
    background: #fff;
    align-items: center;
    margin: 6px 4px;
	min-width: 160px;
    width: auto;
    padding: 6px 10px;
	border-radius: 30px;
	border: solid 1px #FF0000;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
	line-height: 14px;
}

.button-youtube a {
	text-decoration: none;
    color: #000;
	font-size: 12px;

}

 /*マウスホバー時演出*/
.button-youtubea a:hover {
    color: #FF0;
}



/*topの書籍・ＤＶＤ部分コンテンツ
---------------------------------------------------------------------------*/
.contents2 {
	clear: both;
	max-width: auto;	/*最大幅。,#pagetop,#footermenu,#menubar ulと揃える。*/
	padding: 2px 2px 0px;	/*ボックス内の余白。上下、左右、下。*/
	margin: 0 auto;
	overflow: hidden;
	background: rgba(255,255,255,0.5);	/*背景色*/
}

/*topの書籍・ＤＶＤ部分　*/
.contents2 .list2 {
	position: relative;
	overflow: hidden;
	transition: 0.2s;
	float: left;	/*左に回り込み*/
	width: auto;	/*ボックス幅*/
	margin: 2px 2px 2px 2px;	/*上、右、下、左にとるボックスの外側へのスペース*/
	padding: 0%  1%  0%  1%;	/*ボックス内の余白*/
	font-size: 12px;	/*文字サイズ*/

}
.contents2 .list2 img{
	margin: 1px;	/*画像の周りの余白*/
}

/*ボックス内のh4見出し*/
.contents2 .list2 h4 {
	color: #4E5766;	/*文字色*/
	line-height: 15px;	/*行間*/
}
/*ボックス内のp段落タグ*/
.contents2 .list2 h6 {
	font-size: 11px;	/*文字サイズ*/
	line-height: 1px;	/*行間*/
}


/*「プロフィール」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定*/
#main section.list {
	margin-bottom: 15px;	/*ボックス間のスペース*/
	position: relative;
	overflow: hidden;
	padding: 20px;	/*ボックス内の余白*/
	background: #fff;		/*背景色*/
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;		/*画像を左へ回り込み*/
	padding: 5px;		/*余白*/
	background: #fff;	/*背景色*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
	border: 1px solid #ccc;	/*線の幅、線種、色*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	font-size: 120%;
	color: #000;		/*文字色*/
	border-bottom: solid 0px #776b47;	/*下線の線種、幅、色*/
	margin-left: 34%;	/*左の写真とのバランスをとって設定*/
	margin-bottom: 6px;
}

/*、メインのアコーディオンメニュー設定*/
dl.accordion { background:#DDD; width:96%; margin:0 auto 30px; padding:0px; font-size:16px;}
dl.accordion dt {
    background:#FFF;
    border-bottom:0px solid #EEE; height:40px; text-indent:10px; line-height:40px; color:#333; font-weight:bold; cursor:pointer;}
dl.accordion dt.open {
    background:#FFF;
    border-bottom:0px solid #EEE; height:40px; text-indent:10px; line-height:40px; color:#333; font-weight:bold; 
}
dl.accordion dd { background:#FFF; padding:10px; line-height:1.5; display:none;}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	color:#fff;
	float: left;	/*左に回り込み*/
	width: 200px;	/*幅*/
	
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 17px;	/*文字サイズ*/
	background: #3F3F3F ;	/*背景色と背景画像（※古いブラウザ用）*/
	padding: 8px 0px;	/*上下、左右への余白*/
	color: #FFF;		/*文字色*/
	border-bottom: 3px solid #8D700B;	/*下線の幅、線種、色*/
	padding-left: 8px;
}
#sub section.list h4 {
	color: #8D700B;		/*文字色*/
	margin-left: 0%;	/*左の画像とバランスをとって設定する*/
	font-size: 100%;
}

/*ボックス内のh5タグ設定*/
#sub section.list h5 {
	padding: 6px;	/*ボックス内の余白*/
	text-decoration: center;
	font-size: 12px;	/*文字サイズ*/
	color: #000;	/*文字色*/
	margin-bottom: 10px;
	background: #fff;
}

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



/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 6px;			/*ボックス内の余白*/
	margin-bottom: 2px;	/*ボックスの下に空けるスペース*/
	background: #242424;	/*背景色*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/

	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内の営業日カレンダー用
---------------------------------------------------------------------------*/
.cal {
	width: 100%;
}
.cal, .cal td, .cal th{
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	text-align: center;
}
/*曜日*/
.cal th{
	background: #f7f7f7;	/*背景色*/
}
.cal .sat{
	color: #09F;	/*「土」の文字色*/
}
.cal .sun{
	color: #C33;	/*「日」の文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	background: #242424;	/*背景色*/
	color: #fff;	/*文字色*/
	font-size: 85%;	/*文字サイズ*/
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 1100px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
	padding: 2px 10px;
}
/*１行分の設定*/
#footermenu ul {
	float: left;	/*左に回り込み*/
	width: 10%;		/*幅*/
	padding-right: 2%;
}
#footermenu li {
	text-align: center;	/*センタリング*/

}

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

/*トップページ内メインイメージ
---------------------------------------------------------------------------*/
#mainimg img {
	width: 100%;
	vertical-align: bottom;
	margin-bottom: 20px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	padding-left: 15px;
	margin-bottom: 15px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	padding-left: 8em;
}

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th {
	border: 1px solid #ccc;	/*テーブルの枠線の幅、線種、色*/
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #E0CF8B;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 140px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f7f7f7;	/*背景色*/
}
/*画像*/
.ta1 img {
	vertical-align: bottom;
}

/*よく頂く質問ページ
---------------------------------------------------------------------------*/
/*ブロック全体*/
.faq {
	padding: 0px 15px;	/*上下、左右への余白*/
}
/*質問の設定*/
.faq dt {
	color: #776b47;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*回答の設定*/
.faq dd {
	border-bottom: 1px solid #CCC;	/*下線の幅、線種、色*/
	overflow: hidden;
	padding-bottom: 15px;
}


/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #776b47;
}
.pr {
	font-size: 10px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
.l {
	text-align: left !important;
}
img.fr {
	float: right;
	margin-left: 10px;
	margin-bottom: 10px;
}
img.fl {
	float: left;
	margin-right: 10px;
	margin-bottom: 10px;
}
.big1 {
	font-size: 30px;
	letter-spacing: 0.2em;
}
.mini1 {
	font-size: 11px;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}



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

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	width: auto;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menu-box {
	margin-bottom: 0px;
}
#menubar,
#menubar-s {
	width: auto;
}
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	width: 50%;
}
#menubar a,
#menubar-s a {
	margin: 4px;
}
	
#main p2 {
	font-size: 80%;
}


/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-bottom: 0px;
}

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

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
	background: none;
}
/*１行分の設定*/
#footermenu ul {
	width: 23%;
	padding-right: 2%;
}
	
/*ボックス全体*/
#footermenu {
	width: 90%;
	background: none;
}
/*１行分の設定*/
#footermenu ul {
	width: 23%;
	padding-right: 2%;
}

#footermenu li {
	text-align: center;	/*センタリング*/

}

/*その他
---------------------------------------------------------------------------*/
body.s-n #sub {
	display: none;
}

}



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

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ロゴ画像*/
header #logo {
	width: 45%;
}
/*TEL*/
header #tel {
	padding: 10px;
}

}



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

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	height: auto;
	text-align: center;
	padding-top: 10px;
}
/*ロゴ画像*/
header #logo {
	width: auto;
	position: static;
}
/*TEL*/
header #tel {
	position: static;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding-top: 0px;
}
/*TEL(電話番号部分)*/
header #tel strong {
	background: none;
	padding:0px;
}

/*コンテンツ（左右ブロックを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	padding: 10px 10px 0px;
}

}



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

/*ヘッダー（サイトロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header #inner {
	text-align: left;
	
}
/*ロゴ画像*/
header #logo {
	width: 100%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li,
#menubar-s li {
	width: 100%;
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
	position: fixed;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

#main p2 {
	font-size: 80%;
}

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

/*「診療科目」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	margin-left: 0;
}

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 100%;
	background: none;
}
	/*１行分の設定*/
#footermenu ul {
	width: 23%;
	padding-right: 2%;
}
#footermenu li {
	text-align: center;	/*センタリング*/

}
	
	
/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background:#776b47;
}
section#new h2.close {
	background:#776b47;
}

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

/*その他
---------------------------------------------------------------------------*/
.ws,.wl {
	width: 90%;
}
img.fr,
img.fl {
	float: none;
	margin: 0;
	width: 100%;
}

}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF !important;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #7F6509;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 10em;	/*ボックス幅*/
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background: #333;
	color: #FFF;
}
}