﻿/********************************************
   アルバム・コンポ：コンテナ
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    #album-compo-container {
        background-color: brown;
        margin: 0 auto;
        width: 805px;
        height: 330px;
        text-align: center;
        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;
    }

    #album-compo-container:after {
        -webkit-filter: blur(8px);
        filter: blur(8px);
        background-color: rgba(0, 0, 0, 0.8);
        bottom: -2px;
        content: " ";
        display: block;
        height: auto;
        /*transform: rotate(-3deg);*/
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    #album-compo-container {
        background-color: brown;
        margin: 0 auto;
        width: 580px;
        height: 440px;
        text-align: center;
        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;
    }

    #album-compo-container:after {
        -webkit-filter: blur(8px);
        filter: blur(8px);
        background-color: rgba(0, 0, 0, 0.8);
        bottom: -2px;
        content: " ";
        display: block;
        height: auto;
        /*transform: rotate(-3deg);*/
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    #album-compo-container {
        background-color: brown;
        margin: 0 auto;
        width: 90%;
        height: 370px;
        text-align: center;
        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;
    }

    #album-compo-container:after {
        -webkit-filter: blur(8px);
        filter: blur(8px);
        background-color: rgba(0, 0, 0, 0.8);
        bottom: -2px;
        content: " ";
        display: block;
        height: auto;
        /*transform: rotate(-3deg);*/
    }
}


/********************************************
   楽曲プレーヤー
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    .audio-player {
        position: relative;
        top: 100px;
        height: 300px;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    .audio-player {
        position: relative;
        top: 150px;
        height: 260px;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    .audio-player {
        position: relative;
        top: 100px;
        height: 240px;
    }
}


/********************************************
   アルバム
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    .album {
        position: relative;
        top: -60px;
        left: 395px;
        width: 250px;
        height: 250px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.65);
    }

    .album-art {
        /*background: #fff url("/img/zettamu/album/sharakuse/deracine_640x640.jpg") center/cover no-repeat;*/
        background-color: brown;
        background-size: cover;
        background-origin: content-box;
        background-repeat: no-repeat;
        height: 250px;
        position: relative;
        width: 250px;
        z-index: 10;
    }

    .vinyl {
        -webkit-animation: spin 2s linear infinite;
        -moz-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        transition: all 500ms;
        background-image: url("/img/bg/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");
        background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");
        background-position: center, center;
        background-size: cover, 40% auto;
        background-repeat: no-repeat;
        border-radius: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 15px;
        left: 15px;
        z-index: 5;
        width: 220px;
        height: 220px;
        will-change: transform, left;
    }

    .is-playing .vinyl {
        left: 57%;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    .album {
        position: relative;
        top: -120px;
        left: 160px;
        width: 250px;
        height: 250px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.65);
    }

    .album-art {
        /*background: #fff url("/img/zettamu/album/sharakuse/deracine_640x640.jpg") center/cover no-repeat;*/
        background-color: brown;
        background-size: cover;
        background-origin: content-box;
        background-repeat: no-repeat;
        position: relative;
        width: 250px;
        height: 250px;
        z-index: 10;
    }

    .vinyl {
        -webkit-animation: spin 2s linear infinite;
        -moz-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        transition: all 500ms;
        background-image: url("/img/bg/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");
        /*background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");*/
        background-position: center, center;
        background-size: cover, 40% auto;
        background-repeat: no-repeat;
        border-radius: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 15px;
        left: 25px;
        z-index: 5;
        width: 220px;
        height: 220px;
        will-change: transform, left;
    }

    .is-playing .vinyl {
        left: 57%;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    .album {
        position: relative;
        top: -80px;
        left: 90px;
        width: 200px;
        height: 200px;
        box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.65);
    }

    .album-art {
        /*background: #fff url("/img/zettamu/album/sharakuse/deracine_640x640.jpg") center/cover no-repeat;*/
        background-color: brown;
        background-size: cover;
        background-origin: content-box;
        background-repeat: no-repeat;
        position: relative;
        width: 200px;
        height: 200px;
        z-index: 10;
    }

    .vinyl {
        -webkit-animation: spin 2s linear infinite;
        -moz-animation: spin 2s linear infinite;
        animation: spin 2s linear infinite;
        -webkit-transition: all 500ms;
        -moz-transition: all 500ms;
        transition: all 500ms;
        background-image: url("/img/bg/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");
        /*background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png"), url("/img/zettamu/album/sharakuse/deracine_640x640.jpg");*/
        background-position: center, center;
        background-size: cover, 40% auto;
        background-repeat: no-repeat;
        border-radius: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
        position: absolute;
        top: 15px;
        left: 30px;
        z-index: 5;
        width: 170px;
        height: 170px;
        will-change: transform, left;
    }

    .is-playing .vinyl {
        left: 60%;
    }
}


