@charset "utf-8";

/*PC・タブレット・スマホ共通設定
---------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";	/*文字サイズ、行間、フォントファミリー*/
	color: #333;	/*全体の文字色*/
	background: #dcdcdc;	/*背景色*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
	vertical-align: bottom;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}
/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #333;	/*リンクテキストの色*/
}
a:hover {
	color: #1c9fca;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 982px;	/*コンテナー幅*/
	margin: 20px auto 0px;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: url(../images/back.png) center;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	border-radius: 15px;	/*角丸のサイズ*/
	height: 180px;	/*ヘッダーの高さ*/
	margin-bottom: 20px;	/*ヘッダーとメニューの間のスペース*/
	position: relative;

}
/*ロゴ画像*/
header #logo {
	line-height: 1;
	position: absolute;
	left: 40px;	/*ヘッダーブロックに対して左から40pxの場所に配置*/
	top: 40px;	/*ヘッダーブロックに対して上から40pxの場所に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: left;
	width: 152px;	/*幅*/
	background: #FFF url(../images/mark1.png) no-repeat 15px center;	/*背景色とマーク画像（※古いブラウザ用）*/
	background: url(../images/mark1.png) no-repeat 15px center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#dadada));	/*マーク画像とグラデーション*/
	background: url(../images/mark1.png) no-repeat 15px center, -webkit-linear-gradient(#FFF, #dadada);	/*同上*/
	background: url(../images/mark1.png) no-repeat 15px center, linear-gradient(#FFF, #dadada);			/*同上*/
	margin-left: 10px;	/*メニュー同士のスペース*/
	border: 1px solid #bcbcbc;		/*線の幅、線種、色*/
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: 1px 2px 5px rgba(0,0,0,0.1);	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 5px rgba(0,0,0,0.1);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定。通常がいいならこの１行削除。*/
	margin-bottom: 20px;	/*メニューと下のコンテンツとの間のスペース*/
}
nav#menubar ul li a {
	text-decoration: none;
	display: block;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
	padding: 8px 0px 8px 40px;		/*メニュー内の上、右、下、左へとる余白*/
}
/*最初のメニューの設定*/
nav#menubar ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menubar ul li:hover {
	background: #FFF url(../images/mark1.png) no-repeat 15px center;	/*背景色と背景画像*/
	border-radius: 8px;	/*角丸のサイズ*/
	-webkit-box-shadow: none;	/*メニューの影を消す設定*/
	box-shadow: none;			/*同上*/
	position: relative;
	left: 1px;	/*左から1px移動する*/
	top: 1px;	/*上から1px移動する*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: right;	/*右側に回り込み*/
	width: 720px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグの設定*/
#main h2 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	color: #FFF;		/*文字色*/
	background: #1c9fca;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#20b4e5), to(#1c9fca));	/*グラデーション*/
	background: -webkit-linear-gradient(#20b4e5, #1c9fca);	/*同上*/
	background: linear-gradient(#20b4e5, #1c9fca);			/*同上*/
	padding: 5px 15px;	/*左から上下、左右への余白*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの設定*/
#main h3 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-radius: 8px;	/*角丸のサイズ*/
}
/*mainコンテンツのh3タグの１文字目への設定*/
#main h3::first-letter {
	border-left: 3px solid #1c9fca;	/*左側のアクセント用ラインの幅、線種、色*/
	padding-left: 10px;	/*アクセントラインと文字の間にとる余白*/
}

/*mainコンテンツのh3タグの設定*/
#main h4 {
	clear: both;
	margin-bottom: 15px;
	font-size: 100%;
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	padding: 4px 15px;	/*上下、左右への余白*/
	border: 1px solid #bcbcbc;	/*枠線の幅、線種、色*/
	border-radius: 8px;	/*角丸のサイズ*/
	
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 15px 1em;	/*左から、上、左右、下への余白*/
}
#main p + p {
	padding-top: 0px;
}
#main h2 + p,
#main h3 + p {
	padding-top: 0px;
	margin-top: -5px;
}

/* --- アコーディオン --- */
.menu label {
    background: steelblue;
    color: #fff;
    padding: 10px;
    display: block;
    margin: 0;
    border: 1px solid #fff;
}

input[type="checkbox"].on-off{
    display: none;
}

