﻿@charset "UTF-8";

/*ウィンドウ幅が901px以上の場合に適用するCSS*/
@media screen and (min-width:902px) {
    * {
        margin: 0;
        padding: 0;
    }
    body {
        overflow: hidden;
        width: 100%;
        font-family: 'Charter','Candara','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
        background-color: black;
        
    }
    
    header {
        width: 100%;
        height: 1080px;
        display: flex;
    }
    div .head-shot{
        width: 100%;
        margin: 0 auto;
        } 

    div .head-shot img {
        margin: 0 auto;
        width: 100%;
        height: 90%;
        object-fit: cover;
        object-position: left;
    }
    /*18ロゴ部分*/
     .title-nav-box {
        width: 25%;
        height: 100%;
        text-align: center;
        background-color: black;
    }

    header h1 img {
        width: 80%;
    }
    header .title-nav-box nav ul {
        list-style-type: none;
        font-size: 2.2vw;
    }
    
    header .title-nav-box nav li {
        width: 100%;
        padding-bottom: 65px;
    }
    div .menu-box {
        font-size: 2vw;
    }
    header .title-nav-box nav li a {
        text-align: center;
        text-decoration: none;
        color: white;
    }
    header .title-nav-box nav li a:hover {
        color: red;
        transition: 1s;
    }
    /*snsのアイコン*/
    .sns_icons {
        display: flex;
        justify-content: space-evenly;
        width: 100%;
        background-color: gray;
        margin-bottom: 40px;
    }
    .sns_icons img {
        width: 40px;
        padding-top: 12px;
        padding-bottom: 12px;
    }
    .sns_icons0 {
        display: none;
    }
    header .title-nav-box nav li div img {
        width: 3vw;
        margin: 0 6px;
        vertical-align: bottom;
    }

    .discography {
        display: flex;
        flex-wrap: wrap;
        color:white;
      }
      
         /*disk*/
   
         h2 {
            font-size: 4vw;
            color: white;
         }
    .disk {
        overflow: scroll;
        position: absolute;
        top: 4vh;
        left: 22vw;
        width: 75%;
        height: 50vw;
        background-color: black;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.8);
    }
    .jacket img {
        width: 80%;
        margin: 0 auto;
    }

    .parent {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: repeat(6, 1fr);
        gap: 30px;
        color: white;
        padding-top: 80px;
    }
    .parent div{
        margin-top: 10px;
    }
    .parent a {
        line-height: 2;
        color:white;
        text-decoration:underline;
    }
    /*footer*/
    .footer {
        width: 23vw;
        margin: 0 auto;
    }

    footer p {
        text-align: center;
        color: white;
        font-size: 12px;
    }
}