@charset "UTF-8";

/*----------------------------------------------------------------------
Reset
----------------------------------------------------------------------*/

html {
	font-size: 62.5%;
}

body {
	margin: 0;
	padding: 0;
	line-height: 1;
	font-size: 1.5rem;
}

h1, h2, h3, h4, h5, h6, p {
	margin: 0;
	padding: 0;
	font-weight: normal;
	font-size: 1.5rem;
}

article,aside,details,figcaption,figure,footer,header .inner,hgroup,menu,nav,section,dl,dt,dd,ul {
	display: block;
	margin: 0;
	padding: 0;
}

main {
	display: block;
}

ul {
	list-style-type: none;
}

hr {
	display: block;
	height: 1px;
	margin: 1rem 0;
	padding: 0;
	border: 0;
	border-top: 1px solid #cccccc;
}

input, select {
	vertical-align: middle;
}

a {
	-webkit-tap-highlight-color: transparent;
	overflow: hidden;
	outline: none;
}

a img {
	border: 0;
}

iframe {
	display: block;
}

img {
	display: block;
	width: 100%;
}

/* cf */
.cf:before, .cf:after {content: ""; display: table;}
.cf:after {clear: both;}
.cf {zoom:1;}

/* 文字拡大対策 */
* {
	-webkit-text-size-adjust: none;
}

/* リスト風 */
.listindent {
	padding-left:1rem;
	text-indent:-1rem;
}

/* Btnbox */
.btnbox {
	margin: 1.5rem 0 0 0;
	text-align: center;
}

.btnbox input[type="button"], 
.btnbox input[type="submit"], 
.btnbox input[type="reset"], 
.btnbox a {
	-webkit-appearance: none;
	display: inline-block;
	min-width: 13rem;
	margin: 0;
	padding: 0.7rem 1.5rem;
	border-radius: 0.5rem;
	background-color: #000;
	border: 0;
	text-align: center;
	font-size: 1.7rem;
	color: #fff;
	cursor: pointer;
}

.btnbox input[type="reset"] {
	background-color: #aaa;
}

.btnbox input[type="button"]:last-child, 
.btnbox input[type="submit"]:last-child, 
.btnbox input[type="reset"]:last-child, 
.btnbox a {
	margin-left: 1.0rem;
}

.btnbox input[type="button"]:hover, 
.btnbox input[type="submit"]:hover, 
.btnbox input[type="reset"]:hover, 
.btnbox a:hover {
	background: #800;
	color: #fff;
}

/*img_left*/
.img_left {
	float: left;
	max-width: 35%;
	margin-right: 20px;
	border-radius: 5px;
}

/*----------------------------------------------------------------------
common
----------------------------------------------------------------------*/

*, *:before, *:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	background: #000;
	text-align: justify;
	text-justify: inter-ideograph;
	line-break: strict;
	word-break: break-all;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

body,tr,td,textarea {
	font-family:'Roboto','Noto Sans JP', Helvetica-Light, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3";
	font-size: 1.4rem;
	line-height: 180%;
	color: #fff;
}

a {
	text-decoration: none;
	color: #c00;
	-webkit-tap-highlight-color:rgba(0,0,0,0.3);
}

a:hover {
	color: #00c;
}

textarea, 
input[type="button"], 
input[type="submit"], 
input[type="reset"] {
	-webkit-appearance: none;
	display: inline-block;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: solid 1px #000;
	text-align: center;
}

input[type="checkbox"] {
	-webkit-appearance: none;
	display: inline-block;
	margin: 0 3px 0 0;
	padding: 0;
	border-radius: 0;
	border: solid 1px #000;
	text-align: center;
}

textarea {
	text-align: left;
}

input[type="text"], 
input[type="password"] 
{
	-webkit-appearance: none;
	display: inline-block;
	margin: 0;
	padding: 0;
	border-radius: 0;
	border: solid 0.1rem;
}

select 
{
	border-radius: 0;
	border: solid 0.1rem;
	font-size: 1.5rem;
	margin-bottom: 0.9rem;
}

/* ifbox */
.ifbox {
	overflow: hidden;
}


/* video */
video {
	display: block;
	margin: 1rem auto 0;
}



/* --------------------------------------------------
coder
-------------------------------------------------- */
.coder {
	width: 96%;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	border-spacing: 0;
	border-radius: 0px;
	border: 1px solid rgba(255,255,255,0.4);
	border-collapse: collapse;
}

.coder th,
.coder td {
	padding: 10px 7px;
	border-bottom:solid 1px rgba(0,0,0,0.85);
	border-right:solid 1px rgba(0,0,0,0.85);
	background: rgba(255,255,255,0.85);
	text-align: center;
	color: #000;
}

.coder th {
	background: rgba(255,255,255,0.85);
	color: #fff;
}

.coder tr:first-child th:first-child,
.coder tr:first-child td:first-child {
	border-radius: 0px 0 0 0;
}

.coder tr:nth-child(even) td {
	background: rgba(255,255,255,0.9);
}

.coder tr:nth-child(even) th {
	background: rgba(255,255,255,0.1);
}

/*右上角丸　最初の行の最後のセル*/
.coder tr:first-child th:last-child,
.coder tr:first-child td:last-child {
	border-radius: 0 0px 0 0;
}

/*左下角丸　最後の行の最初のセル*/
.coder tr:last-child th:first-child,
.coder tr:last-child td:first-child {
	border-radius: 0 0 0 0px;
}
/*右下角丸　最後の行の最後のセル*/
.coder tr:last-child th:last-child,
.coder tr:last-child td:last-child {
	border-radius: 0 0 0px 0;
}

/*thaed,tbodyを使う場合の設定*/
.coder thead th {
	border-right: 1px solid rgba(255,255,255,0.4);
	background: rgba(0,0,0,0.0);
}
.coder thead+tbody th {background: rgba(255,255,255,0.05);}
.coder tbody th {text-align:center;}/*ie*/

