@charset "UTF-8";
*{
	margin:0;
	padding:0;
	font-family: Arial, Helvetica, "sans-serif";
	font-weight: bold;
	text-align:center;
}

a{
	color:#F2B905;
	text-decoration: none;
}

header{
	height: 100vh;
	width: 100%;
	text-align:center;
	display:flex;
	background-color:#F2B905;
}
.header{
	margin:auto;
}
.header p{
	font-family: 'Permanent Marker', cursive;
	font-size:150%;
	line-height:0%;
}

.menu{
	padding:50px 0;
	width: 100%;
	height:30%;
	background-color:#000000;
	color: #eee;
}
.menu h2{
	line-height:250%;
}
.menu p{
	display: inline-block;
	padding:5px;
	cursor: pointer;
  transition: all 0.3s ease 0s;
}
.menu p:hover{
	opacity: 0.5;
	text-decoration: underline;
}

main{
	background-color: transparent;
	background-image:
	 radial-gradient(#F2B905 1px, transparent 1px);
	background-size: 10px 10px;
}

.contents h2{
	box-shadow: 5px 0px 5px rgba(0,0,0,0.25);
	background-color:#F2B905;
	color:#000000;
	padding:20px 0px;
	margin:0px 0px 20px;
}
.contents p{
	width:85%;
	text-align:center;
	margin: 10px auto;
	font-weight:550;
	
}
.content a{
	margin:20px auto 20px;
}

footer{
	
	padding:20px 0;
	background-color:#000000;
	color: #eee;
}







/*ボタン*/
a.cp_btn {
	display: inline-block;
	position: relative;
	width: 160px;
	padding: 0.4em;
	text-align: center;
	border-top: 2px solid #FBC02D;
	border-bottom: 2px solid #FBC02D;
	text-decoration: none;
	font-weight: bold;
	color: #FBC02D;
}
a.cp_btn:before, a.cp_btn:after{
	content: '';
	position: absolute;
	top: -7px;
	width: 2px;
	height: calc(100% + 14px);
	background-color: #FBC02D;
	transition: .3s;
}
/*ボタン囲み*/
a.cp_btn:before {
	left: 7px;
}
a.cp_btn:after {
	right: 7px;
}
/*ボタンエフェクト*/
a.cp_btn:hover:before{
	top: 0px;
	left:0;
	height: 100%;
}
a.cp_btn:hover:after{
	top: 0px;
	right: 0;
	height: 100%;
}