@charset "utf-8";


/*------------------------------------------------------------------------------------

  このsample-page.cssはサンプルページ専用のCSSですので、
  好みのデザインをご自身でCSSによって作ることができる方には必要ありません。

  自分の好みのHTMLタグを template.html に記述し、
  それに応じた自分好みのCSSを作ればOKです。

------------------------------------------------------------------------------------*/


* {
	margin: 0;
	padding: 0;
	font-size: 1.1em;
	font: inherit;
	box-sizing: border-box;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}


body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
	color: #454545;
	line-height: 1.8;
	background: #EBF8E5;
	word-wrap: break-word;
}

.sample-class {
	width: 95%;
	margin: 5px 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 ------------box-shadow: 0 0 7px rgba( 0, 0, 0, 0.2 );----------------------------------------------------------- */

.contents-maker-2-area {
	width: 100%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.box {
	width: 100%;
	margin: 0 3px 3px 0;
	padding: 20px 30px;
	background-color: #EBF8E5;
	border-bottom: 1px dotted #777474;
	
}

.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: 95%;
}

.box p {
	margin: 5px 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%;
}


}








