@charset "utf-8";

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

/*h1ロゴの設定*/
header .inner h1 {
	display:none;

}

/*h2ロゴの設定*/
header .inner h3 {
	position: static;
	padding-top: 5px;
	padding-bottom:5px;
}


header .qr {
	position: static;
	padding-bottom: 20px;
}

header .facebook {
	position: static;
	padding-bottom: 20px;
}


/*電話番号ボックスの設定*/
header .inner address {
	position: static;
	padding-bottom: 20px;
}

header .mail_bt {
	position: static;
	padding-bottom: 20px;
}


/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック設定*/
nav#menu {
	height: auto;
	margin-right: 6px;
	margin-left: 6px;
	display:inherit;

}
nav#menu ul {
	width: auto;
}
/*メニュー１個ごとの設定*/
nav#menu ul li {
	float: none;
	width: 100%;
	border: none !important;
	background-color: #660099;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image:  url(./images/btn_arrow.png),-webkit-gradient(linear, left top, left bottom, from(#7102a8), to(#660099));	/*グラデーション*/
	background-image:  url(./images/btn_arrow.png),-webkit-linear-gradient(#7102a8, #69019d 49%, #660099 50%);	/*同上*/
	background-image:  url(./images/btn_arrow.png),linear-gradient(#7102a8, #69019d 49%, #660099 50%);			/*同上*/
	background-repeat: no-repeat;
	background-position: right center;
	text-align: left;
}
nav#menu ul li a {
	line-height: normal;
	padding: 15px 0px 15px 20px;	/*メニュー内の余白。上、右、下、左*/
}


nav#menu2 {
	display:none;
}


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

/*contents-in,main,subコンテンツ
---------------------------------------------------------------------------*/
#contents-in, #main, body.c2 #main{
	float: none;
	width: auto;
}

#sub {
	float: none;
	width: 100%;
}

/*sideコンテンツ
---------------------------------------------------------------------------*/
#side {
	display: none;	/*表示させない設定*/
}

/*トップページのメイン画像。表示させたいなら、style-m.cssの同じ箇所のタグをコピペする。
---------------------------------------------------------------------------*/
#mainimg {
	margin: 0px 6px 1%;
}
#mainimg aside {
	height: auto;
	width: 100%;
}
#mainimg aside img {
	vertical-align: bottom;
}


/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
section#new h2.open {
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#95e2c0), to(#1ec17a));	/*マイナスアイコンとグラデーション*/
	background: url(../images/btn_minus.png) no-repeat right center, -webkit-linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);					/*同上*/
	background: url(../images/btn_minus.png) no-repeat right center, linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);							/*同上*/
}
section#new h2.close {
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-gradient(linear, left top, left bottom, from(#95e2c0), to(#1ec17a));	/*プラスアイコンとグラデーション*/
	background: url(../images/btn_plus.png) no-repeat right center, -webkit-linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);						/*同上*/
	background: url(../images/btn_plus.png) no-repeat right center, linear-gradient(#95e2c0, #30c684 49%, #1ec17a 50%);								/*同上*/
}
/*ブロック全体の設定*/
#new dl {
	height: auto;
	padding-left: 0;
}
/*日付設定*/
#new dt {
	float: none;
	width: auto;
}
/*記事設定*/
#new dd {
	padding-left: 0;
}

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

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

/*service.html内の一覧の各ブロック
---------------------------------------------------------------------------*/
/*ボックス内の段落タグ設定*/
#main section.list article p {
	margin-left: 0;
}
/*ボックス内の写真設定*/
#main .list article figure img {
	float:none;
	width: 30%;
	height: auto;
	margin-right: 5px;
}


/*その他
---------------------------------------------------------------------------*/
/*<body class="s-n">指定の場合にsubブロックも表示させない設定*/
body.s-n #sub {
	display: none;
}
/*幅一杯に画像を表示させる*/
img.wa {
	height: auto;
	width: 100%;
}
/*メニュー折りたたみ設定*/
#top #menubar_hdr {
	display: none;
}
#menubar_hdr {
	display: inline;
	position: absolute;
	top: 0px;
	right: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#fbfbfb), to(#e5e5e5));
	background-image: -webkit-linear-gradient(#fbfbfb, #e5e5e5);
	background-image: linear-gradient(#fbfbfb, #e5e5e5);
	padding: 10px;
	border: 1px solid #cfcfcf;
	border-radius: 0px 0px 6px 6px;
}



.iframe-content {
    position: relative;
    width: 100%;
    padding: 180% 0 0 0;
}
.iframe-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}


