body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    position: relative;
}
img {
    width: 100%;
    height: auto;
}
.hero-container {
    position: relative;
    width: 100%;
}

/* レスポンシブ画像表示設定 */
.hero-image-pc {
    display: block;
    width: 100%;
}

.hero-image-mobile {
    display: none;
    width: 100%;
}

/* モバイル表示時の画像切り替え */
@media (max-width: 768px) {
    .hero-image-pc {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
    }
}
/* ハンバーガーメニューボタン（右上配置） */
.hamburger-menu {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid white;
    border-radius: 8px;
    cursor: pointer;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.05);
}

.hamburger-menu i {
    color: white;
    font-size: 20px;
    transition: all 0.3s ease;
}

.hamburger-menu.active {
    background: rgba(255, 102, 0, 0.9);
    border-color: #ff6600;
}

.hamburger-menu.active i {
    color: white;
    transform: rotate(90deg);
}

/* ハンバーガーメニューナビゲーション */
.hamburger-nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 1000;
    transition: left 0.3s ease;
    padding-top: 80px;
    backdrop-filter: blur(10px);
}

.hamburger-nav.active {
    left: 0;
}

.hamburger-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hamburger-menu-list li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hamburger-menu-list li a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 20px 30px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.hamburger-menu-list li a:hover {
    background-color: rgba(255, 204, 0, 0.1);
    color: #ffcc00;
}

.hamburger-menu-list .search-item {
    padding: 20px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.hamburger-menu-list .search-item i {
    color: white;
    font-size: 18px;
}

.hamburger-menu-list .search-item input {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    padding: 10px;
    color: white;
    font-size: 16px;
}

.hamburger-menu-list .search-item input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.logo {
    position: absolute;
    top: 10px; /* ロゴの高さ調整 */
    left: 20px;
    height: 100px;
    width: auto;
    z-index: 10;
}
.band-login {
    color: #00ff00; /* 初期文字色 */
}
.band-login:hover {
    color: #ffff00; /* マウスオーバー時の色変更 */
}
#search-box::placeholder {
    color: #f0e68c; /* 薄い黄色でプレースホルダーの視認性を向上 */
}

/* BAND CONNECT解説文セクション */
.bandconnect-description-section {
    padding: 15px 0;
    background-color: #111;
    position: relative;
    border-bottom: 1px solid #333;
}

.description-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.description-content {
    text-align: center;
    line-height: 1.8;
}

.description-content p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #fff;
}

