@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #666;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #FFF;	/*背景色*/
}
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: #666;	/*リンクテキストの色*/
}
a:hover {
	color: #9d0909;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 977px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	width: 100%;	/*ブロックの幅*/
	height: 133px;	/*ブロックの高さ*/
	background: url(../images/header_bg.jpg) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
}
/*h1タグの設定*/
header h1 {
	font-size: 10px;		/*文字サイズ*/
	color: #FFF;			/*文字色*/
	text-align: right;		/*右寄せ*/
}
header h1 a, header h1 a:hover {
	color: #FFF;
	text-decoration: none;
}
/*ロゴ画像の設定*/
header #logo {
	position: absolute;
	left: 20px;	/*ヘッダーブロックに対して左から20pxの場所に配置*/
	top: 20px;	/*ヘッダーブロックに対して上から20pxの場所に配置*/
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
nav#menu ul {
	position: absolute;
	left: 0px;		/*ヘッダーブロックに対して左から0pxの場所に配置*/
	bottom: 0px;	/*ヘッダーブロックに対して下から0pxの場所に配置*/
	width: 100%;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: left;
	border-top: 4px solid rgba(0,0,0,0);	/*上の線の幅、線種、色。rgbaはRGBカラー(0,0,0は黒)に透明度(0は0％の事、1で100%の事になります。)を追加しています。*/
	margin-left: 1px;
}
nav#menu ul li a {
	color: #FFF;
	text-decoration: none;
	display: block;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	width: 174px;	/*メニュー幅*/
	text-align: center;
	padding: 5px 0px;
	background-color: #9d0909;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#9d0909), to(#c30b0b));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#9d0909, #c30b0b);	/*同上*/
	background-image: linear-gradient(#9d0909, #c30b0b);
	border-radius: 10px 10px 0px 0px ;	/*角丸のサイズ*/
}
/*最初のメニューの設定*/
nav#menu ul li:first-child {
	margin-left: 0;
}
/*マウスオン時の設定*/
nav#menu ul li a:hover {
	background: #333;
	color: #FFF;
}
/*現在表示中メニュー。current*/
nav#menu ul li#current {
	border-top: 4px solid #9d0909;	/*上の線の幅、線種、色*/
}
nav#menu ul li#current a {
	color: #9d0909;	/*文字色*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 100%;
	padding-top: 30px;
}

/*メインコンテンツ
---------------------------------------------------------------------------*/
#main {
	float: left;	/*左側に回り込み*/
	width: 690px;	/*メインコンテンツ幅*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	background-color: #2b2c2e;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#454746), to(#2b2c2e));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#454746, #2b2c2e);	/*同上*/
	background-image: linear-gradient(#454746, #2b2c2e);			/*同上*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	font-size: 100%;
	color: #FFF;	/*文字色*/
	padding: 5px 10px 5px 15px;	/*左から、上、右、下、左側への余白*/
	clear: both;
	border-bottom: 5px solid #9d0909;	/*下側の線の幅、線種、色*/
}
/*MENUページで使っているh1見出しタグのスタイル*/
#main h1.type1 {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	color: #9d0909;	/*文字色*/
	border-top: 1px solid #d2d2d2;		/*上の線の幅、線種、色*/
	border-right: 1px solid #d2d2d2;	/*右の線の幅、線種、色*/
	border-left: 1px solid #d2d2d2;		/*左の線の幅、線種、色*/
}
/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;	/*右側に回り込み*/
	width: 260px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツ内のh1タグ設定*/
#sub h1 {
	color: #FFF;	/*文字色*/
	font-size: 100%;
	padding: 5px 40px 5px 10px;	/*左から、上、右、下、左への余白*/
	background-color: #9d0909;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/bg_mark.png), -webkit-gradient(linear, left top, left bottom, from(#9d0909), to(#c30b0b));	/*グラデーション*/
	background-image: url(../images/bg_mark.png), -webkit-linear-gradient(#9d0909, #c30b0b);	/*同上*/
	background-image: url(../images/bg_mark.png), linear-gradient(#9d0909, #c30b0b);
	background-repeat: no-repeat;
	background-position: 95% center;
	border-top: 1px solid #c50b0b;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #790707;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #790707;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #c50b0b;		/*左側の線の幅、線種、色*/
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	color: BB0505;	/*文字色*/
	font-size: 100%;
	padding: 5px 40px 5px 10px;	/*左から、上、右、下、左への余白*/
	background-color: #FFFFFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: url(../images/yahoologo.png), -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(#DDFFFF));	/*グラデーション*/
	background-image: url(../images/yahoologo.png), -webkit-linear-gradient(#FFFFFF, #DDFFFF);	/*同上*/
	background-image: url(../images/yahoologo.png), linear-gradient(#FFFFFF, #DDFFFF);
	background-repeat: no-repeat;
	background-position: 95% center;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-bottom: 1px solid #790707;	/*下側の線の幅、線種、色*/
	border-left: 1px solid #CCC;		/*左側の線の幅、線種、色*/
}


/*サブコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	padding-left:10px;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	border-bottom: 1px dashed #666;	/*下の線の幅、線種、色*/
	color: #FFF;		/*文字色*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 ul li a {
	background: url(none);
}
/*マウスオン時の設定*/
#sub ul li a:hover {
	background: #FFF url(none);	/*背景色*/
	color: #9d0909;			/*文字色*/
}

/*サブコンテンツ内のbox1
---------------------------------------------------------------------------*/
#sub .box1 {
	color: #FFF;		/*文字色*/
	padding: 10px;		/*ボックス内の余白*/
	-webkit-box-shadow: 1px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 1px 2px 5px #bcbcbc;			/*同上*/
	background: #333 url(../images/bg1.png);
}
#sub .box1 a {
	color: #FFF;	/*文字色*/
}