.sekou_img_area2_left{
	float:none;
	width:100%;
}

.sekou_img_area2_right{
	float:none;
	width:100%;
}


.dl_list dl {
	width:100%;
 }


.dl_list dd {
	margin-bottom:5px;

	float:left;
	width:97%;
	padding:6px;
	border-bottom:1px dotted #cccccc;

　}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea
{
    background-color: #fff;
    color: #000;
    width: 90%;
}


footer small {
	font-size:8px;
}

.top_box_left1{
	width:100%;
	height:auto;
	float:none;
	margin-top:5px;
	border:1px solid #cccccc;
	background-color:#ffffdf;
}

.top_box_right1{
	width:100%;
	height:auto;
	float:none;
	margin-left:0px;
	margin-top:5px;

	border:1px solid #cccccc;
	background-color:#ffffdf;

}


.top_box_left2{
	width:100%;
	height:auto;
	float:none;
	margin-top:5px;
	border:1px solid #cccccc;
	background-color:#ffffdf;
}

.top_box_right2{
	width:100%;
	height:auto;
	float:none;
	margin-left:0px;
	margin-top:5px;

	border:1px solid #cccccc;
	background-color:#ffffdf;

}


.top_box_left3{
	width:100%;
	height:auto;
	float:none;
	margin-top:5px;
	border:1px solid #cccccc;
	background-color:#ffffdf;
}

.top_box_right3{
	width:100%;
	height:auto;
	float:none;
	margin-left:0px;
	margin-top:5px;

	border:1px solid #cccccc;
	background-color:#ffffdf;

}


.top_box_left4{
	width:100%;
	height:auto;
	float:none;
	float:left;
	margin-top:5px;
	border:1px solid #cccccc;
	background-color:#ffffdf;
}

.top_box_right4{
	width:100%;
	height:auto;
	float:none;
	margin-left:0px;
	margin-top:5px;

	border:1px solid #cccccc;
	background-color:#ffffdf;

}


#fnavi {
	display:none;
}


.sidefix{
	display:none;
}

.m_side{
	display:inherit!important;

}


.demo01 table { width: 100%; border:none; padding: 10px;}
.demo01 thead { display: none;}
.demo01 tr {
	display: block;
	margin-bottom: 20px;
	border-top: 1px solid #4f4d47;
}
.demo01 td {
	display: block;
	text-align: center;
	border-right: 1px solid #4f4d47;
	border-bottom: none;
	padding: 0;
}

/* tdのデザイン */
.demo01 td:nth-of-type(1) { background-color: #61c5bb; text-align: center; color: #fff;}
.demo01 td:last-child { border-bottom: 1px solid #4f4d47;}
.demo01 td:before {
	color: #4f4d47;
	display: block;
	background-color: #f5f3ec;
}

/* contentでタイトルを追加 */
.demo01 td:nth-of-type(2):before { content: "ご自分で設立される場合";}
.demo01 td:nth-of-type(3):before { content: "当事務所に依頼される場合";}





.demo02 table { width: 100%; border:none; padding: 10px;}
.demo02 thead { display: none;}
.demo02 tr {
	display: block;
	margin-bottom: 20px;
	border-top: 1px solid #4f4d47;
}
.demo02 td {
	display: block;
	text-align: center;
	border-right: 1px solid #4f4d47;
	border-bottom: none;
	padding: 0;
}

/* tdのデザイン */
.demo02 td:nth-of-type(1) { background-color: #ffffff; text-align: left; color: #333333;}
.demo02 td:last-child { border-bottom: 1px solid #4f4d47;}
.demo02 td:before {
	color: #333333;
	display: block;
	background-color: #ffffff;
}

/* contentでタイトルを追加 */
.demo02 td:nth-of-type(2):before { content: "提出書類";}
.demo02 td:nth-of-type(3):before { content: "提出期限";}

.photo_g_left{
	float:left;
	width:48%;
}

.photo_g_right{
	float:right;
	width:48%;
}

/* スマホ用　動画の幅調整（全て共通）　ここから */
.video2 video{
	width:100%;
}
/* スマホ用　動画の幅調整（全て共通）　ここまで */



