* {  
    box-sizing: border-box;  
}  

body {  
    font-family: 'Arial', sans-serif;  
    margin: 0;  
    padding: 0;  
    line-height: 1.6;  
    background-color: #000; /* 背景を黒に */  
    color: #fff; /* テキストを白に */  
}  

header {  
    width: 100%;
    background-color: white; /* 背景を黒に */  
    color: black;  
    padding: 10px 0;  
    text-align: center;  
    position:fixed;
    z-index:99900;
    top: 0;
}  

nav ul {  
    list-style: none;  
    padding: 0;  
}  

nav ul li {  
    display: inline;  
    margin: 0 15px;  
}  

nav a {  
    color: #fff;  
    text-decoration: none;  
    transition: color 0.3s;  
}  

nav a:hover {  
    color: #e63946; /* ホバー時の色 */  
}  

section {  
    padding: 20px;  
    margin: 10px 0;  
    border: 1px solid #444; /* セクションの境界線をダークグレーに */  
}  

#hero {  
    text-align: center;  
    padding: 50px 5px 10px 5px;
}  

.btn {  
    background: #e63946; /* ボタンの色 */  
    color: white;  
    padding: 10px 20px;  
    border: none;  
    text-decoration: none;  
    border-radius: 5px;  
    transition: background 0.3s, transform 0.3s;  
}  

.btn:hover {  
    background: #d62839; /* ボタンホバー時の色 */  
    transform: scale(1.05); /* ボタンの拡大効果 */  
}  

.gallery {  
    display: flex;  
    flex-wrap: wrap;  
}  

.gallery img {  
    width: calc(33.33% - 10px);  
    margin: 5px;  
    border-radius: 8px;  
    transition: transform 0.3s, filter 0.3s; /* 拡大とフィルター効果 */  
}  

.gallery img:hover {  
    transform: scale(1.05);  
    filter: brightness(0.8); /* ギャラリー画像ホバー時の効果 */  
}  

footer {  
    text-align: center;  
    padding: 10px 0;  
    background-color: white; /* 背景を黒に */  
    color: black;  
    position: relative;  
}  

.social-media a {  
    margin: 0 10px;  
    color: #fff;  
    transition: color 0.3s;  
}  

footer .social-media a:hover {  
    color: #e63946; /* ソーシャルメディアアイコンのホバー時の色 */  
}  

.fade-in {  
    opacity: 0; /* 初期状態は透明 */  
    animation: fadeIn 0.6s forwards; /* フェードインアニメーション */  
}  

@keyframes fadeIn {  
    to {  
        opacity: 1; /* 最終的な不透明度 */  
    }  
}  

.bounce {  
    display: inline-block;  
    animation: bounce 1.5s infinite; /* ボタンのバウンスアニメーション */  
}  

@keyframes bounce {  
    0%, 20%, 50%, 80%, 100% {  
        transform: translateY(0);  
    }  
    40% {  
        transform: translateY(-10px);  
    }  
    60% {  
        transform: translateY(-5px);  
    }  
}  

@media (max-width: 600px) {  
    .gallery img {  
        width: calc(50% - 10px);  
    }  
}  

nav {  
    position: relative;  
}  

#nav-links {  
    list-style: none;  
    display: flex;  
    flex-direction: row;  
    justify-content: flex-end;  
}  

.menu-icon {  
    display: none;  
    cursor: pointer;  
}  

#youtube-link-btn{

	border-radius: 50%;
	transition: all 0.6s ease 0s;
}
#youtube-link-btn:hover {
	cursor: pointer;
	transform: scale(1.1, 1.1);
}


.members{
    width: 33%; 
    text-align: center;
}

#video {
    width: 100%;
}

.music-title{
    margin-bottom: 0px;
}

.section-background-black{
    background-color: #000;
    color: white;
}

.section-background-white{
    background-color: #fff;
    color: black;
}

/* PCのみ */
@media(min-width:751px){

    *{
        font-size: 40px;
    }

    #video{
        width: 60%;
    }
    #hero {  
        text-align: center;  
        padding: 110px 5px 10px 5px;  
    }  

    #about-us-mes{
        padding-left: 50px;
    }

}

@media (max-width: 600px) {  
    #nav-links {  
        display: none; /* 初めは非表示 */  
        flex-direction: column;  
        position: absolute;  
        background-color: #222;  
        right: 0;  
        top: 50px;  
        width: 200px;  
        border-radius: 5px;  
        transition: max-height 0.3s ease-in; /* アニメーション */  
    }  

    #nav-links.active {  
        display: flex; /* アクティブな時に表示 */  
    }  

    .menu-icon {  
        display: block; /* ハンバーガーメニューを表示 */  
    }  

    h2{
        margin: 0;
    }

    #hero {  
        text-align: center;  
        margin-top: 0;
        padding: 0px 5px 10px 5px;
        position: sticky;
        top: 0px;
        z-index: 1000;
    }  

    header{
        display: none;
    }
}  