@charset "utf-8";


/*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: #f8f5ee;	/*背景色*/
	-webkit-text-size-adjust: none;
}

h1,h2,h3,h4,h5,p,ul,li,dl,dt,dd,form,figure,form {margin: 0px;padding: 0px;}
ul {list-style-type: none;}

ul.standard{list-style-type: inherit;}

a:hover img {
opacity: .5;
-webkit-opacity: .5;
-moz-opacity: .5;
filter: alpha(opacity=50);	/* IE lt 8 */
-ms-filter: "alpha(opacity=50)"; /* IE 8 */
}

img {border: none;}

.ccc    {border: solid #ccc 1px;
		width:45%;
}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}
iframe {width: 100%;}



/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	text-decoration:none;
}
a:hover {
/*マウスオン時の文字色*/
	text-decoration: underline;		/*マウスオン時にリンクの下線を消す設定*/
}


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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	width: 100%;
	height: 160px;	/*高さ*/
	overflow: hidden;
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);			/*同上*/
	position: relative;
	background: #fff url(../imgs/header_bg_s.png) no-repeat right bottom;	/*背景設定（古いブラウザ用）*/
	background: #fff url(../imgs/header_bg.png) no-repeat right bottom/450px;	/*背景色、背景画像の読み込み、リピートせずに右側に＆上下中央に配置。幅500pxに。*/
	border-radius: 0px 0px 10px 10px;	/*角丸のサイズ。左上、右上、右下、左下への順番。*/
	margin-bottom: 30px;	/*下のコンテンツとの間にあけるスペース*/
}
small{
    margin: 0 0 0 30px;
}

div.right {
    text-align: right;
    line-height: 1.5em;
}

div.sentence {
    margin-top: 20px;
    font-size: 130%;
    line-height: 1.5em;
}
div.sentence_b {
    margin-top: 20px;
    font-size: 150%;
    font-weight: bold;
    line-height: 1.5em;
}
div.write {
    border: 1px solid #000;
    margin-left: auto;
    margin-top: 20px;
    font-size: 130%;
    line-height: 1.5em;
}
iframe {
width: 100%;
} 

.block {
    display: inline-block;
    vertical-align: middle;
    margin-right:10px;
}

.box1 span {
    font-size: small;
    margin-left: 20px;
    padding-left: 20px;
    background: url(../imgs/topiclist.gif) no-repeat 0;
}

.box1 h2 a {
    color:black;
    font-size: smaller;
}

#topics {
    background-image: url(../imgs/building.png);
    background-repeat: no-repeat;
    background-color: #fff;
    background-position: bottom;
    background-position-x: right;
}

#newindex a{
    color: #0063a6;
    }
    
#newindex a:hover{
    text-decoration: underline;
    }

/*ロゴ画像*/
#logo img {
	width: 300px;	/*画像幅*/
	position: absolute;
	left: 30px;	/*headerに対して左から30pxの場所に配置*/
}