.highlight-text {
    font-size: 28px !important;
    font-weight: bold !important;
    color: #ffcc00 !important;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 204, 0, 0.3);
    margin-bottom: 40px !important;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.main-text {
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: #e8e8e8 !important;
    font-weight: 400;
}

.free-text {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #ffcc00 !important;
    text-shadow: 0 1px 3px rgba(255, 204, 0, 0.4);
    margin-bottom: 18px !important;
}

.closing-text {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #fff !important;
    margin-bottom: 0 !important;
}

.brand-name {
    color: #ffcc00;
    font-weight: bold;
    font-size: 1.1em;
    text-shadow: 0 1px 2px rgba(255, 204, 0, 0.5);
}

.emphasis {
    color: #ffcc00;
    font-weight: 600;
    position: relative;
}

.emphasis::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffcc00, transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .bandconnect-description-section {
        padding: 40px 0;
    }
    
    .description-container {
        padding: 0 15px;
    }
    
    .highlight-text {
        font-size: 24px !important;
        margin-bottom: 30px !important;
    }
    
    .main-text {
        font-size: 16px !important;
        line-height: 1.8 !important;
    }
    
    .free-text {
        font-size: 22px !important;
        margin-bottom: 15px !important;
    }
    
    .closing-text {
        font-size: 18px !important;
    }
    
    .description-content p {
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .bandconnect-description-section {
        padding: 30px 0;
    }
    
    .highlight-text {
        font-size: 22px !important;
    }
    
    .main-text {
        font-size: 14px !important;
    }
    
    .free-text {
        font-size: 20px !important;
        margin-bottom: 12px !important;
    }
    
    .closing-text {
        font-size: 16px !important;
    }
    
    .description-content p {
        margin-bottom: 12px;
    }
}

/* 今週の注目バンドセクション & New Faceセクション */
.featured-bands-section, .new-face-section {
    padding: 60px 0;
    background-color: #111;
    position: relative;
}

.more-link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.more-link:hover {
    color: #ffcc00;
}

/* 本日のライブセクション */
.todays-live-section {
    padding: 60px 0;
    background-color: #222;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.section-header .section-title {
    margin: 0;
}

.current-date {
    color: #ffcc00;
    font-size: 24px;
    font-weight: bold;
}

.live-list {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.todays-live-section .live-header {
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr 1fr !important;
    gap: 20px;
    padding: 20px;
    background-color: #444;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
    font-size: 14px;
}

.todays-live-section .live-header > div:nth-child(5) {
    text-align: center;
    padding-left: -15%;
}

.todays-live-section .live-item {
    background-color: #333;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 2fr 2fr 2fr 1fr 1fr !important;
    gap: 20px;
    align-items: center;
    transition: background-color 0.3s ease;
}

.todays-live-section .live-item:hover {
    background-color: #444;
}

.live-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
}

.live-venue {
    color: #ccc;
    font-size: 14px;
}

.live-bands {
    color: #ffcc00;
    font-size: 14px;
}

.live-time {
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.live-price {
    color: #ccc;
    font-size: 14px;
    text-align: center;
}

.live-prices {
    color: #ccc;
    font-size: 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.advance-price,
.door-price {
    display: block;
}

.price-label {
    display: block;
    font-size: 12px;
    color: #999;
    margin-bottom: 2px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .todays-live-section .live-header {
        display: none;
    }
    
    .todays-live-section .live-item {
        grid-template-columns: 1fr !important;
        gap: 10px;
        text-align: left;
    }
    
    .section-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .current-date {
        font-size: 20px;
    }
}
/* ライブがない場合のメッセージ */
.no-lives-message {
    text-align: center;
    padding: 40px 20px;
    color: #ccc;
}

.no-lives-message p {
    font-size: 16px;
    margin: 0;
/* バンド名と会場名のリンクスタイル */
.todays-live-section .live-list .live-item .band-link,
.todays-live-section .live-list .live-item .venue-link,
.todays-live-section .live-bands a,
.todays-live-section .live-venue a {
    color: #ffcc00 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
    font-weight: 500;
}

.todays-live-section .live-list .live-item .band-link:hover,
.todays-live-section .live-list .live-item .venue-link:hover,
.todays-live-section .live-bands a:hover,
.todays-live-section .live-venue a:hover {
    color: #fff !important;
    text-decoration: underline !important;
}

/* 全てのaタグに対する強制的なスタイル適用 */
.todays-live-section a,
.todays-live-section a:link,
.todays-live-section a:visited,
.todays-live-section a:active {
    color: #ffcc00 !important;
    text-decoration: none !important;
}

/* ホバー効果 - インラインスタイルを上書き */
.todays-live-section .band-link:hover,
.todays-live-section .venue-link:hover,
.todays-live-section a:hover,
.todays-live-section a:focus {
    color: #ffffff !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

/* CSS変数を使用している場合の上書き */
.todays-live-section {
    --color-accent: #ffcc00 !important;
}
}

/* フッター */
.footer {
    background-color: #000 !important;
    color: #ccc !important;
    padding: 40px 0 20px !important;
    margin-top: 20px !important;
}

/* 本日のライブセクションの位置調整 */
.todays-live-section {
    padding: 60px 0 80px;
    background-color: #222;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffcc00;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    color: #ccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #ffcc00;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 30px;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #999;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.section-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* カルーセルコンテナ */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 60px;
    box-sizing: border-box;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    width: fit-content;
    overflow: visible;
}

.carousel-item {
    flex: 0 0 350px;
    width: 350px;
    height: 200px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.carousel-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px 15px 15px;
    font-size: 14px;
    font-weight: bold;
}

/* ランキングバッジ */
.ranking-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #ffcc00, #ff9900);
    color: #000;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    z-index: 5;
    min-width: 40px;
    justify-content: center;
}

/* 1位～3位の特別なスタイル */
.ranking-badge.rank-1 {
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #000;
    font-size: 13px;
    padding: 10px 14px;
    box-shadow: 0 3px 12px rgba(255, 215, 0, 0.4);
}

.ranking-badge.rank-2 {
    background: linear-gradient(135deg, #c0c0c0, #a0a0a0);
    color: #000;
    font-size: 13px;
    padding: 10px 14px;
    box-shadow: 0 3px 12px rgba(192, 192, 192, 0.4);
}

.ranking-badge.rank-3 {
    background: linear-gradient(135deg, #cd7f32, #b8860b);
    color: #fff;
    font-size: 13px;
    padding: 10px 14px;
    box-shadow: 0 3px 12px rgba(205, 127, 50, 0.4);
}

/* 4位以下のスタイル */
.ranking-badge.rank-other {
    background: linear-gradient(135deg, #666, #444);
    color: #fff;
    font-size: 12px;
    padding: 8px 12px;
}

/* 王冠アイコンのスタイル */
.crown-icon {
    font-size: 14px;
    margin-right: 2px;
}

.ranking-badge.rank-1 .crown-icon {
    color: #ff6b00;
    font-size: 16px;
}

.ranking-badge.rank-2 .crown-icon {
    color: #666;
    font-size: 15px;
}

.ranking-badge.rank-3 .crown-icon {
    color: #8b4513;
    font-size: 15px;
}

/* カルーセルナビゲーションボタン */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
    user-select: none;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.9);
}

.carousel-nav:active {
    background: rgba(255,204,0,0.8);
    transform: translateY(-50%) scale(0.95);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 20px;
    }
    
    .carousel-item {
        flex: 0 0 280px;
        height: 160px;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    /* モバイル向けナビゲーションボタンの改善 */
    .carousel-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
        background: rgba(0,0,0,0.8);
        border: 2px solid rgba(255,255,255,0.3);
        touch-action: manipulation;
    }
    
    .carousel-nav:hover,
    .carousel-nav:focus {
        background: rgba(255,204,0,0.9);
        border-color: rgba(255,255,255,0.8);
    }
    
    .carousel-nav:active {
        background: rgba(255,204,0,1);
        transform: translateY(-50%) scale(0.9);
    }
    
    .carousel-nav.prev {
        left: 5px;
    }
    
    .carousel-nav.next {
        right: 5px;
    }
}

/* 小さなスマートフォン向けの追加調整 */
@media (max-width: 480px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .carousel-container {
        padding: 0 15px;
    }
}

/* お勧めのジャンルセクション */
.recommended-genres-section {
    padding: 60px 0;
    background-color: #1a1a1a;
    position: relative;
}

.genres-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}

.genre-tile {
    border-radius: 12px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    width: 100%;
    max-width: 280px;
    position: relative;
    overflow: hidden;
    height: 200px;
}

.genre-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.genre-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    transition: background 0.3s ease;
}

.genre-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.genre-tile:hover {
    transform: translateY(-8px);
    border-color: #ffcc00;
    box-shadow: 0 15px 35px rgba(255, 204, 0, 0.2);
}

.genre-tile:hover .genre-background {
    transform: scale(1.1);
}

.genre-tile:hover .genre-overlay {
    background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
}

.genre-icon {
    font-size: 48px;
    color: #ffcc00;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.genre-tile:hover .genre-icon {
    transform: scale(1.1);
}

.genre-title {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.genre-description {
    font-size: 14px;
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* ジャンル別のアクセントカラー */
.genre-tile[data-genre="pop"]:hover {
    border-color: #ff6b9d;
    box-shadow: 0 15px 35px rgba(255, 107, 157, 0.2);
}

.genre-tile[data-genre="pop"]:hover .genre-icon {
    color: #ff6b9d;
}

.genre-tile[data-genre="rock"]:hover {
    border-color: #ff4757;
    box-shadow: 0 15px 35px rgba(255, 71, 87, 0.2);
}

.genre-tile[data-genre="rock"]:hover .genre-icon {
    color: #ff4757;
}

.genre-tile[data-genre="blues"]:hover {
    border-color: #3742fa;
    box-shadow: 0 15px 35px rgba(55, 66, 250, 0.2);
}

.genre-tile[data-genre="blues"]:hover .genre-icon {
    color: #3742fa;
}

.genre-tile[data-genre="jazz"]:hover {
    border-color: #ffa502;
    box-shadow: 0 15px 35px rgba(255, 165, 2, 0.2);
}

.genre-tile[data-genre="jazz"]:hover .genre-icon {
    color: #ffa502;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .genres-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .genre-tile {
        max-width: none;
        height: 180px;
    }
    
    .genre-overlay {
        padding: 15px;
    }
    
    .genre-icon {
        font-size: 36px;
        margin-bottom: 15px;
    }
    
    .genre-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .genre-description {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .genres-container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    
    .genre-tile {
        height: 160px;
    }
    
    .genre-overlay {
        padding: 10px;
    }
    
    .genre-icon {
        font-size: 32px;
    }
    
    .genre-title {
        font-size: 18px;
    }
}
/* News Selectionセクション */
.news-selection-section {
    padding: 80px 0;
    background-color: #111;
    position: relative;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    max-width: 100%;
    margin: 0 0 40px 0;
}

/* 画面幅に応じたレスポンシブ調整 */
@media (max-width: 1600px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        gap: 0;
    }
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        gap: 0;
    }
}

.news-card {
    background-color: #222;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    transform: scale(0.95);
    transform-origin: center;
    border: 1px solid #333;
}

.news-card:hover {
    transform: scale(0.98);
    background-color: #333;
    border-color: #ffcc00;
}

.news-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.05);
}