/*左上角丸 thead内　最初の行の最初のセル*/
.coder thead tr:first-child th:first-child,
.coder thead tr:first-child td:first-child {
	border-radius: 0px 0 0 0;
	border-bottom: solid 1px rgba(255,255,255,0.4);
}

/*右上角丸 thead内　最初の行の最後のセル*/
.coder thead tr:first-child th:last-child,
.coder thead tr:first-child td:last-child {
	border-radius: 0 0px 0 0;
}

/*
角丸なし　thaedの後のtbody 最初の行の最初のセル
角丸なし　thaedの後のtbody 最初の行の最後のセル
*/
.coder thead+tbody tr:first-child th:first-child,
.coder thead+tbody tr:first-child td:first-child,
.coder thead+tbody tr:first-child th:last-child,
.coder thead+tbody tr:first-child td:last-child {
	border-radius:0px;
}

/*左下角丸　thaedの後のtbody 最後の行の最初のセル*/
.coder thead+tbody tr:last-child th:first-child,
.coder thead+tbody tr:last-child td:first-child {
	border-radius: 0 0 0 0px;
}

/*右下角丸　thaedの後のtbody 最後の行の最後のセル*/
.coder thead+tbody tr:last-child th:last-child,
.coder thead+tbody tr:last-child td:last-child {
	border-radius: 0 0 0px 0;
}

.coder  tr:last-child th, 
.coder  tr:last-child td {
	border-bottom: 0;
}

.coder  tr th:last-child, 
.coder  tr td:last-child {
	border-right: 0;
}


/*----------------------------------------------------------------------
datatable
----------------------------------------------------------------------*/

.datatable:neth-of-type(1) {
	margin: 0 auto;
}

.datatable {
	overflow: hidden;
	width: 880px;
	margin-top: 15px;
	padding: 0.5rem;
	border-radius: 5px;
	background: rgba(255,255,255,0.125);
}

.datatable .title {
	padding: 1rem;
	margin-bottom: 1px;
	background: rgba(0,0,0,0.65);
	font-size: 18px;
}

.datatable dl {
	display: table;
	width: 100%;
	margin-bottom: 1px;
	border-collapse: collapse;
}

.datatable dl:nth-last-of-type(1) {
	margin-bottom: 0;
	border-bottom: 0;
}

.datatable dl dt {
	display: table-cell;
	width: 30%;
	padding: 1rem;
	background: rgba(0,0,0,0.25);
	vertical-align: middle;
	text-align: center;
	font-size: 16px;
}

.datatable dl dd {
	display: table-cell;
	padding: 1rem;
	background: rgba(255,255,255,0.125);
	vertical-align: middle;
	font-size: 16px;
}


/*----------------------------------------------------------------------
header
----------------------------------------------------------------------*/

header {
	position: fixed;
	width: 100%;
	min-width: 1200px;
	height: 51px;
	background-color: rgba(0,0,0,0.65);
	border-bottom: solid 1px rgba(255,255,255,0.5);
	z-index: 10;
}

header #sitelogo {
	float: right;
	width: 80px;
	height: 50px;
	margin-right: 885px;
margin-right: 840px;
}

header #sitelogo a {
	display: block;
	overflow: hidden;
	width: 80px;
	height: 50px;
	background: url(../image/common/logo.png) center 4px no-repeat;
	background-size: 75px 39px;
	text-indent: -9999px;
}

header nav {
	display: none;
}

#menupanel {
	position: fixed;
	width: 100%;
	min-width: 1200px;
	height: 50px;
	z-index: 11;

}

#menupanel .headpanelinner {
	float: right;
	width: 880px;
width: 825px;
}

#menupanel .headpanelinner .panelheader {
	display: none;
}

#menupanel .headpanelinner .mainmenu>li {
	float: left;
	overflow: hidden;
	text-align: center;
}

#menupanel .headpanelinner .mainmenu>li:last-child {
	margin-left: 2px;
	padding-left: 7px;
	border-left: solid 1px rgba(255,255,255,0.5);
}

#menupanel .headpanelinner .mainmenu>li.tel {
	display: none;
}

#menupanel .headpanelinner .mainmenu>li.costomers {
	min-width: 93px;
}

#menupanel .headpanelinner .mainmenu>li a {
	display: block;
	padding: 7px 10px 0;
	line-height: 43px;
	font-size: 1.4rem;
	color: #fff;
}

#menupanel .headpanelinner .mainmenu>li a:hover {
	color: #f00;
}


#menupanel .headpanelinner .mainmenu>li a.disabled {
	pointer-events:none;
	color: #777;
}

#menupanel .headpanelinner .mainmenu>li a span {
	display: none;
}

.dropdown dd {
	display: none;
	opacity: 0;
	overflow: hidden;
	margin-top: 1px;
	border-radius: 0 0 5px 5px;
	border: solid 1px rgba(255,255,255,0.5);
	border-top: 0;
}

.dropdown dd ul li a {
	text-align: center;
	background-color: rgba(0,0,0,0.75);
	border-bottom: solid 1px rgba(255,255,255,0.5);
}

.dropdown dd ul li a:hover {
	background-color: rgba(170,0,0,0.75);
	color: #fff !important;
}

.dropdown dd ul li:last-child a {
	border-bottom: 0;
}


/*----------------------------------------------------------------------
footer
----------------------------------------------------------------------*/

footer {
	position: relative;
	width: 100%;
	min-width: 1200px;
}

footer .accessbtn {
	display: none;
}

footer .footnav {
	background: #000;
	text-align: center;
}

footer .footnav li {
	display: inline-block;
}

footer .footnav li a {
	display: block;
	padding: 10px 10px 6px 15px;
	color: #fff;
}

footer .footnav li a:hover {
	color: #c00;
}

footer .footnav li a span {
	display: none;
}

footer #searchlist {
	padding: 12px 0;
	background: #ddd;
}

