
/* 初期設定
================================================= */
html{
	font-size: 62.5%;
}

body {
	width: 100%;
}

h1, h2, h3, h4, h5, h6, p, a, span, dt, dd{
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media only screen and (min-width: 768px) {
	h3{
		font-size: 15px;
		line-height: 1.5;
		letter-spacing: 0.05em;
		word-break: break-all;
	}
	
	p{
		font-size: 15px;
		line-height: 1.5;
		letter-spacing: 0.05em;
		word-break: break-all;
	}
}

@media only screen and (max-width: 767px){
	h3{
		font-size: 2.6vh;
		line-height: 1.5;
		letter-spacing: 0.05em;
		word-break: break-all;
	}
	
	p{
		font-size: 2.2vh;
		line-height: 1.5;
		letter-spacing: 0.05em;
		word-break: break-all;
	}
}

/* img
================================================= */
img {
	max-width: 100%;
	vertical-align: middle;
}

/* width（メインコンテンツの横幅設定）
================================================= */
.contents_box {
	width: 1080px;
	margin: 0 auto;
}

/* flex_box
================================================= */
.flex{
	display:flex;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:-ms-flexbox;
	-js-display:flex;
}

/* 表示/非表示（端末別）
================================================= */
@media only screen and (min-width: 768px){
	.pc_none{
		display: none;
	}
}

@media only screen and (max-width: 767px){
	.sp_none{
		display: none;
	}
}