@charset "utf-8";


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

  このsample-page.cssはサンプルページ専用のCSSですので、
  好みのデザインをご自身でCSSによって作ることができる方には必要ありません。

  自分の好みのHTMLタグを template.html に記述し、
  それに応じた自分好みのCSSを作ればOKです。

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


* {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font: inherit;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}



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

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

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

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




/* -- contents-maker-2-area ----------------------------------------------------------------------- */

.contents-maker-2-area {
	width: 1000px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

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

.box:nth-child( 3n ) {
	margin-right: 0px;
}

.box h2 {
	font-size: 120%;
	font-weight: bold;
	border-bottom: 1px solid #454545;
}

.box ul {
	margin: 10px 0;
	list-style-type: none;
	font-size: 80%;
}

.box p {
	margin: 10px 0;
}








/* -- スマホ設定 ----------------------------------------------------------------------- */

@media screen and ( max-width: 1000px ) {


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


.contents-maker-2-area {
	width: 95%;
	display: block;
}

.box {
	width: 100%;
	padding: 20px 5%;
}


}








