@charset "UTF-8";
/* CSS Document */

html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	margin: 0;
}

a {
	text-decoration: none;
	color: #000;
}

h1,h2,ul,ol,li,dl,dt,dd,p {
	list-style: none;
	margin: 0;
	padding: 0;
}

input,textarea {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 25px 50px;
	box-sizing: border-box;
	z-index: 10;
	background: rgba(0,0,0,0.8);
}

@media screen and (max-width:950px) {
	header {
		padding: 0;
		background: none;
	}
}

@media screen and (max-width:540px) {
	header {
		padding: 0;
		background: none;
	}
}

header:after {
	display: block;
	content: "";
	clear: both;
}

header p {
	margin: 0;
	padding: 0;
	float: left;
	line-height: 0;
}

@media screen and (max-width:950px) {
	header p {
		margin-top: 0;
		background: rgba(0,0,0,0.8);
		z-index: 100;
		width: 100%;
		padding: 10px;
		position: relative;
	}
}

header img {
	width: 100%;
	margin-top: -5px;
}

header a img:hover {
	opacity: 0.7;
}

@media screen and (max-width:950px) {
	header img {
		width: 140px;
	}
}

nav {
	text-align: right;
}

#nav-toggle {
	display: none;
	position: absolute;
	right: 10px;
	top: 12px;
	width: 28px;
	height: 36px;
	cursor: pointer;
	z-index: 101;
	transition: .35s ease-in-out;
}

.open #nav-toggle {
	top: 10px;
	transition: .35s ease-in-out;
}

#nav-toggle div {
		position: relative;
}

#nav-toggle span {
	display: block;
	position: absolute;
	height: 2px;
	width: 100%;
	background: #fff;
	left: 0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
	border-radius: 10px;
}

#nav-toggle span:nth-child(1) {
		top: 0;
}

#nav-toggle span:nth-child(2) {
		top: 8px;
}

#nav-toggle span:nth-child(3) {
		top: 16px;
}

@media screen and (max-width: 950px) {
	nav > ul {
		position: absolute;
		top: -498px;
		left: 0;
		text-align: left;
		-webkit-transition: .5s ease-in-out;
		-moz-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		width:	100%;
		margin:	0;
		border-top: 1px solid #999;
		z-index:	1;
		background: #000;
	}
	
	nav li {
		display: block;
		width:	100%;
		border-bottom: 1px solid #444;
	}
	nav li a {
		display: block;
		padding: 11px 0;
	}
	#nav-toggle {
			display: block;
	}
	.open #nav-toggle span:nth-child(1) {
		top: 11px;
		-webkit-transform: rotate(315deg);
		-moz-transform: rotate(315deg);
		transform: rotate(315deg);
	}
	.open #nav-toggle span:nth-child(2) {
		width: 0;
		left: 50%;
	}
	.open #nav-toggle span:nth-child(3) {
		top: 11px;
		-webkit-transform: rotate(-315deg);
		-moz-transform: rotate(-315deg);
		transform: rotate(-315deg);
	}
	.open nav > ul {
		border-top: 1px solid #444;
		-moz-transform: translateY(542px);
		-webkit-transform: translateY(542px);
		transform: translateY(542px);
	}
}

header > ul {
	list-style: none;
	margin: 0;
	padding: 0;
	width: 780px;
	float: right;
	text-align: right;
}

@media screen and (max-width:1070px) {
	header > ul {
		width: 650px;
	}
}

@media screen and (max-width:950px) {
	header > ul {
		width: 100%;
	}
}

header ul > li {
	margin: 0;
	padding: 0;
	display: inline-block;
	line-height: 0;
}

@media screen and (max-width:950px) {
	header ul > li {
		width: 100%;
	}
}

header ul > li a {
	color: #fff;
	font-size: 14px;
	padding-left: 20px;
	position: relative;
	margin: 0 10px;
	line-height: 112%;
	display: block;
}

@media screen and (max-width:1100px) {
	header ul > li a {
		padding-left: 20px;
	}
}

@media screen and (max-width:950px) {
	header ul > li a {
		font-size: 12px;
		padding-left: 0;
		margin: 0 8px;
	}
}

@media screen and (max-width:640px) {
	header ul > li a {
		font-size: 11px;
	}
}


@media screen and (min-width:961px) {
	header nav > ul > li > a:after {
		content: "";
		display: inline-block;
		position: absolute;
		width: 18px;
		height: 18px;
		left: -1px;
		top: -2px;
		z-index: 1;
		transition: all .5s ease-out;
		border-radius: 10px;
	}
}

header > nav > ul > li > a:hover:after {
    background: #fff;
	animation: ssss 0.2s cubic-bezier(0, 0, 0.1, 1) 0s 1 alternate none running;
}

@keyframes ssss {
  0% {
	-webkit-transform: scale(0);
  }
  90% {
	-webkit-transform: scale(1.3);
  }
  97% {
	-webkit-transform: scale(1.1);
  }
  100% {
	-webkit-transform: scale(1);
  }
}
/*
header ul > li a:after {
	content: "";
	display: inline-block;
	height: 1px;
	position: absolute;
    top: 19px;
    right: 0%;
}

header ul > li a:hover:after {
    top: 19px;
    right: 0%;
    width: 66%;
    height: 3px;
    background: #fff;
    content: "";
	animation: bar 0.2s cubic-bezier(0, 0, 0.3, 0.8) 0s 1 alternate none running;
}

@keyframes bar {
  0% {
	-webkit-transform: rotateY(180deg);
	top: -15px;
  }
  100% {
	-webkit-transform: rotateY(180deg);
	top: 19px;
  }
}
*/
#main-visual-wrap {
	position: relative;
}

#main-visual {
	margin: 0;
	padding: 0;
	position: relative;
	perspective: 349px;
    perspective-origin: 15% 59%;
}

@media screen and (max-width:540px) {
	#main-visual {
		margin: 44px 0 20px 0;
		padding: 0;
	}
}

#main-visual #image {
	width: 100%;
	vertical-align: bottom;
}

#main-visual-wrap span {
	display: block;
	position: absolute;
    top: 41%;
    right: 12%;
    width: 32%;
}

video {
	transform: rotateX(5deg) rotateY(17deg) rotateZ(-9deg);
	padding: 0;
	margin: 0;
	line-height: 0;
	/* transform-style: preserve-3d; */
	position: absolute;
	width: 39%;
	top: 29%;
	left: 9.7%;
	opacity: 0.7;
}


#main-visual-wrap span .spin {
	animation: spin 1s cubic-bezier(0, 0.000, 0.070, 0.8) 0s 1 alternate none running;
}

@keyframes spin {
  0% {
	-webkit-transform: rotateY(0deg);
 	-ms-transform:rotateY(0deg);
    transform:rotateY(0deg);
  }
  100% {
	-webkit-transform: rotateY(360deg);
 	-ms-transform:rotateY(360deg);
    transform:rotateY(360deg);
  }
}

#main-visual-wrap span img:nth-child(2) {
	margin: 0 3.5%;
}

#main-visual-wrap img {
	width: 30.6%;
}

h2 {
	text-align: center;
	font-style: normal;
	font-weight: 400;
}

#service,
#company {
	position: relative;
}

#holiday {
	border: 2px solid #ccc;
	max-width: 700px;
	margin: 40px auto 0 auto;
	padding: 40px 40px 20px 40px;
	box-sizing: border-box;
}

@media screen and (max-width:950px) {
	#holiday {
		padding: 10px 10px 0px 10px;
		margin: 10px;
	}
}

#holiday .title {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}

#holiday p {
	margin-bottom: 20px;
}

#top-service {
	font-family: condor, sans-serif;
}

@media screen and (max-width:950px) {
	#top-service {
		margin-bottom: 15px;
	}
}

#top-service:before {
	content: "- ";
}

#top-service:after {
	content: " -";
}

#service ul {
	position: absolute;
	top: 49px;
	left: 10px;
	background: #000;
	padding: 28px 0;
	float: none;
	text-align: left;
	width: 468px;
	display: none;
	overflow: hidden;
}

#company ul {
	position: absolute;
	top: 49px;
	left: 10px;
	background: #000;
	padding: 28px 0;
	float: none;
	text-align: left;
	width: 250px;
	display: none;
	overflow: hidden;
}

@media screen and (max-width:950px) {
	#service ul,
	#company ul {
		position: static;
		top: auto;
		left: auto;
		background: #000;
		padding: 0;
		float: none;
		text-align: left;
		width: auto;
		display: block;
	}
}

/* サービス展開時のアイコン */

#service ul li,
#company ul li {
	display: block;
	position: absolute;
	top: 20px;
}

#service ul li:nth-child(1){
	left: 30px;
}

#service ul li:nth-child(2){
	left: 107px;
}

#service ul li:nth-child(3){
	left: 213px;
}

#service ul li:nth-child(4){
	left: 290px;
}

#service ul li:nth-child(5){
	left: 360px;
}

#company ul li:nth-child(1){
	left: 30px;
}

#company ul li:nth-child(2){
	left: 120px;
}

#service ul li a {
	margin: 0;
}

@media screen and (max-width:950px) {	
	#service ul li,
	#company ul li {
		border-top: 1px solid #444;
		border-bottom: none;
		position: static;
		padding-left: 30px
	}
}

#service ul li a:hover,
#company ul li a:hover {
	text-decoration: underline;
}

@media screen and (min-width:951px) {
	#service .anime-on {
		animation: rotation-service-open 0.2s cubic-bezier(0.12, 0, 0.05, 1) 0s 1 alternate none running;
		display: block;
	}
}

@keyframes rotation-service-open {
  0% {
	transform: translate(0, -40px);
	opacity: 0;
	width: 100px;
  }
  100% {
	transform: translate(0, 0px);
	opacity: 1;
	width: 397px;
  }
}

@media screen and (min-width:951px) {
	#service .anime-off {
		animation: rotation-service-close 0.2s cubic-bezier(0.92, 0, 1.0, 0.1) 0s 1 alternate none running;
		display: block;
		transform: translate(0, -140px);
	}
}

@keyframes rotation-service-close {
  0% {
	transform: translate(0, 0px);
	opacity: 1;
	display: block;
	width: 397px;
  }
  100% {
	transform: translate(0, 0);
	opacity: 0;
	width: 0px;
  }
}

@media screen and (min-width:951px) {
	#company .anime-on {
		animation: rotation-company-open 0.2s cubic-bezier(0.12, 0, 0.05, 1) 0s 1 alternate none running;
		display: block;
	}
}

@keyframes rotation-company-open {
  0% {
	transform: translate(0, -40px);
	opacity: 0;
	width: 100px;
  }
  100% {
	transform: translate(0, 0px);
	opacity: 1;
	width: 250px;
  }
}

@media screen and (min-width:951px) {
	#company .anime-off {
		animation: rotation-company-close 0.2s cubic-bezier(0.92, 0, 1.0, 0.1) 0s 1 alternate none running;
		display: block;
		transform: translate(0, -140px);
	}
}

@keyframes rotation-company-close {
  0% {
	transform: translate(0, 0px);
	opacity: 1;
	display: block;
	width: 250px;
  }
  100% {
	transform: translate(0, 0px);
	opacity: 0;
	width: 0px;
  }
}

#service ul:after,
#company ul:after {
	clear: both;
	content: "";
	display: block;
}

/* 大カテゴリアイコン */

nav a:before {
	position: absolute;
	line-height: 100%;
	vertical-align: top;
}

#reform > a:before {
	display: inline-block;
	width: 13px;
	height: 13px;
	content: "";
	border-radius: 10px;
	padding-right: 5px;
	background: url(../img/common/icon-reform.gif) no-repeat center top;
	top: 2px;
    left: -1px;
	z-index: 2;
	margin: -1px 0 0 0;
}