.news-content {
    padding: 20px;
    position: relative;
}

.news-date {
    color: #ffcc00;
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
}

.news-band {
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}

.news-text {
    color: #ccc;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.news-link-indicator {
    position: absolute;
    top: 15px;
    right: 15px;
    color: #ffcc00;
    font-size: 12px;
}

.no-news {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

/* News Modal */
.news-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.news-modal-content {
    background-color: #222;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.news-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #333;
}

.news-modal-header h3 {
    margin: 0;
    color: #ffcc00;
    font-size: 18px;
}

.news-modal-header h3 a {
    color: #ffcc00;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-modal-header h3 a:hover {
    color: #fff;
    text-decoration: underline;
}

.news-modal-close {
    background: none;
    border: none;
    color: #ccc;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-modal-close:hover {
    color: #fff;
}

.news-modal-body {
    padding: 20px;
}

.modal-date {
    color: #ffcc00;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
}

.modal-image {
    margin-bottom: 20px;
}

.modal-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.modal-text {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    white-space: pre-line;
}

.modal-link a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: bold;
}

.modal-link a:hover {
    color: #fff;
    text-decoration: underline;
}

/* News Selection レスポンシブ対応 */
@media (max-width: 768px) {
    .news-selection-section {
        padding: 60px 20px;
    }
    
    .news-grid {
        grid-template-columns: 1fr !important;
        gap: 0;
        max-width: 100% !important;
    }
    
    .news-card {
        transform: scale(1);
    }
    
    .news-card:hover {
        transform: scale(1.02);
    }
    
    .news-modal-content {
        margin: 10px;
        max-height: 90vh;
    }
    
    .news-modal-header,
    .news-modal-body {
        padding: 15px;
    }
}

