﻿/********************************************
   アルバム情報
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    #album-info {
        width: 800px;
        height: auto;
/*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    #album-info {
        /*height: auto;*/
/*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    #album-info {
        position: relative;
        top: 140px;
        /*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }
}


/********************************************
   アルバム・（竹）メニュー
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    .album-menu {
        position: relative;
        top: 40px;
        /*竹（背景）*/
        background-image: url('/img/bg/bamboo_mini.png');
        background-repeat: no-repeat;
        background-size: 100%;
        height: 45px;
    }

    .album-menu-text-container {}

    .album-menu-text {
        font-size: 1.0em;
        font-weight: normal;
        margin-top: 5px;
        margin-left: 30px;
        color: #ffffff;
        line-height: 1.2;
        cursor: pointer;
        text-shadow: 0 0 10px #000000, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #000000, 0 0 60px #000000, 0 0 70px #000000;
    }

    .album-menu-text:hover {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }

    /*　選択されたメニュー　*/
    .album-menu-text.selected {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    .album-menu {
        position: relative;
        top: 190px;

        /* 竹（背景）*/
        background-image: url('/img/bg/bamboo_mini.png');
        background-repeat: no-repeat;
        background-size: 120%;
        height: 35px;
    }

    .album-menu-text-container {}

    .album-menu-text {
        font-size: 0.8em;
        font-weight: normal;
        margin-left: 30px;
        color: #ffffff;
        cursor: pointer;
        text-shadow: 0 0 10px #000000, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #000000, 0 0 60px #000000, 0 0 70px #000000;
    }

    .album-menu-text:hover {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }

    /*　選択されたメニュー　*/
    .album-menu-text.selected {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    .album-menu {
        position: relative;
        top: 0px;
        /* 竹（背景）*/
        background-image: url('/img/bg/bamboo_mini.png');
        background-repeat: no-repeat;
        background-size: 120%;
        height: 55px;
        padding-left: 10px;
    }

    .album-menu-text-container {}

    .album-menu-text {
        font-size: 0.8em;
        font-weight: normal;
        margin-left: 15px;
        color: #ffffff;
        cursor: pointer;
        text-shadow: 0 0 10px #000000, 0 0 20px #000000, 0 0 30px #000000, 0 0 40px #000000, 0 0 50px #000000, 0 0 60px #000000, 0 0 70px #000000;
    }

    .album-menu-text:hover {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }

    /*　選択されたメニュー　*/
    .album-menu-text.selected {
        text-shadow: 0 0 10px rgba(255,255,255,0.8), 0 0 20px rgba(255,255,255,0.8), 0 0 30px rgba(255,255,255,0.8);
        font-weight: bold;
    }
}


/********************************************
   アルバム・コンテンツ
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    #album-contents {
        margin-top: 45px;
/*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }

    .album-content {
        display: none;
    }

    .album-content.active {
        display: block;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    #album-contents {
        margin-top: 193px;
        /*margin-bottom: 100px;*/
/*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }

    .album-content {
        display: none;
    }

    .album-content.active {
        display: block;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    #album-contents {
        /*        border-right: solid 3px #3e281c;
        border-bottom: solid 3px #3e281c;
        border-left: solid 3px #3e281c;*/
    }

    .album-content {
        display: none;
    }

    .album-content.active {
        display: block;
    }
}


