@charset "utf-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}

img {border: none;}

body{
	background-image: url("../images/bg.webp");
	background-size: cover;
	background-position: top center;
	text-align:center;
	color: #ffffff;
	font-family: YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	height:100vh;
}
.mol{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}
.molin {
    width: 160px;
    height: 160px;
    text-align: center;
}
.molin img{
    transition: 1.0s;
    transform: rotateZ( 0deg );
}
.molin:hover img {
    transform: rotateZ( 360deg );
}