/* セクション共通スタイル */
.weekly-featured-section,
.new-face-section,
.who-we-are-section {
    padding: 80px 0;
    background-color: #111;
    position: relative;
}

.weekly-featured-section .section-title,
.new-face-section .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* もっと見るリンクのスタイル */
/* セクションのボタン右寄せ（ニュースセクションのマージンに合わせる） */
.weekly-featured-section,
.new-face-section,
.who-we-are-section,
.news-selection-section {
    text-align: right;
    padding-right: 20px;
}

/* Who We Areセクションの上部スペーシング */
.who-we-are-section {
    margin-top: 20px;
}

/* 今週の注目バンドセクションの上部スペーシング */
.weekly-featured-section {
    margin-top: 20px;
}

/* New Faceセクションの上部スペーシング */
.new-face-section {
    margin-top: 20px;
}

/* 事務局お知らせセクションの上部スペーシング */
.admin-announcements {
    margin-top: 20px;
}

/* News Selectionセクションの上部スペーシング */
.news-selection-section {
    margin-top: 20px;
}

/* Who We Areセクションの説明文のスペーシング調整（強制適用） */
.who-we-are-section .section-description {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
    line-height: 1.4 !important;
}

/* セクションタイトルのマージンもリセット（完全リセット） */
.who-we-are-section .section-title {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding-bottom: 0 !important;
    line-height: 1.2 !important;
}

