@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
} 
body {
	font-size: 16px;
	letter-spacing: 1px;
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic,"ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic",  sans-serif;
}
a{
	text-decoration: none;
}
#wrap{
  max-width: 562.5px;
  margin: 0 auto;
}
#wrap {
    background: white;
    box-shadow: 0px 0px 20px #00000036;
}
img {
    width: 100%;
    vertical-align: bottom;
}
.cta {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}
.cta a{
	display:block;
	transition:all 0.3s;
}
.cta a:hover {
    opacity: 0.6;
}
.logo {
    text-align: center;
    margin: 20px 0;
}
div#copyright {
    text-align: center;
    color: white;
    background: #ed6500;
    padding: 10px;
}
.cta_box {
    padding: 50px;
}
.logo img {
    width: 60%;
}



.mocchiri {
    animation: mocchiri 3s infinite;
}
@keyframes mocchiri {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}