/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*menu.html内のページ内メニュー
---------------------------------------------------------------------------*/
ul.navmenu {
	padding-top: 30px;
	padding-bottom: 30px;
	text-align: center;	/*メニューテキストをセンタリング*/
}
ul.navmenu li {
	display: inline;
}
ul.navmenu li a {
	background: url(../images/arrow.png) no-repeat left center;	/*矢印マークの設定*/
	padding-right: 15px;
	padding-left: 15px;
	text-decoration: none;
}
ul.navmenu li a:hover {
	background: url(../images/arrow.png) no-repeat 2px center;	/*マウスオン時に矢印マークを2pxだけ移動させて表示する設定*/
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	height: auto;	/*ボックスの高さ*/
	width: 280px;	/*ボックスの幅*/
	border-radius: 10px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 23px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 10px 1em;
	position: relative;
	border: 1px solid #CCC;
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 0px;
	color: #666;		/*文字色*/
	font-size: 13px;	/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #9d0909;	/*文字色*/
	border-bottom: 2px dotted #9d0909;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list article img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	width: 457px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;
	padding: 10px;
	text-align: center;
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

/*テーブル2
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
}
.ta2, .ta2 td, .ta2 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta2 td{
	width: 200px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta2 th{
	width: 400px;
	padding: 10px;
	text-align: left;
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #D9ECFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#E0F2F7), to(#D9ECFF));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#E0F2F7, #D9ECFF);	/*同上*/
	background-image: linear-gradient(#E0F2F7, #D9ECFF);			/*同上*/

}
/*テーブル１行目に入った見出し部分*/
.ta2 th.tamidashi{
	width: auto;
	text-align: center;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta2 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}

/*テーブル3
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
}
.ta3, .ta3 td, .ta3 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の右側*/
.ta3 td{
	width: 200px;
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta3 th{	width: 400px;
	padding: 10px;
	text-align: left;
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #DDFFDD;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#E6F8E0), to(#DDFFDD));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#E6F8E0, #DDFFDD);	/*同上*/
	background-image: linear-gradient(#E6F8E0, #DDFFDD);			/*同上*/
}
/*テーブル１行目に入った見出し部分*/
.ta3 th.tamidashi{
	width: auto;
	text-align: center;
	background-color: #bebebe;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta3 caption{
	padding: 10px;
	border-top: 1px solid #CCC;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #CCC;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #CCC;	/*左側の線の幅、線種、色*/
	text-align: left;
	background-color: #e9ddae;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#efe6c5), to(#e9ddae));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#efe6c5, #e9ddae);	/*同上*/
	background-image: linear-gradient(#efe6c5, #e9ddae);			/*同上*/
	font-weight: bold;	/*文字を太字にする設定*/
}
/*テーブル4
---------------------------------------------------------------------------*/
.ta4 {
	width: 100%;
}
.ta4, .ta4 td, .ta4 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 2;
}
/*テーブル内の左側の見出し部分*/
.ta4 td{
	width: 100%;
	padding: 10px 0px 10px 0px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/contents.png) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	position: relative;
	color: #333333;	/*文字色*/
	font-weight: 300;	/*文字を太字にする設定*/
	text-shadow: 2px 2px 5px #666666;
	text-align: left;
	font-size:14px;
	letter-spacing: 0em;
	display: inline-block;
}
/*テーブル5
---------------------------------------------------------------------------*/
.ta5 {
	width: 100%;
}
.ta5, .ta5 td, .ta5 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 3;
}
/*テーブル内の右側*/
.ta5 td{
	width:100%;
	padding: 5px 0px 40px 0px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/illustration/police.png) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	color: #cc0000;	/*文字色*/
	font-weight: 300;	/*文字を太字にする設定*/
	text-shadow: 2px 2px 5px #666666;
	text-align: left;
	font-size:15px;
	letter-spacing: 0em;
	display: inline-block;
}

