@charset "utf-8";
@import url("base.css");



/*共通設定-------------------------------------------------------------------------------------------------------------------------------------*/

/*メイン*/
h1{
	background-image: url(../img/question/top_img.png);
}
#question{
	margin: 4em auto ;
}
#question dt{
	width: 100%;
	font-size: 119%;
	font-weight: bold;
	color: #2e3c9b;
	border-bottom: 1px solid #E7E7E7;
	margin: 0 0 0.5em;
	padding: 0 0 0.5em;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:space-between;
}
#question dd{
	width: 100%;
	display: -webkit-flex; /* Safari */
	display: flex;
	-webkit-flex-wrap: wrap; /* Safari */
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:space-between;
}
#question dt:nth-child(n+2){
	margin: 2em 0 0.5em;
}
#question i{
	width: 4%;
	position: relative;
}
#question span{
	width: 96%;
}
#question i img{
	position: absolute;
	top: 0.7em;
	left: 50%;
	-webkit-transform: translate(-50%, -50%); /* Safari用 */
	transform: translate(-50%, -50%);
	width: 30px;
}

/*共通設定ここまで-------------------------------------------------------------------------------------------------------------------------------------*/

/* pc */
@media screen and (min-width: 1300px)  {

/*メイン*/
#question{
	width: 1280px;
}
}

/* tablet以下共通 ------------------------------------------------------------------------------------------*/
@media only screen and (max-width: 1299px)  {
	
/*メイン*/
#question{
	width: 96%;
}
}
/* tablet以下共通ここまで ------------------------------------------------------------------------------------------*/

/* tablet1 */
@media only screen and (min-width: 1024px) and (max-width: 1299px)  {

/*メイン*/
	
}

/* tablet2  */
@media only screen and (min-width: 768px) and (max-width: 1023px) {

/*メイン*/
#question i{
	width: 5%;
}
#question span{
	width: 95%;
}
}

/* tablet3  */
@media only screen and (min-width: 500px) and (max-width: 767px) {

/*メイン*/
#question{
	margin: 2em auto ;
}
#question i{
	width: 6%;
}
#question span{
	width: 94%;
}
#question i img{
	width: 22px;
}
}

/* smartPhone1 */
@media only screen and (max-width: 499px) {

/*メイン*/
#question{
	margin: 2em auto ;
}
#question i{
	width: 8%;
}
#question span{
	width: 92%;
}
#question i img{
	width: 20px;
}
}