@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body{
	color: #666666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #ffffff;	/*背景色*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#FAEEFA));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffffff, #FAEEFA);	/*同上*/
	background-image: linear-gradient(#ffffff, #FAEEFA);			/*同上*/
}
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;
}
input,textarea,select{
	font-size: 1em;
}
form{
	margin: 0px;
}
table{
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

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

/*bodyの直接の子要素のh1タグ（ページ最上段にあるh1）設定
---------------------------------------------------------------------------*/
body > h1{
	font-size: 12px;		/*文字サイズ*/
	color: #666666;			/*文字色*/
	background: #FAEEFA;		/*背景色*/
	text-align: right;		/*右寄せ*/
}
body > h1 a, body > h1 a:hover{
	color: #666666;
	text-decoration: none;
}


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

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header{
	width: 100%;	/*ブロックの幅*/
}
/*h1ロゴの設定*/
header h1{
	line-height: 1;
	padding: 30px 0px 30px 35px;	/*左から、上、右、下、左への余白*/
}
header h1 img{
	vertical-align: middle;
}



/*上部のメインメニュー
---------------------------------------------------------------------------*/

/* メインメニュー */
nav#menu ul{
   list-style-type: none;
   float:left;
   list-style:none;
   background-color: #FFD3FE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
   background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD3FE), to(#FFD3FE));	/*グラデーション*/
   background-image: -webkit-linear-gradient(#FFD3FE, #FFD3FE);
   background-image: linear-gradient(#FFD3FE #FFD3FE);
   border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
   -webkit-box-shadow: 1px 2px 7px #FFD3FE;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
   box-shadow: 1px 2px 7px #FFD3FE;
   margin-bottom: 25px; 
}


/* サブメニュー1段目 */
nav#menu ul ul{
   display:none;
   position: absolute;
   top:100%;
   left:0;
}

/* サブメニュー2段目以降 */
nav#menu ul ul ul{
   top:0;
   left:100%;
}

/* リスト */
nav#menu li{
   float:left;
   border-right: 1px dotted rgba(255,255,255,0.6);	/*メニューの右側の線の幅、線種、色（左３つの数字で色を指定、最後の小数点で透明度を指定）*/

}


nav#menu li:hover{
   background:#FFC0FF;
   position:relative;
}

nav#menu li:hover ul{
   display: block
;
}

nav#menu li li{
   clear:both;
   margin-left:0;
   background:#f5f5f5;
   border-bottom:1px solid #666666;
   border-left: 1px dotted rgba(255,255,255,0.6);	/*左側に線を入れる*/
}
nav#menu li li a:hover{
   margin-left:0;
   background:#FFC0FF;
}


nav#menu li ul{
   border-bottom:1px solid #666666;
   border-bottom:none;
}
nav#menu li a{
   display:block;
   width:160px;
   padding:10px 0;
   color:#666666;
   font-weight:bold;
   text-align:center;
   outline:none;
   -webkit-transition: 0.3s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
   transition: 0.5s;			/*同上*/
}

nav#menu li a.active{
   display:block;
   width:160px;
   padding:10px 0;
   color:#666666;
   background-color:#FFC0FF;
}

nav#menu li a:hover{
   color:#666666;	/*文字の色(赤)*/
   text-decoration:none;
}

nav#menu li li a{
   display:block;
   width:160px;
   padding:10px 2;
   color:#666666;
   line-height:20px;
   text-align:center;
   outline:none;
}

/*パンくずリストの設定*/

nav#breadcrumbs ol li{
  display: inline;
  list-style-type: none;
  font-size: 11px;
}
nav#breadcrumbs ol li:before{
  content: " > ";
}
nav#breadcrumbs ol li:first-child:before{
  content:"";
}

/*上部のメインメニューsliclkNav
---------------------------------------------------------------------------*/

#menu{
  display: none;
}
@media screen and (min-width : 800px) {
  body{
    margin: 0;
  }
  #content{
    margin: 0;
  }
  #menu{
    display: block;
  }
  .slicknav_menu{
    display: none;
  }
  i.fa.fa-caret-right{
    font-size: 14px;
    display: inline-block;
  }
}