footer #searchlist ul {
	width: 90%;
	margin: 0 auto;
}

footer #searchlist ul li {
	overflow: hidden;
	float: left;
	width: 103px;
	height: 104px;
	margin-right: 8px;
	border-radius: 5px;
	border: solid 1px #ccc;
	background: #f7f7f7;
}

footer #searchlist ul li.shop {
	margin-right: 0;
}

footer #searchlist ul li.tel, 
footer #searchlist ul li.home, 
footer #searchlist ul li.property {
	display: none;
}

footer #searchlist ul li a {
	display: block;
	width: 103px;
	height: 104px;
	padding-top: 79px;
	background: center 5px no-repeat;
	text-align: center;
	font-size: 1.2rem;
	color: #777;
}

footer #searchlist ul li a:hover {
	background-color: #fff;
}

footer #searchlist ul li a:hover {
	color: #c00;
}

footer #searchlist ul li a span {
	display: none;
}

footer #searchlist ul li.search a {background-image: url(../image/common/search.png);}
footer #searchlist ul li.restaurant a {background-image: url(../image/common/restaurant.png);}
footer #searchlist ul li.cafe a {background-image: url(../image/common/cafe.png);}
footer #searchlist ul li.lounge a {background-image: url(../image/common/lounge.png);}
footer #searchlist ul li.office a {background-image: url(../image/common/office.png);}
footer #searchlist ul li.beauty a {background-image: url(../image/common/beauty.png);}
footer #searchlist ul li.medical a {background-image: url(../image/common/medical.png);}
footer #searchlist ul li.shop a {background-image: url(../image/common/shop.png);}

footer #contentslist {
	margin-top: 1px;
	border-bottom: dotted 1px #777;
	background: #000;
}

footer #contentslist ul {
	width: 1200px;
	margin: 0 auto;
	border-left: dotted 1px #777;
}

footer #contentslist ul li {
	float: left;
#	width: 14.28%;
width: 16.66%;
	height: 50px;
}

footer #contentslist ul li a {
	display: block;
	width: 100%;
	height: 50px;
	border-right: dotted 1px #777;
	text-align: center;
	line-height: 50px;
	font-size: 1.2rem;
	color: #fff;
}

footer  #contentslist ul li a:hover {
	background: #600;
}

footer .copy {
	display: block;
	padding: 20px 10px;
	background: #000;
	font-size: 13px;
	text-align: center;
	color: #fff;
}


/*----------------------------------------------------------------------
main
----------------------------------------------------------------------*/

main {
	min-width: 1200px;
	margin: 0 auto;
}



/*----------------------------------------------------------------------
bc
----------------------------------------------------------------------*/

#bc {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	height: 2.4rem;
	background: #aaa;
}

#bc ul {
	white-space: nowrap;
	letter-spacing: -.40em;
	height: 2.4rem;
	margin: 0;
}

#bc ul li {
	display: inline-block;
	padding-left: 0.5rem;
	letter-spacing: normal;
	font-size: 1.2rem;
}

#bc ul li a {
	color: #fff;
}

#bc ul li a:after {
	content: ">>";
	padding-left: 0.5rem;
	color: #ddd;
}

#bc ul li:last-child a {
	pointer-events: none;
	color: #000;
}

#bc ul li:last-child a:after {
	content: none;
	padding: 0;
}


/*----------------------------------------------------------------------
propertylist
----------------------------------------------------------------------*/

#propertylist {
	margin: 0;
	padding-bottom: 30px;
	background: #ad9b84;
}

#propertylist ul {
	width: 1160px;
	margin: 0 auto;
	padding-top: 14px;
}

#propertylist ul li {
	overflow: hidden;
	float: left;
	width: 377px;
	margin-top: 14px;
	margin-right: 14px;
	padding: 9px 7px;
	background: #f4eee7;
}

#propertylist ul li:nth-of-type(3n) {
	margin-right: 0;
}

#propertylist ul li .lo a {
	display: block;
}

#propertylist ul li .lo a:nth-of-type(n+2) {
	float: left;
	width: 49%;
	margin-top: 2%;
}

#propertylist ul li .lo a:nth-of-type(2) {
	margin-right: 2%;
}

#propertylist ul li .catchcopy {
	height: 70px;
	margin-top: 8px;
	padding: 10px;
	border-left: solid 3px #950000;
	font-weight: bold;
	font-size: 1.7rem;
	color: #000;
}

#propertylist ul li .text {
	padding: 6px 8px 6px 3px;
	line-height: 150%;
	font-size: 1.3rem;
	color: #000;
}

@media screen and (min-width:1400px){
	#propertylist ul {
		width: auto;
		margin: 0 3%;
	}

	#propertylist ul li {
		width: 24%;
		margin: 0.5%;
		padding-top: 0.5%;
	}

	#propertylist ul li:nth-of-type(3n) {
		margin: 0.5%;
	}

	#propertylist ul li .lo a:nth-of-type(n+2) {
		float: left;
		width: 49%;
		margin-top: 2%;
	}

	#propertylist ul li .lo a:nth-of-type(2) {
		margin-right: 2%;
	}
}

@media screen and (min-width:1900px){
	#propertylist ul {
		width: auto;
		margin: 0 3%;
		padding-top: 0.5%;
	}

	#propertylist ul li {
		width: 19%;
		margin: 0.5%;
	}
}


/*----------------------------------------------------------------------
toppage
----------------------------------------------------------------------*/

#toppage #designbox {
	background: #000;
}

#toppage #designbox .boxinner {
	margin: 0 auto;
	width: 1200px;
	height: 824px;
	position: relative;
	border-right: solid 50px #121212;
	border-left: solid 50px #121212;
	background: url(../image/top/design_bg.jpg) center 0 no-repeat #000;
}