/* Who We Areセクション全体のより具体的なスタイル */
.who-we-are-section div.section-title + div.section-description {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

/* ボタンのスタイル（ニュースセクションと同じマージン） */
.weekly-featured-section .more-link,
.new-face-section .more-link,
.news-selection-section .more-link {
    display: inline-block;
    position: static;
    margin: 30px 20px 0 0;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

/* Who We Areセクションのボタン（20px下部マージン統一） */
.who-we-are-section .more-link {
    display: inline-block;
    position: static;
    margin: 30px 20px 20px 0;
    padding: 10px 20px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

/* セクションタイトルは中央寄せ */
.weekly-featured-section .section-title,
.new-face-section .section-title,
.who-we-are-section .section-title,
.news-selection-section .section-title {
    text-align: center;
}

/* カルーセルコンテナとニュースグリッドは左寄せ */
.weekly-featured-section .carousel-container,
.new-face-section .carousel-container,
.who-we-are-section .carousel-container,
.news-selection-section .news-grid {
    text-align: left;
}

.weekly-featured-section .more-link:hover,
.new-face-section .more-link:hover,
.who-we-are-section .more-link:hover {
    background: #0056b3;
}

/* Who We Are セクション専用スタイル */
.who-we-are-section .section-description {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}

.who-we-are-section .carousel-container {
    position: relative;
    margin: 20px 0;
}

.who-we-are-section .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 15px;
    padding: 10px 0;
    width: fit-content;
    overflow: visible;
}

.who-we-are-section .carousel-item {
    flex: 0 0 350px;
    height: 200px;
}

.who-we-are-section .band-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.who-we-are-section .band-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.who-we-are-section .band-image:hover {
    transform: scale(1.05);
}

.who-we-are-section .band-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-section .band-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.who-we-are-section .band-photo-placeholder i {
    font-size: 3rem;
    opacity: 0.8;
}

.who-we-are-section .band-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 30px 15px 15px;
    color: white;
}

.who-we-are-section .band-title {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    display: block;
    margin-bottom: 5px;
}

.who-we-are-section .band-genre {
    font-size: 12px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    display: block;
}

.who-we-are-section .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease;
}

.who-we-are-section .carousel-nav:hover {
    background: rgba(0,0,0,0.9);
}

.who-we-are-section .carousel-nav.prev {
    left: 10px;
}

.who-we-are-section .carousel-nav.next {
    right: 10px;
}

.who-we-are-section .no-bands-message {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #666;
    font-style: italic;
}