/*トップページのスライドショー
---------------------------------------------------------------------------*/
#mainimg{
	clear: left;
	width: 980px;
	height: 290px;
	position: relative;
	background-color: #ffffff;	/*背景色*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #c47a12;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #FFD3FE;			/*同上*/
	margin-bottom: 25px;
}
#mainimg img{
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	vertical-align: bottom;
}
#mainimg .slide_file{
	display: none;
}
#slide_image{
	z-Index:2;
	position: relative;
	left:0px;
	top:0px;
}
#slide_image2{
	z-Index:1;
	position: absolute;
	left:0px;
	top:0px;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents{
	clear: left;
	width: 950px;
	background-color: #ffffff;	/*背景色*/
	padding: 15px 15px 0px;	/*コンテンツ内の余白。左から、上、左右、下。*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #F9EFF9;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #F9EFF9;			/*同上*/
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main{
	float: right;	/*右側に回り込み*/
	width: 700px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのsectionとarticleの直接の子要素のh1タグの設定*/
#main section > h1,
#main article > h1{
	background-color: #D4D5FE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#D4D5FE), to(#EBEBFD));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#D4D5FE, #EBEBFD);	/*同上*/
	background-image: linear-gradient(#D4D5FE, #EBEBFD);			/*同上*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #D4D5FE;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #D4D5FE;			/*同上*/
	font-size: 100%;
	color: #666666;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
}
/*mainコンテンツのsectionとarticleの直接の子要素のh2タグの設定*/
#main section > h2,
#main article > h2{
	background-color: #FFD3FE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFD3FE), to(#FFE3FF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFD3FE, #FFE3FF);	/*同上*/
	background-image: linear-gradient(#FFD3FE, #FFE3FF);			/*同上*/
	border-radius: 10px 10px 10px 10px;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #66666;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
}

/*mainコンテンツのsectionとarticleの直接の子要素のh3タグの設定*/
#main h3{
   margin-bottom:3px;
   padding:2px 10px;
   font-size:10px;
   color:#000000;
   background:#ffffff;
}

#main h3 a{
   color:#660066;
}

#main h3 a:hover{
   color:#ff3399;
   border-bottom:1px solid #D2447B;
}

/*mainコンテンツのsectionとarticleの直接の子要素のh4タグの設定*/
#main h4{
   margin-bottom:2px;
   font-size:13px;
   color:#006699;
   border-bottom:2px solid #006699;
}


/*mainコンテンツの段落タグ設定*/
#main p{
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}
#main > p{
	background-color: #FFF;
}


/*servic.html(宿泊)の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	margin-bottom: 1em;
	background-color: ##ffe2b9;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ffe2b9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ffe2b9);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #ffe2b9);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p{
	padding: 0px;
	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img{
	float: left;	/*画像を左へ回り込み*/
	background-color: #FFF;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;	/*余白。ここに上の行で設定した背景色が出ます。*/
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}
/*ボックス内のh1タグ設定*/
#main section.list article h1{
	font-size: 100%;
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 3px solid #000;	/*左側の線の幅、線種、色*/
	margin-bottom: 0.5em;
	color: #000;
	padding: 0px 0px 0px 5px;
}
/*リンク設定*/
#main section.list article a{
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list article a:hover{
	background-color: #ccffff;	/*マウスオン時のボックス色*/
}

/*taiken.html(体験)内の各ブロック
---------------------------------------------------------------------------*/
#main section.taiken{
	overflow: scroll;
}
/*各ボックスの設定*/
#main section.taiken article{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: ##ffe2b9;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ffe2b9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ffe2b9);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #ffe2b9);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
	float: left;
	width: 186px;	/*ボックス幅*/
	height: 400px;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
	display: inline;
	margin: 0px 4px 1em;
	overflow: hidden;
}

/*ボックス内の段落タグ設定*/
#main section.taiken article p{
	padding: 0px;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*マウスオン時*/
#main section.taiken article a:hover{
	background-color: #ccffff;
}


/*ボックス内の写真設定*/
#main section.taiken article figure img{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	height: auto;
	width: auto;
}


/*ボックス内のh1タグ設定*/
#main section.taiken article h1{
	font-size: 100%;
	background-color: #ff9f16;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb954), to(#ff9f16));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffb954, #ff9f16);	/*同上*/
	background-image: linear-gradient(#ffb954, #ff9f16);			/*同上*/
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: none;	/*影の設定*/
	box-shadow: none;			/*同上*/
	color: #FFF;	/*文字色*/
	padding: 0;
	text-align: center;
	margin-bottom: 5px;
}




/*staff.html(自然歴史)内の各ブロック
---------------------------------------------------------------------------*/
#main section.staff{
	overflow: hidden;
}
/*各ボックスの設定*/
#main section.staff article{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: ##ffe2b9;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ffe2b9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ffe2b9);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #ffe2b9);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
	float: left;
	width: 140px;	/*ボックス幅*/
	height: 350px;	/*ボックスの高さ*/
	padding: 10px;	/*ボックス内の余白*/
	display: inline;
	margin: 0px 4px 1em;
	overflow: hidden;
}

/*ボックス内の段落タグ設定*/
#main section.staff article p{
	padding: 0px;
	font-size: 11px;	/*文字サイズ*/
	line-height: 1.5;	/*行間*/
}

/*マウスオン時*/
#main section.staff article a:hover{
	background-color: #ccffff;
}


