@charset "utf-8";


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

/*全体の設定
---------------------------------------------------------------------------*/
body {
	margin: 0px;
	padding: 0px;
	color: #333;	/*全体の文字色*/
	background: #fff;	/*背景色*/
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;	/*フォント種類*/
	font-size: 14px;	/*文字サイズ*/
	line-height: 2;		/*行間*/
	-webkit-text-size-adjust: none;
}
h1,h2,h3,h4,h5,p,form,figure,form {margin: 0px;padding: 0px;font-size: 100%;}
table {border-collapse:collapse;font-size: 100%;border-spacing: 0;}

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

/*ヘッダー（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background: #20b2aa;	/*背景色*/
	height: 70px;			/*高さ*/
}
/*サイト幅にしたheader内のブロック*/
header .inner {
	width: 1000px;	/*幅*/
	margin: 0 auto;
	overflow: hidden;
}

/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	clear: both;
	overflow: hidden;	/*上下、左右へのボックス内の余白。*/
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 40px;
	padding-left: 0px;
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	width: 1000px;	/*幅*/
	margin: 0 auto;
}

/*コンテンツのh2タグの設定*/
.contents h2 {
	clear: both;
	margin-bottom: 15px;
	color: #FFF;	/*背景色*/
	-webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);	/*影の設定。右へ、下へ、ぼかし幅。rgbaは色設定で0,0,0は黒。0.2が透明度。*/
	box-shadow: 1px 1px 2px rgba(0,0,0,0.2);			/*同上*/
	background-color: #20b2aa;
	text-align: center;
	font-weight: lighter;
	font-size: 20px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}

/*コンテンツの段落タグ設定*/
.contents p {
	padding: 0px 15px 14px;	/*上、左右、下への余白*/
}
.contents h2 + p,
.contents h3 + p {
	margin-top: -5px;
	font-weight: lighter;
	text-align: center;
}


/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;	/*背景色*/
	color: #fff;			/*文字色*/
	background-color: #666;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
footer a {
	color: #fff;
}
footer a:hover {
	color: #fff;
}
footer .pr {
	display: block;
	font-size: 80%;
}

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

/*テーブル
---------------------------------------------------------------------------*/
/*ta1設定*/
.ta1 {
	width: 85%;
	margin-right: auto;
	margin-left: auto;
}
.ta1, .ta1 td, .ta1 th {
	text-align: left;
	font-weight: normal;
	font-size: 14px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
}
/*テーブル１行目に入った見出し部分*/
.ta1 thead th , .ta1 thead td{
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #ccc;
}
/*ta1の左側ボックス*/
.ta1 th {
	width: 200px;
	background-color: #f9f9f9;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #CCC;
}
/*ta1の右側ボックス*/
.ta1 td {
	background: #fff;	/*背景色*/
}
.ta1 tr th span {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-bordrer-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	color:#FFF;
	font-size: 12px;
	text-align: center;
	margin-left: 5px;
	background-color: #C30;
	padding-top: 3px;
	padding-right: 5px;
	padding-bottom: 3px;
	padding-left: 5px;
}
.ta1 tr th p {
	margin: 0px;
	padding: 0px;
	font-size: 10px;
	color: #999999;
}
.ta1 tr td textarea {
	width: 100%;
}

/*フォーム用ボタン
---------------------------------------------------------------------------*/
input[type=text]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:1px solid #CCC;
	height:35px;
	padding:0 3px;
	background-color: #f9f9f9;
}
input[type=text]:focus{
	border:solid 1px #20b2aa;
	background-color: #FFF;
}
input[type=text], select{
	outline: none;
}
textarea{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:1px solid #CCC;
	padding:0 3px;
	background-color: #f9f9f9;
}
textarea:focus{
	border:solid 1px #20b2aa;
	background-color: #FFF;
}
textarea, select{
	outline: none;
}
input[type=button]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	-webkit-box-shadow: 1px 1px 2px #CCC;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 1px 2px #CCC;			/*同上*/

	height:25px;
	padding-left:10px;
	padding-right:10px;
	cursor:pointer;
	color:#FFF;
	background:#20b2aa;
	font-size: 12px;
	border: 1px solid #FFF;
}
input[type=submit]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:1px solid #FFF;
	-webkit-box-shadow: 1px 1px 2px #CCC;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 1px 2px #CCC;			/*同上*/
	height:35px;
	padding-left:10px;
	padding-right:10px;
	cursor:pointer;
	color:#FFF;
	font-size: 14px;
	background-color: #20b2aa;
}
input[type=reset]{
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	border:1px solid #20b2aa;
	-webkit-box-shadow: 1px 1px 2px #CCC;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 1px 2px #CCC;			/*同上*/
	height:35px;
	padding-left:10px;
	padding-right:10px;
	cursor:pointer;
	color:#20b2aa;
	font-size: 14px;
	background-color: #fff;
}


/*その他
---------------------------------------------------------------------------*/
.pr {font-size: 10px;}
.wl {width: 96%;}
.ws {width: 50%;}
.c {text-align: center;}
.sh{display:none;}
.dn{display:none;}



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

/*全体の設定
---------------------------------------------------------------------------*/
/*サイト幅にしたheader内のブロック*/
header .inner {
	width: auto;
}

/*コンテンツ（main、subを囲むボックス。１カラム時でも使用。）
---------------------------------------------------------------------------*/
.contents {
	padding: 20px 0px;	/*上下、左右へのボックス内の余白。*/
}
/*サイト幅にしたcontents内のブロック*/
.contents .inner {
	width: auto;
	margin: 20px;
}

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

/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	width: 90%;
}

/*その他
---------------------------------------------------------------------------*/
.mt-top {margin-top: 450px;}
.mt-top2 {margin-top: 150px;}
body.s-n .sub {display: none;}

}



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

/*全体の設定
---------------------------------------------------------------------------*/
/*フッターメニュー
---------------------------------------------------------------------------*/
/*ボックス全体*/
#footermenu {
	display: none;
}

/*テーブル
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
	margin-right: auto;
	margin-left: auto;
}

/*テーブル内の左側*/
.ta1 th {
	width: 100px;
	padding: 5px;
	font-size:10px;
}
/*テーブル内の右側*/
.ta1 td {
	width: auto;
	padding: 5px;
}
.ta1 tr th span {
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-bordrer-radius: 5px;
	-o-border-radius: 5px;
	-ms-border-radius: 5px;
	color:#FFF;
	font-size: 10px;
	text-align: center;
	margin-left: 5px;
	background-color: #C30;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
}

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

}
#mf_wrapper {
	margin-right: auto;
	margin-left: auto;
}
#mf_header {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	font-weight: lighter;
	color: #333;
	height: 300px;
}
#mf_wrapper #mf_header h2 {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 20px;
	font-weight: lighter;
	color: #FFF;
	background-color: #20b2aa;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
#mf_header h3 {
	font-size: 14px;
	color: #333;
	text-align: center;
	font-weight: lighter;
	padding-top: 50px;
	padding-bottom: 20px;
}
