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

html {
    scroll-behavior: smooth;
}

body {
    /* 基本フォント: Noto Sans JP */
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    /* 基本の文字色 */
    background-color: #fff0f5;
    /* 全体の背景色 (パステルピンク系) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ピクセルフォント用クラス */
.pixel-font {
    font-family: 'Press Start 2P', cursive;
    line-height: 1.4;
    /* ピクセルフォント用行間調整 */
    text-transform: uppercase;
    /* 大文字に */
    letter-spacing: 1px;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #ff69b4;
    /* ホットピンク系 */
    margin-bottom: 0.8em;
}

h2.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1.5em;
    color: #db7093;
    /* ペールバイオレットレッド */
}

h3 {
    font-size: 1.4rem;
    color: #ff8c00;
    /* ダークオレンジ */
    margin-bottom: 0.6em;
}

p {
    margin-bottom: 1.5em;
    font-size: 1rem;
}

a {
    color: #00ced1;
    /* ダークターコイズ */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #20b2aa;
    /* ライトシーグリーン */
    text-shadow: 0 0 3px rgba(0, 206, 209, 0.5);
    /* ホバー時に光る */
    text-decoration: none;
}

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

ul,
ol {
    list-style: none;
    padding-left: 0;
}

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

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

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

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

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

.bg-light {
    background-color: #f0f8ff;
    /* アリスブルー (薄い水色) */
}

.bg-dark {
    /* フッター用 */
    background-color: #483d8b;
    /* ダークスレートブルー */
    color: #eee;
    /* 暗い背景用の文字色 */
}

.bg-dark h3 {
    color: #dda0dd;
    /* プラム (明るい紫) */
}

.bg-dark a {
    color: #afeeee;
    /* ペールターコイズ */
}

.bg-dark a:hover {
    color: #fff;
    text-shadow: 0 0 5px #afeeee;
}

/* ===== ボタン共通スタイル ===== */
.button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 0;
    /* 角ばったボタン (ピクセル感) */
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    border: 2px solid;
    /* 枠線 */
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.2s ease;
    box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.2);
    /* ピクセル風の影 */
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Press Start 2P', cursive;
    /* ボタンもピクセルフォント */
}

.button i {
    margin-right: 6px;
    font-size: 0.9em;
    /* アイコンサイズ調整 */
}

.button:hover {
    transform: translate(2px, 2px);
    /* 押した感じ */
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.button:active {
    transform: translate(4px, 4px);
    box-shadow: none;
}

/* プライマリボタン (例: 配信) */
.button-primary {
    background-color: #ff69b4;
    /* ホットピンク */
    color: #fff;
    border-color: #ff1493;
    /* ディープピンク */
}

.button-primary:hover {
    background-color: #ff1493;
    color: #fff;
}

/* セカンダリボタン (例: MV) */
.button-secondary {
    background-color: #00ced1;
    /* ダークターコイズ */
    color: #fff;
    border-color: #20b2aa;
    /* ライトシーグリーン */
}

.button-secondary:hover {
    background-color: #20b2aa;
    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;
    color: #fff;
    /* 背景: パステルカラーの幾何学模様やドット絵風 */
    background-color: #add8e6;
    /* ライトブルー */
    background-image:
        linear-gradient(45deg, #ffb6c1 25%, transparent 25%),
        linear-gradient(-45deg, #ffb6c1 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #ffb6c1 75%),
        linear-gradient(-45deg, transparent 75%, #ffb6c1 75%);
    /* ライトピンクのチェック柄 */
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    background-color: rgba(0, 0, 0, 0.5);
    /* テキスト背景を少し暗く */
    padding: 30px;
    border: 4px solid #fff;
    /* 白い枠 */
}

.main-catchphrase {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 0 #ff69b4, 4px 4px 0 #000;
    /* ピクセル風影 */
}

.album-title-hero {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 0.3em;
    text-shadow: 2px 2px 0 #00ced1, 4px 4px 0 #000;
}

.sub-catchphrase {
    font-size: 1.1rem;
    color: #eee;
    margin-bottom: 2em;
    font-family: 'Noto Sans JP', sans-serif;
    /* サブキャッチは読みやすく */
    font-style: italic;
}

.hero-cta {
    margin-top: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    font-size: 0.9rem;
    /* ボタンテキスト少し小さめ */
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 2rem;
    /* 大きめ */
    text-shadow: 2px 2px 0 #000;
    animation: bouncePixel 1.5s infinite;
}

@keyframes bouncePixel {

    /* ピクセル風バウンド */
    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -8px);
    }
}

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

.intro-message {
    font-size: 1.05rem;
    line-height: 1.8;
}

.highlight-text {
    /* Dreaming/Dancing ver. 強調 */
    font-weight: 700;
    color: #ff69b4;
    /* ホットピンク */
    background-color: #fff0f5;
    /* ラベンダーブラッシュ */
    padding: 0 5px;
}

/* ===== 魅力・特徴セクション ===== */
.features-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: #fff;
    padding: 25px;
    border: 3px solid #483d8b;
    /* ダークスレートブルー枠 */
    text-align: center;
    position: relative;
}

/* ピクセル風の角 */
.feature-item::before,
.feature-item::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background-color: #483d8b;
}

