@charset "UTF-8";

body{
    /*↓この2行はブラウザの内側の隙間をなくす魔法の呪文*/
    margin: 0;
    padding: 0;
    /*ページ全体の書体を設定（なくてもOK）*/
	
	/*ページ全体の文字サイズの設定（なくてもOK）*/
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	
    background-color: #EAEAEA;
	
}

h1{display:none;}

.shoshinsyamark{
    margin-top: 204px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-left: 101px;	
}
.shoshinsyamark {
    animation: fadeInUp .9s linear;
}
@keyframes fadeInUp{
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}
.dounyu{
	position: relative;}

.dounyu img{
	margin-top: 203px;}

.title{
	position: absolute;
    top: 11.8%;
    left: 32%;}

.dounyucopy{
	position: absolute;
    top: 50%;
    left: 27.5%;}

.yazirushi{
	position: absolute;
    bottom: 2%;
    right: 4%;}






/* アニメーション前 */
.u-fade-type-up{
    transform: translateY(50px);
    opacity: 0;
}

/* トリガー発火でis-activeを付与 */
.u-fade-type-up.is-active{
    transition: .9s;
    transform: translateY(0);
    opacity: 1;
}








