@charset "utf-8";

#wrap{ opacity: 1; }
	
/* ヒント */
#hint{margin: 60px auto;}
#hint::before{
	position: absolute;
	content: '';
	top: 0;
    right: 40%;
    bottom: -50px;
    left: 0;
	background: -webkit-linear-gradient(bottom, rgba(154,48,39,1) 10%, rgba(77,133,120,1));
	background: -o-linear-gradient(bottom, rgba(154,48,39,1) 10%, rgba(77,133,120,1));
	background: linear-gradient(to bottom, rgba(154,48,39,1) 10%, rgba(77,133,120,1));
	z-index: 1;
}
#hint .contents-wrap{box-shadow:6px 6px 0px 0px #9a3027;}
#hint dl{
	position: relative;
	margin: 5% auto 18% auto;
	text-indent: -8px;
	margin-left: 8px;
	font-size: .16rem;
	line-height: 1.65em;
}
#hint dl dt{
	position: relative;
	margin: 5% auto 3% auto;
	padding: 0 0 0 8px;
	text-align: left;
	font-size: .15rem;
	font-weight: 700;
}
#hint dl dt:before {
	position: absolute;
	top:5px;
	left:-18px;
    content:  "";
    width:  15px;
    height:  15px;
    display:  inline-block;
	background-image: url("../img/icon_r.png");
	background-repeat: no-repeat;
	background-position: 50% 0;
	background-size: contain;
}
#hint dl dd{
	position: relative;
	margin: 0 auto 8% auto;
	padding: 0;
	text-align: left;
	text-indent: 1px;
	display: none;
	font-size: .13rem;
}

#hint ul{
	position: relative;
	margin: 0 auto 12% auto;
	display:-webkit-box;
	display:-webkit-flex;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
#hint ul li{
	position: relative;
	margin: 3% 0;
	padding: 0 ;
	width: 50%;
	font-size: .14rem;
	color: #ca1717;
	text-decoration: underline;
}



/* ----- pc ----- */
@media screen and (min-width: 641px) {
	
	/* ヒント */
	#hint{margin: 60px auto 150px auto;}
	#hint::before{top: 0;right: calc(50% + 240px);bottom: -150px;}
	#hint .contents-wrap{box-shadow:15px 15px 0px 0px #9a3027;}
	#hint dl{
		margin: 0 auto 150px auto;
		text-indent: -20px;
		width: 550px;
	}
	#hint dl dt{
		margin: 20px auto 10px auto;
		padding: 0 0 0 20px;
		font-size: .18rem;
	}
	#hint dl dt:before {
		top:3px;
		left:-36px;
		width: 25px;
		height: 27px;
	}
	#hint dl dd{margin: 0 auto 50px auto; font-size: .16rem;}

	#hint ul{margin: 50px auto 100px auto; width: 700px;}
	#hint ul li{
		margin: 10px 0;
		width: 200px;
		font-size: .18rem;
	}

		
}