#service > a:before {
	display: inline-block;
	width: 13px;
	height: 13px;
	content: "";
	border-radius: 10px;
	padding-right: 5px;
	background: url(../img/common/icon-service.gif) no-repeat center top;
	top: 2px;
    left: -1px;
	z-index: 2;
	margin: -1px 0 0 0;
}

@media screen and (max-width:950px) {
	#service > a:before {
		vertical-align: -2px;
	}
}

#service ul a:before {
	display: block;
	content: "";
	background: #497278;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin-right: 5px;
	border-radius: 10px;
	top: 2px;
    left: 4px;
	box-sizing: border-box;
}

#company ul a:before {
	display: block;
	content: "";
	background: #9a7b68;
	width: 10px;
	height: 10px;
	vertical-align: middle;
	margin-right: 5px;
	border-radius: 10px;
	top: 2px;
    left: 4px;
	box-sizing: border-box;
}

#works a:before {
	display: inline-block;
	width: 10px;
	height: 12px;
	content: "";
	padding-right: 5px;
	background: url(../img/common/icon-works.gif) no-repeat center center;
	top: 1px;
    left: 1px;
	z-index: 2;
}

#company a:before {
	display: inline-block;
	width: 10px;
	height: 12px;
	content: "";
	padding-right: 5px;
	background: url(../img/common/icon-company.gif) no-repeat center center;
	top: 1px;
    left: 1px;
	z-index: 2;
}

#recruit a:before {
	display: inline-block;
	width: 10px;
	height: 12px;
	content: "";
	padding-right: 5px;
	background: url(../img/common/icon-recruit.gif) no-repeat center center;
	top: 1px;
    left: 1px;
	z-index: 2;
}

#partner a:before {
	display: inline-block;
	width: 10px;
	height: 12px;
	content: "";
	padding-right: 5px;
	background: url(../img/common/icon-partner.gif) no-repeat center center;
	top: 1px;
    left: 1px;
	z-index: 2;
}

#contact a:before {
	display: inline-block;
	width: 10px;
	height: 12px;
	content: "";
	padding-right: 5px;
	background: url(../img/common/icon-contact.gif) no-repeat center center;
	top: 1px;
    left: 1px;
	z-index: 2;
}

@media screen and (max-width:950px) {
	nav li a:before {
		display: inline-block;
		position: static;
		vertical-align: 0;
		margin-right: 4px;
	}
	
	#service li a:before,
	#company li a:before {
		display: inline-block;
		width: 5px;
		height: 5px;
	}
}

main h1 {
	margin: 40px 0 40px 0;
	padding: 0;
	text-align: center;
	font-family: condor, sans-serif;
	font-size: 42px;
	font-weight: normal;
}

main h1:before {
	content: "- ";
}

main h1:after {
	content: " -";
}

@media screen and (max-width:950px) {
	main h1 {
		margin: 30px 0 40px 0;
	}
}

@media screen and (max-width:540px) {
	main h1 {
		margin: 0 0 10px 0;
	}
}

main h2 {
	margin: 50px 0 40px 0;
	padding: 0;
	text-align: center;
	font-size: 32px;
	font-weight: normal;
}

@media screen and (max-width:950px) {
	main h1,
	main h2 {
		margin: 30px 0 40px 0;
	}
}

@media screen and (max-width:540px) {
	main h1,
	main h2 {
		margin: 0 0 10px 0;
	}
}

#service-content {
	max-width: 1150px;
	margin: 0 auto 60px auto;
	padding: 0;
	    display: flex;
    justify-content: center;
}

@media screen and (max-width:1150px) {
	#service-content {
		margin: 0 15px 20px 15px;
		    display: flex;
    justify-content: center;
	}
}
@media screen and (max-width:940px) {
	#service-content {
		display:block;
    justify-content: center;
	}
}



#service-content:after {
	content: "";
	display: block;
	clear: both;
}

#service-content li {
	width: 22.7%;
	margin-right: 3%;
	float: left;
	list-style: none;
}
/*
#service-content li:hover {
	opacity: 0.7;
}
*/
#service-content li img {
	width: 100%;
}

@media screen and (max-width:1150px) {
	#service-content li {
		width: 23.5%;
		margin-right: 2%;
	}
}

@media screen and (max-width:980px) {
	#service-content li {
		width: 100%;
		margin: 0 0 10px 0;
		border-top: 1px solid #ccc;
		padding-top: 15px;
	}
	
	#service-content li img {
		width: 55px;
		margin: 0 10px 11px 0;
		float: left;
		border-radius: 5px;
	}
	
	#service-content li dt {
		margin: 11px 0;
		text-align: left;
	}
}

#service-content li:nth-child(4) {
	margin: 0;
}

#service-content li a {
	color: #000;
}

#service-content dt {
	margin: 15px 0 10px 0;
	padding: 0;
	text-align: center;
	font-size: 18px;
}


@media screen and (max-width:540px) {
	#service-content li dt {
		margin: 15px 0 10px 0;
		font-size: 20px;
		text-align: left;
	}
}

#service-content dt:after {
	background: url(../img/common/icon-arrow-right-red.gif) no-repeat right top;
	display: inline-block;
	width: 10px;
	height: 10px;
	content: "";
	margin-left: 10px;
	line-height: 100%;
	vertical-align: middle;
	padding-top: 3px;
}

#service-content dd {
	margin: 0;
	padding: 0;
	font-size: 14px;
	clear: both;
}

@media screen and (max-width:540px) {
	#service-content dd {
		margin: 0 0 10px 0;
		font-size: 12px;
		line-height: 180%;
	}
}

#blog {
	background: #f0f0f0;
	padding-top: 1px;
	margin-top: 50px;
}

@media screen and (max-width:1150px) {
	#blog {
		padding: 10px 15px 0 15px;
		margin-top: 30px;
	}
}

@media screen and (max-width:540px) {
	#blog {
		margin-top: 10px;
	}
}

#blog:after {
	display: block;
	content: "";
	clear: both;
}

#blog h2 {
	line-height: 100%;
	font-family: condor, sans-serif;
}

#blog h2:before {
	content: "- ";
}

#blog h2:after {
	content: " -";
}

@media screen and (max-width:1000px) {
	#blog h2 {
		margin: 20px 0;
	}
}

#blog ul {
	max-width: 1150px;
	margin: 0 auto;
}

#blog li {
	width: 350px;
	padding-right: 50px;
	float: left;
	margin-bottom: 30px;
}

@media screen and (max-width:1150px) {
	#blog li {
		width: 48%;
		padding-right: 2%;
	}
}

@media screen and (max-width:760px) {
	#blog li {
		width: 100%;
		padding-right: 0;
		margin-bottom: 20px;
	}
}

#blog li:hover {
	opacity: 0.7;
}

#blog li:nth-child(3n) {
	padding-right: 0;
}

@media screen and (max-width:1150px) {
	#blog li:nth-child(3n) {
		padding-right: 2%;
	}
}

#blog li:after {
	display: block;
	content: "";
	clear: both;
}

#blog li img {
	float: left;
	margin-right: 20px;
	border-radius: 5px;
}

@media screen and (max-width:760px) {
	#blog li img {
		width: 80px;
		margin-right: 15px;
	}
}

#blog dt {
	font-size: 12px;
	font-weight: bold;
	padding-bottom: 5px;
}

#blog dd {
	font-size: 14px;
	line-height: 180%;
}

@media screen and (max-width:540px) {
	#blog dd {
		line-height: 150%;
		font-size: 13px;
	}
}

#blog p {
	margin-top: 20px;
	text-align: center;
	clear: both;
}

#blog p a {
	display: inline-block;
	padding: 10px 80px;
	border-radius: 30px;
	margin: 20px 0 50px 0;
	border: 1px solid #c9c9c9;
	font-size: 14px;
	background: url(../img/common/icon-blank.gif) no-repeat 175px 15px #fff;
}

@media screen and (max-width:450px) {
	#blog p a {
		margin: 10px 0 20px 0;
		padding: 15px 80px;
		background: url(../img/common/icon-blank.gif) no-repeat 175px 20px #fff;
	}
}

#blog p a:hover {
	background: url(../img/common/icon-blank.gif) no-repeat 175px 15px #f8f8f8;
}

#work {	
	background: #272727;
	padding: 20px 0 0 0px;
}

#work h2 {
	color: #fff;
	font-family: condor, sans-serif;
}

#work h2:before {
	content: "- ";
}

#work h2:after {
	content: " -";
}

#work ul {
	margin: 0 auto;
	max-width: 1150px;
	text-align: center;
	color: #fff;
}

@media screen and (max-width:760px) {
	#work ul {
		padding-left: 3%;
	}
}

@media screen and (max-width:450px) {
	#work ul {
		padding: 0 15px;
	}
}

#work ul:after {
	clear: both;
	content: "";
	display: block;
}

#work li {
	width: 350px;
	float: left;
	padding-right: 50px;
	margin-bottom: 50px;
}

@media screen and (max-width:1150px) {
	#work li {
		width: 29%;
		padding: 0 1.5%;
		margin-bottom: 40px;
		float: none;
		display: inline-block;
	}
	
	#work li:first-child {
		padding-left: 0;
	}
}

@media screen and (max-width:760px) {
	#work li {
		width: 44%;
		padding: 0 1.5%;
	}
}

@media screen and (max-width:450px) {
	#work li {
		width: 100%;
		padding-right: 0;
		margin-bottom: 25px;
	}
}

#work li:last-child {
	padding-right: 0;
}

#work li a {
	color: #fff;
	text-align: center;
	display: block;
	font-size: 14px;
}

#work li a:hover {
	opacity: 0.7;
}

#work li img {
	width: 100%;
	margin-bottom: 30px;
}

@media screen and (max-width:1150px) {
	#work li img {
		margin-bottom: 10px;
	}
}

#work p {
	text-align: center;
}

#work p a {
	display: inline-block;
	padding: 10px 80px;
	border-radius: 30px;
	margin-bottom: 50px;
	border: 1px solid #626262;
	font-size: 14px;
	background: #202020;
	color: #fff;
}

@media screen and (max-width:450px) {
	#work p a {
		margin-bottom: 20px;
		padding: 15px 80px;
	}
}

#work p a:hover {
	background: #383838;
}

#prbn {
	text-align: center;
	background: #f3f3f3;
	padding: 0 0 10px 0;
}

@media screen and (max-width:640px) {
	#prbn {
		margin: 0 10px;
	}
}

#prbn img {
	max-width: 100%;
}

footer {
	padding-top: 50px;
}

footer .p-mark {
    width: 60px;
    height: 60px;
    background-color: #fff;
    text-align: center;
    padding: 4px;
}

footer .p-mark img {
	width: 100%;
}

@media screen and (max-width:1150px) {
	footer {
		padding-top: 50px;
	}
}

@media screen and (max-width:540px) {
	footer {
		padding-top: 15px;
	}
}

footer .inner {
	max-width: 1150px;
	margin: 0 auto;
	position: relative;
	padding-bottom: 40px;
}

@media screen and (max-width:1150px) {
	footer .inner {
		margin: 0 15px;
	}
}

@media screen and (max-width:550px) {
	footer .inner {
		width: auto;
		padding-bottom: 20px;
	}	
}

@media screen and (max-width:1150px) {
	#footer-navigation {
		padding-right: 250px;
	}
}

@media screen and (max-width:860px) {
	#footer-navigation {
		padding-right: 0;
		border-top: 1px solid #ccc;
	}
}

#footer-navigation li a:hover {
	text-decoration: underline;
	padding-bottom: 1px;
}

@media screen and (max-width:860px) {
	#footer-navigation li a:hover {
		padding-bottom: 10px;
	}
}

#footer-gnavi {
	padding-bottom: 50px;
}

@media screen and (max-width:860px) {
	#footer-gnavi {
		padding-bottom: 10px;
	}
}

#footer-gnavi > li {
	float: left;
	font-size: 13px;
	padding-right: 30px;
}

@media screen and (max-width:860px) {
	#footer-gnavi > li {
		float: none;
		padding: 0;
		border-bottom: 1px solid #ccc;
	}
}