.menu ul {
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0;
    padding: 0;
    list-style: none;
}

.menu li {
    padding: 5px;
}

input[type="checkbox"].on-off + ul{
    display: none;
    overflow: hidden;
}

input[type="checkbox"].on-off:checked + ul{
	display: block;
	margin-bottom:10px;

}


/*一覧ページ用ボックス
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list {
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 15px;	/*ボックス間のスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	position: relative;
	overflow: hidden;
	border-radius: 8px;	/*角丸のサイズ*/
}
#main section.list a {
	padding: 15px 15px 0px 15px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list a:hover {
	background: #FFF;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list p {
	padding: 0px;
	margin-left: 5%;	/*左の画像とバランスをとって設定する*/
	
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin:0 10px 10px 10px;
	width: 30%;	/*写真の幅*/
}
/*ボックス内のh4タグ設定*/
#main section.list h4 {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 10px solid #1c9fca;	/*左側の線の幅、線種、色*/
	margin-bottom: 10px;
	color: #1c9fca;	/*文字色*/
}
/*グッズボックス設定
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list_goods {
	height:150px;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin-bottom: 0px;	/*ボックス間のスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	position: relative;
	overflow: hidden;
	border-radius: 8px;	/*角丸のサイズ*/
}
#main section.list_goods a {
	padding: 5px 5px 0px 5px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*マウスオン時*/
#main section.list_goods a:hover {
	background: #FFF;	/*背景色*/
}
/*ボックス内の段落タグ設定*/
#main section.list_goods p {
	padding: 0px;
	line-height: 130%;
	margin-left: 5%;	/*左の画像とバランスをとって設定する*/
	
}
/*ボックス内の写真設定*/
#main section.list_goods figure img {
	float: left;			/*画像を左へ回り込み*/
	background: #FFF;		/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	margin:0 10px 10px 10px;
	width: 30%;	/*写真の幅*/
}
/*ボックス内のh4タグ設定*/
#main section.list_goods h4.hayaA {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 10px solid #ff4500;	/*左側の線の幅、線種、色*/
	margin-bottom: 10px;
	color: #1c9fca;	/*文字色*/
}

#main section.list_goods h4.hayaB {
	padding: 2px 0px 2px 10px;	/*上、右、下、左側への余白*/
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 10px solid #1c9fca;	/*左側の線の幅、線種、色*/
	margin-bottom: 10px;
	color: #1c9fca;	/*文字色*/
}



/*---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#trans {
	clear: both;
	margin-bottom: 10px;
	font-size: 100%;
	background: #1c9fca;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#20b4e5), to(#1c9fca));	/*グラデーション*/
	background: -webkit-linear-gradient(#20b4e5, #1c9fca);	/*同上*/
	background: linear-gradient(#20b4e5, #1c9fca);			/*同上*/
	padding: 5px 15px;	/*左から上下、左右への余白*/
	border-radius:8px;	/*角丸のサイズ*/
}

#trans2 {
	clear: both;
	margin-bottom: 10px;
	font-size: 100%;
	background: #FF8040;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	padding: 5px 15px;	/*左から上下、左右への余白*/
	border-radius:8px;	/*角丸のサイズ*/
}

#main section.list2 {
	border: 1px solid #fff;	/*枠線の幅、線種、色*/
	margin-bottom: 0px;	/*ボックス間のスペース*/
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #ededed);	/*同上*/
	background: linear-gradient(#FFF, #ededed);			/*同上*/
	position: relative;
	overflow: hidden;
	border-radius: 8px;	/*角丸のサイズ*/
	padding:10px;
	line-height: 20px;
}
#main section.list2 a {
	padding: 15px 0p;	/*ボックス内の余白*/
	text-decoration: none;
	overflow: hidden;
	color:red;
}
/*マウスオン時*/
#main section.list2 a:hover {
	background: #FFF;	/*背景色*/
}

