@charset "UTF-8";
/* 背景 */
.note #contents{
	margin: 0;
	padding: 0;	/* デフォルトでpaddingがかかってるのでそれを消す */
	background-color: #ffffff;
	background-image: url("/idea_note/images/note_background.png");
	background-repeat: repeat;
}
@media only screen and (max-width: 768px) {
	.note #contents{
		background-color: #FFD796;
		background-image: none;
	}
}


/* スマホヘッダー */
@media only screen and (max-width: 768px) {
	.note #header .slicknav_brand {
		background: #ff6e00; /* Old browsers */
		background: -moz-linear-gradient(top, #ff6e00 0%, #ffb57d 50%, #ff6e00 100%);
		background: -webkit-linear-gradient(top, #ff6e00 0%,#ffb57d 50%,#ff6e00 100%);
		background: linear-gradient(to bottom, #ff6e00 0%,#ffb57d 50%,#ff6e00 100%);
		filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ff6e00', endColorstr='#ffb57d',GradientType=0 ); /* IE6-9 */
	}
	.note #header .slicknav_nav li a{
		background-color: #ff6e00!important; color: #fff;
	}
}