/* ===== 基本設定 ===== */
*,
*::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.8;
    color: #555;
    /* 基本の文字色 (少し柔らかいグレー) */
    background-color: #fffaf0;
    /* 全体の背景色 (フローラルホワイト) */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* アクセントフォント用クラス */
.accent-font {
    font-family: 'Dancing Script', cursive;
    /* 手書き風フォント */
    font-weight: 700;
    line-height: 1.4;
}

h1,
h2,
h3 {
    font-family: 'Noto Serif JP', serif;
    /* 見出しは丸みのあるセリフ体 */
    font-weight: 700;
    color: #ff69b4;
    /* ホットピンク系 */
    margin-bottom: 0.8em;
}

h2.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1.5em;
    color: #ff85c0;
    /* 少し明るいピンク */
}

h3 {
    font-size: 1.5rem;
    color: #f08080;
    /* ライトコーラル */
    margin-bottom: 0.6em;
}

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

a {
    color: #add8e6;
    /* ライトブルー */
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
    color: #87ceeb;
    /* スカイブルー */
    text-shadow: 0 0 4px rgba(173, 216, 230, 0.6);
    /* ホバー時に光る */
    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: 900px;
    /* コンテンツ幅 */
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

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

.content-section {
    padding: 70px 0;
    position: relative;
    /* 装飾要素用 */
    overflow: hidden;
    /* 装飾要素用 */
}

.bg-light {
    background-color: #f5f5f5;
    /* ホワイトスモーク */
}

.bg-gradient {
    /* CTAセクション用 */
    background: linear-gradient(135deg, #ffdde1, #ee9ca7);
    /* ピンク系グラデーション */
    color: #fff;
    /* 白文字 */
}

.bg-gradient h2,
.bg-gradient h3 {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== ボタン共通スタイル ===== */
.button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    /* 丸いボタン */
    font-size: 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 8px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.button i {
    margin-right: 8px;
}

.button:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

.button-primary:hover {
    background-color: #ff85c0;
    /* 明るいピンク */
    color: #fff;
}

/* セカンダリボタン (例: MV) */
.button-secondary {
    background-color: #add8e6;
    /* ライトブルー */
    color: #fff;
}

.button-secondary:hover {
    background-color: #b0e0e6;
    /* パウダーブルー */
    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: linear-gradient(to bottom right, #ffdde1, #c6e2ff);
    /* ピンクから水色へ */
}

/* キラキラエフェクト (疑似要素) */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
    background-size: 20px 20px;
    /* ドットの間隔 */
    opacity: 0.5;
    animation: sparkle-move 20s infinite linear;
}

@keyframes sparkle-move {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 400px 400px;
    }

    /* 適当な距離を動かす */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    background-color: rgba(255, 255, 255, 0.1);
    /* 半透明の白背景 */
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
    /* 背景をぼかす */
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.main-catchphrase {
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4em;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
}

/* css/candy-baby-style.css の .highlight-sparkle を修正 */

.highlight-sparkle {
    /* テキストグラデーション (パステルピンク→パステル紫→パステルブルー) */
    background: linear-gradient(45deg, #ffcce0, #cce0ff);
    -webkit-background-clip: text;
    /* Safari/Chrome用 */
    background-clip: text;
    color: transparent;
    /* テキスト自体は透明にする */

    /* テキストシャドウ (少しクッキリさせる) */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
    /* 影のぼかしを少し減らす */

    /* テキストストローク (輪郭線を追加してクッキリさせる) */
    -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.7);
    /* 白っぽい細い輪郭線 */
    paint-order: stroke fill;
    /* 輪郭線を文字の内側ではなく外側に描画（対応ブラウザのみ） */

    /* 必要に応じて既存のスタイルも維持 */
    font-weight: bold;
    /* 太字 */
    /* 他のスタイルがあればここに追加 */
}

.song-title {
    font-size: 2.5rem;
    /* 曲名を目立たせる */
    color: #fff;
    margin-bottom: 0.2em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.sub-catchphrase {
    font-size: 1.2rem;
    color: #f8f8f8;
    margin-bottom: 2.5em;
    font-style: italic;
    font-family: 'Noto Serif JP', serif;
}

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

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

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 1.8rem;
    opacity: 0.8;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    animation: bounceSoft 2s infinite ease-in-out;
}

@keyframes bounceSoft {

    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.9;
    /* 少し広め */
    color: #666;
}

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

.feature-item {
    background-color: #fff;
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    font-size: 2.8em;
    color: #ffb6c1;
    /* ライトピンク */
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 182, 193, 0.5);
    /* アイコンに光彩 */
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8em;
    line-height: 1.5;
}

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

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

.mv-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-bottom: 1em;
    font-family: 'Noto Serif JP', serif;
}

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

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

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

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

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

.cta-section .section-title {
    font-size: 2.5rem;
    /* CTAタイトルは大きく */
}

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

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

/* CTAボタンのスタイルは共通定義を使用 */
.cta-button-primary {
    /* CTAのプライマリボタンをより目立たせる */
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* ===== フッター ===== */
.footer {
    padding: 50px 0 30px;
    color: #777;
    /* bg-light 用の文字色 */
}

.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.2rem;
    /* フッター見出し */
    color: #aaa;
    /* 少し薄いグレー */
    margin-bottom: 15px;
    font-family: 'Noto Serif JP', serif;
}

.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 #eee;
}

.artist-profile-footer p {
    font-size: 0.9rem;
    text-align: left;
    margin-bottom: 0;
    color: #888;
    /* フッター内テキスト色 */
}

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

.footer-links a {
    font-size: 0.95rem;
    color: #999;
    /* リンク色 */
}

.footer-links a:hover {
    color: #ff69b4;
    /* ホバー色 */
}

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

.footer-social a:hover {
    color: #ff69b4;
    /* ホバー色 */
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #eee;
    padding-top: 25px;
    text-align: center;
    font-size: 0.85rem;
    color: #aaa;
}

.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;
    }

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

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

    .cta-section .section-title {
        font-size: 2rem;
    }

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

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

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

    .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.8rem;
    }

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

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

    h3 {
        font-size: 1.2rem;
    }

    .button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

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