/* --- 基本リセット --- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* --- 変数定義 --- */
:root {
    /* カラーパレット (パステル中心 + アクセント) */
    --color-bg: #fff8fc;
    /* ごく薄いピンク背景 */
    --color-base-text: #6a6a6a;
    /* 少し柔らかいテキスト色 */
    --color-heading: #5d4037;
    /* ブラウン系見出し */
    --color-pastel-pink: #ffcce0;
    --color-pastel-blue: #cce0ff;
    --color-pastel-yellow: #fffacd;
    --color-pastel-green: #dcedc8;
    --color-accent-vivid: #ff69b4;
    /* ホットピンク (CTAなど) */
    --color-accent-bright: #ffcc80;
    /* 明るいオレンジ (サブボタンなど) */
    --color-white: #fff;
    --color-youtube: #ff0000;
    --color-twitter: #1DA1F2;
    /* Twitter Blue */

    /* フォント */
    --font-body: 'Noto Sans JP', sans-serif;
    --font-heading: 'M PLUS Rounded 1c', sans-serif;
    /* 基本見出し */
    --font-decorative: 'Yusei Magic', cursive;
    /* 装飾フォント */

    /* レイアウト */
    --container-width: 1100px;
    --container-narrow-width: 800px;
    --padding-section: 70px 0;
    --padding-container: 0 20px;
    --border-radius: 12px;
    --border-radius-large: 16px;
    --border-radius-round: 50px;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.07);
}

/* --- グローバルスタイル --- */
body {
    font-family: var(--font-body);
    color: var(--color-base-text);
    background-color: var(--color-bg);
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: var(--padding-container);
}

.container-narrow {
    max-width: var(--container-narrow-width);
    margin: 0 auto;
    padding: var(--padding-container);
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.8em;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    /* 装飾フォントを適用 */
    font-family: var(--font-decorative);
    color: var(--color-pastel-pink);
    /* 見出しの色を調整 */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h3 {
    font-size: 1.4rem;
    color: var(--color-accent-vivid);
    /* アクセントカラー */
    margin-bottom: 15px;
}

p {
    margin-bottom: 1.5em;
}

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

a:hover {
    color: #e659a1;
    /* ホバー色 */
    text-decoration: underline;
}

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

ul {
    list-style: none;
}

/* --- ボタン共通スタイル --- */
.button {
    display: inline-flex;
    /* アイコンとテキストを中央揃え */
    align-items: center;
    justify-content: center;
    padding: 14px 35px;
    border-radius: var(--border-radius-round);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.button i {
    margin-right: 8px;
    /* アイコンとテキストの間隔 */
}

.button-primary {
    background: linear-gradient(135deg, var(--color-accent-vivid), #ff85c1);
    /* グラデーション */
    color: var(--color-white);
    box-shadow: 0 5px 15px rgba(255, 105, 180, 0.4);
}

.button-primary:hover {
    background: linear-gradient(135deg, #e659a1, var(--color-accent-vivid));
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 105, 180, 0.5);
    color: var(--color-white);
    text-decoration: none;
}

.button-secondary {
    background-color: var(--color-white);
    color: var(--color-accent-bright);
    /* オレンジ系 */
    border: 2px solid var(--color-pastel-yellow);
}

.button-secondary:hover {
    background-color: var(--color-pastel-yellow);
    color: var(--color-heading);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 204, 128, 0.3);
    text-decoration: none;
}

.button-youtube {
    background-color: var(--color-youtube);
    color: var(--color-white);
    box-shadow: 0 4px 10px rgba(255, 0, 0, 0.3);
}

.button-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 0, 0, 0.4);
    color: var(--color-white);
    text-decoration: none;
}

/* --- ヒーローセクション --- */
.hero-section {
    padding: 80px 0 60px;
    /* 下パディング少し調整 */
    background: linear-gradient(145deg, var(--color-pastel-blue), var(--color-pastel-pink));
    text-align: center;
    overflow: hidden;
    /* はみ出し防止 */
}

.hero-visual {
    margin-bottom: 30px;
    display: flex;
    /* 中央揃えのため */
    justify-content: center;
}

/* ▼▼▼ キービジュアルのスタイル ▼▼▼ */
.hero-image {
    width: 180px;
    /* サイズ調整 */
    height: 180px;
    border-radius: 50%;
    /* 円形にする */
    object-fit: cover;
    /* 画像をトリミングして円にフィット */
    border: 4px solid var(--color-white);
    /* 白い枠線を追加 */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    /* 影を追加 */
}

/* ▲▲▲ キービジュアルのスタイル ▲▲▲ */

/* ▼▼▼ プレースホルダーのスタイル削除 ▼▼▼ */
/*
.visual-placeholder { ... }
.visual-placeholder i { ... }
.visual-placeholder p { ... }
*/
/* ▲▲▲ プレースホルダーのスタイル削除 ▲▲▲ */

.main-catchphrase {
    font-family: var(--font-decorative);
    /* 装飾フォント適用 */
    font-size: 2.8em;
    color: var(--color-white);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-bottom: 15px;
}

.sub-catchphrase {
    font-size: 1.4em;
    color: var(--color-white);
    opacity: 0.9;
    margin-bottom: 25px;
}

.intro-text {
    font-size: 1.1em;
    margin-bottom: 35px;
    color: var(--color-white);
    opacity: 0.95;
}

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

