@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #333;
	margin: 0px;
	padding: 0px;
	font: 14px/1.8 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
	background-color: #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: #00c;
	text-decoration: none;
}
a:hover {
	color: #00ade6;
	text-decoration: none;
}

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#ededed));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF 80%, #ededed);	/*同上*/
	background-image: linear-gradient(#FFF 80%, #ededed);			/*同上*/
}
/*ヘッダーブロックの中*/
header .inner {
	width: 1000px;
	height: 60px;
	position: relative;
	margin: 0px auto;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: absolute;
	left: 10px;
	top: 10px;
}


/*トップページの画像設定
---------------------------------------------------------------------------*/
#mainimg {
	background-color: #d9f3fb;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#aadff0), to(#d9f3fb));	/*グラデーション*/
	background: -webkit-linear-gradient(#aadff0, #d9f3fb);	/*同上*/
	background: linear-gradient(#aadff0, #d9f3fb);			/*同上*/
	clear: left;
	-webkit-box-shadow: 0px 2px 10px #bcbcbc;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 0px 2px 10px #bcbcbc;		/*同上*/
}
#mainimg aside {
	width: 1000px;
	height: 270px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
#mainimg aside p {
	position: absolute;
	right: 20px;
	top: 30px;
	background-color: rgba(0,0,0,0.4);
	padding: 5px 15px;
	font-weight: bold;
	color: #f90;
	width: 470px;
	line-height: 1.7em;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	clear: left;
	width: 1000px;
	margin: 0px auto;
	padding-top: 30px;
}

/*メインコンテンツ（中央ブロック）
---------------------------------------------------------------------------*/
#main {
	float: left;
	width: 728px;
	padding-bottom: 30px;
}
/*mainコンテンツのh2タグ設定*/
#main h2 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: url(../images/arrow1.png) no-repeat left center, -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*マークとグラデーション*/
	background: url(../images/arrow1.png) no-repeat left center, -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background: url(../images/arrow1.png) no-repeat left center, linear-gradient(#FFF, #e6e6e6);			/*同上*/
	-webkit-box-shadow: 1px 2px 7px #999;	/*影の設定。右・下・ぼかし幅・色の設定*/
	box-shadow: 1px 2px 7px #999;			/*同上*/
	font-size: 100%;
	color: #00ade6;
	padding: 4px 15px 4px 30px;
	border-top: 1px solid #d4d4d4;
	border-right: 1px solid #d4d4d4;
	border-bottom: 4px solid #00ade6;
	border-left: 1px solid #d4d4d4;
	border-radius: 6px 6px 0px 0px;
	line-height: 1.7;
}
/*mainコンテンツのh3タグ設定*/
#main h3 {
	clear: both;
	background-color: #FFF;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e6e6e6));	/*グラデーション*/
	background: -webkit-linear-gradient(#FFF, #e6e6e6);	/*同上*/
	background: linear-gradient(#FFF, #e6e6e6);			/*同上*/
	font-size: 100%;
	color: #1a52a5;
	padding: 4px 15px;
	border: 1px solid #d4d4d4;
	border-radius: 6px;
	line-height: 1.7;
}
/*mainコンテンツのh4タグ設定*/
#main h4 {
	clear: both;
	font-size: 110%;
	color: #ff9900;
	padding: 2px 15px 2px 10px;
	border-bottom: 1px solid #d4d4d4;
	border-left: 4px solid #ccc;
	line-height: 1.7;
	margin-bottom: 10px;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 10px 10px 15px;
	margin-bottom: 15px;
	line-height: 1.7em;
}
#main p.exception {
	margin-bottom: 0;
	padding: 15px 10px 0;
}
#main p.mb0	 {
	margin-bottom: 0;
}

/*mainコンテンツの画像設定*/
.img-left {
	float: left;
	margin: 5px 10px 10px 0px;
}
.img-next {
	margin: 0 5px 0 10px;"
}

