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

html {
    scroll-behavior: smooth;
    /* スムーズスクロール */
}

body {
    /* Google Fontsで指定したフォントを適用 */
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.7;
    color: #333;
    /* 基本の文字色 */
    background-color: #fffaf0;
    /* 全体の背景色 (フローラルホワイト - 温かみ) */
}

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

a {
    color: #ff7f50;
    /* リンク色 (コーラル - 温かみ) */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

h1,
h2,
h3,
.button {
    /* 見出しやボタンに温かみのある丸ゴシックを適用 */
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

h1,
h2,
h3 {
    margin-bottom: 1em;
    line-height: 1.3;
    color: #ff6347;
    /* 見出し色 (トマト - ポップさ、温かさ) */
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* 太めに */
h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* ===== レイアウト用コンテナ ===== */
.container {
    width: 90%;
    max-width: 1000px;
    /* 最大幅 */
    margin: 0 auto;
    /* 中央揃え */
    padding: 4rem 1rem;
    /* 上下の余白を多めに */
}

/* ===== セクション共通 ===== */
section {
    padding: 4rem 0;
    /* 各セクションの上下の余白 */
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

/* ===== ヒーローセクション (`#hero`) ===== */
.hero-section {
    /* background-color: #f0e6ff; */
    /* 元の背景色指定をコメントアウトまたは削除 */
    background-image: url('../img/top1.jpg');
    /* 背景画像を指定 */
    background-size: cover;
    /* 画像がセクション全体を覆うように */
    background-position: center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
    text-align: center;
    padding: 5rem 0;
    /* 上下のパディングを多めに */
    color: white;
    /* 背景画像に合わせて文字色を白に変更 */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    /* 文字に影をつけて読みやすく */
}

.hero-visual {
    margin: 0 auto 2rem auto;
    /* 中央寄せ */
    width: 150px;
    /* ファビコン画像なのでサイズを指定 */
    height: 150px;
    border-radius: 8px;
    /* 少し角丸に */
    overflow: hidden;
    /* はみ出し防止 */
    background-color: #eee;
    /* 画像読み込み中の背景 */
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をエリアに合わせて調整 */
}

.hero-catchphrase {
    margin-bottom: 1rem;
    color: #d8f3ff;
    /* キャッチコピー色 (スティールブルー - 空の色) */
}

.hero-intro {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-cta .button {
    margin: 0.5rem;
}

/* ===== ボタン共通スタイル ===== */
.button {
    display: inline-block;
    padding: 0.8em 1.5em;
    border: none;
    border-radius: 25px;
    /* 角丸を大きくして柔らかい印象に */
    font-weight: 700;
    /* 少し太めに */
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
    margin: 0.2em;
    /* ボタン間のマージン */
}

.button-primary {
    background-color: #ff7f50;
    /* プライマリボタン (コーラル) */
    color: white;
}

.button-primary:hover {
    background-color: #ff6347;
    /* ホバー色 (トマト) */
    transform: translateY(-2px);
    text-decoration: none;
}

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

.button-secondary:hover {
    background-color: #87ceeb;
    /* ホバー色 (スカイブルー) */
    transform: translateY(-2px);
    text-decoration: none;
}

/* ===== 楽曲紹介セクション (`#music-feature`) ===== */
.music-feature-section {
    background-color: #fff;
    /* 背景を白に */
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    /* レスポンシブなグリッド */
    gap: 2rem;
    /* グリッド間の隙間 */
    margin-bottom: 3rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f0f8ff;
    /* 背景色 (アリスブルー - 優しい) */
    border-radius: 8px;
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffb6c1;
    /* アイコン色 (ライトピンク - パステル) */
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #4682b4;
    /* 見出し色 (スティールブルー) */
}

/* ジャケット画像エリアは非表示 */
.jacket-image {
    display: none;
}

.feature-cta {
    text-align: center;
    margin-bottom: 1rem;
}

.music-copyright {
    text-align: center;
    font-size: 0.9rem;
    color: #777;
    margin-top: 2rem;
}


/* ===== MVセクション (`#mv`) ===== */
.mv-section {
    background-color: #e6e6fa;
    /* 背景色 (ラベンダー - ヒーローと合わせる) */
}

.mv-description {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #555;
}

.mv-embed {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 アスペクト比 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #000;
    /* ローディング中の背景 */
    margin-bottom: 1rem;
    border-radius: 8px;
    /* 角丸 */
}

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

.mv-credit {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 1.5rem;
}

/* ===== アーティスト紹介セクション (`#about`) ===== */
.about-section {
    background-color: #fff;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    /* レスポンシブ対応 */
    align-items: center;
    gap: 3rem;
}

.about-image {
    flex: 0 0 120px;
    /* Flexアイテムとして固定幅に */
    width: 120px;
    /* ファビコン画像なのでサイズを指定 */
    height: 120px;
    margin: 0 auto;
    /* 中央寄せ */
    border-radius: 50%;
    /* 丸く切り抜く */
    overflow: hidden;
    /* はみ出し防止 */
    background-color: #eee;
    /* 画像読み込み中の背景 */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* 画像をエリアに合わせて調整 */
}

.about-content {
    flex: 1 1 400px;
    /* 残りのスペースをテキストエリアに */
}

.about-content p {
    margin-bottom: 1em;
}

.about-content .button {
    margin-top: 1rem;
}

/* ===== ディスコグラフィーセクション (`#discography`) ===== */
.discography-section {
    background-color: #fffaf0;
    /* 背景色 (フローラルホワイト) */
}

.discography-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* カードレイアウト */
    gap: 1.5rem;
    /* 少し隙間を狭める */
}

.discography-item {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* 軽い影 */
    padding: 1.5rem;
    /* パディングを調整 */
}

/* ジャケット画像エリアは非表示 */
.discography-jacket {
    display: none;
}

.discography-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #ff7f50;
    /* 見出し色 (コーラル) */
}

.discography-info p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0.5rem;
}

.discography-info a {
    font-size: 0.9rem;
    margin-right: 0.5rem;
    color: #4682b4;
    /* リンク色 (スティールブルー) */
}

/* ===== フッター (`#contact`) ===== */
.footer-section {
    background-color: #add8e6;
    /* 背景色 (ライトブルー) */
    color: #333;
    text-align: center;
    padding: 3rem 1rem;
    /* 上下のパディング */
}

.footer-content {
    margin-bottom: 1.5rem;
}

.footer-content p {
    margin-bottom: 1rem;
    /* ボタンとの間隔 */
    font-weight: 500;
}

.social-links .button {
    margin: 0.5rem;
}

.button-youtube {
    background-color: #ff0000;
    /* YouTubeの赤 */
    color: white;
}

.button-youtube:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    text-decoration: none;
}

.button-x {
    background-color: #1da1f2;
    /* X (Twitter) の青 */
    color: white;
}

.button-x:hover {
    background-color: #0c85d0;
    transform: translateY(-2px);
    text-decoration: none;
}


.footer-notes {
    font-size: 0.8rem;
    color: #444;
    margin-bottom: 1rem;
}

.copyright {
    font-size: 0.9rem;
    margin-top: 1.5rem;
    color: #555;
}

/* ===== レスポンシブ対応 (スマートフォン向け) ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    .container {
        width: 95%;
        padding: 2rem 0.5rem;
        /* スマホでは左右のパディングを少し減らす */
    }

    section {
        padding: 2.5rem 0;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-visual {
        width: 120px;
        height: 120px;
    }

    .hero-cta .button {
        display: block;
        /* ボタンを縦積みに */
        margin: 1rem auto;
        /* 中央寄せ */
        width: 80%;
        /* 幅を調整 */
        max-width: 300px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        /* 縦一列に */
        gap: 1.5rem;
    }

    .about-container {
        flex-direction: column;
        /* 縦積みに */
        gap: 2rem;
        text-align: center;
        /* テキストも中央寄せに */
    }

    .about-image {
        flex-basis: 100px;
        /* 高さを基準に */
        width: 100px;
        height: 100px;
    }

    .discography-list {
        grid-template-columns: 1fr;
        /* 縦一列に */
        gap: 1rem;
    }

    .discography-item {
        padding: 1rem;
        text-align: center;
    }

    .footer-section {
        padding: 2rem 1rem;
    }

    .social-links .button {
        display: block;
        margin: 0.8rem auto;
        width: 70%;
        max-width: 250px;
    }
}