@charset "UTF-8";
/* CSS Document */

/** 
 * 基本情報
 */
body {
	color: #000;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.5;
	text-align: justify;
	text-justify: inter-ideograph;
	background: #fff;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a:hover img {
	opacity: 0.75;
}

/*IMGにSVGをしている親要素の横幅が指定してある必要あり*/
/*IEでこれがないと表示領域がおかしくなる場合がある*/
img[src$=".svg"] {
	width: 100%;
}
/*
.contentIn {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}

 */
.clearfix:after ,
.contentIn:after,
#gNavi:after {
	content:".";
	display:block;
	height:0;
	clear:both;
	visibility:hidden;
}
	img{
		max-width: 100%;
		height: auto;
	}

@media screen and (max-width:768px) {
	.contentIn {
		width: 100%;
		padding: 0 3%;
	}
}

* {
	word-break: break-all;
}


/** 
 * メインコンテンツ
 */
/*
#content {
	margin: 30px 0;
}

@media screen and (max-width:768px) {
}
*/

/** 
 * カラムコンテンツ
 */
#content #main {
	/*background: #55bb45;//*確認用です*/
	border: solid 1px #55bb45;/*確認用です*/
	width: 100%;
	max-width: 960px;
	padding: 10px;
}

@media screen and (max-width:768px) {
	#content #main {
		width: 100%;
		max-width: none;
		margin: 0 auto;
	}
}

