@charset "UTF-8";

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

html {
	font-size: 62.5%;
}

body{
	margin: 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,hgroup,menu,nav,section,dl,dt,dd,ul{
	display: block;
	margin: 0;
	padding: 0;
}

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;
	margin-top: 1rem;
}

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:1em;
	text-indent:-1em;
}

/*linkname*/
.linkname {
	display: block;
	margin: -55px 0 70px !important;
}

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

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

.btnbox input[type="button"]:nth-of-type(2) {
	margin-left: 0.5rem;
	background-color: #aaa;
}

.btnbox input[type="button"]:hover, 
.btnbox input[type="submit"]:hover, 
.btnbox input[type="reset"]:hover {
	background: #385bab;
}


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

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

html,body { height:100%; }

body {
	position: relative;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	background: #000;
	text-align: justify;
	text-justify: inter-ideograph;
	line-break: strict;
	word-break: break-all;
}

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

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

a:hover {
	color: #c00;
}

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="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;
	width: 96%;
	margin: 10px auto 0;
}


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


/* --------------------------------------------------
coder
-------------------------------------------------- */
.coder {
	width: 100%;
	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 5px;
	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;
}


/*----------------------------------------------------------------------
head
----------------------------------------------------------------------*/

header {
	position: fixed;
	top: 0;
	width: 100%;
	height: 5.5rem;
	padding: 0.5rem 0;
	background-color: rgba(0,0,0,0.65);
	border-bottom: solid 1px rgba(255,255,255,0.3);
	z-index: 100;
}

header #sitelogo {
	width: 25rem;
	height: 4.5rem;
	margin-left: 5px;
	background: url(../image/common/logo.png?date=190724)0 0 no-repeat;
	background-size: auto 4.5rem;
}

header #sitelogo a {
	display: block;
	height: 5rem;
	text-indent: -999rem;
}

header #menubtn {
	display: block;
	position: absolute;
	right: 0;
	top: 0.6rem;
	width: 5rem;
	height: 5rem;
	text-indent: -999rem;
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: 4.5rem 4.5rem;
	background-image: url(../image/common/menubtn.png);
}

/* headpanel */
.headpanel {
	display: none;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 50;
}

.headpanel .headpanelinner {
	overflow-y: auto;
	width: 100%;
	height: 100%;
}

.headpanel .headpanelinner .panelheader {
min-width: 310px;
	height: 4.5rem;
	margin: 7rem 2rem 0;
	border-radius: 0.3rem 0.3rem 0 0;
	background-color: #000;
	color: #fff;
}

.headpanel .headpanelinner h2 {
	float: left;
	height: 4.5rem;
	padding: 0 1rem;
	line-height: 4.5rem;
	font-weight: bold;
	font-size: 1.7rem;
}

.headpanel .headpanelinner .panelclosebtn {
	float: right;
	width: 4.4rem;
	height: 4.4rem;
	background: url(../image/common/panelclose.png) 1.3rem 1.3rem no-repeat;
	background-size: 2.2rem 2.2rem;
	text-indent: -999rem;
}

/* menupanel */

#menupanel .headpanelinner ul {
	overflow: hidden;
	margin: 0 2rem;
	border-radius: 0 0 0.5rem 0.5rem;
	background: #fff;
}

#menupanel .headpanelinner ul li {
	border-bottom: solid 1px #ddd;
}

#menupanel .headpanelinner ul li:last-child {
	border-bottom: 0;
}

#menupanel .headpanelinner ul li a {
	display: block;
	padding: 2rem 1.5rem;
	font-weight: bold;
	font-size: 1.1rem;
	color: #333;
}

#menupanel .headpanelinner ul li a.disabled {
	pointer-events:none;
	color: #ddd;
}

#menupanel .headpanelinner ul li:last-child a {
	padding-bottom: 1.8rem;
}

#menupanel .headpanelinner ul li a:hover {
	background-color: #ddd;
	color: #fff;
}

#menupanel .headpanelinner ul li a span {
	display: inline-block;
	margin-right: 5px;
	font-size: 2.0rem;
}

#menupanel .headpanelinner #searchlist ul {
min-width: 310px;
	border-radius: 0;
	border-bottom: solid 1px #f0f0f0;
}

#menupanel .headpanelinner #searchlist ul li a {
	padding: 0.5rem 0 0.5rem 6.9rem;
	background-position: 0.7em center;
	background-repeat: no-repeat;
	background-size: 5.5rem auto;
}