/*一覧ページの各ボックス内のテーブル
---------------------------------------------------------------------------*/
#main section.list table {
	font-size: 11px;	/*文字サイズ*/
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background: #FFF;	/*背景色*/
}
#main section.list table,
#main section.list table td,
#main section.list table th{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
}
#main section.list table td,
#main section.list table th{
	padding: 0;
	line-height: 1.6;
}
#main section.list table th{
	width: 80px;
	text-align: center;
	font-weight: normal;
	background: #e7e2da;
}
#main section.list table td {
	width: 140px;
	padding: 0px 3px;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: left;	/*左側に回り込み*/
	width: 240px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	padding: 10px 10px;		/*左から、上下、左右への余白*/
	background: #2b2b2b;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#505050), to(#2b2b2b));	/*グラデーション*/
	background: -webkit-linear-gradient(#505050, #2b2b2b);	/*同上*/
	background: linear-gradient(#505050, #2b2b2b);			/*同上*/
	color: #FFF;			/*文字色*/
	border-radius: 8px 8px 0px 0px;	/*左上、右上、右下、左下への角丸の指定*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー全体の設定*/
#sub ul.submenu {
	margin-bottom: 15px;	/*メニューブロックの下に空けるスペース*/
}
/*メニュー１個ごとの設定*/
#sub ul.submenu li {
	background: #202020 url(../images/mark2.png) no-repeat 10px center;	/*背景色、背景画像（矢印）の読み込み*/
	margin-top: 5px;	/*メニュー同士の間にあけるスペース*/
}
#sub ul.submenu li a {
	text-decoration: none;
	display: block;
	padding: 2px 10px 2px 25px;	/*メニュー内の余白。上、右、下、左への設定。*/
	color: #FFF;	/*文字色*/
}
/*マウスオン時*/
#sub ul.submenu li a:hover {
	background: #1c9fca url(../images/mark2.png) no-repeat 11px center;	/*背景色、背景画像（矢印）の読み込み*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	padding: 10px;			/*ボックス内の余白*/
	margin-bottom: 15px;	/*ボックスの下に空けるスペース*/
	background: #666 url(../images/bg1.png);	/*背景色と背景画像の読み込み*/
	border: 1px solid #444;	/*枠線の幅、線種、色*/
	color: #FFF;	/*文字色*/
}
/*リンクテキスト*/
#sub .box1 a {
	color: #FFF;	/*文字色*/
}
/*box1内のh2見出し設定*/
#sub .box1 h2 {
	border-radius: 0px;
}
/*box1内のメニューの設定*/
#sub .box1 ul.submenu {
	margin-bottom: 0px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: 982px;
	margin: 0px auto 20px;
	clear: both;
	text-align: center;
	padding: 15px 0px;
	background: #1c9fca;	/*背景色*/
	border-radius: 8px;		/*角丸のサイズ*/
	color: #fff;	/*文字色*/
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
	color: #fff;	/*文字色*/
}
footer a:hover {
	color: #fff;	/*文字色*/
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new {
	margin-bottom: 15px;
}
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 500px;	/*ボックスの高さ*/
	padding-left: 15px;
	line-height: 19px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	padding-left: 8em;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側*/
.ta1 th{
	width: 140px;
	padding: 10px;
	line-height:15px;
	text-align: center;
	background: #3198E7;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}

.ta2 {
	width: 100%;
	margin-bottom: 15px;
	background: #fff;	/*背景色*/
}
.ta2, .ta2 td, .ta2 th{
	border: 3px solid #B69E89;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	padding:10px 0px 10px 10px;
}
/*テーブル内の左側*/
.ta2 th{
	width: 200px;
	padding: 0px;
	line-height:15px;
	text-align: center;
}

#color{
background: #FFF799;	/*背景色*/
}

#A{
background: #FFA2B8;	/*背景色*/
}
#A2{
background: #FFCCD8;	/*背景色*/
}

#B{
background: #FFBB65;	/*背景色*/
}
#B2{
background: #FFDBAD;	/*背景色*/
}

#C{
background: #95D970;	/*背景色*/
}
#C2{
background: #C6EBB2;	/*背景色*/
}