/*文字サイズ変更ボタン（※文字サイズを「大」にした時の設定はlarge.cssで行う）
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
ul#fsize {
	height: 50px;	/*大中のボタン画像の高さに合わせる*/
	width: 90px;	/*大中のボタン画像２点の幅を合計した数字にする*/
	position: absolute;
	right: 30px;	/*ヘッダーブロックの右から30pxの場所に配置*/
	top: 0px;	/*ヘッダーブロックの上から0pxの場所に配置*/
	padding-left: 140px;	/*「文字サイズ」の画像幅に合わせる*/
	padding-right: 5px;
	background: #fff url(../imgs/fsize_bg.png) no-repeat left center;	/*背景色、「文字サイズ」の背景画像読み込み（古いブラウザ用）*/
	background: url(../imgs/fsize_bg.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));	/*「文字サイズ」の背景画像とグラデーション*/
	background: url(../imgs/fsize_bg.png) no-repeat left center, -webkit-linear-gradient(#fff 30%, #eee);	/*同上*/
	background: url(../imgs/fsize_bg.png) no-repeat left center, linear-gradient(#fff 30%, #eee);			/*同上*/
	border: 1px solid #dcdcdc;	/*枠線の幅、線種、色*/
	border-top: none;	/*上の線だけ消す設定*/
	border-radius: 0px 0px 4px 4px;	/*角丸のサイズ。左上、右上、右下、左下。*/
	-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);			/*同上*/
}
/*ボタン１個あたり*/
ul#fsize li {
	float: left;	/*左に回り込み*/
}
ul#fsize a{
	overflow:hidden;
	display: block;
	text-indent: -9999px;
}
/*「中」サイズのボタン設定*/
ul#fsize li#me a {
	background: url(../imgs/fsize_on.png) left center;	/*背景画像として「中」を読み込む。初期設定でこれをオンの状態にしておく。*/
	height: 50px;	/*画像の高さ*/
	width: 40px;	/*画像の幅*/
}
ul#fsize li#me a:hover {
	background: url(../imgs/fsize_on.png) left center;	/*マウスオン時の背景画像*/
}
/*「大」サイズのボタン設定*/
ul#fsize li#la a {
	background: url(../imgs/fsize.png) right center;	/*背景画像として「大」を読み込む。初期設定でこれはオフの状態にしておく。*/
	height: 50px;	/*画像の高さ*/
	width: 50px;	/*画像の幅*/
}
ul#fsize li#la a:hover {
	background: url(../imgs/fsize_on.png) right center;	/*マウスオン時の背景画像*/
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar {
	width: 100%;
	overflow: hidden;
	position: absolute;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/
	background: #e7e7e7;	/*背景色（古いブラウザ用）*/
	background: -webkit-linear-gradient(#FFF, #e7e7e7);	/*グラデーション*/
	background: linear-gradient(#FFF, #e7e7e7);
    border-top: 1px solid #d4d4d4;
}
/*メニュー１個あたりの設定*/
#menubar li {
	float: left;	/*左に回り込み*/
	width: 19%;		/*メニュー幅*/
	text-align: center;	/*内容をセンタリング*/
}
#menubar a {
	display: block;
	text-decoration: none;
	font-size: 16px;	/*文字サイズ*/
	color: #000;		/*文字色*/
    border-right: 1px solid #d6d6d6;
	padding: 12px;	/*上下左右へのメニュー内の余白*/
	margin:0px;	/*上下左右へのメニューの外の余白*/
    letter-spacing: 0.1em;	
}
/*１つ目のメニューへの設定*/
#menubar li:first-child {
	margin-left: 2.5%;	/*左側に余白を入れる*/
	border-left: 1px solid #d6d6d6;
}
#menubar li:first-child a {
	border-left: 1px solid #fff;	/*上の「#menubar a」の設定とあわせる*/
	border-left: 1px solid rgba(255,255,255,0.3);	/*上の「#menubar a」の設定とあわせる*/
}
/*マウスオン時*/
#menubar li a:hover {
	background: #fff;	/*背景色*/
	color: #545f3d;		/*文字色*/
}
/*スマホ用メニューを表示させない*/
#menubar-s {
	display: none;
}
/*３本バーアイコンを表示させない*/
#menubar_hdr {
	display: none;
}

/*コンテンツ（main、subを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	clear: both;
	overflow: hidden;
	padding: 25px 25px 0px;	/*上、左右、下へのボックス内の余白*/
	background: #fff;	/*背景色*/
	-webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 4px rgba(0,0,0,0.2);			/*同上*/
	border-radius: 10px;	/*角丸のサイズ*/
}

/*サブコンテンツ---------------------------------------------------------------------------*/

#sub {
	float: left;	/*左に回り込み*/
	width: 220px;	/*幅*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
    display: block;
    padding: 2px 10px;
    font-weight: bold;
    color: #000;
    letter-spacing: 0.1em;
    padding-left: 20px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 700px;	/*幅*/
	overflow: hidden;
	padding-bottom: 30px;
    position: relative;
}
#main h2 {
    clear: both;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 20px;
    padding: 10px 20px;
    background: linear-gradient(#fff, #eee);
    border-bottom: 1px solid #dcdcdc;
    border-top: 4px solid #009500;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.15);
    text-shadow: 0px 2px #fff;
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	padding: 4px 15px;	/*上下、左右への余白*/
	background: #fff;	/*背景色*/
	border-radius: 4px;	/*角丸のサイズ*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
}
/*mainコンテンツのh4タグの設定*/
#main h4 {
	font-size: 100%;
	color: #6b7f3b;
	padding-left: 15px;
}


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

