@charset "utf-8";

* {
	zoom:1;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	box-sizing:border-box;
}
html {-webkit-text-size-adjust: 100%;}

/* body
----------------------------------------------- */

p {line-height:1.2;}
img {vertical-align:bottom;}
ul li {line-height:1.2; list-style:none;}
dl dt, dl dd {line-height:1.2;}
address {font-style:normal; line-height:1.2;}
a{
	text-decoration: none;
	color: #000;
}


/* anchor
----------------------------------------------- */
/*a:link {
	color:#FFF;
}
a:visited {
	color:#FFF;
}*/
a img {display:block; margin:0 auto;}

#pagescroller a {
	display:block;
}


/* clearfix
----------------------------------------------- */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
}
.clearfix {
	display: block;
}


/* form
----------------------------------------------- */
/* input[type="text"], input[type="tel"], input[type="email"], textarea{
	border:1px solid #ccc;
	padding: 5px;
	color: #000;
	width:95%;
	} */
/* input[type="radio"] {vertical-align:text-top;}	
input[type="submit"],
input[type="button"] {
	font-family:"Josefin Sans", "メイリオ", "ヒラギノ角ゴ Pro W3", "hiragino Kaku Gothic Pro", Meiryo, Osaka, "MS Pゴシック", "MS PGothic", sans-serif;
	border:1px solid #ccc;
	padding: 4px 10px;
	color: #000;
	cursor: pointer;
	}
select {
	padding:5px 0;
} */

/* マウスストーカー */
.cursor-in,
.cursor-out {
border-radius: 50%;
position: absolute;
top: -8px;
left: -8px;
pointer-events: none;
opacity:0;
}

.cursor-in {
width: 8px;
height: 8px;
background-color: #333;
z-index: 5001;
}
.cursor-in.is-active {
display:none;
}
.cursor-out {
display: flex;
justify-content: center;
align-items: center;
width: 20px;
height: 20px;
background-color: rgba(0, 0, 0, 0.5);
z-index: 5000;
transition: transform ease 0.7s;
text-align: center;
}
.cursor-out span {
display: inline-block;
transform: scale(0);
}
.cursor-out.is-active {
transform: scale(4);
background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width:559px){
	.cursor-in,
	.cursor-out{
		display:none;
	}
}