﻿/* トップエリア */
#topimage{
    width: 100%;
    height: 100%;
    background-image: url(../images/top/top_sp.jpg);
    background-size: cover;
    background-position: center;
    position: relative;
}
#topimage::before {
    content: '';
    display: block;
    padding-top: 177.86%;
}
#topimage img{
    display: block;
    position: absolute;
    width: 250px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

/* テキストエリア */
#text{
    font-size: 12px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
}

/*1.フェードインアニメーションの指定*/
.scrollanime {opacity: 0;} /*一瞬表示されるのを防ぐ*/
.fadeInDown {
    animation-name: fadeInDown;
    animation-duration: 5s;
    animation-fill-mode: forwards;
}
@keyframes fadeInDown {
    0% {
        opacity: 0;         
    }
    100% {
    opacity: 1;
    transform: translate(0);
    }
}
/*2.上下の動きを指定*/
.updown {transform: translateY(-100px);}
.downup {transform: translateY(100px);}



/* メイン */
.flexbox{
    display: flex;
    justify-content: space-between;
    width: 325px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 8px;
    gap: 8px;
}
.flexbox img{
    width: 100px;
}
.flexbox .video{
    width: 100px;
}

/* フッター */
footer{
    margin: 150px auto;
      margin-top: 150px;
      margin-right: auto;
      margin-bottom: 150px;
      margin-left: auto;
}
#sns{
    display: flex;
    justify-content: space-between;
    margin: 0px auto 50px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 50px;
      margin-left: auto;
    width: 225px;
}
#logo{
    width: 125px;
    margin: 0px auto 30px;
      margin-top: 0px;
      margin-right: auto;
      margin-bottom: 30px;
      margin-left: auto;
}
#copyright{
    text-align: center;
    font-size: 10px;
    letter-spacing: 0.02rem;
}



/* クレジット*/
.body{
    width: 300px;
    padding-top: 40px;
}
.body img{
    width: 285px;
    margin-left: auto;
    margin-right: auto;
}
.popup .credit {
    width: 94%;
    margin: 30px auto 0;
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
}

.popup .credit ul .item {
    width: 80%;
    text-align: left;
    box-sizing: border-box;
}
.pb80 {
    padding-bottom: 60px !important;
}


/* クレジットBUY */
.popup .credit ul .buy {
    width: 20%;
    text-align: right;
}

.popup .credit ul .buy a {
    border: solid 1px #000;
    display: inline-block;
    text-align: center;
    width: 35px;
    line-height: 1.7rem;
    font-weight: 600;
    transition: all .4s;
}

.popup .credit ul .buy a {
    width: 40px;
    line-height: 1rem;
}

.popup .credit ul {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}