/*「施設のご案内」と「サービスのご案内」ページの一覧用ブロック
---------------------------------------------------------------------------*/
/*ボックスの設定（リンクなし・あり共通設定）*/
#main .list {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

#main .list2 {
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    padding: 20px;
}

/*ボックスの設定（リンクありの場合）*/
#main .list a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    padding: 20px;
    margin: -20px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
}

img.fit {
    display: block;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
}
#main .list2 a {
    text-decoration: none;
    display: block;
    overflow: hidden;
    padding: 20px;
    margin: -20px;
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
}



/*「サービスのご案内」ページのボックス内の矢印マーク設定*/
#main .list a::before {
    content: "→";
    background: #6b7f3b;
    background: rgba(84,95,61,0.2);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    width: 90px;
    padding-left: 10px;
    line-height: 100px;
    position: absolute;
    right: -50px;
    top: 25%;
    border-radius: 100px;
}


/*マウスオン時の矢印マーク*/
#main .list a:hover::before {
	background: #6b7f3b;	/*背景色*/
}


/*ボックス内の段落タグ設定*/
#main .list p {
	padding: 0px;
	margin-right: 2em;
}


/*ボックス内の写真設定*/
#main .list figure img {
	float: left;		/*画像を左へ回り込み*/
	padding: 5px;		/*余白*/
	background: #fff;	/*背景色*/
	width: 30%;			/*写真の幅*/
	height: auto;		/*写真の高さ*/
}
/*ボックス内のh4タグ設定*/
#main .list h4 {
    font-size: 120%;
    color:black;
    border-bottom: dotted 2px #6b7f3b;
    margin-bottom: 10px;
    padding: 0;
}
    padding: 10px;
    margin-bottom: 1px;
    background: #fff;
    border: solid 1px #ccc;
    -webkit-box-shadow: 0px 0px 1px 1px #fff inset;
    box-shadow: 0px 0px 1px 1px #fff inset;
    border-radius: 4px;
}


/*サブコンテンツ内のメニュー---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/

.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px;	/*メニュー内の余白。上下、左右への設定。*/
	font-weight:bold;
	color:#000;
	letter-spacing:0.1em;
    background: url(../imgs/topiclist.gif) no-repeat 0;
    padding-left: 20px;
    }

#sub ul.submenu li a:hover{
	background-color: #fff;	/*背景色*/
	text-decoration: underline;
}

.item {
  display: flex;
  flex-wrap: nowrap;
}
.item-image {
  width: 50%;
padding-right: 2%;
}
.item-text {
  display: flex;
  flex-wrap: wrap;
  flex: 1;
  justify-content: center;
  align-content: center;
  align-items: center;
}

span.day{
color:black;
position:absolute;
right: 20px;
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 1px;	/*ボックスの下に空けるスペース*/
	background: #fff;	/*背景色（古いブラウザ用）*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;

}

#sub .boxx {
	margin-bottom: 3px;	/*ボックスの下に空けるスペース*/
	padding: 5px;
	background: #fff;	/*背景色（古いブラウザ用）*/
	border: solid 1px #ccc;	/*線の線種、幅、色*/
	-webkit-box-shadow: 0px 0px 1px 1px #fff inset;	/*ボックスの影。内側に白のラインを入れる。*/
	box-shadow: 0px 0px 1px 1px #fff inset;
}

#sub .boxx ul{
 display:block;
}

/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*サブコンテンツ内のbox2
---------------------------------------------------------------------------*/
#sub .box2 {
	padding: 10px;		/*ボックス内の余白*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
.pagetop {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 55px;
}
.pagetop a {
  display: block;
  width: 50px;
  height: 50px;
  background-color: #333;
  text-align: center;
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  line-height: 50px;
}


/*フッター設定
---------------------------------------------------------------------------*/
#footer {
    clear: both;
    background: #6bae26;
    color: #fff;
    font-size: 85%;
    margin-top: 30px;
}
#footermenu {
    width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px 0px;
}
#footermenu ul {
    float: left;
    width: 18%;
    padding-left: 2%;
}

