/* 背景 */
.back {
    width: 100%;
    top: 0;
    left: 0;
    background-color: #fff;
}

/* コンテンツ */
.content {
    display: block;
    margin: auto;
    padding-top: 135px;
    padding-bottom: 20px;
    width: 70%;
    min-width: 900px;
    background-color: #fff;
}

/* ロゴ動画 */
.content .VITEmov {
    width: 100%;
}

/* プレゼントについて */
.content .about-gifts {
    margin: 0 20px 0 20px;
    padding: 8px;
    outline-style: outset;
    outline-width: 5px;
    outline-color: rgb(255, 85, 0);

    h1 {
        font-size: 30px;
        color: rgb(255, 85, 0);
    }

    h2 {
        font-size: 20px;
        color: rgb(255, 85, 0);
    }

    .line {
        width: 100%;
        height: 3px;
        margin: -15px 0 10px 0;
        background-color: rgb(255, 85, 0);
    }
    
    ul{
        margin-left: -20px;
    }

    span {
        display: inline-block;
    }
}

/* モバイル */
@media screen and (max-width:900px) {
    .content {
        width: 95%;
        min-width: 0px;
    }
}