@charset "utf-8";
/* 基本設定------------------------------------ */
body{
    width:100%;
    color:rgba(50,49,48);
    font-size:13px;
    background-color: rgb(244,244,244);
}
main{
    width:100%;
}
a{
    color:rgba(50,49,48);
}
main h1{
    font-size: 18px;
    display:block;
    text-align: center;
    padding:15px;
}
h2{
    font-size: 13px;
}
p{
    line-height: 1.5;
}
footer{
    background-color: rgb(244,244,244);
}
/* 基本設定ここまで------------------------------ */
/* ハンバーガーメニュースタイル------------------- */
.menu-btn {
    position: fixed;
    top: 7px;
    right: 7px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 2px;
    width: 24px;
    border-radius: 2px;
    background-color: rgba(50,49,48);
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check{
    display: none;
}
/* メニュースタイル */
nav{
    width:100%;
    height:100%;
    position:fixed;
    top:0;
    left:0;
    z-index: 80;
    display: none;
    background-color: rgb(244,244,244);
}

ul{
    width:100%;
}
nav ul li{
    display:block;
    text-align: center;
    padding:15px;
    border-top: 1px solid rgb(50,49,48);
    font-size: 16px;
}
nav ul li:first-child{
    border-top:0px none;
    padding-top:30px;
}
nav ul li:last-child{
    padding-bottom:30px;
}
/* メニュースタイルここまで */


/* ハンバーガーメニュースタイルここまで------------- */

/* ヘッダースタイル------------------------------ */
header{
    width:100%;
    height:60px;
}
#topLogo{
    width:100%;
    height:100%;
}
#topLogo img{
    width:100px;
    position:fixed;
    top:21px;
    left:9px;
    z-index: 100;
}

/* ヘッダースタイルここまで----------------------- */

/* homeスタイル-------------------------------- */
main#home .main-content iframe{
    width:100%;
    aspect-ratio: 2/1;
}
/* homeスタイルここまで-------------------------- */

/* aboutスタイル-------------------------------- */
#about .artist-photo{
    padding:7px;
}
#about .artist-photo img{
    width:100%;
}
#about .artist-content h2{
    font-weight: bold;
    display:block;
    padding:7px;
    font-size:15px;
}
#about .artist-content h2 span{
    font-weight: bold;
    font-size: 10px;
}
#about .artist-content p{
    display: block;
    padding:7px;
}
#about .memberList{
    padding:7px;
}
#about .memberList li{
    padding-top:5px;
}
/* aboutスタイルここまで-------------------------- */

/* discスタイル---------------------------------- */
#disc .main-content .disc-item{
    padding-top:20px;
}
#disc .main-content .disc-photo{
    padding:7px;
}
#disc .main-content .disc-photo img{
    width:100%;
}
#disc .main-content .disc-content h2{
    padding:7px;
    font-weight: bold;
}
#disc .main-content .disc-content ul,
#disc .main-content .disc-content p{
    padding:7px;
}
#disc .main-content .disc-content li{
    padding-top:5px;
}
#disc .main-content .disc-content li:first-child{
    padding-bottom:7px;
    font-weight: bold;
    color:rgb(55, 116, 177);
}
/* discスタイルここまで--------------------------- */

/* movieスタイル-------------------------------- */
#movie .main-content .movie-item{
    padding:7px;
    padding-top: 15px;
}
#movie .main-content .movie-item h2{
    font-weight: bold;
}
#movie .main-content .movie-item .movie-content{
    padding-top:10px;
}
#movie .main-content .movie-item iframe{
    width:100%;
    aspect-ratio: 2/1;
}

/* movieスタイルここまで-------------------------- */

/* liveスタイル---------------------------------- */
#live .main-content .live-item{
    padding:7px;
    padding-top:15px;
}
#live .main-content .live-item p{
    text-align: center;
}
/* liveスタイルここまで--------------------------- */

/* contactスタイル------------------------------ */
#contact .contact-item{
    padding:7px;
    padding-top:15px;
}
#contact .contact-item address{
    text-align: center;
}
/* contactスタイルここまで------------------------ */

/* フッタースタイル------------------------------ */
footer{
    box-sizing: border-box;
    width:100%;
    height: 130px;
}
footer p{
    display:block;
    text-align: center;
    padding-top:5px;
}
footer div{
    width:100%;
    height: 100%;
    padding-top:80px;
}
/* フッタースタイルここまで----------------------- */