/*ボックス内の写真設定*/
#main section.staff article figure img{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	height: auto;
	width: auto;
}


/*ボックス内のh1タグ設定*/
#main section.staff article h1{
	font-size: 100%;
	background-color: #ff9f16;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffb954), to(#ff9f16));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffb954, #ff9f16);	/*同上*/
	background-image: linear-gradient(#ffb954, #ff9f16);			/*同上*/
	border-radius: 0 0 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	-webkit-box-shadow: none;	/*影の設定*/
	box-shadow: none;			/*同上*/
	color: #FFF;	/*文字色*/
	padding: 0;
	text-align: center;
	margin-bottom: 5px;
}


/*メインコンテンツの地図画像の表示(自動に縮小する)
---------------------------------------------------------------------------*/

#main img{
	 
    max-width: 100%; 
    height: auto; 
} 


/* --- サイトマップエリア --- */
ul.sitemap{
	width: 100%; /* サイトマップエリアの幅 */
margin: 0;
padding: 0;
font-weight: bold; /* 一旦全ての文字を太字にする */
list-style-type: none;
font-size: 100%;
color: #2b2b2b;
}

/* --- 入れ子にされたリスト用 --- */
ul.sitemap ul{
	margin: 0;
padding: 0;
list-style-type: none;
}

/* --- 全てのリスト項目 --- */
ul.sitemap li{
	padding: 1px 0 0 10px; /* 1階層目のパディング（上右下左） */
background: url(images/sitemap/v_line1.gif) no-repeat left top; /* 1階層目の背景 非表示*/
line-height: 120%;
}

/* --- 2階層目のコンテナ --- */
ul.sitemap div.contentNav{
	width: 100%; /* コンテナの幅 */
margin-top: 20px; /* コンテナの上マージン */
}

/* --- セクション（2階層目のリストエリア） --- */
ul.sitemap ul.section{
	width: 49.9%; /* セクションの幅 */
float: left;
}
ul.sitemap ul.separator{
	background : url(../contents/taiken/taiken_shisetsu/7_satukien/v_separator.gif) right top / auto auto repeat-y scroll padding-box border-box transparent; /* セクション間の垂直区切り線 */
}

/* --- 2階層目以降のリスト項目 --- */
ul.sitemap ul.section li{
	margin: 0 20px 20px 0; /* 2階層目のマージン（上右下左） */
padding: 0 0 0px 25px; /* 2階層目のパディング（上右下左）上書き */
background : url(../contents/taiken/taiken_shisetsu/7_satukien/arrow072_04.png) 5px 0px / auto auto no-repeat scroll padding-box border-box transparent; /* 2階層目の背景 上書き */
border-bottom: 1px #c0c0c0 dotted; /* 2階層目の下境界線 */
}

/* --- 3階層目以降のリストエリア --- */
ul.sitemap ul.section ul{
	margin: 7px 0 0 8px; /* 3階層目以降のマージン（上右下左） */
font-weight: normal; /* 3階層目以降の文字をノーマルの太さに戻す */
}

/* --- 3階層目以降のリスト項目 --- */
ul.sitemap ul.section ul li{
	margin: 10px 0 6px 0; /* 3階層目以降のマージン（上右下左）上書き */
padding: 0 0 0 15px; /* 3階層目のパディング（上右下左）上書き */
background : url(../contents/taiken/taiken_shisetsu/7_satukien/arrow067_01.gif) 0px 0.2em / auto auto no-repeat scroll padding-box border-box transparent; /* 3階層目の背景 上書き */
border-bottom: none; /* 3階層目以降の下境界線 上書き */
}


/* --- 4階層目以降のリスト項目 --- */
ul.sitemap ul.section ul li li{
	padding: 0 0 0 10px; /* 4階層目以降のパディング（上右下左）上書き */
background : url(../contents/taiken/taiken_shisetsu/7_satukien/triangle8.gif) 0px 0.4em / auto auto no-repeat scroll padding-box border-box transparent; /* 4階層目以降の背景 上書き */
}

/* --- 5階層目以降のリスト項目 --- */
ul.sitemap ul.section ul li li li{
	padding: 0 0 0 9px; /* 5階層目以降のパディング（上右下左）上書き */
background : url(../contents/taiken/taiken_shisetsu/7_satukien/square.gif) 0px 0.4em / auto auto no-repeat scroll padding-box border-box transparent; /* 5階層目以降の背景 上書き */
}


/* --- clearfix --- */
.clearFix:after{
	content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}
.clearFix{
	min-height: 1px;
}


