@media print, screen and (min-width: 1025px) {

.audiojs {
    width: 460px !important;
    float: none !important;
}

.audiojs .scrubber{
	width:60%;
}

}

@media print, screen and (max-width: 1024px) {
.audiojs {
	width:100%;
}
.audiojs .scrubber{
	width:40%;
}
}


/* =========================
   バックナンバー表示
========================= */

.audio-item {
    width: 100%;
    margin-bottom: 20px;
}

.audio-title {
    font-size: 16px;
    line-height: 1.8;
    word-break: break-word;
}

.audio-player .audiojs {
    float: none !important;
}

/* =========================
   PC表示
========================= */
@media screen and (min-width: 769px) {

    .audio-item {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 30px;
    }

    .audio-title {
        flex: 1;
        margin-right: 20px;
    }

    .audio-player {
        width: 460px;
        min-width: 460px;
    }

    .audio-player .audiojs {
        width: 460px !important;
    }

}

/* 強制PC横並び */
@media screen and (min-width: 769px) {

    .audio-list .audio-item {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        width: 100% !important;
        gap: 30px !important;
    }

    .audio-list .audio-title {
        flex: 1 1 auto !important;
        width: auto !important;
        margin: 0 !important;
    }

    .audio-list .audio-player {
        width: 460px !important;
        min-width: 460px !important;
        flex-shrink: 0 !important;
    }

    .audio-list .audio-player .audiojs {
        width: 460px !important;
        margin: 0 !important;
    }

}

/* PC時 タイトル文字調整 */
@media screen and (min-width: 769px) {

    .audio-list .audio-title {
        font-size: 12px !important;
        line-height: 1.5 !important;
        color: #333;
    }

}

/* =========================
   スマホ表示
========================= */
@media screen and (max-width: 768px) {

    .audio-item {
        display: block;
    }

    .audio-title {
        margin-bottom: 12px;
    }

    .audio-player {
        width: 100%;
    }

    .audio-player .audiojs {
        width: 100% !important;
    }

    .audio-player .audiojs .scrubber {
        width: calc(100% - 140px) !important;
    }

}