#toppage #designbox .boxinner h1 {
	width: 362px;
	height: 166px;
	position: absolute;
	top: 175px;
	left: 369px;
	background: url(../image/top/design_text1.png) center center no-repeat;
	text-indent: -9999px;
}

#toppage #designbox .boxinner p {
	width: 369px;
width: 304px;
	height: 91px;
height: 130px;
	position: absolute;
	top: 670px;
top: 665px;
	left: 355px;
left: 390px;
	background: url(../image/top/design_text2.png) center center no-repeat;
	text-indent: -9999px;
}

#toppage #designbox .boxinner a {
	display: block;
	width: 297px;
	height: 62px;
	position: absolute;
	top: 455px;
	left: 780px;
	background-position: center center;
	background-repeat:  no-repeat;
	text-indent: -9999px;
}

#toppage #designbox .boxinner #fisbtn {
	background-image: url(../image/top/fisbtn.png);
	background-size: 292px 266px;
	width: 292px;
	height: 266px;
	top: 386px;
	left: 376px;
}

#toppage #designbox .boxinner #fisbtn:hover {
	background-image: url(../image/top/fisbtn2.png);
}

#toppage #designbox .boxinner #webbtn {
	background-image: url(../image/top/webdesign_btn.png);
	top: 400px;
	left: 790px;
}

#toppage #designbox .boxinner #dtpbtn {
	background-image: url(../image/top/dtpdesign_btn.png);
	top: 425px;
	left: 50px;
}

#toppage #designbox .boxinner #movbtn {
	background-image: url(../image/top/movie_btn.png);
	top: 545px;
	left: 560px;
}

#toppage #subsidybox {
	background: #483c30;
}

#toppage #subsidybox .boxinner {
	margin: 0 auto;
	width: 1200px;
	height: 734px;
	position: relative;
	border-right: solid 50px #554a3f;
	border-left: solid 50px #554a3f;
	background: url(../image/top/subsidy_bg.jpg) center 0 no-repeat #000;
}

#toppage #subsidybox .boxinner h1 {
	width: 396px;
	height: 43px;
	position: absolute;
	top: 500px;
	left: 40px;
	background: url(../image/top/subsidy_text1.png) center center no-repeat;
	text-indent: -9999px;
}

#toppage #subsidybox .boxinner p {
	width: 324px;
	height: 51px;
	position: absolute;
	top: 560px;
	left: 65px;
	background: url(../image/top/subsidy_text2.png) center center no-repeat;
	text-indent: -9999px;
}

#toppage #subsidybox .boxinner a {
	display: block;
	width: 297px;
	height: 62px;
	position: absolute;
	top: 370px;
	left: 780px;
	background: url(../image/top/subsidy_btn.png) center center no-repeat;
	text-indent: -9999px;
}

/*更新情報*/
#toppage #subsidybox .boxinner dl {
	min-width: 355px;
	position: absolute;
	top: 30px;
	left: 40px;
	padding: 20px;
	border-radius: 5px;
	background-color: rgba(0,0,0,0.65);
}

#toppage #subsidybox .boxinner dl dt {
	height: 30px;
	padding: 10px 0 37px 0;
	letter-spacing: 0.2em;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
}

#toppage #subsidybox .boxinner dl dt span {
	display: inline-block;
	margin-right: 10px;
	letter-spacing: 0;
	font-family: 'Anton';
	font-size: 2.5rem;
}

#toppage #subsidybox .boxinner dl dt span:first-letter {
	letter-spacing: 0.05em;
	font-size: 2.8rem;
	color: #c00;
}

#toppage #subsidybox .boxinner dl dd {
	margin-top: 12px;
}

#toppage #subsidybox .boxinner dl dd ul li {
	padding: 2px 0;
}

#toppage #subsidybox .boxinner dl dd ul li:nth-of-type(n+14) {
	display: none;
}
#toppage #subsidybox .boxinner dl dd ul li::before {
	content: "●";
	margin-right: 5px;
}

#toppage #subsidybox .boxinner dl dd ul li a {
	display: inline;
	position: static;
	background: none;
	text-indent: 0;
	color: #fff;
}

#toppage #subsidybox .boxinner dl dd ul li a::after {
	content: "＞＞＞";
	letter-spacing: -0.2em;
}

#toppage #subsidybox .boxinner dl dd ul li a:hover {
	color: #c00;
}

#toppage #subsidybox .boxinner dl dd ul li a span {
	margin-right: 5px;
}

#toppage #otherbox {
	background: #5e5348;
background: #483c30;
}

#toppage #otherbox .boxinner {
	margin: 0 auto;
	width: 1200px;
	height: 734px;
	position: relative;
	border-right: solid 50px #695f55;
	border-left: solid 50px #695f55;
border-right: solid 50px #554a3f;
border-left: solid 50px #554a3f;
	background: url(../image/top/other_bg.jpg) center 0 no-repeat #000;
}

#toppage #otherbox .boxinner h1 {
	width: 902px;
	height: 123px;
	position: absolute;
	top: 210px;
	left: 99px;
	background: url(../image/top/other_text.png) center center no-repeat;
	text-indent: -9999px;
}

#toppage #otherbox .boxinner a {
	display: block;
	width: 297px;
	height: 62px;
	position: absolute;
	text-indent: -9999px;
}

#toppage #otherbox .boxinner a:nth-of-type(1) {
	top: 415px;
	left: 60px;
	background: url(../image/top/other_btn1.png) center center no-repeat;
}

#toppage #otherbox .boxinner a:nth-of-type(2) {
	top: 415px;
	left: 780px;
	background: url(../image/top/other_btn2.png) center center no-repeat;
}

#toppage #otherbox .boxinner a:nth-of-type(3) {
	top: 487px;
	left: 740px;
	background: url(../image/top/other_btn3.png) center center no-repeat;
}

#toppage #otherbox .boxinner a:nth-of-type(4) {
	top: 559px;
	left: 705px;
	background: url(../image/top/other_btn4.png) center center no-repeat;
}