#footer a {
	color: #fff;
}

#copyright {
    clear: both;
    text-align: center;
    background: #333;
}

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

/*テーブル
---------------------------------------------------------------------------*/
/*ta1,ta2共通設定*/
.ta1,
.ta2 {
	width: 100%;
	margin-bottom: 15px;
}
.ta1, .ta1 td, .ta1 th,
.ta2, .ta2 td, .ta2 th {
	border:solid 1px #cccccc;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
	padding: 10px;	/*ボックス内の余白*/
	word-break: break-all;
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi,
.ta2 th.tamidashi {
	width: auto;
	text-align: left;	/*左よせ*/
	background: #cce6f6;	/*背景色*/
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 210px;	/*幅*/
	text-align: center;	/*センタリング*/
	background: #f0f0f0;	/*背景色*/
}
/*ta2の左側ボックス*/
.ta2 th {
	background: #f0f0f0;	/*背景色*/
}
/*ta2の右側ボックス*/
.ta2 td {
	text-align: center;	/*センタリング*/
}
/*料金ページの追加設定（CMS用）*/
.ta1.price td {
	text-align: right;
}
.ta1.price tr.total th {
	background: #b7e0ee;
	font-size: 20px;
}
.ta1.price tr.total td {
	background: #deeff4;
	font-weight: bold;
	font-size: 20px;
}

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

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

/*その他
---------------------------------------------------------------------------*/
.look {color:#fff;background: #666;padding:5px;border-radius: 4px;}
.mb15,.mb1em {margin-bottom: 15px;}
.clear {clear: both;}
ul.disc {padding: 0em 25px 1em;list-style: disc;}
.color1 {color: #ff0000;}
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center !important;}
.r {text-align: right !important;}
.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;}
.sh {display:none;}


/* =============================================== */
/** レイアウト変更用クラスいろいろ */
/* ----------------------------------------------- */
/* 位置関連 */
.center {                         /* センタリング */
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
span.center,
img.center {                      /* インライン要素のセンタリング */
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 10px;
  text-align: center;
  display: block;
}
.right  { text-align: right; }    /* 右寄せ*/
.left   { text-align: left; }     /* 左寄せ */

/* フォント関連 */
.font-del{ text-decoration: line-through; }/* 文字に打ち消し線 */
.font-bold{ font-weight: bold; }  /* フォントを太く */

/* フォーム関連 */
.ime-jp { ime-mode: active; }     /* フォーム入力規則（日本語ＯＮ） */
.ime-en { ime-mode: inactive; }   /* フォーム入力規則（日本語ＯＦＦ） */
.ime-none{ ime-mode: disabled; }  /* フォーム入力規則（半角英数のみ） */

/* 画像関連 */
img.border { border: 1px solid gray; }  /* 画像に枠線を付ける */


.red {
  font-size: 1.2em;
  font-weight:bold;
  color: #e2041b;
}

.bold{
font-weight:bold;
font-size:1em;
}

.navy {
  color: #043c78;
  font-size: 1.2em;
  font-weight:bold;
  
}


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

/*コンテナー（HPを囲むブロック）

---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 0px 10px;
}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 250px;
	background: #fff url(../imgs/header_bg.png) no-repeat right top/40%;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個あたりの設定*/
#menubar li {
	width: 50%;
}
#menubar a {
	border: none;
	border-bottom: 1px solid #fff;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	margin: 0px;
}
#menubar li:nth-child(odd) {
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	border-right: 1px solid rgba(255,255,255,0.3);
}
/*１つ目のメニューへの設定*/
#menubar li:first-child {
	margin-left: 0;
}
#menubar li a:first-child {
	border-left: none;
}

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

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

}



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

.item {
    display: flex;
    flex-wrap: wrap;
}

.item-image {
    width: 100%;
    padding-right: 2%;
}

#footermenu {
    width: 100%;
}

#footermenu ul {
    float: left;
    width: auto;
    padding-left: 2%;

}

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: 90px;
	background: #fff url(none);
}
/*ロゴ画像*/
#logo img {
	width: 200px;
}