#menupanel .headpanelinner #searchlist ul li a {
	padding: 0.5rem 0 0.5rem 6.9rem;
	background-position: 0.7em center;
	background-repeat: no-repeat;
	background-size: 5.5rem auto;
}

#menupanel .headpanelinner #searchlist ul .property {
	display: none;
}

#menupanel .headpanelinner #searchlist ul li a span {
	display: inline-block;
	padding: 1.0rem 0 1.0rem 0.6rem;
	border-left: dotted 1px #aaa;
}

#menupanel .headpanelinner ul .tel a,
#menupanel .headpanelinner ul .mail a {
	padding: 1.5rem 1.8rem 1.5rem 6.0rem !important;
	background-image: url(../image/common/telmark.png);
	background-position: 0.6rem center !important;
	background-repeat: no-repeat;
	background-size: 3.3rem 3.3rem;
	background-color: #950000;
	font-weight: bold;
	font-size: 1.8rem;
	color: #fff;
}

#menupanel .headpanelinner #bannerlist ul {
min-width: 310px;
	border-radius: 0;
	border-bottom: solid 1px #ddd;
}

#menupanel .headpanelinner #bannerlist ul li {
	padding: 5px 0;
}

#menupanel .headpanelinner #bannerlist ul li a {
	margin: 0;
	padding: 25.0% 0 0 0;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

#menupanel .headpanelinner #bannerlist ul li a span:first-child {
	display: none;
}

#menupanel .headpanelinner #bannerlist ul li a span:last-child {
	display: block;
	margin-top: -4.3%;
	padding-left: 31%;
	text-align: center;
	line-height: 130%;
	font-weight: normal;
	font-size: 1.0rem;
	color: #000;
}

#menupanel .headpanelinner .dropdown dt {
	display: none;
}

#menupanel .headpanelinner .dropdown dd ul {
	margin: 0;
}

.headpaneleffect {
	pointer-events: none;
}

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

#bc {
	overflow-x: auto;
	overflow-y: hidden;
	-webkit-overflow-scrolling: touch;
	height: 2.7rem;
	margin-top: 5.5rem;
	background: #000;
}

#bc ul {
	white-space: nowrap;
	height: 2.7rem;
	margin: 0;
	padding-left: 0.5rem;
}

#bc ul li {
	display: inline-block;
	padding-left: 0;
}

#bc ul li a {
	line-height: 2.7rem;
	font-size: 1.2rem;
	color: #fff;
}

#bc ul li a:after {
	content: ">>";
	padding: 0 0.5rem;
	color: #aaa;
}

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

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



/*----------------------------------------------------------------------
pagetitle
----------------------------------------------------------------------*/

#pagetitle h3 {
	margin-top: 6rem;
	height: 120px;
	background: #d8e9f1;
}

#pagetitle h3 span {
	display: block;
	height: 120px;
	background: 5px center no-repeat;
	background-size: 98% auto;
	text-indent: -9999px;
}


/*----------------------------------------------------------------------
datatable
----------------------------------------------------------------------*/
.datatable {
	overflow: hidden;
	margin: 10px 10px 0;
	padding: 5px;
	border-radius: 5px;
	background: rgba(0,0,0,0.5);
}

.datatable .title {
	margin-bottom: 1px;
	padding: 0.5rem 1.0rem;
	background: rgba(0,0,0,0.65);
	text-align: center;
	font-size: 16px;
	color: #fff;
}

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

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

.datatable dl dt {
	display: table-cell;
	width: 40%;
	padding: 0.7rem 0.5rem;
	background: rgba(0,0,0,0.5);
	line-height: 150%;
	vertical-align: middle;
	text-align: center;
	font-size: 13px;
	color: #fff;
}

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


/*----------------------------------------------------------------------
bar
----------------------------------------------------------------------*/

.bar {
	border-bottom: solid 10px #fff;
	background: #f0f0f0;
	text-align: center;
}

.bar span {
	display: inline-block;
	padding: 11px 10px 10px 45px;
	background: url(../image/common/titlemark.png) 0 center no-repeat;
	background-size: 40px 40px;
	font-size: 22px;
}



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

footer .accessbtn {
	display: none;
}

footer .accessbtn, footer #footnav {
	display: none;
}

footer .copy {
	display: block;
	padding: 0.8rem;
	background: #000;
	text-align: center;
	font-size: 1.3rem;
	color: #aaa;
}

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

main {

}

main .dbox {
	margin: 10px 10px 0;
}

main .ban {
	margin: 10px 0 0;
}

