/* LPのみヘッダーを透明にして画像の上に重ねる */
.l-header {
    background: transparent !important; /* 背景を透明に */
    position: absolute !important;     /* 画像の上に浮かせる */
    width: 100%;
    z-index: 100;
}

/* ヘッダーの文字色を白にする（必要に応じて） */
.l-header__link {
    color: #fff !important;
}

/* ページ最上部の余白（パディング）を消す */
.l-main {
    padding-top: 0 !important;
}