@charset "UTF-8";

*{
    padding: 0;
    margin: 0;
    -ms-user-select: none; /* IE 10+ */
    -moz-user-select: -moz-none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    user-select: none;
}
  
canvas{
    display:block;
    z-index: 1;
}

body, html {
    /*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体" , "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    width: 100%;
    height:100%;
    clear:both;
    -webkit-text-size-adjust: 100%;
    font-size: 14px;
    overflow: hidden;
}

body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    user-select: none;
    background: rgb(245, 245, 247);
    ;
}
  
body #container {
    background:rgb(221, 221, 221);
    width: 100%;
    height: 100%;
    cursor: none;
}
  
#header {
    position: relative;
    height: 16.3%;
    width: 100%;
}

#header_logo{
    width:100%;
    height: 83%;
    position: absolute;
    margin: auto;
    top:0;
    bottom: 0;
    background-image: url("./logo.svg");
    background-repeat: no-repeat;
    background-position: center center;
}

#header_logo_noshadow{
    width:100%;
    height: 73%;
    position: absolute;
    margin: auto;
    top:0;
    bottom: 0;
    background-image: url("./logo_noshadow.svg");
    background-repeat: no-repeat;
    background-position: center center;
}


a.back {
    position: absolute;
    z-index: 1;
    color: white;
    height: 50px;
    width: 25px;
    left: 20px;
    text-decoration: none;
    display: inline-block;
    font-size: 25px;
}

ul.genre_button {
    width: 85%;
    height: 100%;
    margin: auto;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    flex-flow: column;
}

li.genre_button {
    /* width: 100%; */
    height: 100%;
    margin-bottom: 1%;
    display: flex;
    justify-content: center;
}

li.genre_button a {
    position: relative;
    width: 100%;
    z-index: 91;
}

li.genre_button img {
    position: relative;
    width: 100%;
}

.hamburger-menu {
    width: 100%;
    height: 100%;
    bottom: 0;
    /* display: none; */
    z-index: 90;
    position: absolute;
}

.menu-btn {
    position: absolute;
    right: 20px;
    bottom: 0.5%;
    height: 50px;
    width: 25px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    /* background: red; */
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    top: 25px;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: rgb(73, 73, 73);
    position: absolute;
}

#menu-player span,
#menu-player span:before,
#menu-player span:after {
    background-color: rgb(255, 255, 255);
}
.menu-btn span:before {
    top: -9px;
}
.menu-btn span:after {
    top: 9px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    z-index: 151;
}
#menu-btn-check:checked ~ .menu-btn span::before {
    top: -0px;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0px;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: absolute;
    /* border-radius: 10px; */
    top: 100%;
    z-index: 150;
    /* display: none; */
    background-color: rgb(10, 159, 209);
    transition: all 0.5s;/*アニメーション設定*/
    
}

#menu-btn-check:checked ~ .menu-content {
    display: block;
    top: 0;
}

.menu-content ul {
    padding: 70px 30px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
    font-size: 20px;
    color:#ffffff;
    display: flex;
    flex-direction: column;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

.menu-content ul li p{
    display: block;
    width: 100%;
    font-size: 20px;
    /* box-sizing: border-box; */
    color:#ffffff;
    /* text-decoration: none; */
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li p.detail{
    font-size: 14px;
}


main {
    width: 100%;
    height: calc(100% - 16.3% - 8%);
    position: relative;

}

#player {
    height:calc(100% - 16.3% - 8%);
    position: absolute;
    width: 100%;
    /* height: 100px; */
    overflow:auto;
}

.list_container {
    width: 100%;
    height: 100%;
    list-style: none;
    position: relative;
    overflow: auto;
}

ul#humburg li#humbrug{
    line-height: 1.5;
    padding: 15px;
    border-bottom: solid 1px rgb(177, 177, 177);

    list-style-type: none!important;
    display: flex;
    margin-top: 5px;
    margin-bottom: 5px;
    align-items: center;
    position: relative;
    overflow:auto;

}
ul li:last-of-type {
    border-bottom: none;
}

ul li figure{
    margin-right: 20px;
    /* width: 100px;
    height: 100px; */
}

ul li figure img{
    max-height: 50px;
    /* max-width: 100%; */
    vertical-align: top;
}

ul li .list_text{
    font-size: 20px;
    right: 0;
}

ul li .list_button{
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 20px;

    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 18px;
    text-align: center;
    text-decoration: none;
    padding: 0;
    border: solid 1.5px;
    border-radius: 50%;
    border-color: rgb(10, 159, 209);
    color: rgb(10, 159, 209);
}

.list_button a {
    width: 100%;
    height: 100%;
    position: absolute;
}

ul li .list_button:hover{
    background: rgb(10, 159, 209);
    color: white;
}


footer {
    position: absolute;/*←絶対位置*/
    bottom: 0; /*下に固定*/
    width:100%;
    height: 8%;
    text-align: center;
    line-height:50px;
    color: white;
    display: table;
    /* background-color: red; */
}

.backbutton {
    position: absolute;
    width: 10%;
    height: 50%;
    left: 3%;
    top:0;
    bottom: 0;
    margin: auto;
}
.backbutton a{
    display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
    background-position: center center;
    background-image: url("./footer/back.svg");

    z-index: 200;
}

.footer_logo {
    width:70%;
    height: 40%;
    position: absolute;
    margin: auto;
    top:0;
    bottom: 0;
    left:0;
    right: 0;
    background-repeat: no-repeat;
    background-position: center center;
}

#maywa {
    background-image: url("./footer/maywa_footer.svg");
}

#rock {
    background-image: url("./footer/rock_footer.svg");
    height: 45%;
}

#anime {
    background-image: url("./footer/anime_footer.svg");
    height: 45%;
}

#hiphop {
    background-image: url("./footer/hiphop_footer.svg");
    height: 45%;
}

#japan {
    background-image: url("./footer/japan_footer.svg");
    height: 45%;
}

#samba {
    background-image: url("./footer/samba_footer.svg");
    height: 45%;
}

#techno {
    background-image: url("./footer/techno_footer.svg");
    height: 45%;
}

@media screen and (min-width: 900px) {
    body #container {
        margin: auto auto;
        width: 375px;
        height: 672px;

        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;

        border-radius: 10px;
        box-shadow: 0px 0px 20px gray;
    }

    #header {
        border-radius: 10px 10px 0px 0px;
    }

    .menu-content{
        border-radius: 10px;
    }
}