@charset "UTF-8";

body {
	overflow: unset;
}
body.active {
	animation: unset;
}

a {
	color: #00f;
	word-break: break-all;
	overflow-wrap: break-word;
}

.privacy_policy-container {
	background: #fff;
	width: 90%;
	max-width: 750px;
	margin: 3% auto;
	color: #000;
	padding: 2%;
	font-size: 2.3rem;
	word-break: break-all;
	overflow-wrap: break-word;
}
.privacy_policy-container h1 {
	padding: 0.5rem 1rem;
	font-weight: bold;
}

.privacy_policy-container h2 {
	padding: 0.5rem 1rem;
	border-bottom: 3px solid #000;
	width: 19rem;
	font-weight: bold;
}

.privacy_policy-container span {
	color: #ff0000;
}

@media screen and (max-width: 750px) {
	.privacy_policy-container {
		font-size: 1.4rem;
	}
	.privacy_policy-container h2 {
		width: 14rem;
	}
}



.wrapper{
	position: relative;
	min-height: 100svh;
	padding-bottom: 100px;
}

header {
	background: #000;
	width: 100%;
}
header a {
	display: block;
}
.page-top {
	width: 10%;
}
.page-top img:nth-child(1) {
	position: relative;
}
.page-top img:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	z-index: 1;
	transition: opacity 0.3s;
	width: 10%;
}
.page-top:hover img:nth-child(2) {
	opacity: 1;
}

@media screen and (max-width: 750px) {
	.page-top {
		width: 15%;
	}
	.page-top img:nth-child(2) {
		width: 15%;
	}

}
footer{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 0;
}
body:before{
	content:"";
	display:block;
	background-image:url(/assets/img/modal_texture.png);
	background-repeat:no-repeat;
	background-size:cover;
	background-position:center top;
	width:100%;
	height:100vh;
	position:fixed;
	z-index:-1;
}
@media screen and (max-width: 750px) {
	body:before{
		background-image:url(/assets/img/modal_texture_sp.png); /*背景画像*/
	}
}



