.quotes {
    position: absolute;
    bottom: 0px;
    width: 100%;
    left: 0;
    top: 0px;
	-ms-overflow-style: none;    /* IE, Edge 対応 */
    scrollbar-width: none;       /* Firefox 対応 */
	padding-bottom: 150px;
}

.quotes::-webkit-scrollbar {/* Chrome, Safari 対応 */
	display:none;
}

.quotes article {
    text-align: justify;
    line-height: 1.8;
    background: #fff;
    max-width: 100%;
    padding: 30px;
    margin: 0 auto;
    width: 100%;
	box-shadow: 0 -20px 10px -10px rgba(153,153,153,0.1);
}

.quotes article em {
    font-style: normal;
    font-size: 12px;
    color: #666;
}

.quotes article em:before {
    content: '~';
    margin: 0 10px;
}

@media (max-width: 600px) {
    .quotes article {
        padding: 30px;
        line-height: 1.5;
        font-size: 12px;
    }
    .quotes article em {
        font-size: 10px;
    }
}