/*エリアナビ
---------------------------------------------------------------------------*/
nav#area ul {
	width: 100%;
	line-height: 1.5em;
	overflow:hidden;
	margin-bottom: 1.5em;
}
nav#area ul li {
	float: left;
	padding-left: 10px;
}
nav#area ul li a {
	text-decoration: none;
	background: url(../images/arrow2.png) no-repeat left 3px;
	padding-left: 17px;
	color: #4169E1;
}
/*マウスオン時*/
nav#area ul li a:hover {
	color: #008900;
}

/*大学ナビ
---------------------------------------------------------------------------*/
nav.univ ul {
	width: 100%;
	line-height: 1.5em;
	overflow:hidden;
	margin-bottom: 1.5em;
}
nav.univ ul li {
	float: left;
	padding-left: 10px;
}
nav.univ ul li a {
	text-decoration: none;
	background: url(../images/arrow3.png) no-repeat left 4px;
	padding-left: 12px;
	color: #4169E1;
	margin-right: 7px;
}
/*マウスオン時*/
nav.univ ul li a:hover {
	color: #00ade6;
}

/*サブコンテンツ
---------------------------------------------------------------------------*/
#sub {
	float: right;
	width: 250px;
	padding-bottom: 30px;
}
/*subコンテンツ内のh2タグ設定*/
#sub h2 {
	font-size: 100%;
	text-align: center;
	background-color: #666;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#999), to(#666));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#999, #666);	/*同上*/
	background-image: linear-gradient(#999, #666);			/*同上*/
	padding: 3px 0px;
	color: #FFF;
	border-radius: 6px 6px 0px 0px;
}
/*box1の中にあるh2タグの設定*/
#sub .box1 h2 {
	border-radius: 0;
}
/*subコンテンツ内のbox1設定*/
#sub .box1 {
	background-color: #ade0f0;
	border: 1px solid #cfcfcf;
	padding: 7px;
	margin-bottom: 15px;
}
/*見出しにbox1やメニューが繋がった場合に枠線が重複しない為の設定*/
#sub h2 + ul,
#sub h2 + .box1 {
	border-top: none;
}
/*box1の中にメニューが入った場合に下に余分な余白が出るのをなくす設定*/
#sub .box1 > ul {
	margin-bottom: 0;
}

/*subコンテンツ内のメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
#sub ul {
	border-top: 1px solid #cfcfcf;
	border-right: 1px solid #cfcfcf;
	border-left: 1px solid #cfcfcf;
	margin-bottom: 15px;
}
/*メニュー１個ごとの設定*/
#sub ul li a {
	text-decoration: none;
	display: block;
	border-bottom: 1px solid #cfcfcf;
	padding-left: 10px;
	background: #FFF;
	color: #1a52a5;
}
#sub ul li a:hover {
	background-color: #fff8c7;
}

/*subコンテンツ　ボックス
---------------------------------------------------------------------------*/
/*ボックス１個あたりの設定*/
#sub section.box2 {
	font-size: 13px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);									/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);											/*同上*/
	border-bottom: 1px solid #999;	/*下の線の幅、線種、色*/
	border-right: 1px solid #999;	/*右の線の幅、線種、色*/
	border-left: 1px solid #999;	/*左の線の幅、線種、色*/
	line-height: 1.5;
	position: relative;
	overflow: hidden;
}
#sub section.box2 a {
	padding: 5px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*p段落タグ*/
#sub section.box2 p {
	padding: 5px 10px;
}

#sub section.box3 {
	font-size: 13px;
	border-bottom: 1px solid #999;
	border-right: 1px solid #999;
	border-left: 1px solid #999;
	line-height: 1.6;
	position: relative;
	overflow: hidden;
}
#sub section.box3 a {
	padding: 5px;
	text-decoration: none;
	display: block;
	overflow: hidden;
}
/*p段落タグ*/
#sub section.box3 p {
	padding: 5px 10px;
}
/*サムネイル画像のフチ*/
#sub section.box3 figure {
	border: none;
	width: 160px;
	margin: 0px auto;
}

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


