@charset "utf-8";
/* CSS Document */

/* -------------------------------------------------

menubtn

------------------------------------------------- */
.menubtn a:before{
	content: "\f0c9";
	font-family: "Font Awesome 5 Free";
	display: block;
	z-index:10;	
	background-color: #1b1b1b;
	color:#fff;
	text-align: center;
}
 /*  PC */
@media print, screen and (min-width:769px) {
.menubtn a:before{
	position: fixed;
	font-size: 40px;
	line-height: 70px;
	width: 70px;
	left: 20px;
	top:20px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.menubtn a:before{
	position: absolute;
	font-size: 30px;
	line-height: 40px;
	width: 50px;
	left: 20px;
	top:50px;
}
}

/* -------------------------------------------------

popupArea

------------------------------------------------- */
.popupArea > div{
	text-align: center;
	margin:30px 20px 20px;
	color:#fff;
}
.closeBtn:before{
	content: "\f00d";
	font-family: "Font Awesome 5 Free";
	display: block;
	position: fixed;
	z-index:2;
	left: 20px;
	background-color: #fff;
	text-align: center;
	color:#1b1b1b;
	cursor: pointer;
}
/*  PC */
@media print, screen and (min-width:769px) {
.closeBtn:before{
	top:20px;
	right: 20px;
	font-size: 40px;
	line-height: 70px;
	width: 70px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.closeBtn:before{
	top:50px;
	right: 20px;
	font-size: 30px;
	line-height: 40px;
	width: 50px;
}
}
/* SP縦向き */
@media screen and (max-width:640px) and (orientation: portrait) {
.closeBtn:before{
	right: 10px;
}
}

/* -------------------------------------------------

headerMenu

------------------------------------------------- */
.headerMenu{
	padding-top:75px;
}
.headerMenu p a{
	display: block;
	float: left;
	background-color: #333333;
	font-weight: bold;
	margin: 0 0 2px;
	box-sizing: border-box;
	width: 100%;
	text-align: left;
	color:#fff;
	transition: .3s;
}
.headerMenu p a:before {
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	padding-right:13px;
	font-size: 0.7em;
	vertical-align: middle;
}
.headerMenu p a:hover{
	transform: translateX(5px);
	opacity: 0.8;
}
/*  PC */
@media print, screen and (min-width:769px) {
.headerMenu p a{
	font-size: 1.2em;
	padding: 20px;
}
}
/* Tablet */
@media screen and (max-width:768px) {
.headerMenu p a{
	padding: 15px;
}
}