main .dbox:first-of-type {
	margin-top: 0;
}


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

#propertylist {
	margin: 0;
	background: #ad9b84;
	color: #000;
}

#propertylist h1 {
	width: 150px;
	height: 30px;
	background: url(../image/common/title_propertylist.png) 0 center no-repeat #950000;
	background-size: 150px auto;
	text-indent: -9999px;
}

#propertylist ul li {
	overflow: hidden;
	margin-top: 10px;
	padding: 5%;
	background: #ad9b84;
}

#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(n+2) {
	display: none;
}

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

#propertylist ul li .catchcopy {
	margin-top: 8px;
	padding: 10px;
	border-left: solid 5px #950000;
	font-weight: bold;
	font-size: 1.9rem;
}

#propertylist ul li .text {
	margin: 10px 0;
	padding: 10px;
	border-radius: 5px;
	background: #fff;
	background: rgba(255,255,255,0.6);
	line-height: 150%;
	font-size: 1.6rem;
}


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

#toppage #designbox {
	background: url(../image/top/design_bg.jpg) center 0 no-repeat #000;
	background-size: cover;
}

#toppage #designbox .boxinner {
	width: 100%;
	margin: 0 auto;
	padding: 73px 0 50px;
	background: rgba(0,0,0,0.5);
	overflow: hidden;
}

#toppage #designbox .boxinner h1 {
	overflow: hidden;
	width: 75%;
	height: 0;
	margin: 0 auto 0;
	padding-top: 34.38%;
	background: url(../image/top/design_text1.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#toppage #designbox .boxinner p {
	overflow: hidden;
	width: 70%;
	height: 0;
	margin: 25px auto 0;
	padding-top: 17.26%;
padding-top: 42.76%;
	background: url(../image/top/design_text2.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#toppage #designbox .boxinner a {
	overflow: hidden;
	display: block;
	width: 70%;
	height: 0;
	padding-top: 14.61%;
	background-position: center center;
	background-repeat:  no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
	transform: rotate(-10deg);
}

#toppage #designbox .boxinner #fisbtn {
	background-image: url(../image/top/fisbtn_sp.png);
	width: 95%;
	margin: 15px 0 0 8%;
}

#toppage #designbox .boxinner #webbtn {
	background-image: url(../image/top/webdesign_btn.png);
	margin: 15px 0 0 35%;
}

#toppage #designbox .boxinner #dtpbtn {
	background-image: url(../image/top/dtpdesign_btn.png);
	margin: 36px 30% 0 -2%;
}

#toppage #designbox .boxinner #movbtn {
	background-image: url(../image/top/movie_btn.png);
	margin: 3px 0 0 38%;
}

#toppage #subsidybox {
	border-top: solid 1px #555;
	background: url(../image/top/subsidy_bg.jpg) center 0 no-repeat #000;
	background-size: cover;
}

#toppage #subsidybox .boxinner {
	width: 100%;
	padding: 50px 0 40px;
	background: rgba(0,0,0,0.6);
}

#toppage #subsidybox .boxinner h1 {
	overflow: hidden;
	width: 75%;
	height: 0;
	margin: 0 auto;
	padding-top: 8.14%;
	background: url(../image/top/subsidy_text1.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#toppage #subsidybox .boxinner p {
	overflow: hidden;
	width: 75%;
	margin: 20px auto 0;
	height: 0;
	padding-top: 11.8%;
	background: url(../image/top/subsidy_text2.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#toppage #subsidybox .boxinner a {
	overflow: hidden;
	display: block;
	width: 70%;
	height: 0;
	margin: 60px 0 0 30%;
	padding-top: 14.61%;
	background: url(../image/top/subsidy_btn.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}




/*更新情報*/
#toppage #subsidybox .boxinner {
	padding-bottom: 10px;
}

#toppage #subsidybox .boxinner dl {
	width: 100%;
	margin-top: 20px;
	padding: 10px 0;
	background-color: rgba(0,0,0,0.3);
}

#toppage #subsidybox .boxinner dl dt {
	height: 30px;
	padding: 10px 10px 37px;
	border-top: solid 1px #555;
	border-bottom: solid 1px #555;
}

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

#toppage #subsidybox .boxinner dl dt span:first-letter {
	color: #c00;
}

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

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

#toppage #subsidybox .boxinner dl dd ul li:nth-of-type(n+5) {
	display: none;
}

#toppage #subsidybox .boxinner dl dd ul li::before {
	content: "●";
	margin-right: 5px;
}

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