/*テーブル6
---------------------------------------------------------------------------*/
.ta6 {
	width: 100%;
}
.ta6, .ta6 td, .ta6 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 7;
}
/*テーブル内の右側*/
.ta6 td{
	width:96%;
	padding: 70px 0px 2px 10px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/happylife.png) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	color: #8EC7FF;	/*文字色*/
	font-weight: 500;	/*文字を太字にする設定*/
	text-shadow: 2px 2px 5px #666666;
	text-align: left;
	font-size:15px;
	letter-spacing: 0.1em;
	display: inline-block;
}

/*テーブル7
---------------------------------------------------------------------------*/
.ta7 {
	height: 250px;	/*ボックスの高さ*/
	width: 98%;	/*ボックスの幅*/
}
.ta7, .ta7 td, .ta7 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}
/*テーブル内の右側*/
.ta7 td{
	width:100%;
	padding:70px 10px 0px 0px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/illustration/blackboard.png) no-repeat left top ;	/*背景画像の読み込み＆リピートしない＆左側下部に配置*/
	position: relative;
	color: #FFF;	/*文字色*/
	font-weight: 800;	/*文字を太字にする設定*/
	text-decoration: none;
	text-align: left;
	font-size:11px;
	letter-spacing: 0.1em;
	display: inline-block;
}

/*テーブル8
---------------------------------------------------------------------------*/
.ta8 {
	width: 100%;
}
.ta8, .ta8 td, .ta8 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}

/*テーブル内の右側*/
.ta8 td{
	width:100%;
	padding: 55px 0px 30px 0px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/illustration/slidedoor.png) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	color: #996666;	/*文字色*/
	font-weight: 400;	/*文字を太字にする設定*/
	text-shadow: 1px 1px 5px #999999;
	text-align: left;
	font-size:15px;
	letter-spacing: 0em;
	display: inline-block;
}

/*テーブル9
---------------------------------------------------------------------------*/
.ta9 {
	width: 96%;
}
.ta9, .ta9 td, .ta9 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}

/*テーブル内の右側*/
.ta9 td{
	width:100%;
	padding: 50px 0px 70px 0px;	/*文字を余白上 右 下 左 */
	text-align: left;
	background: url(../images/illustration/thumbturn.png) no-repeat right top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	color: #333399;	/*文字色*/
	font-weight: 400;	/*文字を太字にする設定*/
	text-shadow: 1px 1px 5px #999999;
	text-align: left;
	font-size:15px;
	letter-spacing: 0em;
	display: inline-block;
}

/*テーブル10
---------------------------------------------------------------------------*/
.ta10 {
	width: 100%;
}
.ta10, .ta10 td, .ta10 th{
	border: 0px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1;
}

/*テーブル内の右側*/
.ta10 td{
	width:100%;
	padding: 30px 0px 80px 0px;	/*文字を余白上 右 下 左 */
	text-align: right;
	background: url(../images/illustration/madodoro2.png) no-repeat left top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
	position: relative;
	color: #996633;	/*文字色*/
	font-weight: 400;	/*文字を太字にする設定*/
	text-shadow: 1px 1px 5px #999999;
	text-align: right;
	font-size:15px;
	letter-spacing: 0em;
	display: inline-block;
}



/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	color: #FFF;	/*文字色*/
	background-color: #000;	/*背景色*/
	text-decoration: none;
	text-align: center;
	width: 14em;
	font-size: 10px;
	letter-spacing: 0.1em;
	display: inline-block;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*その他
---------------------------------------------------------------------------*/
.border_radius {	/*背景色*/
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    width: 100%;
    height: auto;
	-webkit-box-shadow: 2px 2px 2px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 2px 2px 2px #bcbcbc;			/*同上*/
}
	
.look {
	background: #dcdcdc;
}
.mb1em {
	margin-bottom: 0em;
}
.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;
}
#main img.wa {
	width: 100%;
	height: auto;
}
.pagetop {
	clear: both;
	text-align: right;
	font-size: 11px;
	letter-spacing: 0.2em;
}
.new img { 
margin-bottom:-2px; 
margin-left:100px;
} 
@media screen and (max-width: 480px){
.pc {       display:none;}
}


