@charset "UTF-8";

/*共通部分
--------------------------*/
html{
    font-size:100%;
    scroll-behavior: smooth;
}

body{
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #000;
    background-color: #e2e2e2;
}

a{
    text-decoration: none;
}

img{
    max-width: 100%;
}

.logo{
    width: 10%;
    margin:0 auto;
    padding-top: 1rem;
    text-align: center;
}
.page-title{
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #f6f2fa;
    background-color: #010069;
    font-size: 3rem;
    text-align: center;
    margin: 1rem 13rem;
    padding: 1.5rem;
    line-height: 1.3;
}

/*レイアウト*/
.align-center{
    text-align: center;
}


/*main共通*/
.search{
    font-size: 16px;
    line-height: 2.0;
    margin: 4%;
    display: flex;
    justify-content: space-between;
}

.article{
    background-color: #f1f1f1;
    padding: 20px;
    width: 74%;
}

.sidebar{
    background-color: #f1f1f1;
    padding: 20px;
    width: 22%;
    line-height: 2;
    font-size: 12px;
    display: grid;
    gap: 10px;
}

.button{
    width: 40%;
    }
.button_link{
    line-height: 2.0;
}


/*ライブ*/
.search-live_li1{
    list-style-type: disc;
    margin-left: 24px;
    padding-bottom: 8rem;
	text-align: left;
}

.search-live_li2{
    list-style-type: circle;
    margin-left: 36px;
	text-align: left;
}

/*曲*/

.index-index{
    padding-bottom: 1rem;
}

.index{
    list-style-type: disc;
    margin-left: 24px;
    padding-bottom: 8rem;
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(13, auto);
}

.search-song_li1{
    list-style-type: disc;
    margin-left: 24px;
    padding-bottom: 80px;
	text-align: left;
}

.search-song_li2{
    list-style-type: circle;
    margin-left: 36px;
	text-align: left;
}

.search-song_li3{
    list-style-type: square;
    margin-left: 48px;
	text-align: left;
}

/*ライブ詳細ページ*/
.table{
    border-width: 2px;
    border-style: solid;
    margin-bottom: 4rem;
}

.table-number{
    text-align: center;
    padding: 1px 7px;
}

.table-song{
    max-width: 30rem;
    padding: 1px 7px;
}

.table-artist{
    max-width: 15rem;
    padding: 1px 7px;
}

/*YouTube*/
.youtube{
    aspect-ratio: 16/9;
}


/*.youtube iframe{
    height: 100%;
}
*/


/*footer共通*/
.page-top{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 20%;
    padding-top: 2rem;
}
  

.copyright{
    text-align: center;
    margin-top: 24px;
    padding: 2rem 0;
    font-size: 28px;
    background-color: #bdbdbd;
}

/*スマホ版*/
@media(max-width:800px){
    /*見出し*/
    .page-title{
        font-size: 24px;
        width: 80%;
        margin: 1rem 10%;
    }
    .search{
        display: flex;
        flex-direction: column;
    }
    .article{
        width: 100%;
    }
    .sidebar{
        width: 100%;
        display: grid;
        gap: 10px;    
    }
    .button{
        width: 40%;
        }
    .index{
        margin-left: 24px;
        padding-bottom: 8rem;
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(26, auto);
    }
    .copyright{
        text-align: center;
        margin-top: 24px;
        padding: 2rem 0;
        font-size: 20px;
        background-color: #bdbdbd;
    }
    .youtube{
        aspect-ratio: 16/9;   
    }
    .youtube iframe{
        height: 100%;
        width: 100%;
    }
}


/*フォント
// <uniquifier>: Use a unique and descriptive class name

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.zen-kaku-gothic-new-regular {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

*/