#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 {
	border-top: solid 1px #555;
	background: url(../image/top/other_bg.jpg) center 0 no-repeat #000;
	background-size: cover;
}

#toppage #otherbox .boxinner {
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	padding: 50px 0 30px;
	background: rgba(0,0,0,0.2);
}

#toppage #otherbox .boxinner h1 {
	overflow: hidden;
	width: 150%;
	height: 0;
	margin-left: -25%;
	padding-top: 20.45%;
	background: url(../image/top/other_text.png) center center no-repeat;
	background-size: 100% auto;
	text-indent: -9999px;
}

#toppage #otherbox .boxinner a {
	display: block;
	overflow: hidden;
	width: 70%;
	height: 0;
	padding-top: 14.61%;
	text-indent: -9999px;
}

#toppage #otherbox .boxinner a:nth-of-type(1) {
	margin: 60px 25% 0 5%;
	background: url(../image/top/other_btn1.png) center center no-repeat;
	background-size: 100% auto;
}

#toppage #otherbox .boxinner a:nth-of-type(2) {
	margin: 10px 30% 0 0;
	background: url(../image/top/other_btn5.png) center center no-repeat;
	background-size: 100% auto;
}

#toppage #otherbox .boxinner a:nth-of-type(3) {
	margin: 30px 0 0 30%;
	background: url(../image/top/other_btn2.png) center center no-repeat;
	background-size: 100% auto;
}

#toppage #otherbox .boxinner a:nth-of-type(4) {
	margin: 10px 0 0 25%;
	background: url(../image/top/other_btn3.png) center center no-repeat;
	background-size: 100% auto;
}

#toppage #otherbox .boxinner a:nth-of-type(5) {
	margin: 10px 0 0 20%;
	background: url(../image/top/other_btn4.png) center center no-repeat;
	background-size: 100% auto;
}









#subsidy .boxinner .tableimage {
	overflow-x: scroll;
	margin: 25px 0 0;
	padding: 7px;
	border: solid 5px #fff;
}

#subsidy .boxinner .tableimage img {
	width: 900px;
}

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



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

#profile  {
	background: url(../image/profile/profile_bg.jpg) center 0 no-repeat #000;
}

#profile #profilebox {
	background-color: rgba(0,0,0,0.5);
	padding: 60px 2% 30px;
}

#profile #profilebox .boxinner {
	width: 100%;
	margin: 0 auto;
}

#profile #profilebox .boxinner h1 {
	overflow: hidden;
	width: 80%;
	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 {
	width: 30%;
	background-color: rgba(0,0,0,0.4);
}

#profile #profilebox .boxinner .datatable dd {
	width: 70%;
	background-color: rgba(255,255,255,0.1);
}


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

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


#property #propertyhead h1 {
	width: 100%;
	padding: 10px 15px;
	background: #950000;
	text-indent: 0;
	font-weight: bold;
	font-size: 1.7rem;
	color: #fff;
}

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

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

#property #propertyhead .prp li:nth-of-type(3n) {
	margin-right: 0;
}

#property #propertyhead .prp li:nth-of-type(n+3) {
	margin-top: 0.5%;
}

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

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

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

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

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

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

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

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

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

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

#property #propertydata .lo {
	padding: 10px;
	background: #f8f0e6;
}

#property #propertydata .lo .datatable {
	width: 100%;
	margin-top: 3px;
	font-size: 1.4rem;
}

#property #propertydata .lo .datatable dt {
	width: 24%;
	background: #ebdcc8;
	padding: 15px 10px;
	text-align: center;
}

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

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

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


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

#design:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/suport_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#design .cbox .boxinner {

}

#design .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.8);
}

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

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

#design .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 10px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.10);
	line-height: 180%;
	font-size: 1.6rem;
	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: 15px;
	line-height: 150%;
	font-size: 2.4rem;
}

#design .cbox .boxinner section dl dd {

}

#design .cbox .boxinner section .flow {
	width: 98%;
}

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

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

#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 5px 0;
}

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


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


/*--webdesign--*/

#design #webdesign .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

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

#design #webdesign .boxinner .mainimage img {
}


/*--dtpdesign--*/

#design #dtpdesign .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

/*--movie--*/

#design #movie .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

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

#design #movie .boxinner .mainimage img {

}





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

#subsidy:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/suport_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#subsidy .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

#subsidy .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.8);
}

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

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

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

