@charset "UTF-8";




/* 下から上のフェードイン */
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}



/* ******************************************
	pagetop
****************************************** */
.gotop, .gohome {
	display: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	overflow:hidden;
	cursor: pointer;
	-webkit-transition: all 0.7s linear;
	-o-transition: all 0.7s linear;
	transition: all 0.7s linear;
	z-index:9000;
}
.gohome {
	right: 55px;
}
#top, #gohome {
	background-color: rgba(255,255,255,0.9);
	border: 1px solid #3e3a39;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	text-align:center;
	position: relative;

	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
#top::before {
	content: '';
	display: block;
	width: 8px;
	height: 8px;
	border-top: 1px solid #3e3a39;
	border-right: 1px solid #3e3a39;
	transform: rotate(-45deg);
	position: absolute;
	top: 13px;
}
#gohome::before {
	content: '';
	display: block;
	width: 20px;
	height: 20px;
	background-image: url(../images/common/home_filled_24dp.svg);
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 600px){
}