/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: left;
	color: #FFF;	/*文字色*/
	background: #333;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#4b4b4b), to(#333));	/*グラデーション*/
	background: -webkit-linear-gradient(#4b4b4b, #333);	/*同上*/
	background: linear-gradient(#4b4b4b, #333);			/*同上*/
}

#space{
padding:0px 10px;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/



/*------------------------------------------
// User style start
// change
----------------------------------------- */

.general-button  {
  border-radius: 4px;
  background-color: #d5dbe0;
}

.general-button:before  {
  border-radius: 4px;
  border-bottom: 0px solid rgba(168,181,191, 0);
  background-color: rgba(168,181,191, 0);
}

.button-content  {
  border-radius: 0px 0px 4px 4px;
  padding: 5px 5px;
  box-shadow: 0px 0px 0px 0px rgba(168,181,191, 0);
  color: #000000;
}

.button-text  {
  padding: 0px 5px;
  line-height: 1.3em;
  font-size: 15px;
}

.icon-font  {
  padding: 0px 5px;
  font-size: 20px;
}

/*----------------- at hover -----------------*/

.general-button:hover  {
  top: -3px;
  transition: all 31ms;
  -moz-transition: all 31ms;
  -webkit-transition: all 31ms;
  -o-transition: all 31ms;
  background-color: #dde2e6;
}

.general-button:hover:before  {
  border-bottom: 3px solid rgba(168,181,191, 0);
  transition: all 31ms;
  -moz-transition: all 31ms;
  -webkit-transition: all 31ms;
  -o-transition: all 31ms;
}

.general-button:hover .button-content  {
  box-shadow: 0px 3px 0px 0px rgba(168,181,191, 1);
  transition: all 31ms;
  -moz-transition: all 31ms;
  -webkit-transition: all 31ms;
  -o-transition: all 31ms;
}

/*----------------- at active -----------------*/

.general-button:active  {
  background-color: #c6ced5;
  box-shadow: 0px 1.6px 0px 0px rgba(154,168,180, 1) inset;
}

.general-button:active:before  {
  top: -3px;
  padding-bottom: 3px;
  border-bottom: 0px solid rgba(168,181,191, 0);
}

.general-button:active .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(168,181,191, 0);
}

/*------------------------------------------
// User style end
----------------------------------------- */

/*------------------------------------------
// Core style start
// not change
----------------------------------------- */

