body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    text-align: center;
}
header {
    background-color: #333;
    color: white;
    padding: 20px;
}
header {
    background-color: #333;
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between; /* 左右に配置 */
    flex-wrap: wrap;
}
.slide {
    position: absolute;
    width: 100%;
    height: auto;
    opacity: 0;
    transition: opacity 1s ease-in-out; /* フェードイン・フェードアウトのスムーズさ */
}
.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
}
.logo {
    max-width: 100px; /* ロゴのサイズ調整 */
    height: auto;
}
img {
    width: 100%;
    height: auto;
}
.nav {
    margin: 20px;
}
.nav a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.nav a:hover {
    color: #666;
}


footer {
    background-color: #333;
    color: white;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}


.content {
    padding: 20px;
    text-align: center;
}

.track {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    background-color: #fff;
}
.track img {
    max-width: 150px;
    height: auto;
    margin-right: 20px;
}
.track .details {
    flex: 1;
}
.track a {
    display: block;
    margin: 5px 0;
    text-decoration: none;
    color: #333;
    font-weight: bold;
}
.track a:hover {
    color: #666;
}

i {
    font-size: 24px; /* アイコンのサイズを調整 */
    color: #1DA1F2; /* デフォルトの色 */
    margin-right: 10px; /* アイコン同士の間隔 */
}

a:hover i {
    color: #1DA1F2; /* Xのアイコンのホバー時の色 */
}

a[href*="youtube.com"] i {
    color: red; /* YouTubeアイコンを赤色に設定 */
}

a[href*="instagram.com"] i {
    color: #E4405F; /* Instagramのブランドカラー */
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
    gap: 10px;
    padding: 20px;
}

/* 各画像のスタイル */
.gallery img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 画像にホバー時の効果 */
.gallery img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}