@media screen and (max-width:860px) {
	#footer-gnavi a {
		padding: 10px;
		display: block;
	}
}

#footer-gnavi > li:nth-child(1) a {
	color: #cd4a18;
	position: relative;
}

#footer-gnavi > li:nth-child(2) a {
	color: #68949a;
}

#footer-gnavi > li:nth-child(3) a {
	color: #9a8968;
}

#footer-gnavi > li:nth-child(4) a {
	color: #9a7b68;
}

#footer-gnavi > li:nth-child(5) a {
	color: #68809a;
}

#footer-gnavi > li:nth-child(6) a {
	color: #97689a;
}

#footer-service {
	padding: 10px 0;
	position: absolute;
	top: 20px;
	left: 0;
}

@media screen and (max-width:860px) {
	#footer-service {
		position: static;
		padding: 0;
	}
}

#footer-service li {
	font-size: 11px;
	float: left;
}

@media screen and (max-width:860px) {
	#footer-service li {
		font-size: 11px;
		float: none;
		border-top: 1px dotted #ccc;
		padding-left: 20px;
	}
}

#footer-gnavi #footer-service li a {
	color: #000;
}

#footer-service li:after {
	content: "|";
	padding: 0 5px;
}

@media screen and (max-width:860px) {
	#footer-service li:after {
		display: none;
	}
}

#footer-service li:last-child:after {
	display: none;
}

#footer-submenu {
	padding-top: 10px;
	clear: both;
}

@media screen and (max-width:540px) {
	#footer-submenu {
		padding-top: 5px;
	}
}

#footer-submenu li {
	font-size: 11px;
	padding: 0 0 10px 0;
}

@media screen and (max-width:540px) {
	#footer-submenu li {
		padding: 0 0 10px 0;
	}
}

footer dl {
	position: absolute;
	top: 0px;
	left: 640px;
	border-left: 1px solid #ccc;
	padding-left: 50px;
	min-height: 100px;
	width: 260px;
}

@media screen and (max-width:950px) {
	footer dl {
		top: 0;
		right: 0;
		left: auto;
		padding-left: 20px;
		min-height: auto;
	}
}

@media screen and (max-width:860px) {
	footer dl {
		position: static;
		padding: 0;
		border: none;
	}
}

footer dt {
	padding-top: 15px;
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: bold;
}

@media screen and (max-width:950px) {
	footer dt {
		padding-top: 10px;
	}
}

footer dd {
	font-size: 11px;
	font-style: normal;
	line-height: 180%;
}

@media screen and (max-width:950px) {
	footer dd {
		float: none;
		display: inline-block;
	}
}

#footer-logo {
	position: absolute;
	top: 0;
	right: 0;
}

@media screen and (max-width:1150px) {
	#footer-logo {
		display: none;
	}
}

#relation-service {
	text-align: center;
	background: #f3f3f3;
	padding: 20px 0;
	letter-spacing: -.40em;
}

@media screen and (max-width:1187px) {
	#relation-service {
		padding: 20px 150px;
	}
}

@media screen and (max-width:920px) {
	#relation-service {
		padding: 20px 100px;
	}
}

@media screen and (max-width:810px) {
	#relation-service {
		padding: 20px 0;
	}
}

#relation-service li {
	display: inline-block;
	padding: 0 10px;
	letter-spacing: normal;
}

@media screen and (max-width:1187px) {
	#relation-service li:nth-child(1),
	#relation-service li:nth-child(2) {
		margin-bottom: 10px;
	}
}

@media screen and (max-width:693px) {
	#relation-service li:not(:last-child) {
		margin-bottom: 10px;
	}
}

#relation-service li:hover {
	opacity: 0.7;
}

#relation-service img {
	vertical-align: top;
}

@media screen and (max-width:400px) {
	#relation-service img {
		width: 100%;
	}
}

#copyright {
	clear: both;
	padding: 5px;
	font-size: 11px;
	background: #262626;
	text-align: center;
	color: #999;
}

/* SERVICE */

#breadcrumb {
	margin: 100px 0 0 0;
}

#sub main {
	margin-top: 140px;
	display: block;
}

@media screen and (max-width:1150px) {
	#sub main {
		margin-top: 120px;
	}
}

@media screen and (max-width:950px) {
	#sub main {
		margin-top: 80px;
	}
}

@media screen and (max-width:540px) {
	#sub main {
		margin-top: 60px;
	}
}

#breadcrumb {
	font-size: 12px;
	width: 1150px;
	margin: 0 auto;
}

@media screen and (max-width:1150px) {
	#breadcrumb {
		display: none;
	}
}

#breadcrumb li {
	display: inline-block;
}

#breadcrumb a:hover {
	text-decoration: underline;
	padding-bottom: 1px;
}

#breadcrumb li:after {
	content: ">";
	display: inline-block;
	padding: 0 3px;
}

#breadcrumb li:last-child {
	font-weight: bold;
}

#breadcrumb li:last-child:after {
	content: "";
}

#breadcrumb a:hover:after {
	text-decoration: underline;
	padding-bottom: 1px;
}

#breadcrumb li:last-child a:after {
	content: "";
}

#service-content-sub {
	margin: 0 auto 0 auto;
	padding-bottom: 50px;
	width: 1150px;
}

@media screen and (max-width:1150px) {
	#service-content-sub {
		width: auto;
		margin: 0 15px;
	}
}

@media screen and (max-width:500px) {
	#service-content-sub {
		padding-bottom: 0;
	}
}

#service-content-sub img {
	float: left;
	padding-right: 50px;
}

@media screen and (max-width:1150px) {
	#service-content-sub img {
		width: 45%;
		padding-right: 30px;
	}
}

@media screen and (max-width:1150px) {
	#service-content-sub img {
		padding: 0 25px 20px 0;
	}
}

@media screen and (max-width:800px) {
	#service-content-sub img {
		float: none;
		width: 100%;
		margin: 0 auto 10px auto;
		display: block;
		padding: 0 0 0 0;
	}
}

@media screen and (max-width:550px) {
	#service-content-sub img {
		width: 100%;
	}
}

#service-content-sub li:after {
	clear: both;
	content: "";
	display: block;
	margin: 0 50px 40px 0;
}

#service-content-sub li a {
	display: block;
}

#service-content-sub li a:after {
	display: block;
	content: "";
	clear: both;
}

#service-content-sub li a:hover {
	opacity: 0.7;
}

#service-content-sub dt {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

#service-content-sub dt:before {
		background: url(../img/common/icon-arrow-right-red.gif) no-repeat right top;
		display: inline-block;
		width: 10px;
		height: 10px;
		content: "";
	margin-right: 10px;
		line-height: 100%;
		vertical-align: middle;
}

#service-content-sub dd {
	font-size: 14px;
	line-height: 200%;
}

@media screen and (max-width:1050px) {
	#service-content-sub dd {
		font-size: 13px;
		line-height: 160%;
	}
}

#footer-contact {
	background: #282828;
	padding: 1px 0 50px 0;
	margin-top: 60px;
	text-align: center;
}

@media screen and (max-width:770px) {
	#footer-contact {
		margin-top: 20px;
		padding: 20px 0 30px 0;
	}
}

#sub #footer-contact h2 {
	font-family: condor, sans-serif;
	font-size: 32px;
	font-weight: normal;
	color: #fff;
}

#footer-contact h2:before {
	content: "- ";
}

#footer-contact h2:after {
	content: " -";
}

#footer-contact br {
	display: none;
}

@media screen and (max-width:550px) {
	#footer-contact br {
		display: block;
	}
}

#footer-contact-info {
	margin-bottom: 30px;
	font-size: 14px;
	color: #fff;
	text-align: center;
}

@media screen and (max-width:550px) {
	#footer-contact-info {
		margin-bottom: 10px;
		font-size: 12px;
		line-height: 180%;
	}
}

#footer-contact-tel {
	color: #a09371;
	font-size: 26px;
	text-align: center;
	margin-bottom: 30px;
}

@media screen and (max-width:550px) {
	#footer-contact-tel {
		margin-bottom: 10px;
	}
}

#footer-contact-tel:before {
	background: url(../img/common/icon-tel.gif) no-repeat;
	width: 25px;
	height: 24px;
	display: inline-block;
	content: "";
	vertical-align: middle;
	padding-right: 5px;
}

#footer-contact-tel a {
	color: #a09371;
}

#footer-contact-link {
	font-size: 14px;
}

#footer-contact-link a {
	border: 1px solid #626262;
	padding: 20px 50px;
	border-radius: 40px;
	color: #fff;
	display: inline-block;
	margin: 0 auto;
}

@media screen and (max-width:550px) {
	#footer-contact-link a {
		padding: 15px 30px;
	}
}

#footer-contact-link a:hover {
	background: #202020;
}

/* Web制作 */

#service-info {
	font-size: 14px;
	width: 1150px;
	margin: 0 auto;
	padding-bottom: 80px;
}

@media screen and (max-width:1150px) {
	#service-info {
		width: auto;
		margin: 0 15px;
		padding: 0 0 20px 0;
	}
}

#service-info:after {
	clear: both;
	display: block;
	content: "";
}

#service-info img {
	vertical-align: middle;
	display: inline-block;
}

@media screen and (max-width:1150px) {
	#service-info img {
		width: 45%;
		padding: 0 0 20px 0;
	}
}

@media screen and (max-width:800px) {
	#service-info img {
		float: none;
		width: 70%;
		margin: 0 15% 30px 15%;
		display: block;
		padding: 0 0 0 0;
	}
}

@media screen and (max-width:550px) {
	#service-info img {
		width: 100%;
		margin: 0 0 20px 0;
	}
}

#service-info span {
	width: 47.4%;
	vertical-align: middle;
	display: inline-block;
	margin-left: 4.348%;
	line-height: 180%;
}

@media screen and (max-width:1150px) {
	#service-info span {
		width: 50%;
		float: right;
		margin-bottom: 20px;
		line-height: 180%;
	}
}

@media screen and (max-width:800px) {
	#service-info span {
		float: none;
		width: 100%;
		margin: 0 auto 10px auto;
		display: block;
		padding: 0 0 0 0;
		font-size: 13px;
	}
}

#service-icon {
	width: 1150px;
	margin: 0 auto;
}

@media screen and (max-width:1150px) {
	#service-icon {
		width: auto;
	}
}

#service-icon:after {
	display: block;
	content: "";
	clear: both;
}

#service-icon {
	text-align: center;
}

@media screen and (max-width:640px) {
	#service-icon {
		margin-bottom: 20px;
	}
}

#service-icon li {
	width: 33.3%;
	padding: 0 25px;
	height: 340px;
	box-sizing: border-box;
	display: inline-block;
	text-align: left;
	vertical-align: top;
}

@media screen and (max-width:1150px) {
	#service-icon li {
		padding: 0 15px;
	}
}

@media screen and (max-width:800px) {
	#service-icon li {
		width: 50%;
		height: 340px;
	}
}

@media screen and (max-width:640px) {
	#service-icon li {
		width: 100%;
		margin-bottom: 20px;
		height: auto;
	}
}

#service-icon dt {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding-bottom: 20px;
}

@media screen and (max-width:640px) {
	#service-icon dt {
		text-align: left;
	}
}

#service-icon dt img {
	display: block;
	margin: 0 auto 30px auto;
	vertical-align: bottom;
}


@media screen and (max-width:640px) {
	#service-icon dt img {
		width: 40px;
		display: inline-block;
		padding-right: 10px;
		margin-bottom: -8px;
	}
}

#service-icon dd {
	font-size: 13px;
	line-height: 170%;
}

#sub h2 {
	font-size: 24px;
	font-weight: bold;
}

@media screen and (max-width:800px) {
	#sub h2 {
		font-size: 20px;
		margin: 20px 0 30px 0;
	}
}

@media screen and (max-width:540px) {
	#sub h2 {
		font-size: 18px;
		margin: 10px 0 20px 0;
	}
}