/********************************************
   プレイリスト
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    #playlist {
        position: relative;
        top: 0;
/*        border-right: solid 2px #3e281c;
        border-bottom: solid 2px #3e281c;
        border-left: solid 2px #3e281c;*/
    }

    .play-list-table {
        width: 100%;
    }

    .play-list-table-tr {
        height: 60px;
        cursor: pointer;
    }

    .play-list-table-song-img {
        width: 60px;
    }

    .play-list-table-song-img img {
        width: 50px;
        vertical-align: middle;
        margin: 5px;
    }

    .play-list-table-song-title {
        vertical-align: middle;
        text-align: left;
        padding-left: 10px;
        font-size: 1.5em;
        color: white;
        line-height: 0.8em;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-sub-title {
        font-size: 0.7em; /*12px;*/
        font-weight: normal;
        line-height: 0.1em;
        color: burlywood;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-duration {
        width: 70px;
        text-align: center;
        color: white;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    #playlist {
        position: relative;
        top: 0;
/*        border-right: solid 2px #3e281c;
        border-bottom: solid 2px #3e281c;
        border-left: solid 2px #3e281c;*/
    }

    .play-list-table {
        width: 100%;
    }

    .play-list-table-tr {
        height: 50px;
        cursor: pointer;
    }

    .play-list-table-song-img {
        width: 60px;
    }

    .play-list-table-song-img img {
        width: 50px;
        vertical-align: middle;
        margin: 5px;
    }

    .play-list-table-song-title {
        /*min-width: 444px;*/
        vertical-align: middle;
        text-align: left;
        padding-left: 10px;
        font-size: 16px;
        color: white;
        line-height: 0.8em;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-sub-title {
        font-size: 12px;
        font-weight: normal;
        color: burlywood;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-duration {
        width: 70px;
        text-align: center;
        color: white;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    #playlist {
        position: relative;
        top: -22px;
/*        border-right: solid 2px #3e281c;
        border-bottom: solid 2px #3e281c;
        border-left: solid 2px #3e281c;*/
    }

    .play-list-table {
        width: 100%;
    }

    .play-list-table-tr {
        height: 50px;
        cursor: pointer;
    }

    .play-list-table-song-img {
        width: 60px;
    }

    .play-list-table-song-img img {
        min-width: 50px;
        vertical-align: middle;
        margin: 5px;
    }

    .play-list-table-song-title {
        vertical-align: middle;
        text-align: left;
        padding-left: 10px;
        font-size: 16px;
        color: white;
        line-height: 0.9em;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-sub-title {
        font-size: 12px;
        font-weight: normal;
        color: burlywood;
        font-family: 'YujiSyuku';
    }

    .play-list-table-song-duration {
        width: 70px;
        text-align: center;
        color: white;
    }
}


/********************************************
   歌詞
*********************************************/

/*---------------------------- アコーディオン*/

details {
    margin: 14px;
    height: auto;
    transition: .5s;
}

details[open] {
    height: auto;
}

/* アコーディオンが開いた時のスタイル */
details[open] .icon {
    transform: rotate(180deg);
}

/* オープン時 */
details[open] summary:after {
    transform: rotate(90deg); /* 90度回転 */
    left: 4px;
    top: 5px;
}

summary {
    text-align: left;
    position: relative;
    display: block; /* 矢印を消す */
    padding-left: 20px; /* アイコン分の余白 */
    cursor: pointer;
    border-bottom: 1px solid gray;
    font-weight: bold;
    font-size: 12px;
}

summary::-webkit-details-marker { /*Safari*/
    display: none; /* 矢印を消す */
    color: transparent;
}

summary:before,
summary:after {
    content: "";
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
}

summary:before {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    background-color: transparent;
}

summary:after {
    left: 6px;
    width: 5px;
    height: 5px;
    border: 5px solid transparent;
    border-left: 8px solid #ffffff;
    box-sizing: border-box;
    transition: .1s;
}

.national_flag {
    width: 20px;
    height: 15px;
    margin-left: 0;
    margin-right: 5px;
}

.text-box {
    min-height: auto;
    text-align: center;
    /*overflow-y: hidden;*/
    overflow: visible;
    line-height: 1.2;
}

/*.song-sub-title {*/
    /*margin-left: 5px;*/
    /*text-align: center;
    font-size: 10px;
    font-weight: normal;
}*/

/*---------------------------- 横書き（上⇒下）*/
.text-HorizontalTB {
    width: auto;
    padding: 15px;
    writing-mode: horizontal-tb;
    text-align: left;
    display: inline-block;
}

.song-title-HorizontalTB {
    margin-left: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

.song-sub-title-HorizontalTB {
    margin-left: 5px;
    text-align: center;
    font-size: 12px;
    font-weight: bold;
    color: gray;
}

.song-composer-writer-HorizontalTB {
    margin-top: 10px;
    /*margin-right: 10px;*/
    font-size: 10px;
    font-weight: normal;
    text-align: right;
}

.lyrics-contents-HorizontalTB {
    margin-top: 10px;
    font-size: 12px;
}

.lyrics-contents-HorizontalTB p {
    margin-top: 10px;
}

/*---------------------------- 縦書き（右⇒左）*/

.text-VerticalRL {
    width: auto;
    padding: 10px;
    writing-mode: vertical-rl;
    overflow: visible;
    text-align: left;
    display: inline-block;
}

.song-title-VerticalRL {
    margin-left: 5px;
    padding-top: 25px;
    font-size: 14px;
    font-weight: bold;
    font-family: 'YujiSyuku';
}

.song-sub-title-VerticalRL {
    margin-left: 5px;
    padding-top: 25px;
    font-size: 10px;
    font-weight: bold;
    color: gray;
}

.song-composer-writer-VerticalRL {
    margin-top: 10px;
    margin-right: 10px;
    font-size: 10px;
    font-weight: normal;
    text-align: right;
}

.lyrics-contents-VerticalRL {
    margin-right: 10px;
    line-height: 1.3;
    font-size: 10px;
}

.lyrics-contents-VerticalRL p {
    margin-right: 8px;
    font-family: 'YujiSyuku';
    white-space: nowrap;
}


/********************************************
   制作秘話/楽曲への想い
*********************************************/
/*#inside_story_image_container {
    text-align: left;
}*/
/*#inside_story_image {
    width: 150px;
    margin: 10px;
    float: left;
}*/
#inside_story_desc {
    padding: 15px 15px 0 15px;
    text-align: left;
}

#inside_story_content_container {
    clear: both;
    padding: 15px;
}

.inside_story {
    padding-top: 20px;
}

.inside_story a {
    color: wheat;
    font-size: larger;
    font-weight: bold;
}

.inside_story_title {
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    color: wheat;
}

.inside_story_content {
    font-size: 12px;
    text-align: left;
}

/*.inside_story_content p {
    margin-top: 7px;
    margin-bottom: 7px;
}*/


/********************************************
   楽曲入手
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {
    .distributor-icon {
        margin: 3px;
        width: 40px;
    }
}

/*Tablet*/
@media screen and (max-width: 834px) {
    .distributor-icon {
        margin: 3px;
        width: 40px;
    }
}

/*iPhone Pro Max: 428(w) */
@media screen and (max-width: 600px) {
    .distributor-icon {
        margin: 3px;
        width: 30px;
    }
}



/********************************************
   クレジット
*********************************************/

#credits {
    padding-top: 10px;

}

/********************************************
   ビデオ
*********************************************/
/*PC*/
@media screen and (min-width: 835px) {

    #video_iframe {
        width: 450px;
        height: 253px;
    }

    #video_title {
        margin-bottom: 15px;
        font-size: 16px;
    }

    #video_comment_container {
        margin-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
    }
}

/*Tablet / iPhone Pro Max(横): 832(w) */
@media screen and (min-width: 601px) and (max-width: 834px) {

    #video_iframe {
        width: 450px;
        height: 253px;
    }

    #video_title {
        margin-bottom: 15px;
        font-size: 16px;
    }

    #video_comment_container {
        margin-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
    }
}

/*iPhone Pro Max(縦): 428(w) */
@media screen and (max-width: 600px) {

    #video_iframe {
        width: 382px;
        height: 215px;
    }

    #video_title {
        margin-bottom: 15px;
        font-size: 16px;
    }

    #video_comment_container {
        margin-top: 15px;
        padding-bottom: 15px;
        font-size: 12px;
    }
}

#album-distributor {
    margin-top: 30px;
    margin-bottom: 50px;
}

.album-distributor-icon {
    width: 35px;
    margin-right: 5px;
}