@charset "UTF-8";
/* CSS Document */

/* プレゼント */
.present_image{
    width: 480px;
}
.present_detail{
    width: 560px;
    margin-right: 40px;
}
.present_detail p{
    margin-bottom: 40px;
}
.present_detail dl{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #e4e4e4;
    margin: 0;
}
.present_detail dl dt,
.present_detail dl dd{
    font-size: 14px;
    line-height: 22px;
    padding: 15px 0;
    border-bottom: 1px solid #e4e4e4;
}
.present_detail dl dt{
    font-weight: bold;
    width: 28%;
}
.present_detail dl dd{
    width: 72%;
    margin: 0;
}
@media screen and (max-width: 767px){
    .present{
        display: block;
    }
    .present_image{
        width: 100%;
        margin-bottom: 40px;
    }
    .present_detail{
        width: 100%;
        margin-right: 0;
    }
    .present_detail p{
        font-size: 14px;
        line-height: 22px;
        margin-bottom: 20px;
    }
    .present_detail dl{
        display: block;
    }
    .present_detail dl dt,
    .present_detail dl dd{
        display: block;
        width: 100%;
        padding: 0;
    }
    .present_detail dl dt{
        padding-top: 16px;
        border: none;
        margin-bottom: 6px;
    }
    .present_detail dl dd{
        padding-bottom: 16px;
    }
}