/*テーブル１(未使用)
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #CCC;
	line-height: 2;
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 140px;
	padding: 10px;
	text-align: center;
	background-color: #f1f1f1;
}
/*テーブル１行目に入った見出し部分*/
.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;
}

/*テーブル２　小学生向け派遣の月謝比較表
---------------------------------------------------------------------------*/
.ta2 {
	width: 80%;
	margin: 15px 0px 2em;
	float: left;
}
.ta2, .ta2 td, .ta2 th {
	border: 1px solid #CCC;
	line-height: 1.5;
}
.ta2 td{
	padding: 5px;
}
.ta2 td:nth-child(1) {
	width: 25%;
	background-color: #f1f1f1;
	text-align: center;
}
.ta2 td.star {
	width: 15%;
	font-size: 17px;
	text-align: center;
}
.ta2 th {
	padding: 5px;
	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);
}

/*問い合わせフォーム
---------------------------------------------------------------------------*/
.ta3 {
	width: 100%;
}
.ta3, .ta3 td, .ta3 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.4;
}
.ta3 td{
	padding: 10px;
}
.ta3 td input{
	width: 60%;
}
.ta3 td textarea{
	width: 98%;
}
.ta3 th{
	width: 22%;
	min-width: 60px;
	padding: 10px;
	text-align: left;
	background-color: #ECE2BA;
	font-weight: normal;
}
/*相互リンク申込みフォーム
---------------------------------------------------------------------------*/
.ta4 {
	width: 100%;
}
.ta4, .ta4 td, .ta4 th{
	border: 1px solid #CCC;	/*テーブルの枠線の幅、線種、色*/
	line-height: 1.4;
}
.ta4 td{
	padding: 10px;
}
.ta4 td input{
	width: 60%;
}
.ta4 td textarea{
	width: 98%;
}
.ta4 th{
	width: 37%;
	min-width: 60px;
	padding: 10px;
	text-align: left;
	background-color: #ECE2BA;
	font-weight: normal;
	line-height: 1.4;
}
/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
}
#pagetop a {
	color: #FFF;
	font-size: 10px;
	background-color: #00ade6;
	text-decoration: none;
	text-align: center;
	width: 10em;
	display: block;
	float: right;
}
/*マウスオン時*/
#pagetop a:hover {
	background-color: #333;
	color: #FFF;
}

