body{
    background: #ffd900;
    color: #231815;
    font-family: 'メイリオ','ヒラギノ角ゴシック',"游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana,"Avenir Next", sans-serif;
    line-height: 1.5;
    -webkit-text-size-adjust: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    overflow-x: hidden;
}


/*--------   main   --------*/
#maincont{
    width: 1200px;
    padding-top: 15em;
    height: auto;
    margin: 0 auto;
}

/*--------   logo   --------*/
#logo{
    position: relative;
}

#logo img{
    width: 300px;
}
#logo img:nth-child(1){
    position: absolute;
    width: 15%;
    top: -130px;
    left: 340px;
}
#logo img:nth-child(2){
    position: absolute;
    top: -180px;
    right: 300px;
}
#logo img:nth-child(3){
    display: inherit;
    margin: 0 auto;
}

/*--------   contents   --------*/
#maincont p{
    text-align: center;
    font-weight: 500;
    margin-top: 20px;
}

/*--------   bottomicon   --------*/
.icon{
    text-align: center;
    display: block;
    width: 400px;
    margin: 0 auto;
    margin-top: 35px;
}

.icon ul{
    display: inline-block;
    list-style: none;
    padding: 0;
    margin: 0;
}

.icon ul li{
    display: inline-block;
    height: auto;
}

.icon ul li img{
    display: inline-block;
    width: 60px;
    padding: 0 10px;
}

/*--------   sns   --------*/
#sns{
    text-align: center;
}

#sns img{
    width: 200px;
    transition: all 500ms;
}

#sns img:hover{
    position: relative;
    transform: translate(-2px,-2px); 
    -webkit-transform: translate(-2px,-2px);
    -moz-transform: translate(-2px,-2px);
    transition: all 200ms;
    filter: drop-shadow(2px 2px 0px #FFF);
}

/*--------   jq motion   --------*/
.iconrotate{
    display: inline-block;
    animation-name: iconrotate;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.2s;
}

@keyframes iconrotate{
    0%{
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
    }
    100%{
        -webkit-transform: rotateY(720deg);
        -moz-transform: rotateY(720deg);
    }
}

/*--------   cutin motion   --------*/
.bottom{
    opacity: 0;
    animation-duration: 0.4s;
}

.bottomin{
    opacity: 1!important;
    transition: all 1000ms;
    animation-name: bottomin;
    animation-iteration-count: 1;
}

@keyframes bottomin{
    0%{
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
    }

    100%{
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
    }
}

.left,.right{
    opacity: 0;
    animation-duration: 0.48s;
    vertical-align: middle!important;
}
.leftin{
    opacity: 1!important;
    transition: all 1000ms;
    animation-name: leftin;
    animation-iteration-count: 1;
}

@keyframes leftin{
    0%{
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
    }

    100%{
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
    }
}

.rightin{
    opacity: 1!important;
    transition: all 1000ms;
    animation-name: rightin;
    animation-iteration-count: 1;
}

@keyframes rightin{
    0%{
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
    }

    100%{
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
    }
}


/*--------   motion   --------*/
/*--------   fukidashi   --------*/
.motion{
    display: inline-block;
    animation-name: fukidashi;
    vertical-align: middle;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 1.5s;
}

@keyframes fukidashi{
    0%{
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
    }

    100%{
        -webkit-transform: translateY(-5px);
        -moz-transform: translateY(-5px);
    }
}

/*--------   maincara   --------*/
.motion2{
    display: inline-block;
    animation-name: cara;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-duration: 0.25s;
}

@keyframes cara{
    0%{
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
    }

    100%{
        -webkit-transform: translateY(-13px);
        -moz-transform: translateY(-13px);

    }
}