.general-button  {
  display: -moz-inline-box;
  display: inline-block;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;position: relative;
  top: 0px;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.general-button:before  {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.button-content  {
  display: table;
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.button-text  {
  display: table-cell;
  vertical-align: middle;
  text-decoration: none;
}

.icon-font  {
  display: table-cell;
  vertical-align: middle;
}

/*----------------- at hover -----------------*/

.general-button:hover  {
  transition-timing-function: ease-in-out;
}

.general-button:hover:before  {
  transition-timing-function: ease-in-out;
}

.general-button:hover .button-content  {
  transition-timing-function: ease-in-out;
}

/*----------------- at active -----------------*/

.general-button:active  {
  top: 0px;
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.general-button:active:before  {
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

.general-button:active .button-content  {
  transition: all 0ms;
  -moz-transition: all 0ms;
  -webkit-transition: all 0ms;
  -o-transition: all 0ms;
}

/*------------------------------------------
// Core style end
----------------------------------------- */

/*------------------------------------------
// Touch style start
----------------------------------------- */

/*----------------- at hover -----------------*/

.touch .general-button:hover  {
  top: 0px;
  background-color: #d5dbe0;
}

.touch .general-button:hover:before  {
  border-bottom: 0px solid rgba(168,181,191, 0);
}

.touch .general-button:hover .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(168,181,191, 1);

}

/*----------------- at active -----------------*/

.touch .general-button:active  {
  background-color: #c6ced5;
  box-shadow: 0px 1.6px 0px 0px rgba(154,168,180, 1) inset;
}

.touch .general-button:active:before  {
  top: -3px;
  padding-bottom: 3px;
  border-bottom: 0px solid rgba(168,181,191, 0);
}

.touch .general-button:active .button-content  {
  box-shadow: 0px 0px 0px 0px rgba(168,181,191, 0);
}


/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#e5e5e5), to(#FFF));	/*グラデーション*/
	background: -webkit-linear-gradient(#e5e5e5, #FFF);	/*同上*/
	background: linear-gradient(#e5e5e5, #FFF);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;		/*文字色*/
	font-size: 10px;	/*文字サイズ*/
	background: #333;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 12em;	/*ボックス幅*/
	display: block;
	float: right;
	margin-right: 30px;
	letter-spacing: 0.1em;	/*文字間隔を少し広めにとる設定。*/
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #666;	/*背景色*/
	color: #FFF;			/*文字色*/
}

/*「おすすめ」表示
---------------------------------------------------------------------------*/
.osusume {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #F00;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.osusume {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*「ご契約済」表示
---------------------------------------------------------------------------*/
.sumi {
	font-size: 10px;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	background: #069;	/*背景色*/
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,20px);
	-ms-transform: rotate(-45deg) translate(37px,20px);
	transform: rotate(-45deg) translate(37px,20px);
}
h2 span.sumi {
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*CMS用　オプションマーク（管理ページの「オプション1」～のプルダウンと、setup.phpの「オプション選択肢」に関連します）
---------------------------------------------------------------------------*/
.option1 {
	font-size: 10px;
	color: #FFF;
	background: #F00;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option1 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}
.option2 {
	font-size: 10px;
	color: #FFF;
	background: #069;
	text-align: center;
	display: block;
	width: 120px;
	position: absolute;
	right: 0px;
	bottom: 0px;
	-webkit-transform: rotate(-45deg) translate(37px,10px);
	-ms-transform: rotate(-45deg) translate(37px,10px);
	transform: rotate(-45deg) translate(37px,10px);
}
h2 span.option2 {
	width: auto;
	padding: 0px 5px;
	position: static;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	display: inline-block;
}

/*FAQ・LINK共通設定
---------------------------------------------------------------------------*/
.faq, 
.link {
	padding: 0px 15px;
}
/*質問（又はサイト名）の設定*/
.faq dt,
.link dt {
	color: #1c9fca;	/*文字色*/
	font-weight: bold;	/*太字*/
	padding-top: 15px;
}
/*回答（又は説明部分）の設定*/
.faq dd,
.link dd {
	border-bottom: 1px solid #999;	/*下線の幅、線種、色*/
	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: #1c9fca;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.r {
	text-align: right;
}
figcaption {
	font-size: 11px;
}
.sortbox {
	text-align: right;
	margin-bottom: 15px;
	border-top: 1px solid #999;
	border-bottom: 1px solid #999;
	padding: 10px;
	background: #FFF;
}
.big1 {
	font-size: 130%;
}
img {
	max-width: 100%;
	height: auto;
}
.newicon {
	background: #F00;
	color: #FFF;
	font-size: 10px;
	padding: 0px 5px;
	border-radius: 2px;
	margin: 0px 5px;
}
#menubar_hdr {
	display: none;
}


/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (min-width:481px) and (max-width:800px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 15px;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	margin: 0;
	margin-bottom: 10px;
	width: 50%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
nav#menubar ul li:nth-child(odd) {
	width: 49%;
	margin-right: 1%;
}
nav#menubar ul li a {
	width: 100%;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: auto;
	margin: 15px;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}

}

/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin: 10px;
}

#calendar {
display: none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	height: auto;
	padding: 20px 10px;
	text-align: center;
	margin-bottom: 10px;
}
/*ロゴ画像*/
header #logo {
	position: static;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
nav#menubar ul li {
	float: none;
	margin: 0;
	margin-bottom: 10px;
	width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
nav#menubar ul li a {
	width: 100%;
}

/*main,subコンテンツ
---------------------------------------------------------------------------*/
#main, #sub {
	float: none;
	width: auto;
}

/*mainコンテンツ
---------------------------------------------------------------------------*/
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 5px 1em;	/*左から、上、左右、下への余白*/
}

/*一覧ページ用ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 10px;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	margin-right: 0;
	width: 95%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	margin-bottom: 10px;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	width: auto;
	margin: 15px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#20b4e5), to(#1c9fca));	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#20b4e5, #1c9fca);	/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center/34px 34px, linear-gradient(#20b4e5, #1c9fca);	/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-gradient(linear, left top, left bottom, from(#20b4e5), to(#1c9fca));		/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, -webkit-linear-gradient(#20b4e5, #1c9fca);		/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center/34px 34px, linear-gradient(#20b4e5, #1c9fca);		/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	margin: 5px 5px 0px;
	padding-left: 0px;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}

/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
	padding-left:10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
	padding-left:10px;
}

/*その他
---------------------------------------------------------------------------*/
.ws {
	width: 96%;
}
/*<body class="s-n">指定の場合にsubブロックを表示させない設定*/
body.s-n #sub {
	display: none;
}
/*メニュー折りたたみ設定*/
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
}

}
