/*
	Theme Name: gw_custom_vr5
*/
.toppage{
color: #fff;
text-align: center;
}
/* wordpress
----------------------------------------------------- */

.alignleft {
	float: left;
	padding-top: 10px;
	padding-right:10px;
	padding-bottom:10px;
}
.alignright {
	float: right;
	padding-top: 10px;
	padding-left:10px;
	padding-bottom:10px;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	clear: both;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* pagination
----------------------------------------------------- */
.pagination {
	clear: both;
	padding: 20px 0;
	position: relative;
	font-size: 14px;
	line-height: 14px;
	text-align: center;
}
.pagination-box {
	display: inline-block;
}
.pagination span, .pagination a {
	display: block;
	float: left;
	margin: 2px 2px 2px 0;
	padding: 10px 15px 10px 15px;
	text-decoration: none;
	width: auto;
	color: #fff; /* 通常の文字色 */
	background: #000000; /* 通常の背景色 */
}
.pagination a:hover {
	color: #FFFFFF; /* マウスホバー時の文字色 */
	background: #999999; /* マウスホバー時の背景色 */
}
.pagination .current {
	padding: 10px 15px 10px 15px;
	color: #FFFFFF; /* マウスホバー時の文字色 */
	background: #999999; /* マウスホバー時の背景色 */
}
@media only screen and (max-width: 413px) {
	.pagination {
		font-size: 12px;
		line-height: 12px;
	}
	.pagination span, .pagination a {
		padding: 8px 10px 8px 10px;
	}
	.pagination .current {
		padding: 8px 10px 8px 10px;
	}
}

/* popup */

.popup-overlay {

	display: none;

	position: fixed;

	left: 0;

	top: 0;

	width: 100%;

	height: 100%;

	background-color: rgba(0, 0, 0, 0.5);

	z-index: 999;

}


.popup-content {

	display: none;

	position: fixed;

	left: 50%;

	top: 50%;

	transform: translate(-50%, -50%);

	background-color: white;

	padding: 30px 20px 30px 20px;

	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);

	z-index: 1000;

	text-align: center;
	font-size: 1.2em;
	line-height: 1.5;
	border-radius: 0;

	width: 500px;

}


#closePopup {

	position: fixed;

	top: 20px;

	right: 20px;
cursor: pointer;
width: 20px;
	height: 20px;
}


#closePopup::before,

#closePopup::after {

	/* 共通設定 */

	content: "";

	position: absolute;

	top: 50%;

	left: 50%;

	width: 2px;

	height: 16px;

	background: #333;

}


#closePopup::before {

	transform: translate(-50%, -50%) rotate(45deg);

}


#closePopup::after {

	transform: translate(-50%, -50%) rotate(-45deg);

}


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

	.popup-content {

		width: 85%;
		font-size: 1em;

	}

}