/**
 * 詳細ページのヘッダースタイル
 *
 * @package SonyMusicFoundation
 */

/* ページヘッダー全体の設定 */
.page-header {
    position: relative;
    padding-top: 240px;
    border-bottom: 1px solid #000000;
}

/* 英語サブタイトル */
.page-header__subtitle {
    font-size: 16px;
    font-family: "BIZ UDPGothic", sans-serif;
    color: var(--color-label-blue); /* サブブランドカラー */
    margin-bottom: 12px;
    margin-left: 120px; /* デザインに合わせて調整 */
    font-weight: 700;
}

/* 日本語メインタイトル */
.page-header__title {
    font-size: 64px;
    font-weight: 700;
    color: var(--color-dark-blue); /* ブランドカラー */
    margin-bottom: 100px;
    margin-left: 120px;
	margin-right: 120px; 
    line-height: 1.2;
    letter-spacing: 0.05em;
}

/* パンくずリスト */
.page-header__breadcrumb {
    position: absolute;
    bottom: 15px;
    right: 120px;
    font-size: 16px;
}

.page-header__breadcrumb a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-header__breadcrumb a:hover {
    color: var(--color-aaaaaa);
}

.page-header__breadcrumb .current {
    color: var(--color-label-blue);
}


@media (max-width: 768px) {
    .page-header {
        padding-top: 150px;
    }

    .page-header__subtitle {
        font-size: 12px;
        margin-bottom: 12px;
        margin-left: 20px; /* デザインに合わせて調整 */
    }

    .page-header__title {
        font-size: 36px;
        font-weight: 700;
        margin-left: 20px;
		margin-right: 20px;
		margin-bottom: 60px;
    }

    .page-header__breadcrumb {
        right: 20px;
        font-size: 13px;
    }
	


}


@media screen and (min-width: 769px) and (max-width: 1300px) {
    .page-header__title {
        margin-left: 30px;
        margin-right: 30px;
    }
    .page-header__subtitle {
        margin-left: 30px;
        margin-right: 30px;
    }
	.page-header__breadcrumb {
		right: 55px;
	}
    }