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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Serif JP', serif;
    line-height: 1.8;
    color: #4a4a4a;
    background-color: #fdfaf7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3 {
    font-weight: 700;
    color: #333;
    margin-bottom: 1em;
    line-height: 1.4;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
}

h3 {
    font-size: 1.4rem;
    color: #5a5a5a;
}

p {
    margin-bottom: 1.5em;
}

a {
    color: #8a6d90;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6a4d70;
    text-decoration: underline;
}

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

ul {
    list-style: none;
}

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

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

.bg-light {
    background-color: #f4f0ed;
}

/* ===== ヒーローセクション ===== */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80vh;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    /* 背景色とオーバーレイのため */
    /* 背景色設定 (淡い薄紫系) */
    /* background-color: #d8bfd8; */
    /* ★変更: 背景画像を削除し、色を指定 */
    background-image: url('../img/aware-hanabira.jpg');
    background-position: center;
    /* 画像を中央に配置 */
    background-repeat: no-repeat;
    /* 画像を繰り返さない */
}

/* 背景の上に半透明のオーバーレイをかけて文字を読みやすくする */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    /* 少し暗めのオーバーレイ */
    z-index: 1;
}

.hero-content {
    position: relative;
    /* オーバーレイの上に表示 */
    z-index: 2;
    max-width: 700px;
}

.main-catchcopy {
    font-size: 2.5rem;
    margin-bottom: 0.5em;
    font-weight: 400;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.sub-catchcopy {
    display: block;
    font-size: 1.5rem;
    margin-top: 0.5em;
    font-weight: 400;
}

.hero-cta-button {
    display: inline-block;
    margin-top: 2em;
    padding: 12px 30px;
    background-color: rgba(255, 255, 255, 0.85);
    /* 少し不透明度を上げる */
    color: #333;
    border: 1px solid #fff;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.hero-cta-button:hover {
    background-color: #fff;
    color: #5a5a5a;
    text-decoration: none;
}

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

#intro h2 {
    font-size: 1.6rem;
    font-weight: 400;
    color: #5a5a5a;
}

/* ===== 楽曲の魅力セクション ===== */
.charm-list {
    margin-top: 40px;
    /* Flexboxで横並びにする場合 */
    /* display: flex;
    gap: 30px;
    justify-content: space-between; */
}

.charm-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: #fff;
    /* カード背景 */
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    /* 軽い影 */
}

.charm-item h3 {
    margin-bottom: 0.5em;
}

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

.mv-embed {
    position: relative;
    width: 100%;
    max-width: 560px;
    /* YouTubeのデフォルト幅に合わせる */
    margin: 30px auto 0;
    /* 中央寄せ */
    padding-top: 56.25%;
    /* 16:9 アスペクト比 */
    overflow: hidden;
    border-radius: 5px;
    /* 角を丸める */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

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

.cta-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    /* スマホでは縦並び */
    align-items: center;
    gap: 20px;
    /* ボタン間の隙間 */
}

.cta-button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: 1px solid transparent;
    min-width: 300px;
    /* ボタンの最小幅 */
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-2px);
    /* ホバー時に少し浮き上がる */
    text-decoration: none;
}

/* プライマリボタン（配信サイト） */
.cta-button {
    background-color: #8a6d90;
    /* くすみ紫系 */
    color: #fff;
    border-color: #8a6d90;
}

.cta-button:hover {
    background-color: #7a5d80;
    border-color: #7a5d80;
    color: #fff;
}

/* セカンダリボタン（MV） */
.cta-button-secondary {
    background-color: transparent;
    color: #8a6d90;
    border-color: #8a6d90;
}

.cta-button-secondary:hover {
    background-color: rgba(138, 109, 144, 0.1);
    /* ホバー時に薄く色づく */
    color: #7a5d80;
    border-color: #7a5d80;
}

/* ===== フッター ===== */
.footer {
    background-color: #e8e4e1;
    /* フッター背景色（少し濃いめのベージュ系） */
    color: #5a5a5a;
    /* フッター文字色 */
    padding: 50px 0 30px;
    /* パディング調整 */
    text-align: center;
    font-size: 0.9rem;
}

.footer h2 {
    /* "Artist - Monzo" */
    font-size: 1.6rem;
    color: #4a4a4a;
    margin-bottom: 1.5em;
}

.footer h3 {
    /* "もっとアーティストを知る" */
    font-size: 1.2rem;
    color: #5a5a5a;
    margin-top: 2.5em;
    /* 上にスペース */
    margin-bottom: 1em;
}

.artist-profile {
    display: flex;
    flex-direction: column;
    /* スマホでは縦並び */
    align-items: center;
    gap: 20px;
    margin-bottom: 2em;
    text-align: left;
    /* プロフィール詳細は左揃え */
    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 #fff;
    /* 白い枠線 */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.artist-details p {
    margin-bottom: 0.8em;
    line-height: 1.6;
}

.artist-details p strong {
    color: #333;
}

.artist-details p small {
    display: block;
    /* 改行させる */
    margin-top: 1em;
    font-size: 0.8em;
    color: #777;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links li {
    display: inline-block;
    /* 横並びにする */
    margin: 0 15px 10px;
    /* 左右と下にマージン */
}

.footer-links a {
    color: #7a5d80;
    /* フッター内のリンク色 */
    font-weight: 700;
}

.footer-links a:hover {
    color: #5a3d60;
}

.copyright {
    margin-top: 30px;
    font-size: 0.85rem;
    color: #888;
}

/* ===== レスポンシブ対応 ===== */
@media (max-width: 768px) {
    h1.main-catchcopy {
        font-size: 2rem;
        /* スマホでは少し小さく */
    }

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

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 40px 0;
        /* スマホではセクションパディングを少し狭める */
    }

    /* 楽曲の魅力セクション - スマホではFlex横並びを解除（デフォルトで縦なので不要） */
    /* .charm-list {
        flex-direction: column;
    } */

    .cta-buttons {
        /* スマホではデフォルトで縦並びなので flex-direction の変更は不要 */
        gap: 15px;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        min-width: 250px;
        /* ボタン幅調整 */
    }

    .mv-embed {
        max-width: 90%;
        /* スマホでは幅を広げる */
    }

    .footer h2 {
        font-size: 1.4rem;
    }

    .footer h3 {
        font-size: 1.1rem;
    }

    .artist-profile {
        text-align: center;
        /* スマホでは中央揃え */
    }

    .artist-details {
        text-align: center;
        /* スマホでは中央揃え */
    }

    .footer-links li {
        display: block;
        /* スマホでは縦並び */
        margin: 0 0 10px;
    }
}

@media (min-width: 769px) {

    /* PC表示でCTAボタンを横並びにする場合 */
    .cta-buttons {
        flex-direction: row;
        /* PCでは横並び */
        justify-content: center;
        /* 中央揃え */
        gap: 30px;
    }

    /* PCではアーティスト情報を横並びにする */
    .artist-profile {
        flex-direction: row;
        /* 横並び */
        text-align: left;
        /* 左揃えに戻す */
        gap: 30px;
        /* 要素間のスペース */
    }
}