#subsidy .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 10px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.10);
	line-height: 180%;
	font-size: 1.6rem;
	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: 15px;
	line-height: 150%;
	font-size: 2.4rem;
}

#subsidy .cbox .boxinner section dl dd {

}

#subsidy .cbox .boxinner section .flow {
	width: 98%;
}

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

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

#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 5px 0;
}

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

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





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

#fis:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/suport_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#fis .boxinner h1 {
	overflow: hidden;
	width: 100%;
	margin: 0 0 0 auto;
}

#fis .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.8);
}

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

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

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

#fis .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 10px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.10);
	line-height: 180%;
	font-size: 1.6rem;
	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: 15px;
	line-height: 150%;
	font-size: 2.4rem;
}

#fis .cbox .boxinner section dl dd {

}

#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 {
	display: none;
}

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


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

#costomers:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/costomers_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#costomers .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

#costomers .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	border-radius: 3px;
	background-color: rgba(0,0,0,0.8);
}

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

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

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

#costomers .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 10px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0.10);
	line-height: 180%;
	font-size: 1.6rem;
	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: 15px;
	line-height: 150%;
	font-size: 2.4rem;
}

#costomers .cbox .boxinner section dl dd {

}

#costomers .cbox .boxinner section .flow {
	width: 98%;
}

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

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

#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 5px 0;
}

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

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

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

#opening .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: #3f5a2f;
}

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

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




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

#opening:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/costomers_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#opening .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

#opening .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	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: 15px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 2.4rem;
}

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

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

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

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

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

#opening .cbox .boxinner section dt {
	margin-top: 15px;
	line-height: 150%;
	font-size: 2.4rem;
	border-top: solid 2px #000;
	padding-top: 10px;
}

#opening .cbox .boxinner section dl:nth-of-type(1) dt {
	border-top: 0;
	padding-top: 0;
}

#opening .cbox .boxinner section dl dd img {
	margin-bottom: 15px;
}

#opening .cbox .boxinner section .flow {
	width: 98%;
}

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

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

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

#opening .cbox .boxinner section .flow dl dt {
	border-top: 0;
	padding-top: 0;
}

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

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

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

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

#opening #formbox dt {
border-top: 0;
padding-top: 0.7rem;
}










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

#overseas:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/costomers_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#overseas .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

#overseas .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	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: 15px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 2.4rem;
}

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

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

#overseas .cbox .boxinner section .catch {
	margin: 15px auto 0;
	padding: 10px 10px;
	border-radius: 3px;
	background-color: #7c6745;
	line-height: 180%;
	font-size: 1.6rem;
	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 dl {
	width: 100%;
}

#overseas .cbox .boxinner section dt {
	margin-top: 15px;
	line-height: 150%;
	font-size: 2.4rem;
	border-top: solid 2px #000;
	padding-top: 10px;
}

#overseas .cbox .boxinner section dl:nth-of-type(1) dt {
	border-top: 0;
	padding-top: 0;
}

#overseas .cbox .boxinner section dl dd img {
	width: 80%;
	margin: 0 auto 15px;
	border-radius: 3px;
}

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

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

#overseas #formbox dt {
border-top: 0;
padding-top: 0.7rem;
}


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

#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 7px;
	vertical-align: top;
	color: #000;
}

#overseas .cbox .boxinner section dl dd table tr td:first-child {
	width: 35%;
	background: #ddd;
}

#overseas .cbox .boxinner section dl:nth-of-type(1) dd table tr td:first-child {
	width: 27%;
	text-align: center;
}

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

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

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

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















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

#modeling:before {
	content:"";
	display:block;
	position:fixed;
	top:0;
	left:0;
	z-index:-1;
	width:100%;
	height:100vh;
	background:url(../image/common/costomers_bg.jpg) center center no-repeat;
	background-size:cover;
}

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

#modeling .boxinner h1 {
	overflow: hidden;
	width: 80%;
	margin: 0 0 0 auto;
}

#modeling .cbox .boxinner section {
	width: 96%;
	margin: 10px auto 0;
	padding: 15px;
	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: 15px 5px;
	border-top: solid 1px #000;
	border-bottom: solid 1px #000;
	font-size: 2.4rem;
}

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

#modeling .boxinner section .mainimage {
	overflow: hidden;
	margin: 0;
#	border-radius: 3px;
border: solid 2px #fff;
}

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

#modeling .cbox .boxinner #modelignghead {
	padding: 0;
	padding-bottom: 15px;
	border: 0;
}

#modeling .cbox .boxinner #modelignghead .catch {
	width: 96%;
}

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

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