#toppage #otherbox .boxinner a:nth-of-type(5) {
	top: 487px;
	left: 20px;
	background: url(../image/top/other_btn5.png) center center no-repeat;
}



/*----------------------------------------------------------------------
profile
----------------------------------------------------------------------*/

#profile {

}

#profile #profilebox {
	background: url(../image/profile/profile_bg.jpg) center 0 no-repeat;
	padding: 60px 50px;
}

#profile #profilebox .boxinner {
	width: 1200px;
	margin: 0 auto;
}

#profile #profilebox .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0;
}

#profile #profilebox .boxinner .datatable {
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0,0,0,0.5);
}

#profile #profilebox .boxinner .datatable dt {
	background-color: rgba(0,0,0,0.4);
}

#profile #profilebox .boxinner .datatable dd {
	background-color: rgba(255,255,255,0.3);
}


/*----------------------------------------------------------------------
property
----------------------------------------------------------------------*/

#property #propertyhead h1 {
	margin-top: 30px;
}

#property #propertyhead h1 {
	width: 100%;
	height: 45px;
	background: #950000;
	text-indent: 0;
	line-height: 45px;
	text-align: center;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
}

#property #propertyhead .prp {
	width: 1160px;
	margin: 15px auto 0;
}

#property #propertyhead .prp li {
	float: left;
	min-width: 7.93%;
	margin: 0 0.2%;
}

#property #propertyhead .prp li a {
	display: block;
	height: 30px;
	border-a: 3px;
	background: #000;
	text-align: center;
	line-height: 30px;
	color: #fff;
}

#property #propertyhead .prp li.off a {
	background: #ddd;
}

#property #propertyhead .prp li a:hover {
	background: #950000;
}

#property #propertyhead .image {
	width: 1160px;
	margin: 15px auto 0;
}

#property #propertyhead .image img:nth-of-type(1) {
	float: left;
	width: 66.7%;
	margin-right: 0.5%;
}

#property #propertyhead .image img:nth-of-type(n+2) {
	width: 32.8%;
	margin-bottom: 0.5%;
}

#property #propertyhead .image img:nth-of-type(3) {
	margin-bottom: 0;
}

#property #propertyhead .text {
	width: 1160px;
	margin: 15px auto 0;
	padding: 20px;
	border-radius: 5px;
	background: #f4eee7;
	line-height: 200%;
	font-size: 1.7rem;
	color: #000;
}

#property #propertyhead .text .notice {
	margin-top: 20px;
	padding-top: 15px;
	border-top: dotted 1px #aaa;
	font-size: 1.3rem;
}

#property #propertydata {
	margin-top: 30px;
}

#property #propertydata h2 {
	width: 181px;
	height: 28px;
	background: url(../image/common/title_propertydata.png) 0 center no-repeat #950000;
	text-indent: -9999px;
}

#property #propertydata .lo {
	padding: 15px;
	background: #f8f0e6;
	text-align: center;
}

#property #propertydata .lo .datatable {
	margin-top: 3px;
	font-size: 1.5rem;
}

#property #propertydata .lo .datatable dt {
	width: 20%;
	background: #ebdcc8;
	padding: 15px 10px;
}

#property #propertydata .lo .datatable dd {
	width: 80%;
	background: #fff;
	padding: 15px 10px;
}

#property #propertydata .lo .left, 
#property #propertydata .lo .right {
	display: inline-block;
	width: 580px;
}

#property #propertydata iframe {
	margin-top: 15px;
}

#property .btnbox {
	margin-top: 30px;
}


/*----------------------------------------------------------------------
design
----------------------------------------------------------------------*/

#design {
	background: url(../image/common/suport_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#design .cbox {
	padding: 80px 50px;
	background: rgba(0,0,0,0.5);
}

#design .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#design .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(0,0,0,0.75);
}

#design .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	font-size: 3.0rem;
}

#design .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#design .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.15);
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#design .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #fd0;
}

#design .cbox .boxinner section dl {
	width: 94%;
}

#design .cbox .boxinner section dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#design .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#design .cbox .boxinner section .flow dl {
	margin: 0 auto;
	padding: 0 15px 10px;
	border-bottom: dotted 1px #aaa;
}

#design .cbox .boxinner section .flow dl:first-child {
	border-top: dotted 1px #aaa;
}

#design .cbox .boxinner section .flow dl dt:first-letter {
	letter-spacing: 0.3em;
	color: #fd0;
}

#design .cbox .boxinner section .flow dl dd {
	margin: 7px 0 0 27px;
}

#design .cbox .boxinner section .flow p {
	width: auto;
}

#design .cbox .boxinner section p {
	width: 94%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}


#design .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}

/*--webdesign--*/

#design #webdesign .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#design #webdesign .boxinner .mainimage {
	overflow: hidden;
	height: 400px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#design #webdesign .boxinner .mainimage img {
	margin-top: -120px;
}

/*--dtpdesign--*/

#design #dtpdesign .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

/*--movie--*/

#design #movie .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#design #movie .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#design #movie .boxinner .mainimage img {
	margin-top: -290px;
}


/*----------------------------------------------------------------------
fis
----------------------------------------------------------------------*/

#fis {
	background: url(../image/common/suport_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#fis .cbox {
	padding: 80px 50px;
	background: rgba(0,0,0,0.5);
}

#fis .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#fis .boxinner h1 {
	overflow: hidden;
	width: 650px;
	height: 85px;
	margin: 0 0 0 auto;
}

#fis .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#fis .boxinner .mainimage img {
	margin-top: -50px;
}

#fis .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(0,0,0,0.75);
}

#fis .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	font-size: 3.0rem;
}

#fis .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#fis .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.15);
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#fis .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #fd0;
}

#fis .cbox .boxinner section dl {
	width: 94%;
}

#fis .cbox .boxinner section dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#fis .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#fis .cbox .boxinner section p {
	width: 94%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}