#sub h3 {
	font-size: 18px;
	color: #cd4a18;
	font-weight: normal;
	text-align: center;
	padding: 0;
	margin: 0 0 30px 0;
}

#company-choose {
	width: 1050px;
	margin: 0 auto;
	padding-bottom: 20px;
}

@media screen and (max-width:1150px) {
#company-choose {
		width: auto;
	}
}

#company-choose:after {	
	display: block;
	clear: both;
	content: "";
}

#company-choose li {
	width: 300px;
	float: left;
	margin: 0 25px;
	box-sizing: border-box;
}

@media screen and (max-width:1050px) {
	#company-choose li {
		width: 100%;
		padding: 0 15px 25px 15px;
		margin: 0;
	}
}

#company-choose img {
	margin-bottom: 20px;
}

@media screen and (max-width:1050px) {
	#company-choose img {
		width: 100px;
		border-radius: 5px;
		margin: -10px 10px 0 0;
		display: inline-block;
		float: left;
	}
}

#company-choose dt {
	color: #cd4a18;
	text-align: center;
	font-size: 18px;
	padding-bottom: 20px;
}

@media screen and (max-width:1150px) {
	#company-choose dt {
		text-align: left;
		display: inline-block;
		padding-bottom: 15px;
		width: 100%;
		font-size: 16px;
		line-height: 150%;
	}
}

#company-choose dd {
	font-size: 14px;
	line-height: 170%;
}

@media screen and (max-width:1150px) {
	#company-choose dd {
		font-size: 13px;
	}
}

#flow-info {
	font-size: 14px;
	font-weight: bold;
	border-top: 1px solid #c9c9c9;
	border-bottom: 1px solid #c9c9c9;
	padding: 30px 0;
	margin: 0 auto 30px auto;
	width: 600px;
	text-align: center;
	line-height: 170%;
}

@media screen and (max-width:600px) {
	#flow-info {
		width: auto;
		margin: 0 15px;
		padding: 20px 0;
		margin-bottom: 20px;
		font-size: 13px;
		text-align: left;
	}
	
	#flow-info br {
		display: none;
	}
}

#flow-detail {
	max-width: 1070px;
	margin: 0 auto;
	padding: 0 0 20px 0;
}

@media screen and (max-width:1090px) {
	#flow-detail {
		padding: 0 15px;
	}
}

#flow-detail:after {
	display: block;
	content: "";
	clear: both;
}

#flow-detail > li {
	width: 190px;
	float: left;
	margin-right: 30px;
}

@media screen and (max-width:1090px) {
	#flow-detail > li {
		width: auto;
		float: none;
		margin: 0 0 20px 0;
	}
}

#flow-detail li:last-child {
	margin-right: 0;
}

#flow-detail .title {
	background: #cd4a18;
	color: #fff;
	text-align: center;
	padding: 30px 0;
	font-size: 18px;
}

@media screen and (max-width:1090px) {
	#flow-detail .title {
		padding: 10px;
		text-align: left;
	}
}

#flow-detail .title span {
	font-size: 12px;
	font-weight: bold;
	display: block;
	padding-bottom: 7px;
}

@media screen and (max-width:1090px) {
	#flow-detail .title span {
		padding: 0 10px 0 0;
		display: inline-block;
	}
}

#flow-detail ul {
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	line-height: 180%;
	margin: 20px 0;
}

@media screen and (max-width:1090px) {
	#flow-detail ul {
		text-align: left;
		margin: 10px 0;
	}
	
	#flow-detail ul li {
		display: inline-block;
	}
	
	#flow-detail ul li:after {
		content: "/";
		font-weight: normal;
		padding-left: 5px;
	}
	
	#flow-detail ul li:last-child:after {
		content: "";
	}
}

#flow-detail .description {
	font-size: 12px;
	line-height: 180%;
}

#web-work {	
	padding:	1px;
}

#web-work ul {
	margin: 0 auto;
	max-width: 1150px;
	text-align: center;
}

@media screen and (max-width:760px) {
	#web-work ul {
		padding-left: 3%;
	}
}

@media screen and (max-width:450px) {
	#web-work ul {
		padding: 0 15px;
	}
}

#web-work ul:after {
	clear: both;
	content: "";
	display: block;
}

#web-work li {
	width: 350px;
	float: left;
	padding-right: 50px;
	margin-bottom: 50px;
}

@media screen and (max-width:1170px) {
	#web-work li {
		width: 29%;
		padding: 0 1.5%;
		margin-bottom: 40px;
		float: none;
		display: inline-block;
	}
	
	#web-work li:first-child {
		padding-left: 0;
	}
}

@media screen and (max-width:760px) {
	#web-work li {
		width: 44%;
		padding: 0 1.5%;
	}
}

@media screen and (max-width:450px) {
	#web-work li {
		width: 100%;
		padding-right: 0;
		margin-bottom: 25px;
	}
}

#web-work li:last-child {
	padding-right: 0;
}

#web-work li a {
	text-align: center;
	display: block;
	font-size: 14px;
}

#web-work li a:hover {
	opacity: 0.7;
}

#web-work li img {
	width: 100%;
	margin-bottom: 30px;
}

@media screen and (max-width:1150px) {
	#web-work li img {
		margin-bottom: 10px;
	}
}

#web-work p {
	text-align: center;
}

#web-work p a {
	display: inline-block;
	padding: 10px 80px;
	border-radius: 30px;
	margin-bottom: 50px;
	border: 1px solid #bfbfbf;
	font-size: 14px;
}

@media screen and (max-width:450px) {
	#web-work p a {
		margin-bottom: 20px;
		padding: 15px 80px;
	}
}

#web-work p a:hover {
	background: #f1f1f1;
}

#example-nav {
	width: 1050px;
	margin: 0 auto;
	padding-bottom: 40px;
}

@media screen and (max-width:1050px) {
	#example-nav {
		display: none;
	}
}

#example-nav:after {
	display: block;
	content: "";
	clear: both;
}

#example-nav li {
	float: left;
	width: 33.3%;
	text-align: center;
	padding: 20px 0;
	background: #bfbfbf;
	border-right: 1px solid #fff;
	box-sizing: border-box;
	color: #fff;
	font-size: 15px;
	line-height: 100%;
	position: relative;
	cursor: pointer;
}

#example-nav li:hover {
	background: #cd4a18;
}

#example-nav .is-active {
	background: #cd4a18;
}

#example-nav .is-active:after {
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background: #cd4a18;
	position: absolute;
	bottom: -8px;
	left: 170px;
	transform: rotate(-45deg);
	opacity: 0.9;
}

#example-nav .case {
	display: block;
	font-size: 12px;
	font-weight: bold;
	padding-bottom: 5px;
}

#example-nav .price {
	font-size: 14px;
	display: block;
	font-weight: bold;
	padding-top: 5px;
}

#example-content {
	width: 1050px;
	margin: 0 auto;
	padding-bottom: 70px;
}

#example-content .disabled {
	display: none;
}

@media screen and (max-width:1050px) {
	#example-content {
		width: auto;
		padding: 0 15px 20px 15px;
	}
	
	#example-content .disabled {
		display: block;
	}
}

#example-content:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width:1050px) {
	#case1-content {
		display: block;
		padding-bottom: 20px;
	}
}

@media screen and (max-width:1050px) {
	#case2-content,
	#case3-content {
		display: block;
		padding-bottom: 20px;
	}
}

#example-content dl {
	width: 500px;
	float: left;
}

@media screen and (max-width:1050px) {
	#example-content dl {
		width: auto;
		float: none;
		margin-bottom: 10px;
	}
}

#example-content dt {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

@media screen and (max-width:1050px) {
	#example-content dt {
		font-size: 14px;
		background: #cd4a18;
		color: #fff;
		padding: 13px 8px;
		margin-bottom: 10px;
	}
	
	#case1-content dt:before {
		content: "CASE1";
		padding-right: 5px;
		font-size: 12px;
		font-weight: normal;
	}
	
	#case2-content dt:before {
		content: "CASE2";
		padding-right: 5px;
		font-size: 12px;
		font-weight: normal;
	}
	
	#case3-content dt:before {
		content: "CASE3";
		padding-right: 5px;
		font-size: 12px;
		font-weight: normal;
	}
}

#example-content dd {
	font-size: 14px;
	line-height: 180%;
}

@media screen and (max-width:1050px) {
	#example-content dd {
		font-size: 13px;
		margin-bottom: 10px;
	}
}

#example-content table {
	border-collapse: collapse;
	width: 500px;
	float: right;
}

@media screen and (max-width:1050px) {
	#example-content table {
		border-collapse: collapse;
		width: 100%;
		float: none;
	}
}

#example-content tbody th {
	text-align: left;
	font-size: 14px;
	border-bottom: 1px dotted #ccc;
	padding: 10px 0;
}

@media screen and (max-width:1050px) {
	#example-content tbody tr:first-child th {
		border-top: 1px dotted #ccc;
	}
}

#example-content tbody tr:last-child th {
	border-bottom: 1px solid #cd4a18;
}

#example-content tbody td {
	text-align: right;
	font-size: 14px;
	border-bottom: 1px dotted #ccc;
	padding: 10px 0;
}

@media screen and (max-width:1050px) {
	#example-content tbody tr:first-child td {
		border-top: 1px dotted #ccc;
	}
}

#example-content tbody tr:last-child td {
	border-bottom: 1px solid #cd4a18;
}

#example-content tfoot th {
	border: none;
	text-align: left;
	padding: 10px 0;
	font-size: 14px;
}

#example-content tfoot td {
	border: none;
	text-align: right;
	padding: 10px 0;
	font-weight: bold;
	font-size: 14px;
}

#price-link {
	padding-bottom: 50px;
}

@media screen and (max-width:840px) {
	#price-link {
		padding-bottom: 20px;
	}
}

#price-link a {
	border: 1px solid #bfbfbf;
	padding: 15px;
	width: 300px;
	margin: 0 auto;
	display: block;
	text-align: center;
	border-radius: 30px;
	font-size: 14px;
}

@media screen and (max-width:400px) {
	#price-link a {
		width: auto;
		padding: 15px 0;
		margin: 0 15px;
	}
}

#price-link a:hover {
	background: #f1f1f1;
}

/* イラスト制作 */

#illust-info {
	max-width: 1150px;
	margin: 0 auto 60px auto;
	font-size: 14px;
	line-height: 180%;
}

@media screen and (max-width:1150px) {
	#illust-info {
		margin: 0 15px 60px 15px;
	}
}

@media screen and (max-width:800px) {
	#illust-info {
		font-size: 13px;
		line-height: 170%;
		margin-bottom: 30px;
	}
}

.illust-list {
	width: 1150px;
	margin: 0 auto 30px auto;
	text-align: center;
}

@media screen and (max-width:1170px) {
	.illust-list {
		width: auto;
		margin: 0 15px 30px 15px;
	}
}

.illust-list:after {
	display: block;
	clear: both;
	content: "";
}

.illust-list li {
	width: 250px;
	padding: 0 50px 50px 0;
	display: inline-block;
}

.illust-list li:last-child {
	padding-right: 0;
}

@media screen and (max-width:1170px) {
	.illust-list li {
		width: 22.9%;
		padding: 0 1% 1% 1%;
	}
	.illust-list li:last-child {
		padding-right: 1%;
	}
}

@media screen and (max-width:900px) {
	.illust-list li {
		width: 250px;
		padding: 0 40px 40px 10px;
		box-sizing: content-box;
	}
	.illust-list li:last-child {
		padding-right: 40px;
	}
}

@media screen and (max-width:640px) {
	.illust-list li {
		width: auto;
		padding: 0 0 30px 0;
		box-sizing: content-box;
		display: block;
		float: none;
		text-align: center;
	}
	.illust-list li:last-child {
		padding-right: 0;
	}
}

.illust-list li img {
	width: 100%;
}