/********************************************
  楽曲情報
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    .track-info-container {
        position: relative;
        top: -230px;
        left: 20px;
        width: 400px;
        height: 120px;
        padding-right: 30px;
        text-align: right;
    }

/*    .artist-name {
        font-size: 14px;
        font-weight: bold;
        margin: 0 0 0.2em 0;
        padding-right: 10px;
        color: #ffffff;
    }*/

/*    .album-title {
        color: lightgray;
        font-weight: 600;
        font-size: 12px;
        margin: 0 0 0em 0;
        padding-right: 10px;
    }*/

    .song-title {
        /*        margin: 0.1em 0 0 0;
        padding-right: 10px;*/
        margin: 5px 10px 5px 0;
        font-size: 1.7em; /*17px;*/
        font-weight: bold;
        color: #ffffff;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }

    .song-sub-title {
        margin: 0.1em 0 0 0;
        padding-right: 10px;
        font-size: 12px;
        font-weight: bold;
        color: wheat;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    .track-info-container {
        position: relative;
        top: -100px;
        left: 90px;
        width: 400px;
        height: 50px;
        /*padding-right: 45px;*/
        text-align: center;
    }

/*    .artist-name {
        font-size: 14px;
        font-weight: bold;
        margin: 0 0 0.2em 0;
        padding-right: 10px;
        color: #ffffff;
    }

    .album-title {
        color: lightgray;
        font-weight: 600;
        font-size: 12px;
        margin: 0 0 0em 0;
        padding-right: 10px;
    }*/

    .song-title {
        font-size: 17px;
        font-weight: bold;
        color: #ffffff;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }

    .song-sub-title {
        margin: 5px 0 5px 0;
        font-size: 12px;
        font-weight: bold;
        color: wheat;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    .track-info-container {
        position: relative;
        top: -65px;

        width: 400px;
        height: 70px;
        text-align: center;
    }

/*    .artist-name {
        font-size: 14px;
        font-weight: bold;
        margin: 0 0 0.2em 0;
        padding-right: 10px;
        color: #ffffff;
    }*/

/*    .album-title {
        color: lightgray;
        font-weight: 600;
        font-size: 12px;
        margin: 0 0 0em 0;
        padding-right: 10px;
    }*/

    .song-title {
        font-size: 17px;
        font-weight: bold;
        color: #ffffff;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }

    .song-sub-title {
        margin: 5px 0 5px 0;
        font-size: 12px;
        font-weight: bold;
        color: wheat;
        line-height: 1.1;
        font-family: 'YujiSyuku';
    }
}


/********************************************
  楽曲プレーヤー制御
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    .audio-player-controls {
        /*background-color: red;*/
        position: relative;
        top: -550px;
        left: 300px;
        width: 300px;
        height: 75px;
        text-align: center;
    }

    [class^=control-] {
        -webkit-filter: brightness(95%);
        margin: 0 3px;
        width: 44px;
        height: 44px;
        filter: brightness(95%);
        border-radius: 100%;
        display: inline-block;
    }

    [class^=control-]:hover {
        -webkit-filter: brightness(85%);
        filter: brightness(85%);
        cursor: pointer;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    .audio-player-controls {
        position: relative;
        top: -340px;
        left: 410px;
        width: 200px;
    }

    [class^=control-] {
        -webkit-filter: brightness(95%);
        margin: 0 3px;
        width: 44px;
        height: 44px;
        filter: brightness(95%);
        border-radius: 100%;
        display: inline-block;
    }

    [class^=control-]:hover {
        -webkit-filter: brightness(85%);
        filter: brightness(85%);
        cursor: pointer;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    .audio-player-controls {
        /*background-color: red;*/
        position: relative;
        top: -300px;
        /*left: 0px;*/
        width: 300px;
    }

    [class^=control-] {
        -webkit-filter: brightness(95%);
        margin: 0 3px;
        width: 44px;
        height: 44px;
        filter: brightness(95%);
        border-radius: 100%;
        display: inline-block;
    }

    [class^=control-]:hover {
        -webkit-filter: brightness(85%);
        filter: brightness(85%);
        cursor: pointer;
    }
}


/********************************************
   楽曲プレーヤー制御：<audio>タグ
*********************************************/

/* スライダーのトラック */
.input-range[type=range] {
    -webkit-appearance: none;
    background-color: #c7c7c7;
    height: 2px;
    width: 50%;
}

/* スライダーのトラック */
input[type="range"] {
    -webkit-appearance: none;
    width: 200px;
    height: 2px;
    background-color: #ddd;
    border-radius: 5px;
    outline: none;
}

/* スライダーのハンドル（つまみ） */
input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png");
    background-size: cover;
    border: 2px solid #b8b8b8;
    border-radius: 50%;
    cursor: pointer;
}

/* Firefox用のハンドル（つまみ） */
input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png");
    background-size: cover;
    border: 2px solid #b8b8b8;
    border-radius: 50%;
    cursor: pointer;
}

/* その他のブラウザ向けスタイル */
input[type="range"]::-ms-thumb {
    width: 20px;
    height: 20px;
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/83141/vinyl.png");
    background-size: cover;
    border: 2px solid #b8b8b8;
    border-radius: 50%;
    cursor: pointer;
}


/********************************************
   楽曲プレーヤー：レコード針、操作ボタン
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    /*レコード針*/
    #record_needle {
        position: relative;
        top: 60px;
        left: -70px;
        border-radius: 50%;
        width: 110px;
        cursor: pointer;
        z-index: 15;
    }

    #button-container {
        position: relative;
        top: 170px;
        left: -250px;
    }

    #backButton, #forwardButton, #repeatButton, #shuffleButton {
        margin: 0;
        padding: 0;
        border-radius: 50%;
        width: 53px;
        cursor: pointer;
    }

    .disabled-image {
        pointer-events: none;
    }

    #timeInfoContainer {
        position: relative;
        top: 170px;
        left: -260px;
        display: flex;
        width: 350px;
        margin-left: 16px;
    }

    #timeInfo {
        margin-left: 10px;
        font-size: 14px;
        color: #ffffff;
    }

    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @-moz-keyframes spin {
        0% {
            -moz-transform: rotate(0deg);
        }

        100% {
            -moz-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    /*レコード針*/
    #record_needle {
        position: relative;
        top: -140px;
        left: -370px;
        border-radius: 50%;
        width: 110px;
        cursor: pointer;
        z-index: 15;
    }

    #button-container {
        width: 250px;
        position: relative;
        top: 135px;
        left: -250px;
    }

    #backButton, #forwardButton, #repeatButton, #shuffleButton {
        margin: 0;
        padding: 0;
        border-radius: 50%;
        width: 53px;
        cursor: pointer;
    }

    .disabled-image {
        pointer-events: none;
    }

    #timeInfoContainer {
        position: relative;
        top: 140px;
        left: -270px;
        display: flex;
        width: 350px;
    }

    #timeInfo {
        margin-left: 10px;
        font-size: 14px;
        color: #ffffff;
    }

    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @-moz-keyframes spin {
        0% {
            -moz-transform: rotate(0deg);
        }

        100% {
            -moz-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    /*レコード針*/
    #record_needle {
        position: relative;
        top: -100px;
        left: -70px;
        border-radius: 50%;
        width: 110px;
        cursor: pointer;
        z-index: 15;
    }

    #button-container {
        position: relative;
        top: 110px;
        left: 40px;
    }

    #backButton, #forwardButton, #repeatButton, #shuffleButton {
        margin: 0;
        padding: 0;
        border-radius: 50%;
        width: 60px;
        cursor: pointer;
    }

    .disabled-image {
        pointer-events: none;
    }

    #timeInfoContainer {
        position: relative;
        top: 110px;
        left: 40px;
        display: flex;
        width: 350px;
        margin-left: 16px;
    }

    #seekSlider {
        width: 180px;
    }

    #timeInfo {
        margin-left: 10px;
        font-size: 14px;
        color: #ffffff;
    }

    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @-moz-keyframes spin {
        0% {
            -moz-transform: rotate(0deg);
        }

        100% {
            -moz-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
            -moz-transform: rotate(0deg);
            -ms-transform: rotate(0deg);
            -o-transform: rotate(0deg);
            transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
            -moz-transform: rotate(360deg);
            -ms-transform: rotate(360deg);
            -o-transform: rotate(360deg);
            transform: rotate(360deg);
        }
    }
}

