/* ===== 基本設定 ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    /* 基本フォント: Noto Serif JP */
    font-family: 'Noto Serif JP', serif;
    line-height: 1.7;
    color: #e0e0e0;
    /* 明るいグレー (暗い背景用) */
    background-color: #1a1a2e;
    /* 深い青/紫 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #f0f0f0;
    /* 見出しの色 (白に近いグレー) */
    margin-bottom: 0.8em;
    line-height: 1.4;
}

h2.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5em;
    position: relative;
    /* 下線用 */
    padding-bottom: 10px;
}

/* セクションタイトルの下線 (キラキラ風) */
h2.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #ffd700, #ff69b4, #8a2be2);
    /* ゴールド→ピンク→紫 */
    border-radius: 2px;
    opacity: 0.8;
}

h3 {
    /* charm-point h3 と artist-info h3 共通 */
    font-size: 1.5rem;
    color: #c0c0ff;
    /* 淡いラベンダー色 */
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: #ffabf0;
    /* 明るいピンク系 */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #ffd700;
    /* ゴールド */
    text-shadow: 0 0 5px #ffd700;
    /* ホバー時に光る効果 */
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* スマートフォン用の改行 */
.sp-br {
    display: block;
}

@media (min-width: 769px) {
    .sp-br {
        display: none;
    }
}

/* ===== レイアウト・共通 ===== */
.container {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container-narrow {
    /* 少し狭いコンテナ */
    max-width: 800px;
}

.content-section {
    padding: 70px 0;
}

.bg-light {
    background-color: #2a2a4e;
    /* 少し明るい紫系の背景 */
}

/* ===== ボタン共通スタイル ===== */
.button {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    /* 丸いボタン */
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-family: 'Noto Sans JP', sans-serif;
    /* ボタンはゴシック系 */
}

.button i {
    /* Font Awesome アイコン */
    margin-right: 8px;
}

.button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* プライマリボタン (例: 配信ボタン) */
.button-primary {
    background: linear-gradient(135deg, #ff69b4, #8a2be2);
    /* ピンク→紫グラデーション */
    color: #fff;
}

.button-primary:hover {
    background: linear-gradient(135deg, #ff80c4, #9a4be2);
    /* 少し明るく */
    color: #fff;
}

/* セカンダリボタン (例: MVボタン) */
.button-secondary {
    background-color: rgba(0, 0, 0, 0.4);
    /* 半透明の白 */
    color: #f0f0f0;
    border: 1px solid #f0f0f0;
}

.button-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: #fff;
}

/* ===== ヒーローセクション ===== */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    /* 画面の高さいっぱい */
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;

    /* ▼▼▼ 背景画像設定 ▼▼▼ */
    /* 背景画像のパスを指定 */
    background-image: url('../img/mugenmugen.jpg');
    /* ← 画像のパスを実際のパスに置き換えてください */
    /* 背景画像の表示方法を調整 */
    background-size: cover;
    /* 画像が要素全体を覆うように調整 */
    background-position: center center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
    /* ▲▲▲ 背景画像設定 ▲▲▲ */

    /* 元の背景色指定はコメントアウトまたは削除 */
    /* background: radial-gradient(ellipse at bottom, #1a1a2e 0%, #3a3a6e 50%, #6a6ad0 100%); */
    color: #fff;
    /* テキストが見えるように白に（必要に応じて調整） */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.main-catchphrase {
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4em;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.infinity-symbol {
    font-size: 1.2em;
    /* color: #ffd700;  <-- この行を削除またはコメントアウト */
    display: inline-block;
    margin: 0 0.1em;
    animation: pulse 2s infinite ease-in-out;

    /* ▼▼▼ グラデーションスタイルを追加 ▼▼▼ */
    background: linear-gradient(90deg, #ffd700, #ff69b4, #8a2be2);
    /* ゴールド→ピンク→紫のグラデーション */
    -webkit-background-clip: text;
    /* Webkitブラウザ用 */
    background-clip: text;
    color: transparent;
    /* テキストの色を透明にする */
    /* ▲▲▲ グラデーションスタイルを追加 ▲▲▲ */
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.song-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    /* ゴールド */
    margin-bottom: 0.2em;
    font-family: 'DotGothic16', sans-serif;
    /* タイトルにピクセル風フォント */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.sub-catchphrase {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2em;
    font-style: italic;
}

.hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    /* スマホで折り返し */
}

.hero-button {
    font-size: 1.1rem;
}

/* ===== イントロダクションセクション ===== */
.intro-section .intro-container {
    max-width: 750px;
    text-align: center;
}

.intro-message {
    font-size: 1.1rem;
}

.highlight-text {
    /* 「掬う」「救う」の強調 */
    font-weight: 700;
    color: #ffd700;
    /* ゴールド */
    font-size: 1.1em;
    border-bottom: 2px dotted #ffd700;
    padding-bottom: 2px;
}

/* ===== 楽曲の魅力セクション ===== */
.charms-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.charm-point {
    background-color: rgba(255, 255, 255, 0.05);
    /* 半透明の背景 */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.charm-point:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.charm-icon {
    font-size: 2.5em;
    color: #ffabf0;
    /* 明るいピンク */
    margin-bottom: 20px;
}

.charm-point h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
}

.charm-point p {
    font-size: 1rem;
    color: #ccc;
    /* 少し明るいグレー */
}

/* ラップパートのスタイル */
.charm-point-rap {
    border-color: #ffd700;
    /* ゴールドの枠線 */
}

.charm-point-rap .charm-icon {
    color: #ffd700;
    /* ゴールドのアイコン */
}

.rap-font {
    font-family: 'DotGothic16', sans-serif;
    /* ピクセル風フォント */
    font-size: 1.1em;
    /* 少し大きく */
    line-height: 1.5;
}

.charm-point-rap h3.rap-font {
    color: #ffd700;
    /* ゴールドの見出し */
    font-size: 1.5rem;
}

.charm-point-rap p.rap-font {
    color: #eee;
}

/* ===== MV紹介セクション ===== */
.mv-section .mv-container {
    text-align: center;
}

.mv-description {
    font-size: 1.1rem;
    margin-bottom: 2.5em;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 30px auto 0;
    padding-top: 56.25%;
    /* 16:9 */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ===== CTAセクション ===== */
.cta-section .cta-container {
    text-align: center;
}

.cta-title {
    font-size: 1.8rem;
    color: #fff;
}

.cta-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.cta-button {
    min-width: 350px;
    /* ボタン幅を確保 */
    padding: 16px 40px;
    font-size: 1.2rem;
}

/* CTAボタンのスタイルは共通定義を使用 */

/* ===== アーティスト紹介セクション ===== */
.artist-info-section .artist-info-container {
    text-align: center;
}

.artist-info-section .section-title {
    /* アーティスト名 */
    color: #f0f0f0;
    margin-bottom: 1em;
}

.artist-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 2em;
    /* 下のh3との間隔 */
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.artist-image-wrapper {
    flex-shrink: 0;
}

.artist-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.artist-details {
    text-align: center;
    /* 中央揃え */
}

.artist-details p {
    margin-bottom: 0.8em;
    line-height: 1.6;
    font-size: 1rem;
    color: #ccc;
}

.artist-details p strong {
    color: #fff;
    font-weight: 700;
    /* プロフィール強調部分 */
}

.artist-details a {
    /* プロフィール内リンク */
    color: #ffabf0;
    /* ピンク系 */
    font-weight: 700;
    text-decoration: underline;
}

.artist-details a:hover {
    color: #ffd700;
    /* ゴールド */
}

.artist-info-section h3 {
    /* 「もっとアーティストを知る」 */
    text-align: center;
    margin-top: 2em;
    /* 上のプロフィールとの間隔 */
    margin-bottom: 1em;
}

.artist-message {
    font-size: 1.1rem;
    margin-bottom: 2.5em;
}

.artist-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.artist-button {
    min-width: 320px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #f0f0f0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

.artist-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.artist-button-sns {
    /* Xアイコンボタン */
    min-width: auto;
    padding: 12px 15px;
    font-size: 1.3rem;
    margin-top: 10px;
}

/* ===== フッター ===== */
.footer {
    background-color: #111122;
    /* さらに暗い背景 */
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 50px;
}

.ai-notice {
    font-size: 0.8em;
    margin-top: 0.5em;
    opacity: 0.7;
}

.copyright {
    margin-top: 0.5em;
    /* AI notice の下 */
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    h1.main-catchphrase {
        font-size: 2.2rem;
    }

    .song-title {
        font-size: 1.7rem;
    }

    .sub-catchphrase {
        font-size: 1.2rem;
    }

    h2.section-title {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.4rem;
    }

    .content-section {
        padding: 50px 0;
    }

    .charms-grid {
        grid-template-columns: 1fr;
        /* スマホでは1カラム */
        gap: 30px;
    }

    .cta-buttons {
        gap: 20px;
    }

    .cta-button {
        min-width: 300px;
        padding: 14px 35px;
        font-size: 1.1rem;
    }

    .artist-button {
        min-width: 280px;
    }

    .video-wrapper {
        max-width: 90%;
    }

    .artist-profile {
        /* スマホではデフォルトで縦なので変更不要 */
    }
}

@media (min-width: 769px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }

    .artist-profile {
        /* PCでは横並び */
        flex-direction: row;
        text-align: left;
        gap: 30px;
        align-items: center;
    }

    .artist-details {
        text-align: left;
    }

    .artist-links {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .artist-button {
        min-width: auto;
        /* 横並び時は最小幅解除 */
    }

    .artist-button-sns {
        margin-top: 0;
        /* 横並び時のマージン調整 */
    }
}