#fis .cbox .boxinner .flow dt:first-letter {
	color: #fd0;
}

#fis .cbox .boxinner .flow .arrow {
	display: block;
	margin-left: 3em;
}

#fis .cbox .boxinner .flow .imagebox {
	overflow: hidden;
	float: right;
	width: 47%;
	border-radius: 3px;
}

#fis .cbox .boxinner .flow .imagebox img {
	display: block;
	width: 750px;
}

#fis .cbox .boxinner #formbox {
	background: rgba(0,0,0,0.45);
}


/*----------------------------------------------------------------------
subsidy
----------------------------------------------------------------------*/

#subsidy {
	background: url(../image/common/suport_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#subsidy .cbox {
	padding: 80px 50px;
	background: rgba(0,0,0,0.5);
}

#subsidy .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#subsidy .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#subsidy .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#subsidy .boxinner .mainimage img {
	margin-top: -50px;
}


#subsidy .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(0,0,0,0.75);
}

#subsidy .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	font-size: 3.0rem;
}

#subsidy .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#subsidy .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.15);
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#subsidy .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #fd0;
}

#subsidy .cbox .boxinner section dl {
	width: 94%;
}

#subsidy .cbox .boxinner section dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#subsidy .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#subsidy .cbox .boxinner section .flow dl {
	margin: 0 auto;
	padding: 0 15px 10px;
	border-bottom: dotted 1px #aaa;
}

#subsidy .cbox .boxinner section .flow dl:first-child {
	border-top: dotted 1px #aaa;
}

#subsidy .cbox .boxinner section .flow dl dt:first-letter {
	letter-spacing: 0.3em;
	color: #fd0;
}

#subsidy .cbox .boxinner section .flow dl dd {
	margin: 7px 0 0 27px;
}

#subsidy .cbox .boxinner section .flow p {
	width: auto;
}

#subsidy .cbox .boxinner section p {
	width: 94%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}

#subsidy .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}


#subsidy .boxinner .tableimage {
	margin: 25px 0 0;
	padding: 0;
	border: 0;
}

#subsidy .boxinner .tableimage img {
	width: auto;
}

#subsidy .boxinner .tablenotice {
	display: none;
}



/*----------------------------------------------------------------------
costomers
----------------------------------------------------------------------*/

#costomers {
	background: url(../image/common/costomers_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#costomers .cbox {
	padding: 80px 50px;
	background: rgba(0,0,0,0.5);
}

#costomers .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#costomers .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#costomers .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#costomers .boxinner .mainimage img {
	margin-top: -100px;
}


#costomers .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(0,0,0,0.75);
}

#costomers .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #fff;
	border-bottom: solid 1px #fff;
	font-size: 3.0rem;
}

#costomers .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#costomers .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.15);
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#costomers .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #fd0;
}

#costomers .cbox .boxinner section dl {
	width: 94%;
}

#costomers .cbox .boxinner section dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#costomers .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#costomers .cbox .boxinner section .flow dl {
	margin: 0 auto;
	padding: 0 15px 10px;
	border-bottom: dotted 1px #aaa;
}

#costomers .cbox .boxinner section .flow dl:first-child {
	border-top: dotted 1px #aaa;
}

#costomers .cbox .boxinner section .flow dl dt:first-letter {
	letter-spacing: 0.3em;
	color: #fd0;
}

#costomers .cbox .boxinner section .flow dl dd {
	margin: 7px 0 0 27px;
}

#costomers .cbox .boxinner section .flow p {
	width: auto;
}

#costomers .cbox .boxinner section p {
	width: 94%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}

#costomers .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}

#costomers .boxinner a {
	display: block;
	width: 350px;
	margin: 20px auto 0;
	padding: 20px 10px;
	border-radius: 5px;
	background: #a00;
	text-align: center;
	font-size: 2.0rem;
	color: #fff;
}

#costomers .boxinner a:hover {
	background: #fff;
	color: #a00;
}

/* rest */
#costomers.rest .cbox {
	background: rgba(45,20,0,0.65);
}

#costomers.rest .cbox .boxinner section {
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}

#costomers.rest .cbox .boxinner section h2 {
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
}

#costomers.rest .cbox .boxinner section .catch {
	background-color: #7c6745;
	color: #fff;
}

#costomers.rest .cbox .boxinner section .strong {
	color: #c00;
}


/* mass */
#costomers.mass .cbox {
	background: rgba(15,25,20,0.55);
}

#costomers.mass .cbox .boxinner section {
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}

#costomers.mass .cbox .boxinner section h2 {
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
}

#costomers.mass .cbox .boxinner section h2:first-letter {
	color: #1e6742;
}

#costomers.mass .cbox .boxinner section .catch {
	background-color: #3f5a2f;
	color: #fff;
}

#costomers.mass .cbox .boxinner section .strong {
	color: #c00;
}




/*----------------------------------------------------------------------
opening
----------------------------------------------------------------------*/

#opening {
	background: url(../image/common/costomers_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#opening .cbox {
	padding: 80px 50px;
	background: rgba(45,20,0,0.65);
}

#opening .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#opening .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#opening .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#opening .boxinner .mainimage img {
	margin-top: -100px;
}


#opening .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}

#opening .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 3.0rem;
}

#opening .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#opening .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #7c6745;
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#opening .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #c00;
}

#opening .cbox .boxinner section dl {
	width: 94%;
}

#opening .cbox .boxinner section dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#opening .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#opening .cbox .boxinner section dl dd p .img_left {
	max-width: 40%;
	margin-top: 5px;
}

#opening .cbox .boxinner section .flow dl {
	margin: 0 auto;
	padding: 0 15px 10px;
#	border-bottom: dotted 1px #aaa;
}

#opening .cbox .boxinner section .flow dl:first-child {
#	border-top: dotted 1px #aaa;
}

