@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      about.css
 Update:         2017.3.08
 Style Info:     会社概要ページCSSファイル
----------------------------------------------------------- */
/********************************************
モバイルファースト
*********************************************/
/***ページタイトル***/
#page_title {
	height:220px;
	background:url(../img/about/bg_pagetitle.png) repeat-x;
	background-position:center bottom;
	background-size:auto 65%;
	overflow:hidden;
}
#page_title p {
	width:80%;
	margin:0 auto;
	margin-top:50px;
	text-align:center;
}
#page_title img {
	max-width:100%;
}

/***会社概要***/
#about {
	margin:20px 10px; 
}

dl.about_list {
	margin-top:20px;
	margin-bottom:60px;
	border-bottom:1px solid #e0e0e0;	
}
.about_list dt {
	width:100%;
	color:#FFF;
	padding:2px 5px;
	text-align:center;
	background:#61b042;
	border-top:1px solid #e0e0e0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.about_list dd {
	width:100%;
	margin:0;
	padding:10px;
	background:#FFF;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	text-align:right;
}
.about_list dd>ul {
	text-align:left;
}
.about_list dd>ul>li {
	margin-top:10px;
	padding-bottom:10px;
	padding-right:10px;
	border-bottom:1px dotted #e0e0e0;
	background:url(../img/about/img_arrow.gif) no-repeat;
	background-position:right center;
	background-size:8px auto;
	position:relative;
}
.about_list dd>ul>li.no_link {
	background:none;
}
.about_list dd>ul>li:last-child {
	border-bottom:none;
}
.about_list dd>ul>li>h3 {
	color:#006e36;
	border-left:3px solid #006e36;
	line-height:1.2;
	margin-bottom:10px;
}
.about_list dd>ul>li>h3 span {
	display:block;
	padding-left:5px;
}
.about_list dd>ul>li>p {
	margin-left:10px;
}
.about_list dd>ul>li>a {
	position:absolute;
	display:block;
	width:100%;
	height:100%;
	top:0;
	left:0;
	text-indent:-9999px;
	background-color: rgba(255,255,255,0.01);
}
.about_list dd>ul>li>h4 {
	color:#61b042;
	line-height:1.2;
	margin-top:10px;
	border-left:none;
}

/***カスタマーサポート***/
#customer {
	background:#e5e5e5;
	padding:15px 0 40px 0;
	text-align:center;
}
/*H2の設定*/
#customer h2 {
	font-size:24px;
	position:relative;
	font-weight:normal;
	text-align:center;
	color:#006e36;
	margin-bottom:30px;
}
#customer h2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right:0;
	margin:auto;
	content: '';
	width: 15%;
	height: 0;
	border-bottom: 2px solid #006e36;	
}
#customer ul li {
	width:250px;
	height:56px;
	margin:0 auto;
	background:url(../img/about/bg_customer.gif) no-repeat;
	background-size:auto 100%;
	margin-top:20px;
	text-align:center;
}
#customer ul li a {
	display:block;
	line-height:4.1;
	color:#006e36;
}
#customer ul li#customer_mail a {
	background:url(../img/about/icon_mail.gif) no-repeat;
	background-position:15px center;
	background-size:48px auto;
	padding-left:45px;
}
#customer ul li#customer_tel a {
	background:url(../img/about/icon_tel.gif) no-repeat;
	background-position:15px center;
	background-size:52px auto;
	padding-left:20px;
}

/***SPONSORED***/
#sponsored {
	padding:20px 10px;
}
#sponsored #sponsor_title {
	font-size:16px;
	line-height:16px;
	overflow:hidden;
}
#sponsored #sponsor_title span{
	display:inline-block;
	position:relative;
	width:100%;
}
#sponsored #sponsor_title span:after{
	content: "";
	position: absolute;
	height: 1px;
	border-top: 1px solid #ececec;
	top: 8px;
	width: 100%;
	margin-left:10px;
}
#sponsored ul {
	margin-top:15px;
	text-align:right;
}
#sponsored ul li {
	width:25%;
	display:inline-block;
	padding-left:10px;
}
#sponsored ul li img{
	max-width:100%;
}

