@font-face {
	font-weight: normal;
	font-style: normal;
}

/* General button style (reset) */

@media screen and (min-width:300px) { 
    /*　画面サイズが480pxからはここを読み込む　*/
	.btn {
		border: none;
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		background: none;
		display: inline-block;
/*		text-transform: uppercase;*/
		letter-spacing: 1px;
		font-weight: 700;
		outline: none;
		position: relative;
		padding: 5px 10px;
		margin: 8px 0px;
		width: 250px;
	}
}

@media screen and (min-width:480px) { 
    /*　画面サイズが480pxからはここを読み込む	*/
	.btn {
		border: none;
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		background: none;
		display: inline-block;
/*		text-transform: uppercase;*/
		letter-spacing: 1px;
		font-weight: 700;
		outline: none;
		position: relative;

		padding: 10px 50px;
		margin: 15px 30px;

		width: 330px;
	}
}

@media screen and (min-width:768px) {
    /*　画面サイズが768pxから1024pxまではここを読み込む　*/
	.btn {
		border: none;
		font-family: inherit;
		font-size: inherit;
		color: inherit;
		background: none;
		display: inline-block;
/*		text-transform: uppercase;*/
		letter-spacing: 1px;
		font-weight: 700;
		outline: none;
		position: relative;
		padding: 25px 80px;
		margin: 15px 30px;
		width: 380px;
	}
}

/* Button 1 */
.btn-1 {
	border: 3px solid #fff;
	color: #fff;
}

.btn-1a {
	background: #fff;
	color: #000;
}