/* --- 楽曲紹介セクション --- */
.music-feature-section {
    padding: var(--padding-section);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-item {
    text-align: center;
}

.feature-item .icon {
    font-size: 2.5em;
    color: var(--color-pastel-green);
    /* アイコン色 */
    margin-bottom: 15px;
}

.feature-item:nth-child(2) .icon {
    color: var(--color-pastel-pink);
}

.feature-item:nth-child(3) .icon {
    color: var(--color-pastel-blue);
}

.feature-item h3 {
    font-size: 1.3em;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 0.95em;
}

/* ▼▼▼ ジャケット画像エリアの調整 ▼▼▼ */
.jacket-area {
    text-align: center;
    margin-top: 30px;
    /* 上の間隔調整 */
}

.album-info {
    text-align: center;
    margin-top: 50px;
    /* アルバム情報との間隔 */
    padding-top: 30px;
    border-top: 1px dashed var(--color-pastel-pink);
}

.album-info h3 {
    font-size: 1.5em;
    color: var(--color-heading);
    margin-bottom: 15px;
    /* ボタンとの間隔 */
}

.album-info p {
    margin-bottom: 20px;
    /* ボタンとの間隔 */
}

/* ▼▼▼ ジャケットプレースホルダーのスタイル削除 ▼▼▼ */
/*
.jacket-placeholder { ... }
.jacket-placeholder i { ... }
.jacket-placeholder p { ... }
.album-info .album-jacket { ... }
*/
/* ▲▲▲ ジャケットプレースホルダーのスタイル削除 ▲▲▲ */

/* --- MVセクション --- */
.mv-section {
    padding: var(--padding-section);
    background-color: var(--color-pastel-blue);
    /* 背景色変更 */
    text-align: center;
}

.mv-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--color-heading);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background-color: var(--color-black);
    /* iframe読み込み中の背景 */
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
}

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

/* --- アーティスト紹介セクション --- */
.about-section {
    padding: var(--padding-section);
}

.profile {
    display: flex;
    align-items: center;
    /* 垂直中央揃え */
    gap: 30px;
    background-color: var(--color-white);
    padding: 30px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
}

/* ▼▼▼ アーティスト写真のスタイル ▼▼▼ */
.profile-image {
    width: 150px;
    /* サイズ指定 */
    height: 150px;
    border-radius: 50%;
    /* 円形 */
    object-fit: cover;
    /* 画像をトリミングしてフィット */
    flex-shrink: 0;
    border: 3px solid var(--color-pastel-pink);
    /* 枠線 */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /* 影 */
}

/* ▲▲▲ アーティスト写真のスタイル ▲▲▲ */

/* ▼▼▼ プレースホルダーのスタイル削除 ▼▼▼ */
/*
.profile-image-placeholder { ... }
.profile-image-placeholder i { ... }
.profile-image-placeholder p { ... }
*/
/* ▲▲▲ プレースホルダーのスタイル削除 ▲▲▲ */

.profile-text {
    flex-grow: 1;
}

.profile-text h3 {
    font-size: 1.6em;
    color: var(--color-heading);
    margin-bottom: 10px;
}

.profile-text .credits {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--color-pastel-pink);
    font-size: 0.9em;
}

.profile-text .credits h4 {
    font-size: 1em;
    color: var(--color-base-text);
    font-weight: 700;
    margin-bottom: 5px;
}

.profile-text .credits p {
    margin-bottom: 0;
    line-height: 1.6;
}

/* --- フッター --- */
.site-footer {
    padding: 50px 0 40px;
    background-color: var(--color-pastel-pink);
    /* フッター背景色 */
    text-align: center;
}

.site-footer h2 {
    color: var(--color-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.footer-links {
    margin-bottom: 30px;
    display: flex;
    /* 横並びにする */
    justify-content: center;
    /* 中央揃え */
    align-items: center;
    /* 垂直中央揃え */
    gap: 20px;
    /* 要素間の隙間 */
    flex-wrap: wrap;
    /* 折り返し */
}

/* ▼▼▼ SNSアイコンのスタイル ▼▼▼ */
.social-icon {
    color: var(--color-heading);
    font-size: 1.8rem;
    transition: color 0.3s ease;
    display: inline-block;
    /* アイコンの配置調整 */
}

.social-icon:hover {
    color: var(--color-white);
    /* ホバー色 */
    text-decoration: none;
}

/* Twitterアイコンの色 */
.social-icon .fa-twitter:hover {
    color: var(--color-twitter);
}

/* ▲▲▲ SNSアイコンのスタイル ▲▲▲ */

.copyright {
    font-size: 0.85rem;
    color: var(--color-heading);
    opacity: 0.8;
}

.copyright p {
    margin-bottom: 5px;
}

.ai-notice {
    font-size: 0.8rem;
    margin-top: 10px;
    opacity: 0.7;
    font-weight: 700;
}

/* --- レスポンシブ対応 --- */
@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-image {
        width: 150px;
        /* スマホでのキービジュアルサイズ調整 */
        height: 150px;
    }

    .main-catchphrase {
        font-size: 2.2em;
    }

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

    .intro-text {
        font-size: 1em;
    }

    .hero-cta {
        gap: 15px;
    }

    .feature-grid {
        gap: 25px;
    }

    .feature-item h3 {
        font-size: 1.2em;
    }

    .profile {
        flex-direction: column;
        /* スマホでは縦積み */
        text-align: center;
    }

    .profile-image {
        width: 120px;
        /* スマホでのアーティスト写真サイズ調整 */
        height: 120px;
        margin: 0 auto 20px auto;
        /* 中央揃え、下マージン */
    }

    .profile-text h3 {
        text-align: center;
    }

    .button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

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

    h3 {
        font-size: 1.2rem;
    }

    .main-catchphrase {
        font-size: 1.9em;
    }

    .sub-catchphrase {
        font-size: 1.1em;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* スマホでは1カラム */

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

    .hero-cta {
        flex-direction: column;
        gap: 10px;
    }

    /* ボタンも縦積み */
}