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

main .inner{
	width: 1000px;
	margin: auto;
	padding: 0 0 40px;
}

.aboutList li{
	display:flex;
}

.aboutList li .title{
	float: left;
	display: block;
	width: 30%;
	background-color: #e6e6de;
	text-align: center;
	background-color: #FFF;
	padding: 18px 20px;
	box-sizing: border-box;
	letter-spacing: 1px;
	line-height: 1.5;
}

.aboutList li .data{
	float: left;
	display: block;
	width: 70%;
	background-color: #FFF;
	padding: 18px 20px;
	box-sizing: border-box;
	letter-spacing: 1px;
	line-height: 1.5;
}

.aboutList li{
	position: relative;
	margin-bottom: 10px;
	z-index: 1;
}

.aboutList li:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #b4b4aa;
	top: 3px;
	right: -3px;
	z-index: -1;
}

/*画面サイズが1400px以下の場合*/
@media screen and (max-width: 1400px) {

}

/*画面サイズが1200px以下の場合*/
@media screen and (max-width: 1200px) {
	main .inner{
		width: auto;
		margin: auto;
		padding: 0 20px 40px;
	}
}

/*画面サイズが1000px以下の場合*/
@media screen and (max-width: 1000px) {
	
}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {
	.aboutList li{
		font-size: 12px;
	}
}


/*画面サイズが600px以下の場合*/
@media screen and (max-width: 600px) {

}

/*画面サイズが560px以下の場合*/
@media screen and (max-width: 560px) {

}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {

}

/*画面サイズが400px以下の場合*/
@media screen and (max-width: 400px) {

}