/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub{
	float: left;	/*左側に回り込み*/
	width: 230px;	/*サブコンテンツ幅*/
	padding-bottom: 25px;
}
/*subコンテンツ内のh1タグ設定*/
#sub h1{
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px 6px 0 0;	/*角丸のサイズ。それぞれ左上、右上、右下、左下への設定*/
	font-size: 100%;
	text-align: center;	/*文字をセンタリング*/
	padding: 5px 0px;	/*左から、上下、左右への余白*/
	background-color: #ffff00;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#ffffac), to(#ffff00));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#ffffac, #ffff00);	/*同上*/
	background-image: linear-gradient(#ffffac, #ffff00);			/*同上*/
}

#sub h1 a{
        color: #993300;	/*リンクテキストの色(焦げ茶色)*/
}

#sub h1 a:hover{
	background-color: #ccffff;	/*背景(水色)*/
}

/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul{
	margin-bottom: 1em;
}
/*メニュー１個ごとの設定*/
#sub ul li a{
	text-decoration: none;
	display: block;
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #CCC;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	padding-left: 10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
}
/*マウスオン時の設定*/
#sub ul li a:hover{
	background-color: #ccffff;	/*on背景色(水色)*/
}


#sub ul li a.active{
   color:#0066ff;
   background:#ffeedd;
}

/*フッター設定
---------------------------------------------------------------------------*/
footer{
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr{
	display: block;
	font-size: 80%;
}
footer a{
	text-decoration: none;
}


/*トップページ内「イベント情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 250px;
	padding-left: 10px;
}
/*日付設定*/
#new dt{
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 12em;            /*日付の幅*/
}
/*記事設定*/
#new dd{
	border-bottom: 1px solid #d2d2d2;	/*下線の幅、線種、色*/
	padding-left: 10em;
}
#new dd img{
	vertical-align: middle;
}



/*テーブル１
---------------------------------------------------------------------------*/
.ta1{
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
}
/*テーブル内の右側のリンクがマウスオン*/
.ta1 td a:hover{
        color:#D70053;
        display:block;
        background:#ccffff;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: left;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
 	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ebebeb));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ebebeb);	/*グラデーション*/
 	background-image: linear-gradient(#FFF, #ebebeb);		/*グラデーション*/
 	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
 	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
}

/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #f6f6f6;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	border: 1px solid #ccc;	/*枠線の幅、線種、色*/
	border-radius: 6px;		/*角丸のサイズ*/
	background-color: #ffe2b9;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ffe2b9));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #ffe2b9);	/*グラデーション*/
	background-image: linear-gradient(#FFF, #ffe2b9);			/*グラデーション*/
	-webkit-box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*影の設定。右・下・ぼかし幅・色の設定, ＋内側への影を右・下・ぼかし幅・色を設定*/
	box-shadow: 0px 2px 5px #CCC, 0px 0px 2px #FFF inset;	/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}




/*フォームのsubmitボタンの設定*/
input[type="submit"],
input[type="button"]{
	width: 80px;	/*ボタン幅*/
	padding: 5px;	/*ボタン内の余白*/
	margin-bottom: 10px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 40px;	/*角丸のサイズ*/
	background-color: #FFC0FF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFC0FF), to(#ffffff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(##FFC0FF, #ffffff);	/*同上*/
	background-image: linear-gradient(#FFC0FF, #ffffff);			/*同上*/
	-webkit-box-shadow: 0px 1px 1px #FF7DFE;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 1px 1px #FF7DFE;			/*同上*/
	font-size: 12px;	/*文字サイズ*/
}
/*フォームのsubmitボタンのマウスオン時の設定*/
input:hover[type="submit"],
input:hover[type="button"]{
	background-color: #FF7DFE;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FF7DFE), to(#ffffff));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FF7DFE, #ffffff);	/*同上*/
	background-image: linear-gradient(#FF7DFE, #ffffff);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop{
	clear: both;
	text-align: right;
}
#pagetop a{
	color: #FFF;	/*文字色*/
	background-color: #ff0066;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
#pagetop a:hover{
	background-color: #ff99cc;
	color: #FFF;
}


/*gogolemap地図のレスポンシブ
---------------------------------------------------------------------------*/
.ggmap{
	position: relative;
padding-bottom: 56.25%;
padding-top: 30px;
height: 0;
overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed{
	position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
}


/*スマホの場合、電話番号から直に掛かる(レスポンシブ対応)
---------------------------------------------------------------------------*/
.tel-link{
    color: #06F;
    font-size: 16px;
    font-weight: bold;
}


/*その他
---------------------------------------------------------------------------*/
.look{
	background: #dcdcdc;
}
.mb1em{
	margin-bottom: 1em;
}
.clear{
	clear: both;
}
ul.disc{
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1{
	color: #f61468;
}
.pr{
	font-size: 10px;
}
.btn{
	font-size: 13px;
}
.wl{
	width: 96%;
}
.ws{
	width: 50%;
}
.c{
	text-align: center;
}
figcaption{
	font-size: 11px;
}