#modeling .cbox .boxinner section dt {
	margin-top: 15px;
	line-height: 150%;
	font-size: 2.4rem;
	border-top: solid 2px #000;
	padding-top: 10px;
}

#modeling .cbox .boxinner section dl:nth-of-type(1) dt {
	border-top: 0;
	padding-top: 0;
}

#modeling .cbox .boxinner section dl dd img {
	margin-bottom: 15px;
}

#modeling .cbox .boxinner section .flow {
	width: 98%;
}

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

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

#modeling .cbox .boxinner #works p {
	margin: 0 auto;
}

#modeling .cbox .boxinner section .textbox {
	margin-top: 5px !important;
}

#modeling .cbox .boxinner section .imagebox {
	margin-top: 15px;
}

#modeling .cbox .boxinner #process ul {
	margin-top: 15px;
}

#modeling .cbox .boxinner #process ul li img {
	margin-top: 15px;
}

#modeling .cbox .boxinner #process .textbox {
	width: 100%;
	padding: 10px 2%;
	border-top: solid 1px #000;
}

#modeling .cbox .boxinner #process .imagebox {
	margin-top: 0 !important;
}

#modeling .cbox .boxinner #process .imagebox img {
	margin-top: 0 !important;
	margin-bottom: 15px !important;
}


#modeling .boxinner .toformbtn {
	display: block;
	width: 96%;
	height: auto;
	margin: 15px auto 0;
	border-radius: 5px;
}


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

#modeling .cbox .boxinner section .flow dl dt {
	border-top: 0;
	padding-top: 0;
}

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

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

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

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

#modeling #formbox dt {
border-top: 0;
padding-top: 0.7rem;
}


#modeling .cbox .boxinner #factory ul li {
	margin-top: 15px;
	padding-top: 10px;
	border-top: solid 1px #000;
}

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













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

#formbox .datatable {
	margin: 10px 0 0;
}

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

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

#formbox .datatable dt {
	width: 30%;
	background-color: rgba(0,0,0,0.3);
}

#formbox .datatable dl dt .need {
	display: block;
	letter-spacing: 0;
	font-weight: normal;
	font-size: 1.1rem;
	color: #c00;
}

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

#inquiry .datatable dd {
	width: 70%;
	background-color: rgba(255,255,255,0.0);
}

#formbox .datatable dl dd input, 
#formbox .datatable dl dd textarea {
	width: 100%;
	padding: 20px 15px;
	border-radius: 3px;
	text-align: left;
	color: #000;
}

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

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

#inquiry {
	background: url(../image/inquiry/inquiry_bg.jpg) center 0;
}

#inquiry #formbox {
	background-color: rgba(0,0,0,0.5);
	padding: 70px 2% 30px;
}

#inquiry #formbox .boxinner {
	width: 100%;
	margin: 0 auto;
}

#inquiry #formbox .boxinner h1 {
	width: 150px;
	height: 30px;
}

#inquiry .datatable {
	margin-left: auto;
	margin-right: auto;
	background-color: rgba(0,0,0,0.3);
}


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

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

#inquiry #formbox .formarea .done dt {
	margin: 0 auto;
	padding: 7px 10px;
	border-radius: 3px;
	background: #555;
	text-align: center;
	font-size: 1.7rem;
	color: #fff;
}

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

#inquiry #formbox .formarea .done dd p {
	padding: 5px;
	font-size: 1.7rem;
}

#inquiry #formbox .formarea .done dd span {
	display: block;
	margin: 15px auto 0;
	padding: 15px;
	border-radius: 5px;
	border : solid 1px rgba(255,255,255,0.3);
	background: rgba(0,0,0,0.5);
}

#inquiry .btnbox a {
	margin-top: 30px;
	border : solid 1px rgba(255,255,255,0.4);
}


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

#company main {
	margin: 15px 0 0;
}

#company main h1 {
	width: 150px;
	height: 30px;
	background: url(../image/company/title_company.png) 0 center no-repeat #950000;
	background-size: 150px auto;
	text-indent: -9999px;
}

#company .datatable {
	border-top: solid 1px #ccc;
	border-bottom: solid 1px #ccc;
}

#company .datatable:first-child {
	margin-top: 0;
}

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

#company .datatable dl:last-of-type {
	border-bottom: 0;
}

#company .datatable dl dt {
	display: table-cell;
	width: 35%;
	padding: 15px;
	background: #f0f0f0;
	vertical-align: middle;
	text-align: center;
}

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

