@charset "utf-8";


/*------------------------------------------------------------------------------------------------------------------------------------------------------------------

  このsample.cssはサンプルページ専用のCSSですので、好みのデザインをご自身でCSSによって作ることができる方には必要ありません。
  極端な話、このCSSが無かったとしてもコンテンツ・メーカーは正常に動作します。
  
  もし新着情報エリアのCSSだけ必要な場合( 既存のサイトに組み込んだ時など )は、以下にある div#contents-maker-news に関する部分だけを使用すればOKです。

------------------------------------------------------------------------------------------------------------------------------------------------------------------*/




/* -- .sample-class ----------------------------------------------------------------------- */

.sample-class {
	width: 1000px;
	margin: 50px auto;
	padding: 30px 40px;
	background: #ffffff;
	border: 1px solid #cccccc;
	border-radius: 7px;
	box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );
}

.sample-class h2 {
	font-size: 135%;
	font-weight: bold;
	border-bottom: 1px solid #333333;
}

.sample-class p {
	margin-top: 20px;
}

.sample-class p + p {
	margin-top: 40px;
}


.background-blue {
	background: #aaddff;
}




/* -- div#contents-maker-news ----------------------------------------------------------------------- */

div#contents-maker-news * {
	margin: 0;
	padding: 0;
	box-sizing: content-box;
}


div#contents-maker-news {
	font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 16px;
	color: #1A1A1A;
}


div#contents-maker-news div.cm-box {
	padding: 15px 0;
	border-bottom: 1px dotted #1A1A1A;
}

div#contents-maker-news dl dt {
	font-weight: bold;
	margin: 0 0 3px;
}








/* -- responsive ----------------------------------------------------------------------------------------------------------------------- */

/* 1000pixel start */
@media screen and ( max-width: 1000px ) {


.sample-class {
	width: 95%;
	padding: 20px 5%;
}


}
/* 1000pixel end */