/*文字サイズ変更ボタン
---------------------------------------------------------------------------*/
/*ボタンブロック全体*/
ul#fsize {
	display: none;
}

/*メインメニュー
---------------------------------------------------------------------------*/
/*メニューブロックの設定*/
#menubar-s {
	width: 100%;
	overflow: hidden;
	background: #545f3d;
	background: linear-gradient(#6b7f3b, #545f3d);
	margin-bottom: 30px;
	border-radius: 10px;
}
/*メニュー１個あたりの設定*/
#menubar-s a {
	display: block;
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid #fff;
	border-bottom: 1px solid rgba(255,255,255,0.3);
	padding:15px;
	position: relative;
}
#menubar-s a::before {
	content: ">";	/*「>」の記号を表示させる。機種依存文字は使わないように。*/
	color: #fff;	/*文字色*/
	position: absolute;
	right: 15px;	/*各メニューに対して右から15pxの場所に配置*/
	top: 25%;	/*各メニューに対して上から25%の場所に配置*/
}
/*スマホ用メニューを非表示から表示に切り替える*/
#menubar-s {
	display: block;
}
/*PC用メニューを非表示にする*/
#menubar {
	display: none;
}

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

/*コンテンツ（main、subを囲むボックス）
---------------------------------------------------------------------------*/
#contents {
	padding: 0px;
	background: #fff;
	-webkit-box-shadow: none;
	box-shadow: none;
	border-radius: 0px;
}

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

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

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

}

/*タブ部分*/
#demo1 .tab_area ul li{
    display:block;
    background:#dddddd;
    border-right:1px solid #ffffff;
    width: 100px;
    float:left;
    -webkit-box-sizing : border-box ;
    -moz-box-sizing : border-box ;
    box-sizing : border-box ;
}
 
#demo1 .tab_area ul li a{
    display:block;
    text-align:center;
    font-size:22px;
    padding: 5px;
    color:#313131;
}
 
#demo1 .tab_area ul li a:hover {
    background:#999999;
    color:#ffffff;
}
 
/*コンテンツ部分の表示領域を固定してはみ出さないようにする*/
#demo1 .content_area {
    width: 600px;
    overflow: hidden;
    height: 400px;
    font-size: 20px;
    border: 1px solid #DDDDDD;
}
 
/*コンテンツを1行にするために必要な幅をとる*/
#demo1 .content_area .content_area_inner {
    width:1800px;
}
 
/*コンテンツのスタイル設定*/
#demo1 .content_area .content_block {
    height: 400px;
    padding: 10px;
    width: 600px;
    float: left;
    -webkit-box-sizing : border-box ;
    -moz-box-sizing : border-box ;
    box-sizing : border-box ;
}
 
#demo1 #contents1 {
    background:#47CA40;
}
 
#demo1 #contents2 {
    background:#EBEF64;
}
 
#demo1 #contents3 {
    background:#F56B6B;
}

.sample {
    border: 2px solid #da4033;
    border-radius: 4px;
    margin: 2em 0;
    padding: 2em;
    position: relative;
}
.sample::before {
    background-color: #fff;
    color: #da4033;
    content: "製品";
    font-weight: bold;
    left: 1em;
    padding: 0 .5em;
    position: absolute;
    top: -1em;
}

div#index {
    font-size: 0.9em;
    margin-bottom: 20px;
    z-index: 100;
}

}

.box1 {
    padding: 0.5em 1em;
    margin: 2em 0;
    font-weight: bold;
    border: solid 3px #000000;
}
.box1 p {
    margin: 0; 
    padding: 0;
}


.news-btn {
    padding: 20px 0px;
}

.news-btn a {
    margin: 0 auto;
    padding: 10px;
    color: #000;
    font-size: 105%;
    font-weight: bold;
    font-variant: full-width;
    border: 2px solid #009500;
    display: block;
    width: 50%;
    text-align: center;
}

.news-btn a:hover {
    text-decoration: none;
    transition: all 0.5s ease;
    background-color: #009500;
    color: #fff;
}

.day {

	font-weight: bold;
	text-align:right;
}

