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

*{ margin:0; padding:0; box-sizing: border-box; }

body{
	width: 100%; 
	max-width: 900px;
	margin: 0 auto;
	text-align: center; }

/*スマホサイズ
--------------------------------------------------*/
.caption img { width: 100%; }
.btn_gray {
	display: flex;
	flex-direction: column;
	width: 90%;
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin: 18px auto 0px ;
	padding: 0px 0px 3px 0px;
	font-size: 1.3em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	background-color: #bebebe;
	border: solid 4px #878787;
	border-radius: 100px; }

.btn_red {
	display: flex;
	flex-direction: column;
	width: 90%;
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin: 18px auto 0px ;
	padding: 0px 0px 3px 0px;
	font-size: 1.3em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	background-color: #FF0004;
	border: solid 4px #000;
	border-radius: 100px;
	transition: .0.5s; }
.btn_red:hover {
	background: #fc6a6a;
	border: solid 4px #363636;
	color: white; }

.copyright {
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 35px;
	font-size: 12px;
	color: #bcb4ba; }

/*PCサイズ
--------------------------------------------------*/
@media (min-width:601px){
.btn_gray {
	display: flex;
	flex-direction: column;
	width: 90%;
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin: 30px auto 0px ;
	padding: 0px 0px 4px 0px;
	font-size: 2.1em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	background-color: #bebebe;
	border: solid 7px #878787;
	border-radius: 100px; }
	
.btn_red {
	display: flex;
	flex-direction: column;
	width: 90%;
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin: 30px auto 0px ;
	padding: 0px 0px 4px 0px;
	font-size: 2.1em;
	font-weight: 700;
	text-decoration: none;
	color: #fff;
	background-color: #FF0004;
	border: solid 7px #000;
	border-radius: 100px;
	transition: .0.5s; }
.btn_red:hover {
	background: #fc6a6a;
	border: solid 7px #363636;
	color: white; }

.copyright {
	font-feature-settings: "palt";
	font-family: 'Noto Sans JP', sans-serif;
	margin-top: 40px;
	font-size: 15px;
	color: #bcb4ba; }}