@media screen and (max-width:640px) {
	.illust-list li img {
		width: 250px;
	}
}

.illust-copyright {
	max-width: 1150px;
	margin: -80px auto 80px auto;
	padding: 0;
	text-align: right;
	font-size: 10px;
}

@media screen and (max-width:1170px) {
	.illust-copyright {
		margin: -30px 15px 30px 15px;
	}
}

@media screen and (max-width:900px) {
	.illust-copyright {
		width: auto;
		margin: -40px auto 40px auto;
		text-align: center;
	}
}

#line-illust {
	width: 930px;
	margin: 0 auto 60px auto;
	text-align: center;
}

@media screen and (max-width:930px) {
	#line-illust {
		width: 780px;
	}
}

@media screen and (max-width:780px) {
	#line-illust {
		width: auto;
		padding: 0 10px;
		margin-bottom: 10px;
	}
}

#line-illust:after {
	display: block;
	content: "";
	clear: both;
}

#line-illust li {
	float: left;
	padding: 0 22px;
}

@media screen and (max-width:960px) {
	#line-illust li {
		float: none;
		padding: 0 26px;
		display: inline-block;
	}
}

@media screen and (max-width:780px) {
	#line-illust li {
		padding: 10px 26px;
	}
}

@media screen and (min-width:930px) {
	#line-illust li:first-child {
		padding-left: 0;
	}

	#line-illust li:last-child {
		padding-left: 0;
	}
}

#illust-logo {
	width: 800px;
	text-align: center;
	margin: 0 auto 60px auto;
}

@media screen and (max-width:900px) {
	#illust-logo {
		width: auto;
	}
}

@media screen and (max-width:450px) {
	#illust-logo {
		margin: 0 auto;
	}
}

#illust-logo:after {
	display: block;
	content: "";
	clear: both;
}

#illust-logo li {
	padding: 0;
	float: left;
	width: 200px;
	height: 80px;
	text-align: center;
}

@media screen and (max-width:900px) {
	#illust-logo li {
		width: 250px;
		float: none;
		display: inline-block;
	}
}

@media screen and (max-width:780px) {
	#illust-logo li {
		width: 200px;
	}
}

@media screen and (max-width:450px) {
	#illust-logo li {
		height: 60px;
	}
}

#illust-logo li:first-child {
	padding-left: 0;
}

#illust-flow {
	width: 1070px;
	margin: 0 auto 100px auto;
	text-align: center;
}

@media screen and (max-width:1070px) {
	#illust-flow {
		width: 800px;
		margin: 0 auto 100px auto;
	}
}

@media screen and (max-width:800px) {
	#illust-flow {
		width: 600px;
		margin: 0 auto 60px auto;
	}
}

@media screen and (max-width:600px) {
	#illust-flow {
		width: auto;
		margin: 0 auto 30px auto;
	}
}

#illust-flow:after {
	display: block;
	content: "";
	clear: both;
}

#illust-flow li {
	width: 190px;
	float: left;
	margin-right: 30px;
}

@media screen and (max-width:1070px) {
	#illust-flow li {
		width: 220px;
		float: none;
		display: inline-block;
		margin: 0 20px 30px 20px;
	}
}

@media screen and (max-width:800px) {
	#illust-flow li {
		width: 190px;
	}
}

@media screen and (max-width:600px) {
	#illust-flow li {
		width: auto;
		margin: 0 20px 30px 20px;
	}
}

#illust-flow li:last-child {
	margin-right: 0;
}

@media screen and (max-width:600px) {
	#illust-flow li:last-child {
		margin-right: 20px;
	}
}

#illust-flow dt {
	background: url(../img/service/illust/icon-arrow.gif) no-repeat right #cd4a18;
	color: #fff;
	text-align: center;
	margin-bottom: 15px;
	padding: 40px 0;
	font-size: 16px;
	position: relative;
	height: 100px;
	box-sizing: border-box;
}

@media screen and (max-width:600px) {
	#illust-flow dt {
		background: #cd4a18;
		padding: 15px 0;
		font-size: 14px;
		height: auto;
	}
	
	#illust-flow li:nth-child(1) dt:before {
		display: inline-block;
		content: "1.";
	}
	
	#illust-flow li:nth-child(2) dt:before {
		display: inline-block;
		content: "2.";
	}
	
	#illust-flow li:nth-child(3) dt:before {
		display: inline-block;
		content: "3.";
	}
	
	#illust-flow li:nth-child(4) dt:before {
		display: inline-block;
		content: "4.";
	}
	
	#illust-flow li:nth-child(5) dt:before {
		display: inline-block;
		content: "5.";
	}
	
	#illust-flow li:nth-child(6) dt:before {
		display: inline-block;
		content: "6.";
	}
}

#illust-flow li:last-child dt {
	background: #cd4a18;
}

#illust-flow dd {
	font-size: 12px;
	line-height: 150%;
	text-align: left;
}

#illust-quality {
	width: 890px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:890px) {
	#illust-quality {
		width: auto;
		margin: 0 auto 20px auto;
	}
}

#illust-quality:after {
	display: block;
	content: "";
	clear: both;
}

#illust-quality dl {
	float: left;
	width: 500px;
}

@media screen and (max-width:890px) {
	#illust-quality dl {
		float: none;
		width: auto;
		padding: 0 20px;
	}
}

#illust-quality dt {
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 10px;
}

@media screen and (max-width:890px) {
	#illust-quality dt {
		font-size: 14px;
		line-height: 180%;
	}
}

#illust-quality dd {
	font-size: 14px;
	line-height: 180%;
}

@media screen and (max-width:890px) {
	#illust-quality dd {
		font-size: 13px;
		line-height: 150%;
	}
}

#illust-quality p {
	float: right;
}

@media screen and (max-width:890px) {
	#illust-quality p {
		text-align: center;
		padding: 20px;
		float: none;
	}
}

@media screen and (max-width:360px) {
	#illust-quality img {
		width: 100%;
	}
}

#illust-faq {
	width: 1000px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1000px) {
	#illust-faq {
		width: auto;
		margin: 0 10px 20px 10px;
	}
}

#illust-faq dt {
	font-size: 14px;
	font-weight: bold;
	border-top: 1px solid #e5e5e5;
	padding: 20px 0;
	display: block;
	padding-left: 40px;
}

@media screen and (max-width:500px) {
	#illust-faq dt {
		padding: 10px 0 10px 40px;
		line-height: 150%;
	}
}

#illust-faq dt:before {
	content: "Q. ";
	font-weight: bold;
	font-size: 20px;
	display: inline-block;
	width: 40px;
	margin-left: -40px;
}

@media screen and (max-width:1000px) {
	#illust-faq dt:before {
		font-size: 16px;
		content: "Q. ";
		width: 30px;
		margin-left: -30px;
	}
}

#illust-faq dt:first-child {
	border: none;
}

#illust-faq dd {
	font-size: 14px;
	line-height: 150%;
	padding-bottom: 20px;
	display: block;
	padding-left: 40px;
}

@media screen and (max-width:1000px) {
	#illust-faq dd {
		font-size: 13px;
		padding-left: 40px;
		padding-bottom: 10px;
	}
}

@media screen and (max-width:500px) {
	#illust-faq dd {
		padding: 0 0 10px 40px;
	}
}

#illust-faq dd:before {
	content: "A. ";
	font-weight: bold;
	font-size: 20px;
	display: inline-block;
	width: 40px;
	margin-left: -40px;
	color: #cd4a18;
}

@media screen and (max-width:1000px) {
	#illust-faq dd:before {
		font-size: 16px;
		display: inline-block;
		width: 30px;
		margin-left: -30px;
		font-size: 16px;
	}
}

@media screen and (max-width:1000px) {
	#illust-pricewrap {
		margin: 0 20px;
	}
}

#illust-price {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
	border-left: 1px solid #bfbfbf;
	border-top: 1px solid #bfbfbf;
	border-collapse: collapse;
	font-size: 14px;
}

@media screen and (max-width:1000px) {
	#illust-price {
		width: 100%;
		box-sizing: border-box;
	}
}

@media screen and (max-width:500px) {
	#illust-price {
		font-size: 13px;
	}
}

#illust-price thead th {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	font-weight: bold;
	padding: 15px 0;
	background: #f4f4f4;
}

#illust-price tbody th {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	font-weight: normal;
	padding: 15px 0;
}

#illust-price tbody td {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	padding: 15px 0;
}

.illust-price {
	width: 1000px;
	margin: 0 auto;
	text-align: center;
	border-left: 1px solid #bfbfbf;
	border-collapse: collapse;
	font-size: 14px;
}

@media screen and (max-width:1000px) {
	.illust-price {
		width: 100%;
		box-sizing: border-box;
	}
}

@media screen and (max-width:500px) {
	.illust-price {
		font-size: 13px;
	}
}

.illust-price thead th {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	font-weight: normal;
	padding: 15px 0;
	font-weight: bold;
	background: #f4f4f4;
}

.illust-price tbody td {
	border-right: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	padding: 15px 0;
}

#illust-caution {
	width: 1000px;
	margin: 20px auto 70px auto;
	font-size: 14px;
	color: #333;
}

@media screen and (max-width:1000px) {
	#illust-caution {
		width: auto;
		margin: 10px 20px 20px 20px;
		font-size: 13px;
		line-height: 150%;
	}
}

.price-link {
	padding-bottom: 50px;
}

@media screen and (max-width:840px) {
	.price-link {
		padding-bottom: 20px;
	}
}

.price-link a {
	border: 1px solid #bfbfbf;
	padding: 15px;
	width: 300px;
	margin: 0 auto;
	display: block;
	text-align: center;
	border-radius: 30px;
	font-size: 14px;
}

@media screen and (max-width:400px) {
	.price-link a {
		width: auto;
		padding: 15px 0;
		margin: 0 15px;
	}
}

.price-link a:hover {
	background: #f1f1f1;
}

/* サービス価格帯MAP */

#price-info {
	width: 1150px;
	margin: 0 auto 60px auto;
	font-size: 14px;
	line-height: 150%;
}

@media screen and (max-width:1150px) {
	#price-info {
		width: auto;
		font-size: 13px;
		margin: 0 20px 30px 20px;
		line-height: 180%;
	}
}

#price-map {
	font-size: 13px;
}

#price-map {
	width: 1125px;
	margin: 0 auto 40px auto;
}

@media screen and (max-width:1125px) {
	#price-map {
		width: auto;
		margin: 0 20px;
	}
}

#price-map:after {
	display: block;
	content: "";
	clear: both;
}

#price-map > li {
	width: 25%;
	float: left;
	border-left: 1px solid #c9c9c9;
	box-sizing: border-box;
	padding: 0 20px;
}

@media screen and (max-width:1125px) {
	#price-map > li {
		width: 50%;
		margin-bottom: 50px;
	}
}

@media screen and (max-width:750px) {
	#price-map > li {
		width: 100%;
		border: none;
		padding: 0;
		margin-bottom: 0;
	}
}

#price-map li:last-child {
	border-right: 1px solid #c9c9c9;
}

@media screen and (max-width:750px) {
	#price-map li:last-child {
		border-right: none;
	}
}

@media screen and (max-width:1125px) {
	#price-map li:nth-child(2) {
		border-right: 1px solid #c9c9c9;
	}
}

@media screen and (max-width:750px) {
	#price-map li:nth-child(2) {
		border-right: none;
	}
}

#price-map li > dl > dt {
	color: #cd4a18;
	font-weight: bold;
	font-size: 16px;
	padding-bottom: 20px;
	text-align: center;
}

#price-map li > dl dl {
	border-top: 1px dotted #ccc;
	border-bottom: 1px dotted #ccc;
	padding: 20px 28px;
	margin: 20px 0;
	font-size: 13px;
}

@media screen and (max-width:540px) {
	#price-map li > dl > dd {
		line-height: 180%;
	}
}

#price-map li > dl > dd > dl dt {
	display: inline;
	font-weight: bold;
}