.feature-item::before {
    top: -3px;
    left: -3px;
}

.feature-item::after {
    bottom: -3px;
    right: -3px;
}

.feature-icon {
    font-size: 2.5em;
    color: #ff69b4;
    /* ホットピンク */
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8em;
    font-family: 'Press Start 2P', cursive;
    /* 見出しもピクセルフォント */
    color: #483d8b;
    line-height: 1.5;
}

.feature-item p {
    font-size: 0.95rem;
    color: #555;
}

/* ===== トラックリストセクション ===== */
.tracklist-section .tracklist-container {
    text-align: center;
}

.tracklist-subtitle {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 1.5em;
    font-family: 'Noto Sans JP', sans-serif;
}

.track-list {
    display: inline-block;
    /* 中央寄せのため */
    text-align: left;
    /* リスト内容は左揃え */
    margin-bottom: 30px;
}

.track-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    font-family: 'Press Start 2P', cursive;
    /* トラック名もピクセル */
    color: #483d8b;
}

.track-list li i {
    margin-right: 10px;
    color: #ff8c00;
    /* ダークオレンジ */
    width: 1.2em;
    /* アイコン幅揃え */
    text-align: center;
}

.tracklist-cta {
    margin-top: 20px;
}

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

.mv-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1em;
    font-family: 'Noto Sans JP', sans-serif;
}

.mv-description {
    font-size: 1rem;
    margin-bottom: 2em;
    color: #555;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 640px;
    margin: 30px auto 0;
    padding-top: 56.25%;
    /* 16:9 */
    overflow: hidden;
    border: 4px solid #483d8b;
    /* 枠線 */
}

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

.mv-button-area {
    margin-top: 30px;
}

/* ===== CTAセクション ===== */
.cta-section {
    background-color: #ffb6c1;
    /* ライトピンク */
}

.cta-section .cta-container {
    text-align: center;
}

.cta-section .section-title {
    color: #fff;
    text-shadow: 2px 2px 0 #db7093;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #483d8b;
    margin-bottom: 1.5em;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
}

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

.cta-button {
    min-width: 300px;
    padding: 12px 30px;
    font-size: 1rem;
}

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

/* ===== フッター ===== */
.footer {
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.footer-artist,
.footer-links,
.footer-social {
    flex: 1;
    min-width: 250px;
    /* 折り返し基点 */
}

.footer h3 {
    font-size: 1.1rem;
    /* フッター見出し少し小さめ */
    margin-bottom: 15px;
}

.artist-profile-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    /* 中央揃え */
    gap: 15px;
    margin-top: 10px;
}

.artist-image-footer {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #dda0dd;
}

.artist-profile-footer p {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 0;
    color: #eee;
    /* bg-dark 用の文字色 */
}

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

.footer-links a {
    font-size: 0.95rem;
}

.footer-social a {
    display: inline-block;
    margin: 0 8px;
    font-size: 1.6rem;
    /* アイコンサイズ */
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
    /* bg-dark 用の文字色 */
}

.ai-notice {
    font-size: 0.75em;
    margin-bottom: 0.5em;
    opacity: 0.8;
}

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

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    h2.section-title {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .pixel-font {
        font-size: 0.9em;
        /* スマホではピクセルフォント少し小さく */
    }

    .main-catchphrase {
        font-size: 1.8rem;
    }

    .album-title-hero {
        font-size: 1.5rem;
    }

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

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

    .track-list li {
        font-size: 1rem;
    }

    .cta-button {
        min-width: 280px;
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .artist-profile-footer {
        flex-direction: column;
        /* プロフィールも縦 */
        text-align: center;
    }

    .artist-profile-footer p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-catchphrase {
        font-size: 1.6rem;
    }

    .album-title-hero {
        font-size: 1.3rem;
    }

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

    h3 {
        font-size: 1.2rem;
    }

    .button {
        padding: 8px 20px;
        font-size: 0.8rem;
    }

    .cta-button {
        min-width: 240px;
    }
}