/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:480px){
	/***ページタイトル***/
	#page_title p {
		margin-top:30px;
	}
	
	/***会社概要***/
	#about {
		margin-top:30px;
	}
	dl.about_list {
		margin-bottom:80px;
		background:#61b042;
	}
	.about_list dt {
		width:30%;
		float:left;
		color:#FFF;
		padding:10px;
		text-align:left;
		border-top:1px solid #e0e0e0;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.about_list dd {
		width:70%;
		float:left;
		margin:0;
		text-align:left;
		border-top:1px solid #e0e0e0;
		background:#FFF;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.about_list dd:after {
		clear:both;
	}
	
	/***カスタマーサポート***/
	#customer ul li {
		width:280px;
		height:63px;
	}
	#customer ul li a {
		display:block;
		line-height:4.0;
		color:#006e36;
		font-size:16px;
	}
	#customer ul li#customer_mail a {
		background:url(../img/about/icon_mail.gif) no-repeat;
		background-position:20px center;
		background-size:52px auto;
		padding-left:50px;
	}
	#customer ul li#customer_tel a {
		background:url(../img/about/icon_tel.gif) no-repeat;
		background-position:20px center;
		background-size:58px auto;
		padding-left:25px;
	}
	
	/***SPONSORED***/
	#sponsored ul li {
		width:20%;
	}

}


/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:640px){

	/***ページタイトル***/
	#page_title {
		height:300px;
	}
	#page_title p {
		margin-top:40px;
	}
	
	/***カスタマーサポート***/
	#customer {
		padding:25px 0 50px 0;
	}
	/*H2の設定*/
	#customer h2 {
		margin-bottom:20px;
	}
	#customer ul {
		width:90%;
		margin:0 auto;
	}
	#customer ul li#customer_mail {
		float:left;
	}
	#customer ul li#customer_tel {
		float:right;
	}
	
	/***SPONSORED***/
	#sponsored ul li {
		width:15%;
	}
	
}

/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:680px){
	
	/***カスタマーサポート***/
	#customer ul {
		width:600px;
		margin:0 auto;
	}
	
}


/********************************************
タブレット
*********************************************/
@media screen and (min-width:768px){

	/***ページタイトル***/
	#page_title {
		height:350px;
	}
	#page_title p {
		margin-top:50px;
	}
	
	/***会社概要***/
	#about {
		margin:40px 20px; 
	}
	
	/***SPONSORED***/
	#sponsored ul li {
		width:12%;
	}
	
}

/********************************************
タブレット　ランドスケープ
*********************************************/
@media only screen and (min-width: 1024px) {

	/***ページタイトル***/
	#page_title {
		height:400px;
	}
	#page_title p {
		margin-top:80px;
	}
	
	/***会社概要***/
	#about {
		margin:80px 40px; 
	}
	
	/***カスタマーサポート***/
	#customer ul {
		width:620px;
		margin:0 auto;
	}

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1051px) {

	/***ページタイトル***/
	#page_title {
		height:450px;
		background:url(../img/about/bg_pagetitle.png) repeat-x;
		background-position:center bottom;
		background-size:auto 60%;
	}
	#page_title p {
		margin-top:110px;
	}
	
	/***会社概要***/
	#about {
		margin:40px; 
	}
	dl.about_list {
		margin-top:30px;
	}
	.about_list dt {
		width:30%;
	}
	.about_list dd {
		width:70%;
	}
	.about_list dd>ul>li {
		padding-bottom:15px;
	}
	
	/***SPONSORED***/
	#sponsored {
		padding:10px 0px;
		margin-left:35px;
		margin-right:35px;
		border-top: 1px solid #ececec;
	}
	#sponsored #sponsor_title {
		font-size:16px;
		line-height:110px;
		overflow:hidden;
		float:left;
	}
	#sponsored #sponsor_title span{
		display:block;
		position:relative;
		width:200px;
		border-right: 1px solid #ececec;
	}
	#sponsored #sponsor_title span:after{
		content: "";
		position: relative;
		height: none;
		border-top: none;
		top: 0;
		width: none;
		margin-left:0;
	}
	#sponsored ul {
		float:left;
		margin-top:15px;
		margin-left:15px;
		text-align:left;
	}
	#sponsored ul li {
		width:91px;
	}

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1100px) {
}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1280px) {
	/***会社概要***/
	#about {
		margin-top:70px; 
	}
	#about dl {
		width:90%;
		margin:0 auto;
		margin-top:40px;
	}
	dl.about_list {
		margin-bottom:100px;
		font-size:16px;
	}
	.about_list dt {
		width:20%;
		padding:15px;
	}
	.about_list dd {
		width:80%;
		padding:15px;
	}
	/***カスタマーサポート***/
	#customer ul {
		width:750px;
		margin:0 auto;
	}
	#customer ul li {
		width:334px;
		height:75px;
	}
	#customer ul li a {
		line-height:4.2;
		font-size:18px;
	}

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1370px) {

	
}


/********************************************
PC
*********************************************/
@media only screen and (min-width: 1600px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1680px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1710px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1920px) {

}