/*アコーディオンメニュー
---------------------------------------------------------------------------*/
.accordion label {
    display: block;
    margin:5;
    padding: 5px;
    border-bottom: 1px solid #ccc;
	border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    background: #017BAF;
	background-image: url(../images/zyou.png), -webkit-gradient(linear, left top, left bottom, from(#02B5DB), to(#017BAF));	/*グラデーション*/
	background-image: url(../images/zyou.png), -webkit-linear-gradient(#02B5DB, #017BAF);	/*同上*/
	background-image: url(../images/zyou.png), linear-gradient(#02B5DB, #017BAF);
	background-repeat: no-repeat;
	background-position: 98% center;
	font-weight: bold;	/*文字を太字にする設定*/

    color: #fff;
    cursor: pointer;
}
.accordion input[type="checkbox"]{
    display: none;
}
.accordion .accordionIn {
    overflow: hidden;
    height: 0;
    text-decoration: none;
    -webkit-transition: height .5s ease-out;
    transition: height .5s ease-out;
}
.accordion input[type="checkbox"]:checked + .accordionIn{
    height: auto;
}

/*menu.html内のメニューブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article2 {
	height: auto;	/*ボックスの高さ*/
	width: 200px;	/*ボックスの幅*/
	border-radius: 5px;	/*角丸のサイズ*/
	-webkit-box-shadow: 0px 2px 5px #bcbcbc;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bcbcbc;			/*同上*/
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background-image: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	padding: 5px;	/*ボックス内の余白*/
	float: left;
	margin: 0px 10px 1em;
	position: relative;
	border: 1px solid #CCC;
	font-size: 10px;	/*文字サイズ*/
}
/*ボックス内のh1タグ設定*/
#main section.list article2 h1 {
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	font-size: 100%;
	padding: 0;
	border-radius: 0px;
	color: #9d0909;	/*文字色*/
	border-bottom: 2px dotted #000099;	/*下線の幅、線種、色*/
	margin-bottom: 5px;
}
/*ふきだしアイコンの位置*/
#main section.list article2 img.icon {
	position: absolute;
	top: -10px;	/*ボックスに対して上から-10pxの位置に配置*/
	right: 0px;	/*ボックスに対して右から0pxの位置に配置*/
}

.arrow_box {
	position: relative;
	height: auto;	/*ボックスの高さ*/
	width: 120px;	/*ボックスの幅*/
	background: #008BCE;
	border-radius: 10px;
	border: 1px solid #c2e1f5;
	top: 2px;	
	left: 50%;	
	color: #ffffff;	/*文字色*/
	text-shadow: 1px 3px 2px #333333;
	text-align: left;
	font-size:10px;
	letter-spacing: 0.1em;
	text-align: center;	/*メニューテキストをセンタリング*/
	line-height: 12px;
	}
.arrow_box:after, .arrow_box:before {
	top: 100%;
	left: 70%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.arrow_box:after {
	border-color: rgba(119, 213, 182, 0);
	border-top-color: #008BCE;
	border-width: 5px;
	margin-left: -5px;
}
.arrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #c2e1f5;
	border-width: 8px;
	margin-left: -8px;
}


.sarrow_box {
	position: relative;
	height: 28px;	/*ボックスの高さ*/
	width: 110px;	/*ボックスの幅*/
	background: #FFF;
	border-radius: 8px;
	border: 2px solid #336699;
	top: 8px;	
	left: 50%;	
	color: #336699;	/*文字色*/
	text-shadow: 1px 1px 1px #333333;
	text-align: left;
	font-size:11px;
	letter-spacing: 0.1em;
	text-align: left;	/*メニューテキストをセンタリング*/
	line-height: 14px;
	}
.sarrow_box:after, .sarrow_box:before {
	top: 100%;
	left: 85%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}

.sarrow_box:after {
	border-color: rgba(119, 213, 182, 0);
	border-top-color: #FFF;
	border-width: 5px;
	margin-left: -5px;
}
.sarrow_box:before {
	border-color: rgba(194, 225, 245, 0);
	border-top-color: #336699;
	border-width: 8px;
	margin-left: -8px;
}

#formWrap {
	width:100%;
	margin:0 auto;
	color:#555;
	line-height:120%;
	font-size:90%;
	
}
table.formTable{
	width:100%;
	margin:0 auto;
	border-collapse:collapse;
	background: url(../images/mailbackground.png) no-repeat left top;	/*背景画像の読み込み＆リピートしない＆右側上部に配置*/
}
table.formTable td,table.formTable th{
	border:0px solid #ccc;
	padding:10px;
}
table.formTable td{
	width:100%;
	font-weight:normal;
	text-align:left;
}
p.error_messe{
	margin:5px 0;
	color:red;
}