/* カルーセルコンテナの幅制限を削除して画面全体を使用 */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 20px; /* 左右のパディングを60pxから20pxに変更 */
    box-sizing: border-box;
}

/* ========================================
   ホームページバナーセクション
   ======================================== */

/* バナーセクション全体のコンテナ */
.homepage-banner-section {
    margin: 40px 0;
    background-color: transparent;
    position: relative;
}

/* バナーコンテナ */
.homepage-banner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* バナーリンク（クリック可能な場合） */
.homepage-banner-link {
    display: block;
    width: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.homepage-banner-link:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

/* picture要素のスタイル */
.homepage-banner-picture {
    display: block;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;
}

.homepage-banner-link:hover .homepage-banner-picture {
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.2);
}

/* バナー画像のスタイル */
.homepage-banner-image {
    max-width: 100%;
    width: auto;
    height: auto;
    display: block;
    border-radius: 8px;
    transition: transform 0.3s ease;
    margin: 0 auto; /* 中央揃え */
}

/* アクセシビリティ向上のためのフォーカススタイル */
.homepage-banner-link:focus {
    outline: 2px solid #ffcc00;
    outline-offset: 2px;
}

.homepage-banner-link:focus .homepage-banner-picture {
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.3);
}

/* バナー間のスペーシング調整 */
.homepage-banner-section + .news-selection-section,
.homepage-banner-section + .todays-live-section {
    margin-top: 20px;
}

.new-face-section + .homepage-banner-section,
.news-selection-section + .homepage-banner-section {
    margin-top: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .homepage-banner-section {
        margin: 30px 0;
    }
    
    .homepage-banner-container {
        padding: 0 15px;
    }
    
    .homepage-banner-picture {
        border-radius: 6px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .homepage-banner-link:hover .homepage-banner-picture {
        box-shadow: 0 4px 15px rgba(255, 204, 0, 0.15);
    }
    
    .homepage-banner-link:hover {
        transform: translateY(-1px);
    }
}

/* タブレット対応 */
@media (max-width: 1024px) and (min-width: 769px) {
    .homepage-banner-container {
        padding: 0 40px;
    }
}

/* 大画面対応 */
@media (min-width: 1400px) {
    .homepage-banner-container {
        max-width: 1400px;
    }
}

/* 印刷対応 */
@media print {
    .homepage-banner-section {
        page-break-inside: avoid;
        margin: 20px 0;
    }
    
    .homepage-banner-picture {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* 高コントラストモード対応 */
@media (prefers-contrast: high) {
    .homepage-banner-link:focus {
        outline: 3px solid #ffcc00;
        outline-offset: 3px;
    }
}

/* 動きを減らす設定対応 */
@media (prefers-reduced-motion: reduce) {
    .homepage-banner-link,
    .homepage-banner-picture,
    .homepage-banner-image {
        transition: none;
    }
    
    .homepage-banner-link:hover {
        transform: none;
    }
}

/* BAND CONNECTについてナビゲーションセクション */
.about-navigation-section {
    background-color: #000;
    padding: 30px 20px;
    text-align: center;
}

.about-nav-container {
    max-width: 600px;
    margin: 0 auto;
}

.about-nav-title {
    color: #ff1493;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
}

.about-nav-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #6366f1 100%);
    border: 2px solid transparent;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.about-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.about-nav-btn:hover::before {
    left: 100%;
}

.about-nav-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
    border-color: #ffcc00;
}

.about-nav-btn-general:hover {
    background: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.about-nav-btn-band:hover {
    background: linear-gradient(135deg, #dc2626 0%, #ef4444 50%, #f87171 100%);
    box-shadow: 0 15px 40px rgba(239, 68, 68, 0.5);
}

.btn-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.9;
    font-weight: 400;
}

/* モバイル対応 */
@media (max-width: 768px) {
    .about-navigation-section {
        padding: 20px;
    }
    
    .about-nav-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .about-nav-btn {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .about-nav-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}