/*広告設定
---------------------------------------------------------------------------*/
.ad1 {
 text-align: center;
 padding-top: 8px;
 padding-bottom: 8px;
}
.ad2 {
 text-align: center;
 padding-top: 8px;
 padding-bottom: 30px;
}
.ad3 {
 padding-top: 8px;
 padding-bottom: 8px;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #dcdcdc;
}
.mb15,
.mb1em {
	margin-bottom: 15px;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 15px;
	list-style: disc;
}
.color1 {
	color: #f61468;
}
.orangeb {
	color: #ff8000;
	font-weight: bold;
	font-size: 16px;
}
.orangeb1 {
	color: #ff8000;
	font-weight: bold;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
.mini1 {
	font-size: 12px;
	line-height: 1.5;
}
figcaption {
	font-size: 11px;
}
img {
	max-width: 100%;
	height: auto;
}

/* 追加分 */

/* 検索窓
---------------------------------------------------------------------------*/
#search table {
	margin-left : auto;
	margin-right : auto;
	text-align: center;
	width: 100%;
}
#search input[type=text] {
	width: 75%;
	margin-bottom: 1em;
}
/* テーブル（運営者情報）
---------------------------------------------------------------------------*/
.tbl_mng {
	width: 100%;
	margin: 1.2em 0px 1em;
	float: left;
}
.tbl_mng, .tbl_mng td, .tbl_mng th {
	border: 1px solid #CCC;
	line-height: 1.5;
}
.tbl_mng td{
	padding: 5px;
}
.tbl_mng td:nth-child(1) {
	width: 25%;
	background-color: #f1f1f1;
	text-align: center;
}
.tbl_mng th {
	padding: 5px;
	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);
}
.p_mng {
	margin-left: 1em;
}
/* メールフォーム（問い合わせ）
---------------------------------------------------------------------------*/
.tbl_mail {
	width: 100%;
	margin-bottom: 1em;
}
.tbl_mail, .tbl_mail td, .tbl_mail th, #send_msg {
	border: 1px solid #CCC;
	line-height: 1.5;
}
.tbl_mail td{
	padding: 5px;
}
.tbl_mail td:nth-child(1) {
	width: 25%;
	background-color: #f1f1f1;
	text-align: center;
}
.tbl_mail th, #send_msg {
	padding: 5px;
	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);
}
.coution2 {
	color: #f00;
	font-weight: bold;
}
#td_msg {
	padding: 0;
	color: #f00;
	font-weight: bold;
}
.td_in {
	text-align: center;
}
.td_in input[type="text"] {
	width:99%;
}
#td_text {
	vertical-align: middle;
	height: 10em;
	width:99%;
}
#td_tel,#td_mail {
	ime-mode: disabled;
}
#lower {
	text-align: center;
	height: 1.5em;
	width: 100%;
	margin-bottom: 1em;
}
#btns {
	line-height: 100%;
}
#loading {
	line-height: 100%;
	width: 100%;
	border: 1px solid #999;
}
#loading img {
	margin 0;
	padding 0;
}
#send_msg {
	text-align: center;
	font-weight: bold;
	margin-bottom: 1em;
}
/* 1st-Media,Inc. 運営Websiteのご案内
---------------------------------------------------------------------------*/
#contact_guide h3 {
	margin-bottom: 1em;
}
#contact_guide p {
	line-height:160%;
	background-color:#f7f7ff;
}
#contact_guide img {
	height: 89px;
	width: 150px;
	float:left;
	margin: 0;
	border: 0;
	padding: 0;
	margin-right: 1em;
}
/* テーブル（相互リンク）
---------------------------------------------------------------------------*/
.ta_tutor7 {
	background-color: #f7f7f7;
	border-collapse:collapse;
	border-spacing: 0;
	font-size: 100%;
	width: 100%;

	margin-bottom: 1.5em;
}
.td_tutor7_left {
	width: 25%;
	position: relative;
}
.ta_tutor7 img {
	border: 1px solid #ccc;
	height: 89px;
	width: 150px;

	position: absolute;
	top: 2em;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}
.td_tutor7_right1 {
	height: 2.5em;
}
.td_tutor7_right2 {
	height: 2em;
	position: relative;
}
.td_tutor7_right3 {
	height: 5.5em;
	position: relative;
}
.td_tutor7_text1,
.td_tutor7_text2 {
	width: 96%;
}
.td_tutor7_text1 {
	height: 2em;

	position: absolute;
	top: -0.25em;
}
.td_tutor7_text2 {
	height: 4em;

	position: absolute;
	top: 0.5em;
}
/* メールフォーム（相互リンク）
---------------------------------------------------------------------------*/
.tbl_link {
	width: 100%;
	margin-top: 2em;
	margin-bottom: 1em;
}
.tbl_link,
.tbl_link td,
.tbl_link th,
#send_msg {
	border: 1px solid #CCC;
	line-height: 1.5;
}
.tbl_link td{
	padding: 5px;
}
.tbl_link td:nth-child(1) {
	width: 33%;
	background-color: #f1f1f1;
	text-align: center;
}
.tbl_link th,
#send_msg {
	padding: 5px;
	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);
}
.coution2 {
	color: #f00;
	font-weight: bold;
}
#td_msg {
	padding: 0;
	color: #f00;
	font-weight: bold;
}
.td_in {
	text-align: center;
}
.td_in input[type="text"] {
	width: 99%;
}
#td_mail {
	ime-mode: disabled;
}
#td_select1_0 {
	width: 99.75%;
	height: 1.6em;
}
#td_select1_0:disabled {
	color: #000;
}
.td_in textarea {
	vertical-align: middle;
	height: 6em;
	width: 99%;
}
#lower {
	text-align: center;
	height: 1.5em;
	width: 100%;
	margin-bottom: 1em;
}
#btns {
	line-height: 100%;
}
#loading {
	line-height: 100%;
	width: 100%;
	border: 1px solid #999;
}
#loading img {
	margin 0;
	padding 0;
}
#send_msg {
	text-align: center;
	font-weight: bold;
	margin-top: 2em;
	margin-bottom: 1em;
}
/* リンク募集関連
---------------------------------------------------------------------------*/
#tutor7 {
	margin-bottom: 2em;
}
#tutor7 h2,
#tutor7 h3 {
	margin-bottom: 1em;
}
#tutor7 h3,
#tutor7 h4 {
	margin-top: 1em;
}
#tutor7 img {
	float: left;
	margin:0 1em;
	border :1px solid #ccc;
}
#links {
	border: 1px solid #ccc;
	width: 100%;
	margin-top: 1em;
	text-align: center;
	font-weight: bold;
}
#links a {
	display: block;
}
.links_1 a {
	margin-top: 0.5em;
}
.links_2 a {
	margin-bottom: 0.5em;
}
/* サイトマップ
---------------------------------------------------------------------------*/
#tutor2 {
	margin-bottom: 2em;
}
#tutor2 h2 {
	margin-bottom: 1em;
}
#tutor2 h3,
#tutor2 h4 {
	margin-top: 1em;
	margin-bottom: 1em;
}
#tutor2 div {
	padding-left: 1em;
}