#opening .cbox .boxinner section .flow dl dt {
	margin-top: 20px;
	padding: 15px 10px;
	border-radius: 3px;
	background-color: #7c6745;
	font-size: 2.2rem;
	color: #fff;
}

#opening .cbox .boxinner section .flow dl dt:first-letter {
	letter-spacing: 0.3em;
	font-weight: bold;
}

#opening .cbox .boxinner section .flow dl dd {
	margin: 15px 0 0 20px;
	font-size: 1.8rem;
}

#opening .cbox .boxinner section .flow p {
	width: auto;
}

#opening .cbox .boxinner section p {
	width: 98%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}

#opening .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}




/*----------------------------------------------------------------------
overseas
----------------------------------------------------------------------*/

#overseas {
	background: url(../image/common/costomers_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#overseas .cbox {
	padding: 80px 50px;
	background: rgba(45,20,0,0.65);
}

#overseas .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#overseas .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#overseas .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 20px 0 0;
	border-radius: 3px;
}

#overseas .boxinner .mainimage img {
	margin-top: -100px;
}


#overseas .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}

#overseas .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 3.0rem;
}

#overseas .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#overseas .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #7c6745;
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#overseas .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #c00;
}

#overseas .cbox .boxinner section .strong.blue {
	color: #3dadab;
}

#overseas .cbox .boxinner section p {
	width: 98%;
	margin: 1em auto 0;
	line-height: 200%;
	font-size: 1.5rem;
}

#overseas .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}

#overseas .cbox .boxinner section dl {
	width: 100%;
}

#overseas .cbox .boxinner section dl dt {
	margin-top: 50px;
	padding: 10px;
	border-radius: 3px;
	background: #e0e0e0;
	font-size: 2.0rem;
}

#overseas .cbox .boxinner section dl:nth-of-type(1) dt {
	margin-top: 25px;
}

#overseas .cbox .boxinner section dl dd {
	margin: 7px 0 0 0.5em;
}

#overseas .cbox .boxinner section dl dd p .img_left {
	width: 30%;
	margin-top: 5px;
	margin-left: 3%;
}

#overseas .cbox .boxinner section dl dd table {
	width: 100%;
	border-collapse: collapse;
}

#overseas .cbox .boxinner section dl:nth-of-type(1) dd table {
	float: right;
	width: 55%;
	margin-right: 5%;
}

#overseas .cbox .boxinner section dl dd table tr {
	border-collapse: collapse;
	border-bottom: dotted 1px #aaa;
}

#overseas .cbox .boxinner section dl dd table tr td {
	padding: 20px 20px;
	vertical-align: top;
	color: #000;
}

#overseas .cbox .boxinner section dl:nth-of-type(1) dd table tr td {
	padding: 10px 20px;
}

#overseas .cbox .boxinner section dl dd ul {
	margin-top: 20px;
}

#overseas .cbox .boxinner section dl dd ul li {
	float: left;
	width: 33.33%;
	padding: 5px;
	text-align: center;
}

#overseas .cbox .boxinner section dl dd ul li img {
	margin-bottom: 5px;
}

#overseas .cbox .boxinner #formbox dl dt {
	border-radius: 0;
	background: rgba(0,0,0,0.25);
}


/*----------------------------------------------------------------------
formbox
----------------------------------------------------------------------*/

#formbox {
	padding: 80px 50px;
}

#formbox .datatable {
	width: 100%;
	margin: 30px auto 0;
	background-color: rgba(0,0,0,0.4);
}

#formbox .datatable dl dt {
	font-size: 16px !important;
	color: #fff;
}

#formbox .datatable dl dt .need {
	margin-left: 3px;
	background-color: none;
	letter-spacing: 0;
	font-weight: normal;
	font-size: 1.1rem;
	color: #f00;
}

#formbox .datatable dl dt .need:before {
	content: "※";
}

#formbox .datatable dl {
	width: 100% !important;
}

#formbox .datatable dd {
	background-color: rgba(255,255,255,0.3);
}

#formbox .datatable dl dd input, 
#formbox .datatable dl dd textarea {
	width: 100%;
	padding: 30px 15px;
	border-radius: 3px;
	border: solid 1px #ddd;
	font-size: 1.5rem;
	color: #333;
}

#formbox .btnbox {
	margin-top: 30px;
}

#formbox .btnbox input {
	border : solid 1px rgba(255,255,255,0.4);
}



/*----------------------------------------------------------------------
inquiry
----------------------------------------------------------------------*/

#inquiry {
	background: url(../image/inquiry/inquiry_bg.jpg) center 0 no-repeat;
	background-size: cover;
}

#inquiry #formbox .boxinner {
	width: 1200px;
	margin: 0 auto;
}

#inquiry #formbox .boxinner h1 {
	width: 180px;
}

#inquiry #formbox .datatable {
	width: 80%;
}


/*---------完了画面----------*/

#inquiry #formbox .formarea .done {
	width: 80%;
	margin: 30px auto 0;
}

#inquiry #formbox .formarea .done dt {
	padding: 15px;
	border-radius: 3px;
	background: #777;
	font-size: 2rem;
}

#inquiry #formbox .formarea .done dd {
	margin: 0 auto;
	padding: 15px;
}

#inquiry #formbox .formarea .done dd p {
	padding: 15px;
	text-align: center;
	font-size: 2.0rem;
}

#inquiry #formbox .formarea .done dd span {
	display: block;
	width: 96%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border : solid 1px rgba(255,255,255,0.3);
	background: rgba(0,0,0,0.5);
	line-height: 300%;
	font-size: 1.7rem;
}


/*----------------------------------------------------------------------
company
----------------------------------------------------------------------*/

#company #subsidybox {
	background: #483c30;
}

#company #subsidybox .boxinner {
	margin: 0 auto;
	width: 1200px;
	height: 734px;
	position: relative;
	border-right: solid 50px #554a3f;
	border-left: solid 50px #554a3f;
	background: url(../image/top/subsidy_bg.jpg) center 0 no-repeat #000;
}