#price-map li:nth-child(3) > dl > dd > dl {
	margin-top: 40px;
}

@media screen and (max-width:1125px) {
	#price-map li:nth-child(3) > dl > dd > dl {
		margin-top: 20px;
	}
}

#price-map li > dl > dd > dl dt:after {
	content: ":";
}

#price-map li > dl > dd > dl dd {
	display: inline;
	line-height: 150%;
}

#price-map canvas {
	margin: 0 auto;
	display: block;
}

@media screen and (max-width:1126px) {
	#price-map canvas {
		margin-bottom: 20px;
	}
}

.price-color {
	text-align: center;
	margin-bottom: 100px;
	line-height: 180%;
}

@media screen and (max-width:540px) {
	.price-color {
		margin-bottom: 30px;
	}
}

@media screen and (max-width:1126px) {
	.price-color.pc {
		display: none;
	}
}

@media screen and (min-width:1127px) {
	#price-map .price-color {
		display: none;
	}
}

#price-map .price-color {
	margin-bottom: 40px;
}

.price-color li:before {
	content: "\25A0";
}

.price-color li {
	font-size: 13px;
	display: inline-block;
	padding: 0 5px;
}

.price-color li:nth-child(1) {
	color: #a9cdd2;
}

.price-color li:nth-child(1):before {
	color: #a9cdd2;
}

.price-color li:nth-child(2) {
	color: #cd4a18;
}

.price-color li:nth-child(2):before {
	color: #cd4a18;
}

.price-color li:nth-child(3) {
	color: #d8a929;
}

.price-color li:nth-child(3):before {
	color: #d8a929;
}

.price-color li:nth-child(4) {
	color: #afbe95;
}

.price-color li:nth-child(4):before {
	color: #afbe95;
}

.price-color li:nth-child(5) {
	color: #cfc1a7;
}

.price-color li:nth-child(5):before {
	color: #cfc1a7;
}

/*Works*/

#workwrap {
	width: 1150px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1125px) {
	#workwrap {
		width: auto;
		margin: 0 20px;
	}
}

#worknav {
	text-align: center;
	margin-bottom: 60px;
}

@media screen and (max-width:1125px) {
	#worknav {
		display: none;
	}
}

#worknav li {
	margin: 0 35px;
	display: inline-block;
}

#worknav li a {
	width: 100px;
	height: 100px;
	border-radius: 100px;
	background: #b5b5b5;
	text-align: center;
	padding-top: 37px;
	box-sizing: border-box;
	cursor: pointer;
	display: block;
}

#worknav li a:hover {
	background: #8fa6d5;
}

#worknav .active {
	background: #8fa6d5;
}

#workcontent h2 {
	display: none;
}

@media screen and (max-width:1125px) {
	#workcontent h2 {
		display: block;
	}
}

#workcontent > li {
	margin-bottom: 40px;
}

@media screen and (max-width:500px) {
	#workcontent > li {
		margin-bottom: 10px;
	}
}

#workcontent .large > li {
	width: 330px;
	margin: 0 80px 90px 0;
	float: left;
}

@media screen and (max-width:1125px) {
	#workcontent .large > li {
		width: 29.6%;
		margin: 0 5% 5% 0;
		float: left;
	}
}

@media screen and (max-width:760px) {
	#workcontent .large > li {
		width: auto;
		margin: 0 0 40px 0;
		float: none;
		display: block;
	}
}

#workcontent > li:after {
	display: block;
	content: "";
	clear: both;
}

#workcontent .large > li:nth-child(3n) {
	margin-right: 0;
}

@media screen and (max-width:760px) {
	#workcontent .large a {
		width: auto;
		margin: 0 auto;
		display: table;
	}
}

#workcontent .large img {
	width: 100%;
}

@media screen and (max-width:760px) {
	#workcontent .large img {
		width: auto;
		display: block;
	}
}

@media screen and (max-width:400px) {
	#workcontent .large img {
		width: 100%;
	}
}

#workcontent > li > ul > li a:hover img {
	opacity: 0.7;
}

#workcontent .large dt {
	text-align: center;
	font-size: 15px;
	font-weight: bold;
	padding: 20px 0 15px 0;
	line-height: 100%;
}

#workcontent .large dd {
	text-align: center;
	font-size: 14px;
	padding-bottom: 15px;
	line-height: 100%;
}

#workcontent > li > ul > li > ul {
	text-align: center;
}

#workcontent > li > ul > li > ul > li {
	padding: 5px 10px;
	margin-bottom: 5px;
	display: inline-block;
	font-size: 13px;
	line-height: 100%;
}

#workcontent .planning {
	border: 1px solid #d0a6a6;
}

#workcontent .constitution {
	border: 1px solid #9cb77f;
}

#workcontent .design {
	border: 1px solid #e29d59;
}

#workcontent .coding {
	border: 1px solid #7aaabb;
}

#workcontent .small {
	clear: both;
}

#workcontent .small > li {
	width: 265px;
	height: 170px;
	float: left;
	margin-right: 30px;
}

#workcontent .small > li:after {
	display: block;
	content: "";
	clear: both;
}

@media screen and (min-width:1150px) {
	#workcontent .small > li:nth-child(4n) {
		margin-right: 0;
	}
}

@media screen and (max-width:1150px) {
	#workcontent .small > li {
		width: 47%;
		height: auto;
		margin-right: 3%;
		margin-bottom: 3%;
		display: block;
	}
	
	#workcontent .small > li:nth-child(2n) {
		clear: right;
	}
}

@media screen and (max-width:640px) {
	#workcontent .small > li {
		width: auto;
		margin: 0 0 20px 0;
	}
}

#workcontent .small img {
	float: left;
}

#workcontent .small div {
	margin-left: 120px;
}

#workcontent .small dt {
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 10px;
	line-height: 150%;
}

#workcontent .small dd {
	font-size: 12px;
	padding-bottom: 10px;
	line-height: 150%;
}

#workcontent .small ul li {
	font-size: 12px;
	display: block;
	line-height: 100%;
	padding: 0 0 5px 0;
	float: left;
}

#workcontent .small ul li:after {
	content: "｜";
}

#workcontent .small ul li:last-child:after {
	content: "";
}

/* COMPANY */

#company-connection {
	width: 1150px;
	margin: 0 auto;
}

#company-connection .image {
	float: left;
}

#company-president {
	width: 1150px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1125px) {
	#company-president {
		width: auto;
		margin: 0 20px;
	}
}

#company-president:after {
	display: block;
	clear: both;
	content: "";
}

#company-president dt {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: bold;
}

@media screen and (max-width:540px) {
	#company-president dt {
		margin-bottom: 5px;
	}
}

#company-president .title {
	font-size: 18px;
	margin-bottom: 20px;
	font-weight: bold;
}

#company-president dd {
	font-size: 14px;
	margin-bottom: 30px;
	font-weight: bold;
}

@media screen and (max-width:540px) {
	#company-president dd {
		margin-bottom: 20px;
	}
}

#company-president .image {
	float: left;
}

@media screen and (max-width:900px) {
	#company-president .image {
		width: 250px;
	}
	
	#company-president .image img {
		width: 100%;
	}
}

@media screen and (max-width:600px) {
	#company-president .image {
		width: 80%;
		margin: 0 10%;
		float: none;
		margin-bottom: 20px;
	}
}

#company-president div {
	margin-left: 420px;
}

@media screen and (max-width:900px) {
	#company-president div {
		margin-left: 280px;
	}
}

@media screen and (max-width:600px) {
	#company-president div {
		margin: 0;
	}
}

#company-president div p:first-child {
	margin-top: 55px;
}

#company-president div p {
	margin-bottom: 30px;
	font-size: 14px;
	line-height: 170%;
}

#company-president .name {
	font-weight: bold;
}

#company-data {
	width: 900px;
	margin: 0 auto;
	border-collapse: collapse;
	margin-bottom: 70px;
}

@media screen and (max-width:900px) {
	#company-data {
		width: auto;
		margin: 0 20px
	}
}

#company-data caption {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 40px;
}

@media screen and (max-width: 540px){
	#company-data caption {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

#company-data > tbody > tr > th {
	width: 180px;
	text-align: left;
	color: #cc4a18;
	border-bottom: 1px dotted #c9c9c9;
	font-size: 14px;
	padding: 20px 0;
	vertical-align: top;
}

@media screen and (max-width:900px) {
	#company-data > tbody > tr > th {
		width: 120px;
	}
}

@media screen and (max-width:640px) {
	#company-data > tbody > tr > th {
		width: 100%;
		display: block;
		padding: 10px 0 5px 0;
	}
}

#company-data a {
	color: #cc4a18;
}

#company-data a:hover {
	text-decoration: underline;
}

#company-data > tbody > tr:last-child > th {
	border-bottom: none;
}

#company-data > tbody > tr > td {
	border-bottom: 1px dotted #c9c9c9;
	font-size: 14px;
	padding: 20px 0;
	line-height: 150%;
}

@media screen and (max-width:640px) {
	#company-data > tbody > tr > td {
		width: 100%;
		display: block;
		padding: 10px 0 10px 0;
		border-bottom: none;
	}
}

#company-data > tbody > tr:last-child > td {
	border-bottom: none;
}

#company-data > tbody > tr:last-child > td a {
	color: #cc4a18;
}

#company-data > tbody > tr:last-child > td a:hover {
	text-decoration: underline;
}

#company-data > tbody > tr > td address {
	margin-bottom: 30px;
	font-style: normal;
}

#company-data > tbody > tr > td address:last-child {
	margin-bottom: 0;
}

#company-data ol li {
	list-style-type: decimal;
	margin-left: 20px;
}

#company-data table {
	border-collapse: collapse;
	font-size: 13px;
}

#company-data table th {
	width: 100px;
	border-right: 1px dotted #c9c9c9;
	font-weight: normal;
	text-align: left;
	padding: 5px 0;
}

@media screen and (max-width: 540px){
	#company-data table th {
		width: 100%;
		display: block;
		border-right: none;
		padding: 5px 0 0 0;
	}
}

#company-data table td {
	padding: 0px 0 0 20px;
}

@media screen and (max-width: 540px){
	#company-data table td {
		width: 100%;
		display: block;
		padding-bottom: 5px;
		box-sizing: border-box;
	}
}

#company-access {
	width: 1150px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1150px) {
	#company-access {
		width: auto;
		margin: 0 20px 50px 20px;
	}
}

#googlemap {
	width: 100%;
	height: 300px;
	margin-bottom: 40px;
}

@media screen and (max-width:640px) {
	#googlemap {
		margin-bottom: 20px;
	}
}

#company-access address {
	font-style: normal;
	font-size: 14px;
	text-align: center;
	line-height: 180%;
	margin-bottom: 60px;
}

@media screen and (max-width:640px) {
	#company-access address {
		margin-bottom: 20px;
	}
}

@media screen and (max-width:350px) {
	#company-access address {
		text-align: left;
	}
}

#company-access p {
	text-align: center;
}

#company-access a {
	display: inline-block;
	border: 1px solid #bfbfbf;
	padding: 20px;
	font-size: 14px;
	border-radius: 30px;
	width: 300px;
}

@media screen and (max-width:640px) {
	#company-access a {
		padding: 10px 30px;
		width: auto;
		min-width: 200px;
	}
}

#company-access a:hover {
	background: #f1f1f1;
}

#company-work {
	width: 1150px;
	margin: 0 auto 80px auto;
}

@media screen and (max-width:1150px) {
	#company-work {
		width: auto;
		margin: 0 20px;
	}
}

#company-work:after {
	clear: both;
	content: "";
	display: block;
}

#company-work > li {
	width: 265px;
	float: left;
	margin-right: 30px;
}

#company-work > li:after {
	display: block;
	content: "";
	clear: both;
}

@media screen and (min-width:1150px) {
	#company-work > li:nth-child(4n) {
		margin-right: 0;
	}
}

