* {
	margin:0;
    padding:0;
    box-sizing: border-box;
}

html {
    overflow-y:scroll;
    font-size: 62.5%;

}

img {
	border:0;
}
a {
    text-decoration: none;
    color: #333;
    cursor: pointer;
}
ul {
    list-style-type: none;
}
p {
    color: #333;
}
h1, h2, h3 {
    color: #333;
}
body {
    font-family: "MyYuGothic","YuGothic","Yu Gothic M","Yu Gothic Medium","MyHiragino","メイリオ",Meiryo,Osaka,"MS UI Gothic","ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    text-rendering: optimizeLegibility;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
    font-size: 1.6rem;/* 16px*/
    line-height: 2;
}
.effect-fade {
    opacity : 0;
    transform : translate(0, 30px);
    transition : all 1s;
}

.effect-fade.effect-scroll {
    opacity : 1;
    transform : translate(0, 0);
}