/*ここからタブレット用（481px～800px）環境の設定
---------------------------------------------------------------------------*/
@media (min-width:481px) and (max-width:800px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-image: none;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

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

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin: 0px 6px 1%;
}
#mainimg aside {
	height: auto;
	width: 100%;
}
#mainimg aside img {
	vertical-align: bottom;
}
#mainimg aside p {
	display: none;
}

/*テーブル２　小学生向け派遣の月謝比較表
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin-bottom: 0px;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}
/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
td iframe {
	height: 300px;
	width: 100%;
}

}



/*ここからスマートフォン用（480px以下）環境の設定
---------------------------------------------------------------------------*/
/*表示を切り替えるウィンドウサイズの指定*/
@media (max-width : 480px){

/*ヘッダー（サイト名ロゴが入ったブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-image: none;
}
header .inner {
	width: auto;
	height: auto;
	text-align: center;
}
/*h1ロゴの設定*/
header .inner h1 {
	position: static;
	padding-top: 20px;
}
header h1 img {
	width: 70%;	/*画面に対してロゴ画像を70％の幅に*/
	height: auto;
}


/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

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

/*トップページのメイン画像
---------------------------------------------------------------------------*/
#mainimg {
	margin: 0px 6px 1%;
}
#mainimg aside {
	height: auto;
	width: 100%;
}
#mainimg aside img {
	vertical-align: bottom;
}
#mainimg aside p {
	display: none;
}

/*コンテンツ（main,subを囲むブロック）
---------------------------------------------------------------------------*/
#contents {
	padding-top: 10px;
}

/*テーブル１
---------------------------------------------------------------------------*/
/*テーブル内の右側*/
.ta1 td{
	width: auto;
	padding: 2px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 100px;
	padding: 2px;
}

/*テーブル２　小学生向け派遣の月謝比較表
---------------------------------------------------------------------------*/
.ta2 {
	width: 100%;
	margin-bottom: 0px;
}
/*問い合わせフォーム
---------------------------------------------------------------------------*/
.ta3 th{
    padding: 10px 5PX;
}
.ta3 td input{
	width: 96%;
}

/*問い合わせフォーム
---------------------------------------------------------------------------*/
.ta4 th{
    padding: 10px 5PX;
}
.ta4 td input{
	width: 96%;
}

/*各物件一覧ボックス
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main section.list figure img {
	float: none;
	margin: 0px;
	width: 100%;
	height: auto;
	margin-bottom: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}

/*tdタグにiframeを読み込んだ場合（GoogleMap用）*/
.ta1 td iframe {
	height: 300px;
	width: 100%;
}

}
