グラスモーフィズム見出しGlass Frost Heading
.cg-hd-glass-wrap {
position: relative;
width: 260px;
height: 110px;
border-radius: 14px;
overflow: hidden;
}
.cg-hd-glass-bg {
position: absolute;
inset: 0;
background: linear-gradient(135deg, #E8590C, #3A5A78 65%, #F2B707);
}
.cg-hd-glass {
position: absolute;
inset: 14px;
margin: 0;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
font-size: 19px;
font-weight: 900;
letter-spacing: .02em;
color: #1B1A17;
background: rgba(255, 255, 255, .35);
backdrop-filter: blur(10px);
-webkit-backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, .6);
border-radius: 10px;
transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}
.cg-hd-glass-wrap:hover .cg-hd-glass {
transform: scale(1.05);
background: rgba(255, 255, 255, .5);
box-shadow: 0 14px 32px rgba(27, 26, 23, .28);
}
<div class="cg-hd-glass-wrap"><div class="cg-hd-glass-bg"></div><h2 class="cg-hd-glass">GLASS HEADING</h2></div>