@media screen and (max-width:1150px) {
	#company-work > li {
		width: 47%;
		margin-right: 3%;
		margin-bottom: 3%;
		display: block;
	}
	
	#company-work > li:nth-child(2n) {
		clear: right;
	}
}

@media screen and (max-width:640px) {
	#company-work > li {
		width: auto;
		margin: 0 0 20px 0;
	}
}

#company-work img {
	float: left;
}

#company-work div {
	margin-left: 120px;
}

#company-work dt {
	font-size: 14px;
	font-weight: bold;
	padding-bottom: 10px;
	line-height: 150%;
}

#company-work dd {
	font-size: 12px;
	padding-bottom: 10px;
	line-height: 150%;
}

#company-work ul li {
	font-size: 12px;
	display: block;
	line-height: 100%;
	padding: 0 0 5px 0;
	float: left;
}

#company-work ul li:after {
	content: "｜";
}

#company-work ul li:last-child:after {
	content: "";
}

/* RECRUIT */

#recruitwrap {
	width: 1150px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1150px) {
	#recruitwrap {
		width: auto;
		margin: 0 20px;
	}
}

#recruitnav {
	margin-bottom: 30px;
}

@media screen and (max-width:1150px) {
	#recruitnav {
		display: none;
	}
}

#recruitnav:after {
	display: block;
	content: "";
	clear: both;
}

#recruitnav li {
	width: 175px;
	box-sizing: border-box;
	float: left;
	margin-right: 20px;
}

#recruitnav li:last-child {
	margin-right: 0;
}

#recruitnav a {
	display: block;
	border: 1px solid #c9c9c9;
	font-size: 14px;
	padding: 15px;
	text-align: center;
}

#recruitnav a:hover {
	background: #f7ece7;
}

#recruitnav .active {
	border: 1px solid #cd4a18;
}

#recruitcontent h2 {
	display: none;
}

@media screen and (max-width:1150px) {
	#recruitcontent h2 {
		display: block;
		padding: 60px 0 20px 0;
		margin: 0;
	}
}

@media screen and (max-width:540px) {
	#recruitcontent h2 {
		padding: 0 0 0 0;
	}
}

#recruitcontent table {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	margin-bottom: 60px;
}

@media screen and (max-width:1150px) {
	#recruitcontent table {
		width: 100%;
		margin-bottom: 30px;
	}
}

@media screen and (max-width:540px) {
	#recruitcontent table {
		margin-bottom: 10px;
	}
}

#recruitcontent table > tbody > tr > th {
	width: 180px;
	text-align: left;
	color: #cc4a18;
	border-bottom: 1px dotted #c9c9c9;
	font-size: 14px;
	padding: 20px 0;
	vertical-align: top;
}

@media screen and (max-width:900px) {
	#recruitcontent table > tbody > tr > th {
		width: 120px;
	}
}

@media screen and (max-width:640px) {
	#recruitcontent table > tbody > tr > th {
		width: 100%;
		display: block;
		padding: 10px 0 5px 0;
	}
}

#recruitcontent table > tbody > tr > td {
	border-bottom: 1px dotted #c9c9c9;
	font-size: 14px;
	padding: 20px 0;
	line-height: 150%;
}

@media screen and (max-width:640px) {
	#recruitcontent table > tbody > tr > td {
		width: 100%;
		display: block;
		padding: 10px 0 10px 0;
		border-bottom: none;
	}
}

#recruitcontent table > tbody > tr > td li:before {
	content: "・";
}

#recruitcontent p {
	margin-bottom: 20px;
}

#recruitcontent p a {
	border: 1px solid #bfbfbf;
    padding: 15px;
    width: 300px;
    margin: 0 auto;
    display: block;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
}

@media screen and (max-width:540px) {
	#recruitcontent p a {
		margin-bottom: 50px;
	}
}

@media screen and (max-width:450px) {
	#recruitcontent p a {
		margin-bottom: 40px;
		width: auto;
	}
}

#recruitcontent p a:hover {
	background: #f1f1f1;
}

#recruit-welfare {
	width: 1150px;
	margin: 0 auto 60px auto;
}

@media screen and (max-width:1150px) {
	#recruit-welfare {
		width: auto;
		margin: 0 20px 20px 20px;
		line-height: 180%;
		font-size: 13px;
	}
}

#recruit-welfare p {
	font-size: 14px;
}

@media screen and (max-width:1150px) {
	#recruit-welfare p {
		margin: 0 0 40px 0;
	}
}

@media screen and (max-width:540px) {
	#recruit-welfare p {
		margin: 0 0 20px 0;
	}
}

/* お問い合わせ */

#service-info-noimg {
	font-size: 14px;
	margin: 0 auto 40px auto;
	line-height: 150%;
	width: 1060px;
}

@media screen and (max-width:1060px) {
	#service-info-noimg {
		margin: 0 20px 20px 20px;
		width: auto;
		line-height: 180%;
		font-size: 13px;
	}
	
	#service-info-noimg br {
		display: none;
	}
}

#mailform {
	width: 1060px;
	margin: 0 auto;
}

@media screen and (max-width:1060px) {
	#mailform {
		width: auto;
		margin: 0 20px;
	}
}

#mailform table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px dotted #c9c9c9;
	margin-bottom: 90px;
}

@media screen and (max-width:1060px) {
	#mailform table {
		margin-bottom: 50px;
	}
}

@media screen and (max-width:560px) {
	#mailform table {
		margin-bottom: 20px;
	}
}

#mailform th {
	width: 220px;
	padding: 30px 0;
	text-align: left;
	font-size: 14px;
	color: #cd4a18;
	border-bottom: 1px dotted #c9c9c9;
	vertical-align: top;
}

@media screen and (max-width:660px) {
	#mailform th {
		width: 150px;
	}
}

@media screen and (max-width:500px) {
	#mailform th {
		width: 100%;
		display: block;
		border-bottom: none;
		padding: 10px 0 0 0;
	}
}

#mailform th span {
	font-size: 14px;
}

#mailform td {
	padding: 30px 0;
	text-align: left;
	border-bottom: 1px dotted #c9c9c9;
}

@media screen and (max-width:500px) {
	#mailform td {
		width: 100%;
		display: block;
		padding: 10px 0 20px 0;
	}
}

#mailform td input {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #c9c9c9;
	font-size: 14px;
	vertical-align: top;
	box-sizing: border-box;
}

#error {
	font-weight: bold;
	color: #cd4a18;
	width: 1060px;
	margin: 0 auto 40px auto;
}

@media screen and (max-width:1060px) {
	#error {
		width: auto;
		padding-top: 10px;
		margin: 0 20px 20px 20px;
	}
}

#name,
#kana {
	width: 500px;
}


#email {
	width: 600px;
}

#tel {
	width: 300px;
}

@media screen and (max-width:1000px) {
	#name,
	#kana,
	#email,
	#tel {
		width: 100%;
	}
}

label {
	display: inline-block;
	padding: 10px 0 0 0;
	font-size: 14px;
}

textarea {
	padding: 10px;
	border-radius: 5px;
	border: 1px solid #c9c9c9;
	font-size: 14px;
	width: 800px;
	box-sizing: border-box;
	height: 200px;
	box-sizing: border-box;
}

@media screen and (max-width:1000px) {
	textarea {
		width: 100%;
	}
}

#mailform dt {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
}

@media screen and (max-width:560px) {
	#mailform dt {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

#mailform dd {
	font-size: 14px;
	margin-bottom: 30px;
}

@media screen and (max-width:560px) {
	#mailform dd {
		margin-bottom: 10px;
		font-size: 13px;
		line-height: 180%;
	}
}

#contact-policy dd:last-child {
	margin: 0;
}

#mailform #contact-policy {
	border: 1px solid #c9c9c9;
	padding: 20px;
	font-size: 14px;
	overflow-y: scroll;
	height: 200px;
}

@media screen and (max-width:560px) {
	#mailform #contact-policy {
		padding: 10px;
	}
}

#mailform #contact-policy p {
	margin-bottom: 30px;
	line-height: 160%;
}

#mailform #contact-policy dt {
 	font-size: 14px;
	font-weight: normal;
	margin-bottom: 0;
	text-align: left;
	line-height: 160%;
}

#mailform #contact-policy dd {
	line-height: 160%;
}

#mailform #agree {
	text-align: center;
	padding: 30px 0 60px 0;
}

@media screen and (max-width:560px) {
	#mailform #agree {
		padding: 10px 0 30px 0;
	}
}

#mailform #agree label:nth-child(2) {
	display: inline-block;
	padding: 0 70px 0 0;
}

#mailform input[type="submit"],
#mailform input[type="reset"],
#mailform input[type="button"] {
	border: 1px solid #bfbfbf;
    padding: 15px;
    width: 300px;
    display: inline-block;
    text-align: center;
    border-radius: 30px;
    font-size: 14px;
	background: #fff;
	cursor: pointer;
	margin: 0 10px 100px 10px;
}

@media screen and (max-width:800px) {
	#mailform input[type="submit"],
	#mailform input[type="reset"],
	#mailform input[type="button"] {
		margin: 0 10px 10px 10px;
	}
}

@media screen and (max-width:540px) {
	#mailform input[type="submit"],
	#mailform input[type="reset"],
	#mailform input[type="button"] {
		margin: 0 0 20px 0;
	}
}

@media screen and (max-width:450px) {
	#mailform input[type="submit"],
	#mailform input[type="reset"],
	#mailform input[type="button"] {
		margin-bottom: 10px;
		width: 100%;
	}
}

#mailform input[type="submit"]:hover,
#mailform input[type="reset"]:hover,
#mailform input[type="button"]:hover {
	background: #f1f1f1;
}

#mailform input:disabled {
	background: #eee;
	cursor: default;
	color: #999;
}

#mailform input:disabled:hover {
	background: #eee;
}

#confirm-button {
	text-align: center;
}

@media screen and (max-width:800px) {
	#confirm-button {
		margin-bottom: 50px;
	}
}

#mailform td span {
	font-size: 12px;
	display: block;
	line-height: 150%;
	padding-top: 20px;
}

@media screen and (max-width:1000px) {
	#mailform td span {
		padding-top: 10px;
	}
}

.error {
	color: #cd4a18;
	font-size: 14px;
}

#contact-thanks {
	text-align: center;
	width: 1150px;
	margin: 0 auto 40px auto;
	font-size: 14px;
}

@media screen and (max-width:1150px) {
	#contact-thanks {
		width: auto;
		margin: 0 auto 20px auto;
	}
}

@media screen and (max-width:800px) {
	#contact-thanks {
		text-align: left;
		margin: 0 20px 20px 20px;
	}
}

#contact-totop {
	display: table;
	text-align: center;
	margin: 0 auto 100px auto;
	font-size: 14px;
}

@media screen and (max-width:1150px) {
	#contact-totop {
		margin: 0 auto 50px auto;
	}
}

@media screen and (max-width:800px) {
	#contact-totop {
		margin: 0 auto 30px auto;
	}
}

#contact-totop a {
	display: block;
	border: 1px solid #bfbfbf;
	border-radius: 50px;
	padding: 15px 60px;
}

#contact-totop a:hover {
	background: #f1f1f1;
}

/* エントリーフォーム */

#mailform .supplement {
	display: inline-block;
	margin-left: 10px;
	padding-top: 10px;
	color: #333;
}

@media screen and (max-width:1000px) {
	#mailform .supplement {
		margin-left: 0;
		padding-top: 10px;
	}
}

#mailform .select {
	width: 400px;
	position: relative;
	display: inline-block;
	height: auto;
}

#mailform select {
	padding: 10px;
	border-radius: 0px;
	width: 100%;
	background: #fff;
	font-size: 14px;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border: none;
}

@media screen and (max-width:600px) {
	#mailform .select {
		width: 100%;
	}
}

#mailform .select:before {
	position: absolute;
    top: 0px;
    right: 0;
    display: block;
    content: "";
    width: 43px;
    height: 43px;
	border-left: 1px solid #c9c9c9;
	background: url(../img/entry/icon-arrow-bottom.gif) no-repeat 15px center;
}

