* {
    box-sizing: border-box;
}
body {
	font-family: "Noto Sans JP", serif;
	font-weight: 400;
	color: #555;
	overflow-x: hidden;
	line-height: 2;
	box-sizing: border-box;
	background-color: #fff !important;
  }
html {
  -webkit-text-size-adjust: 100%;
}
.body-no-scroll {
	overflow: hidden;
}

a img {
    transition: opacity 0.3s ease; 
  }
a {
	color: #6F6E69;
	text-decoration: none;
	transition: all 0.3s ease; 
} 
a:hover {
	color: #7e0739;
} 
a:hover img {
	opacity: 0.7; 
}
.sp-br {
	display: none;
}
.pc {
  display: block;
}
.sp {
  display: none;
}

.btn {
	position: relative;
	overflow: hidden;
	z-index: 0;
	background-color: #6F6E69;
	transition: color 0.3s ease;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0; left: -100%;
	width: 100%;
	height: 100%;
	background: #9E8474; /* hover時の背景色 */
	z-index: -1;
	transition: left 0.3s ease;
}

.btn:hover::before {
  left: 0;
}
.btn:hover {
  color: white; /* 色変化があれば */
}

@media screen and (max-width: 1024px) {
	body {
		line-height: 1.8;
	  }
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
@media screen and (max-width: 768px) {
	.sp-br {
		display: block;
	}
}
#loader-bg {
	background: #fff;
	height: 100%;
	left: 0px;
	position: fixed;
	top: 0px;
	width: 100%;
	z-index: 1002;
}
#loader-bg img {
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
}
@media screen and (max-width: 640px) {
	#loader-bg {
		height: 100vh;
	}

	#loader img {
		width: 30vw;
	}
}
}
/*--ページナビ--*/
.wp-pagenavi {
	clear: both;
	text-align: center;
	margin: 50px auto!important;
	display: block;
	width: fit-content;
}

.wp-pagenavi-wrapper {
  text-align: center;
  margin: 50px auto;
}

.wp-pagenavi a, .wp-pagenavi span {
	text-decoration: none;
	padding: 7px 14px;
	margin: 2px;
	color: #000;
	border: 1px solid #000;	
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
	opacity: 0.5;
	transition: 0.5s;
}

.wp-pagenavi span.current {
	color: #fff;
	background: #000;
	border: 1px solid #000;	
}

@media screen and (max-width: 768px) {
	.wp-pagenavi {
		clear: both;
		text-align: center;
		margin-top: 20px;
		margin-bottom: 50px;		
	}
}

/*404*/
/*section_error*/
.section_error {
	margin: 100px auto 0;
	width: 100%;
}
.section_error p {
	text-align: center!important;
}
.section_error_title h2 {
	margin-bottom: 20px;
}