/* 基本設定 */
:root {
    --main-bg-color: #1a1a2e; /* ダークな背景 */
    --text-color: #e0e0e0; /* 明るいテキスト */
    --accent-color: #8a2be2; /* アクセントカラー (青紫系) */
    --button-bg-color: #6a1a9e; /* ボタン背景 */
    --button-hover-bg-color: #4b0e6b; /* ボタンホバー */
    --border-color: #4a4a5e; /* 区切り線 */
    --font-family-base: 'Noto Sans JP', sans-serif;
    --font-family-display: 'Montserrat', sans-serif; /* タイトル向け */
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    background-color: var(--main-bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* 横スクロールバーを非表示 */
}

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

h1, h2, h3 {
    font-family: var(--font-family-display);
    color: var(--accent-color);
    text-align: center;
    margin-bottom: 25px;
}

h1 {
    font-size: 3.5em;
    letter-spacing: 2px;
    text-shadow: 0 0 10px var(--accent-color);
}

h2 {
    font-size: 2.2em;
    line-height: 1.3;
}

h3 {
    font-size: 1.8em;
    border-bottom: 2px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

p {
    margin-bottom: 15px;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: lighten(var(--accent-color), 10%);
}

.button {
    display: inline-block;
    background-color: var(--button-bg-color);
    color: var(--text-color);
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.button:hover {
    background-color: var(--button-hover-bg-color);
    transform: translateY(-2px);
}

.button-group {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

/* ヘッダーセクション */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('hero-bg.jpg') no-repeat center center/cover; /* 背景画像は適宜用意してください */
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section h1 {
    font-size: 4.5em;
    margin-bottom: 10px;
    animation: fadeInDown 1.5s ease-out;
}

.hero-section p {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 40px;
    animation: fadeIn 2s ease-out;
}

.hero-text {
    max-width: 800px;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    margin-top: 30px;
    animation: fadeInUp 1.8s ease-out;
}

.hero-text h2 {
    color: var(--text-color);
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 1px dashed var(--accent-color);
    padding-bottom: 10px;
}

.hero-text p {
    font-size: 1.1em;
    text-align: left;
    margin-bottom: 10px;
}

/* 各セクション */
.section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.section:last-of-type {
    border-bottom: none;
}

.section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.05) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

/* NEWSセクション */
.news-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.news-list li {
    background-color: #2a2a3e;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 8px;
    border-left: 5px solid var(--accent-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-list li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

/* MUSICセクション */
.music-player {
    background-color: #2a2a3e;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 40px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
}

/* フッター */
footer {
    background-color: #12121f;
    color: #b0b0b0;
    text-align: center;
    padding: 30px 20px;
    font-size: 0.9em;
    border-top: 1px solid var(--border-color);
}

.social-links a {
    color: #b0b0b0;
    margin: 0 10px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-color);
}

/* アニメーション */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    h1 {
        font-size: 2.8em;
    }
    h2 {
        font-size: 1.8em;
    }
    h3 {
        font-size: 1.5em;
    }
    .hero-section {
        min-height: 60vh;
    }
    .hero-text {
        padding: 20px;
    }
    .section {
        padding: 40px 0;
    }
    .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.5em;
    }
    .hero-section p {
        font-size: 1.2em;
    }
    .hero-text h2 {
        font-size: 1.5em;
    }
    .hero-text p {
        font-size: 1em;
    }
    .news-list li {
        padding: 10px 15px;
        font-size: 0.9em;
    }
    .button-group .button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}