/*リセット*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style:normal;
	font-size: 100%;
	vertical-align: baseline;
}
ol, ul, dl{
    list-style:none;
}

html{
	margin:0;
	padding:0;
}

body{
	font-size:18px;
	line-height:1.6;
	color:#333;
}

.pc{
	display:block;
}
.sp{
	display:none;
}
.pcVisble{
	visibility:visible;
}
.spVisble{
	visibility:hidden;
}

a:link,a:visited {
    color:#333;
	text-decoration: none;
	cursor:pointer;
}

.thick{
	font-weight:600;
}
.red{
	color:#f00;
}

/*メイン-----------------------*/
.wrap{
	background:#efefef;
}
.mainvis{
	width:100%;
	max-width:1000px;
	margin:0 auto;
}
.mainvis img{
	width:100%;
}

.main{
	width:90%;
	max-width:1000px;
	margin:0 auto;
	padding:40px 50px 50px;
	background:#fff;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
}
.main h1{
	margin:0 auto 30px;
	text-align:center;
	font-weight:600;
	font-size:24px;
	color:#2e8b57;
}
.main h2{
	margin:0 auto 10px;
	font-weight:600;
	font-size:24px;
	line-height:1;
	letter-spacing:-1px;
}
.main h2 span{
	font-size:16px;
}

.detail{
	margin:0 auto 30px;
	line-height:1.8;
}
.detail:nth-of-type(2){
	margin:0 auto 60px;
}
.attention{
	margin:5px 0;
	font-weight:600;
}
table{
	width:100%;
	margin:0 0 60px;
	border:1px solid #ccc;
	border-collapse:collapse;
	background:#fff;
}
table td{
	padding:15px;
	text-align:left;
	vertical-align:middle;
	border-collapse:collapse;
	border:1px solid #ccc;
}
table tr td:first-of-type{
	text-align:center;
	font-weight:600;
	border-bottom:1px solid #999;
	color:#8b0000;
}
table tr:nth-of-type(1) td:first-of-type{
	background:#ffe4c4;
}
table tr:nth-of-type(2) td:first-of-type{
	background:#ffefd5;
}
table tr:nth-of-type(3) td:first-of-type{
	background:#fdf5e6;
}
table tr:nth-of-type(4) td:first-of-type{
	background:#ffe4e1;
}
table tr:nth-of-type(5) td:first-of-type{
	background:#faf0e6;
}

table td span{
	display:inline-block;
	padding:2px 5px;
	margin:0 2px 5px;
	text-align:center;
	border:1px solid #ccc;
	border-radius:8px;
	background:#efefef;
}

a.form{
	display:block;
	width:40%;
	margin:15px auto 0;
	padding:20px 0;
	border-radius:14px;
	border:2px solid #fff;
	color:#fff;
	font-size:18px;
	font-weight:600;
	text-align:center;
	line-height:1;
	box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.2);
	background: rgb(178,1,85);
	background: linear-gradient(180deg, rgba(178,1,85,1) 0%, rgba(241,159,206,1) 62%, rgba(239,118,169,1) 87%);
}

.copyright{
	width:90%;
	margin:30px auto 30px;
	font-size:11px;
	color:#666666;
	text-align:center;
}

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

	.pc{
		display:none!important;
	}
	.sp{
		display:block!important;
	}
	.pcVisble{
		visibility:hidden;
	}
	.spVisble{
		visibility:visible;
	}


	.main{
		width:100%;
		margin:0 auto;
		padding:30px 5%;
		background:#fff;
	}
	.tablearea{
		width:100%;
		overflow-x:scroll;
	}
	table td{
		padding:10px 8px;
	}
	table tr td:first-of-type{
		width:25%;
		font-size:16px;
	}
	
	a.form{
		width:80%;
	}
}