#mailform #zip1 {
	width: 80px;
	box-sizing: border-box;
	vertical-align: middle;
	margin-right: 5px;
}

#mailform #zip2 {
	width: 100px;
	box-sizing: border-box;
	vertical-align: middle;
	margin-left: 5px;
}

#address {
	width: 100px;
	box-sizing: border-box;
	width: 800px;
	margin-top: 20px;
}

@media screen and (max-width:1000px) {
	#address {
		width: 100%;
		display: block;
	}
}

@media screen and (max-width:1000px) {
	#birthday {
		margin-right: 10px;
	}
}

#mailform .file {
	position: relative;
}

#mailform input[type="file"] {
	position: absolute;
	top: 31px;
	left: 0;
	background: #ccc;
	width: 500px;
	height: 55px;
	opacity: 0;
	z-index: 2;
}

@media screen and (max-width:600px) {
	#mailform input[type="file"] {
		top: 0;
		width: 100%;
	}
}

#mailform td div {
	border: 1px solid #c9c9c9;
	width: 500px;
	box-sizing: border-box;
	height: 42px;
	z-index: 1;
	position: relative;
	overflow: hidden;
}

@media screen and (max-width:600px) {
	#mailform td div {
		width: 100%;
	}
}

#mailform td div span:first-child {
	display: inline-block;
	border-right: 1px solid #c9c9c9;
	padding: 10px;
	font-size: 14px;
	position: absolute;
	top: 0;
	left: 0;
}

#mailform td div input {
	display: block;
	padding: 10px;
	border: none;
	margin-left: 10px;
	width: 360px;
	height: 40px;
	font-size: 14px;
	position: absolute;
	top: 0;
	left: 110px;
}

@media screen and (max-width:600px) {
	#mailform td div input {
		display: block;
	}
}

#entry-sheet {
	margin-bottom: 40px;
	font-size: 14px;
}

@media screen and (max-width:1150px) {
	#entry-sheet {
		margin: 0 0 40px 0;
	}
}

@media screen and (max-width:540px) {
	#entry-sheet {
		margin: 0 0 20px 0;
		line-height: 180%;
		font-size: 13px;
	}
}

/* パートナーフォーム */

#url {
	width: 500px;
}

#company-name {
	width: 500px;
}

@media screen and (max-width:600px) {
	#url {
		width: 100%;
	}

	#company-name {
		width: 100%;
	}
}

/* プライバシーポリシー */
#policy {
	width: 1060px;
	margin: 0 auto;
}

@media screen and (max-width:1060px) {
	#policy {
		width: auto;
		margin: 0 20px;
	}
}

#policy dt {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 35px;
}

@media screen and (max-width:800px) {
	#policy dt {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:540px) {
	#policy dt {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

#policy dd {
	font-size: 14px;
	line-height: 170%;
	margin-bottom: 45px;
}

@media screen and (max-width:540px) {
	#policy dd {
		margin-bottom: 20px;
	}
}

#policy dd dt {
	font-size: 14px;
	margin: 40px 0 0 0;
}

#policy-disclaimer {
	width: 1060px;
	margin: 0 auto 100px auto;
}

@media screen and (max-width:1060px) {
	#policy-disclaimer {
		width: auto;
		margin: 0 20px 50px 20px;
	}
}

#policy-disclaimer dt {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 35px;
}

@media screen and (max-width:800px) {
	#policy-disclaimer dt {
		font-size: 20px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:540px) {
	#policy-disclaimer dt {
		font-size: 18px;
		margin-bottom: 10px;
	}
}

#policy-disclaimer dd {
	font-size: 14px;
	line-height: 170%;
	margin-bottom: 20px;
}

/*ペンキ王*/

#penkio-info {
	max-width: 1150px;
    margin: 0 auto 100px auto;
    font-size: 14px;
    line-height: 180%;
}

@media screen and (max-width:1150px) {
	#penkio-info {
		margin: 0 10px;
	}
}

#penkio-info p {
	margin: 0 auto 60px auto;
}

@media screen and (max-width:1150px) {
	#penkio-info p {
		margin: 0 auto 20px auto;
	}
}

#penkio-info ul {
	margin-bottom: 60px;
}

@media screen and (max-width:1150px) {
	#penkio-info ul {
		margin: 0 auto 20px auto;
	}
}

#penkio-info li:before {
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	margin-right: 5px;
	border-radius: 10px;
	background: #eb5405;
	vertical-align: middle;
}

#penkio-info a {
	color: #eb5405;
}

#penkio-info a:hover {
	text-decoration: underline;
}

/* イエコマ紹介 */

#iekoma-info {
	max-width: 1150px;
    margin: 0 auto 100px auto;
    font-size: 14px;
    line-height: 180%;
}

@media screen and (max-width:1150px) {
	#iekoma-info {
		margin: 0 10px;
	}
}

#iekoma-info p {
	margin: 0 auto 60px auto;
}

@media screen and (max-width:1150px) {
	#iekoma-info p {
		margin: 0 auto 20px auto;
	}
}

#iekoma-info dt {
	font-weight: bold;
	margin-bottom: 10px;
}

#iekoma-info dd {
	margin-bottom: 40px;
}

#iekoma-info li {
	margin-bottom: 40px;
}

#iekoma-info li:after {
	display: block;
	clear: both;
	content: "";
}

#iekoma-info li img {
	float: left;
}

@media screen and (max-width:700px) {
	#iekoma-info li img {
		float: none;
		margin: 0 auto 20px auto;
		display: block;
	}
}

#iekoma-info li span {
	display: block;
	margin-left: 330px;
}

@media screen and (max-width:700px) {
	#iekoma-info li span {
		display: block;
		margin: 0 auto;
	}
}

#iekoma-info a {
	color: #eb5405;
}

#iekoma-info a:hover {
	text-decoration: underline;
}


/* TOPペンキ王 */

#top_penkio_title {
    font-family: condor, sans-serif;
}
#top_penkio_title:before {
	content: "- ";
}

#top_penkio_title:after {
	content: " -";
}
#top_penkio {
	margin: 0 auto 20px auto;
	max-width: 1200px;
}
@media screen and (max-width:700px) {
	#top_penkio {
		font-size: 13px;
	}
	#top_penkio br {
		display: none;
	}
}
.top_penkio_tit {
	text-align:center;
	font-size: 20px;
	font-weight: bold;
	color: #F60;
	margin-bottom:3%;
}
.top_penkio_tit02 {
	text-align:center;
	font-size: 30px;
	font-weight: bold;
	color: #FFF;
	background-color: #CD4A18;
	vertical-align: middle;
	padding-top: 40px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 10px;
	margin-bottom:5%;
	border-radius: 90px;
	width: 105px;
	height:70px;
    margin-left: auto;
    margin-right: auto;
}
.top_penkio_txt{
	text-align:center;
	margin: 0 0 5% 0;
}
@media screen and (max-width: 1025px){
.top_penkio_txt {
	margin: 0 10px 5%;
}
}
.penkio_box01 {
	width:80%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:4%;
}
.penkio_box01 li {
	display:inline-block;
	text-align:left;
	vertical-align: top;
}
.penkio_box01 li:nth-child(1)  {
	width:60%;
	margin-right: 10px;
}
@media screen and (max-width:700px){
	.penkio_box01 li:nth-child(1) {
		margin-right: 0;
	}
}
.penkio_box01 li:nth-child(2)  {
	width:30%;
	margin-top: -30px;
}
@media screen and (max-width:980px) {
	.penkio_box01 li:nth-child(2)  {
		margin-top: 0;
	}
}
@media screen and (max-width:700px) {
	.penkio_box01 li:nth-child(2)  {
		margin-top: 10px;
	}
}
.penkio_box01 li:nth-child(2) img {
	width:100%;
}
.penkio_box02 {
	width:80%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:4%;
	text-align:center;
}
.penkio_box02 li {
	display:inline-block;
	text-align:left;
	vertical-align: top;
	margin-left:3%;
	margin-right:3%;
	margin-bottom:2%;
	width:21%;
}
.penkio_box02 li:nth-child(1) {
	text-align:center;
}
.penkio_box02 img {
	width:100%;
}

.penkio_box03 {
	width:80%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:4%;
	text-align:center;
}
.penkio_box03 img {
	width:40%;
}

@media screen and (max-width:700px) {
.top_penkio_txt{
	text-align:left;
}

.penkio_box01 {
	width:95%;
}
.penkio_box01 li {
	display:block;
	text-align:left;
	vertical-align: top;
	margin-left:2%;
	margin-bottom:3%;
}
@media screen and (max-width:700px) {
	.penkio_box01 li {
		margin: 10px 0 0 0;
	}
}
.penkio_box01 li:nth-child(1)  {
	width:100%;
}
.penkio_box01 li:nth-child(2)  {
	width:100%;
}

.penkio_box02 {
	width:90%;
}
.penkio_box02 li {
	vertical-align: top;
	margin-left:2%;
	margin-right:2%;
	margin-bottom:2%;
	width:27%;
}
.penkio_box03 img {
	width:100%;
}

}
@media screen and (max-width:425px) {
.penkio_box02 li {
	display:block;
	vertical-align: top;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:5%;
	width:80%;
}


}



/* リフォーム */
.reform_box {
	width:90%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:4%;
}

.reform_box p {
	margin-bottom: 30px;
}

.reform_box .reform_txt {
	text-align:center;
	width:60%;
	margin-left:auto;
	margin-right:auto;
	font-size:14px;
}

.reform_box .reform_bnr_box {
	width:30%;
	margin-left:auto;
	margin-right:auto;
	margin-bottom:1%;
}

.reform_box .reform_bnr_box img {
	width:100%;
}


#reform_choose {
	width: 1050px;
	margin: 0 auto;
	padding-bottom: 20px;
}

#reform_choose:after {	
	display: block;
	clear: both;
	content: "";
}

#reform_choose li {
	width: 300px;
	float: left;
	margin: 0 25px;
	box-sizing: border-box;
}

#reform_choose img {
}

#reform_choose dt {
	color: #cd4a18;
	text-align: center;
	font-size: 18px;
	padding-bottom: 10px;
}

#reform_choose dt span {
	line-height: 2;
}


#reform_choose dd {
	font-size: 14px;
	line-height: 170%;
}

@media screen and (max-width:700px) {

.reform_box {
	margin-bottom:5%;
}

.reform_box .reform_txt {
	width:80%;
}

.reform_box .reform_bnr_box {
	width:70%;
}
	
#reform_choose {
	width: 100%;
}
#reform_choose li {
	width: 100%;
	float:none;
	margin: 0 0px 20px 0;
	box-sizing: border-box;
}

#reform_choose img {
	margin-bottom: 0px;
}

#reform_choose dt {
	padding-bottom: 0px;
}
#reform_choose dd {
	width: 70%;
    margin-left: auto;
    margin-right: auto;
}

}

#removal {
	box-sizing: border-box;
	max-width: 700px;
	padding: 10px 30px;
	margin: 40px auto 60px;
	border: 2px solid #ccc;
	justify-content: center;
}
@media screen and (max-width: 767px){
	#removal {
		padding: 10px;
	}
}
@media screen and (max-width: 720px){
	#removal {
		margin: 40px 10px;
	}
}
#removal p {
	margin-bottom: 20px;
}
#removal .title {
	font-weight: bold;
	font-size: 18px;
	text-align: center;
}
#removal dl:after {
	content: "";
	display: block;
	clear: both;
}
#removal .name dt {
	float: left;
	margin-right: 3em;
}
#removal .name dd {
	float: left;
}
#removal .name:nth-of-type(2){
	margin-bottom: 20px;
}
#removal .address {
	margin-bottom: 20px;
}
#removal .address dt {
	float: left;
	margin-right: 3em;
}
#removal .address dd {
	float: left;
}