@charset "utf-8";
body {
	-webkit-text-size-adjust: 100%;
	font-family: 'Helvetica Neue', Helvetica, Hiragino Sans, 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, sans-serif;
	font-size:18px;
	text-align:center;
	color:#000;
	line-height:1.7;
}

@media screen and (max-width:768px){
	body {
		font-size:3.4vw;
	}
}


a {
	transition : opacity 0.4s;
	-webkit-transition : opacity 0.4s;
	color:#000;
	opacity:1;
	outline:none;
}
a:hover {
	opacity: 0.8;
}


.only_smart{
	display:none !important;
}
@media screen and (max-width:768px){
	.only_smart{
		display:block !important;
	}
}


#wrapper{
	max-width:1000px;
	width:94%;
	margin:auto;
}


/* header */
header{
	padding:80px 0 50px;
}
header h1{
	font-size:30px;
	color:#727171;
}

@media screen and (max-width:768px){
	header{
		padding:8% 0 5%;
	}
	header h1{
		font-size:5vw;
	}
}


/* article */
article{
	padding-bottom:100px;
}
article section{
	padding-bottom:40px;
}
article section h2{
	margin-bottom:1em;
	line-height:2.2;
	font-size:20px;
	color:#fff;
	background-color:#727171;
}
article section .mt{
	margin-top:2em !important;
}
article section p{
	text-align: left;
}
article section .indent{
	display:block;
	padding-left:1em;
	text-indent:-1em;
}
article section .gray{
	margin:0 0.1em;
	padding:0 0.5em;
	display:inline-block;
	color:#fff;
	background-color:#727171;
}
article section .red{
	color:#f00
}
article section .inline{
	display:inline-block;
	margin-top:1em;
	font-size:20px;
	font-weight:bold;
	text-decoration:underline;
}
article section .btn{
	display:block;
	width:275px;
	margin:1em auto 0;
	line-height:3;
	font-size:20px;
	font-weight:bold;
	color:#fff;
	background-color:#cc6890;
}
article section ul li{
	padding-left:1em;
	text-indent:-1em;
	text-align: left;
}

@media screen and (max-width:768px){
	article{
		padding-bottom:10%;
	}
	article section{
		padding-bottom:8%;
	}
	article section h2{
		font-size:4vw;
	}
	article section .inline{
		font-size:4vw;
	}
	article section .btn{
		width:12em;
		font-size:4vw;
	}
}