#company main h1 {
	width: 181px;
	height: 28px;
	margin-top: 30px;
	background: url(../image/company/title_company.png) 0 0 no-repeat #950000;
	text-indent: -9999px;
}

#company .datatable {
	width: 80%;
	margin: 15px auto 0;
	border-top: solid 1px #ccc;
}

#company .datatable dl {
	display: table;
	width: 100%;
	border-collapse: collapse;
	border-bottom: solid 1px #ddd;
}

#company .datatable dl dt {
	display: table-cell;
	width: 25%;
	padding: 30px;
	background: #f0f0f0;
	vertical-align: middle;
	text-align: center;
	font-weight: bold;
}

#company .datatable dl dd {
	display: table-cell;
	width: 65%;
	padding: 15px;
	vertical-align: middle;
}







/*----------------------------------------------------------------------
modeling
----------------------------------------------------------------------*/

#modeling {
	background: url(../image/common/costomers_bg.jpg) center 0 no-repeat #000;
	background-attachment: fixed;
	background-size: cover;
}

#modeling .cbox {
	padding: 80px 50px;
	background: rgba(0,0,0,0.5);
}

#modeling .cbox .boxinner {
	max-width: 1200px;
	margin: 0 auto;
}

#modeling .boxinner h1 {
	overflow: hidden;
	width: 410px;
	height: 85px;
	margin: 0 0 0 auto;
}

#modeling .boxinner .mainimage {
	overflow: hidden;
	height: 350px;
	margin: 0;
	border-radius: 3px;
	background: url(../image/modeling/modeling_image.jpg) center center no-repeat;
	background-size: cover;
}

#modeling .boxinner .toformbtn{
	display: block;
	width: 350px;
	height: 100px;
	margin: 20px auto 0;
	border-radius: 5px;
	border: solid 2px #fff;
}

#modeling .boxinner .mainimage .toformbtn{
	margin-top: 220px;
}

#modeling .cbox .boxinner section {
	width: 90%;
	margin: 15px auto 0;
	padding: 30px;
	border-radius: 5px;
	border: 1px solid rgba(255,255,255,0.3);
	background-color: rgba(255,255,255,0.95);
	color: #000;
}

#modeling .cbox .boxinner section h2 {
	margin-bottom: 20px;
	padding: 30px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 3.0rem;
}

#modeling .cbox .boxinner section h2:first-letter {
	color: #c00;
}

#modeling .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 20px;
	border-radius: 3px;
	background-color: #29a7ba;
	line-height: 200%;
	font-size: 1.7rem;
	color: #fff;
}

#modeling .cbox .boxinner section .strong {
	font-size: 2.0rem;
	color: #c00;
}

#modeling .cbox .boxinner section .textbox {
	float: right;
	width: 45%;
}

#modeling .cbox .boxinner section .imagebox {
	float: left;
	width: 54%;
	margin-right: 1%;
}

#modeling .cbox .boxinner #works .imagebox img, 
#modeling .cbox .boxinner #process .imagebox img {
	float: left;
	width: 49%;
	margin-right: 1%;
}

#modeling .cbox .boxinner #works .imagebox.item3 img {
	width: 32%;
	margin-right: 1%;
}

#modeling .cbox .boxinner section dl {
	width: 94%;
}

#modeling .cbox .boxinner section dl dd {
	margin: 15px 0 0 0.5em;
}

#modeling .cbox .boxinner section .flow dl {
	margin: 0 auto;
	padding: 0 15px 10px;
}

#modeling .cbox .boxinner section .flow dl dt {
	margin-top: 20px;
	padding: 15px 10px;
	border-radius: 3px;
	background-color: #7c6745;
	font-size: 2.2rem;
	color: #fff;
}

#modeling .cbox .boxinner section .flow dl dt:first-letter {
	letter-spacing: 0.3em;
	font-weight: bold;
}

#modeling .cbox .boxinner section .flow dl dd {
	margin: 15px 0 0 20px;
	font-size: 1.8rem;
}




#modeling .cbox .boxinner #works dt {
	margin-top: 25px;
	font-size: 2.5rem;
}

#modeling .cbox .boxinner #works dt {
	margin-top: 25px;
	padding: 10px;
	background: #0065ad;
	font-size: 2.2rem;
	color: #fff;
}

#modeling .cbox .boxinner #process ul {
	width: 94%;
	margin: 0 auto;
}

#modeling .cbox .boxinner #process ul li {
	margin-top: 25px;
	padding: 0 0 25px;
	border-bottom: solid 1px #ddd;
}

#modeling .cbox .boxinner #factory .factoryhead img {
	float: left;
	width: 40%;
	margin-right: 2%;
	border-radius: 3px;
}

#modeling .cbox .boxinner #factory ul {
	margin-top: 25px;
}

#modeling .cbox .boxinner #factory ul li {
	float: left;
	width: 31.3%;
	margin: 1%;
	text-align: center;
}

#modeling .cbox .boxinner #factory ul li img {
	diplay: block;
	margin-bottom: 10px;
}


#modeling .cbox .boxinner #sozai dl {
	width: 96%;
	margin: 0 auto;
}

#modeling .cbox .boxinner #sozai dt {
	margin-top: 25px;
	padding: 10px;
	background: #0065ad;
	font-size: 2.2rem;
	color: #fff;
}

#modeling .cbox .boxinner #sozai .imagebox {
	float: left;
	width: 45%;
	margin-right: 2%;
}

#modeling .cbox .boxinner #sozai .imagebox img {
	margin-bottom: 10px;
}


#modeling .cbox .boxinner section .flow p {
	width: auto;
}

#modeling .boxinner .image {
	overflow: hidden;
	margin: 30px 3%;
	border-radius: 3px;
}

#modeling .boxinner .flow img {
	width: auto;
	max-width: 100%;
	margin: 0 auto;
}




