@charset "utf-8";
/**
 * style.css
 */

/* index
--------------------------------------------------*/
/* layout */

@media only screen and (max-width:768px) {}

.section {
	padding: 65px 0 200px;
}
.sttl {
	margin-bottom: 40px;
}
.lead {
	margin-bottom: 80px;
	font-size: 22px;
}
.ancList li {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	float: left;
	width: 25%;
}
.ancList li a {
	position: relative;
	display: block;
	padding: 10px 0;
	text-align: center;
	text-decoration: none;
	color: #333333;
	font-size: 22px;
	background-color: #eeeeee;
}
.ancList li a:after {
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	width: 100%;
	height: 8px;
	background-color: #999999;
	opacity: 0;
	transition: 0.2s;
	-webkit-transition: 0.2s;
}
.ancList li.on a:after,
.noT .ancList li a:hover:after {
	opacity: 1;
}
.ancList li a span {
	display: block;
	padding: 8px 0 7px;
}
.ancList li + li span {
	border-left: #d2d2d2 solid 1px;
}
@media only screen and (max-width:768px) {
	.section {
		padding: 40px 0 100px;
	}
	.sttl {
		margin-bottom: 20px;
	}
	.sttl img {
		max-width: 90px;
	}
	.lead {
		margin-bottom: 30px;
		font-size: 11px;
	}
	.ancList li {
		width: 50%;
		border-bottom: #fff solid 1px;
	}
	.ancList li a {
		padding: 2px 0;
		font-size: 10px;
	}
	.ancList li a:after {
		display: none;
	}
	.ancList li.on a:after,
	.noT .ancList li a:hover:after {
		opacity: 1;
	}
	.ancList li a span {
		display: block;
		padding: 3px 0 2px;
	}
	.ancList li + li span {
		border-left: none;
	}
	.ancList li:nth-child(odd) span {
		border-left: #d2d2d2 solid 1px;
	}
	.ancList li:first-child {
		width: 100%;
	}
	.ancList li:first-child a {
		color: #fff;
		background-color: #819b5c;
	}
	.ancList li:first-child span {
		border-left: none;
	}
}


.listTtl {
	position: relative;
	margin-bottom: 22px;
	padding-top: 90px;
}
.listTtl.more {
	cursor: pointer;
}
.listTtl.more:after {
	position: absolute;
	bottom: 0;
	right: 0;
	display: block;
	content: '';
	width: 30px;
	height: 30px;
	margin-top: -15px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	background-image: url(../imgs/icon_plus.gif);
}
.listTtl.more.open:after {
	background-image: url(../imgs/icon_minus.gif);
}
.moreList {
	display: none;
}
.workList li .modal {
	display: none;
}
.workList li .ttl {
	position: relative;
	padding: 8px 0 8px 90px;
	text-align: left;
	line-height: 1.4;
}
.workList li .ttl:before {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	content: '';
	width: 75px;
	height: 75px;
	border: #333 solid 1px;
	border-radius: 40px;
}
.workList li .ttl:after {
	position: absolute;
	top: 30px;
	left: 0;
	display: block;
	content: '';
	text-align: center;
	width: 75px;
	font-size: 17px;
	line-height: 1;
}
.webList li .ttl:after {
	content: 'web';
}
.graphicList li .ttl:after {
	content: 'graphic';
}
.othersList li .ttl:after {
	content: 'others';
}
@media only screen and (max-width:768px) {
	.listTtl {
		margin-bottom: 10px;
		padding-top: 55px;
	}
	.listTtl.more:after {
		width: 18px;
		height: 18px;
	}
	.listTtl img {
		max-width: 90px;
	}
	.workList li .ttl {
		padding: 8px 0 8px 42px;
	}
	.workList li .ttl:before {
		left: -2px;
		width: 40px;
		height: 40px;
	}
	.workList li .ttl:after {
		left: -1px;
		top: 15px;
		width: 40px;
		font-size: 10px;
		letter-spacing: 0;
	}
}




#modal {
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 500;
	background-color: rgba(0,0,0,0.9);
	display: none;
}
#modalWrap {
	padding: 55px 15px;
}
#modalInner {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	overflow: hidden;
	position: relative;
	max-width: 880px;
	height: 830px;
	padding: 60px 0;
	margin: 0 auto;
}
#modalInner .mdTtl {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 20px 60px 20px 15px;
	background-color: #fff;
}
#modalInner .mdTtl .close {
	position: absolute;
	top: 0;
	right: 0;
	width: 60px;
	height: 100%;
	cursor: pointer;
}
#modalInner .mdTtl .close p {
	display: table;
	height: 100%;
	width: 100%;
}
#modalInner .mdTtl .close span {
	display: table-cell;
	vertical-align: middle;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
	line-height: 1;
}
#modalInner .mdImage {
	overflow: auto;
	max-width: 880px;
	height: 830px;
	background-color: #fff;
	-webkit-overflow-scrolling: touch;
}
#modalInner .mdImage img {
	width: 100%;
}
#modalInner .mdInfo {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 320px 20px 15px;
	background-color: #fff;
}
#modalInner .mdInfo .btn01 {
	position: absolute;
	top: 20px;
	right: 30px;
}
@media only screen and (max-width:768px) {
	#modalWrap {
		padding: 30px 15px;
	}
	#modalInner {
		height: auto;
		padding: 0 0;
		margin: 0 auto;
	}
	#modalInner .mdTtl {
		position: relative;
		padding: 10px 30px 10px 0;
		background-color: transparent;
		color: #fff;
	}
	#modalInner .mdImage {
		overflow: auto;
		height: 250px;
		background-color: #fff;
	}
	#modalInner .mdInfo {
		position: relative;
		padding: 10px 0;
		background-color: transparent;
		color: #fff;
	}
	#modalInner .mdInfo .btn01 {
		position: static;
		margin-top: 15px;
	}
	#modalInner .mdTtl .close {
		width: 30px;
	}
	#modalInner .mdTtl .close span {
		font-size: 20px;
		font-weight: normal;
		text-align: right;
	}
}



