本文へスキップ

CRG-16 — SHADOWS

影・グラス21点 在庫あり

ガラスの質感とニューモーフィズム、影の調合表。 すべて画像不使用・クラス接頭辞 cg- 付きで、既存サイトに安全に積み込めます。

CRG-16-001
Glassmorphism

グラスモーフィズムカードGlass Card

.cg-gs-bg {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #6E7F92, #37475C);
}
.cg-gs-glass {
  padding: 22px 30px;
  font-weight: 800;
  color: #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
}
<div class="cg-gs-bg"><div class="cg-gs-glass">Glassmorphism</div></div>
GROSS WT. 478 B ORIGINAL
CRG-16-002

ニューモーフィズム(凸)Neumorphism Raised

.cg-gs-neu-bg {
  padding: 28px;
  border-radius: 16px;
  background: #E4E1DA;
}
.cg-gs-neu {
  padding: 16px 34px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .1em;
  color: #5A5650;
  background: #E4E1DA;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow:
    -6px -6px 14px rgba(255, 255, 255, .85),
    6px 6px 14px rgba(163, 157, 143, .55);
  transition: box-shadow .18s;
}
.cg-gs-neu:active {
  box-shadow:
    inset -4px -4px 10px rgba(255, 255, 255, .85),
    inset 4px 4px 10px rgba(163, 157, 143, .55);
}
<div class="cg-gs-neu-bg"><button class="cg-gs-neu" type="button">PUSH</button></div>
GROSS WT. 633 B ORIGINAL
CRG-16-003

ニューモーフィズム(凹)Neumorphism Inset

.cg-gs-neu2-bg {
  padding: 28px;
  border-radius: 16px;
  background: #E4E1DA;
}
.cg-gs-inset {
  width: 190px;
  padding: 14px 20px;
  font-size: 14px;
  color: #5A5650;
  background: #E4E1DA;
  border: none;
  border-radius: 30px;
  box-shadow:
    inset -4px -4px 10px rgba(255, 255, 255, .85),
    inset 4px 4px 10px rgba(163, 157, 143, .55);
}
.cg-gs-inset:focus { outline: 2px solid #E8590C; outline-offset: 2px; }
<div class="cg-gs-neu2-bg"><input class="cg-gs-inset" type="text" placeholder="検索..."></div>
GROSS WT. 517 B ORIGINAL
CRG-16-004
自然な多層シャドウ

多層レイヤード影Layered Shadow

.cg-gs-layer {
  padding: 26px 34px;
  font-weight: 700;
  background: #fff;
  border-radius: 14px;
  box-shadow:
    0 1px 2px rgba(27, 26, 23, .05),
    0 4px 8px rgba(27, 26, 23, .06),
    0 12px 24px rgba(27, 26, 23, .08),
    0 24px 48px rgba(27, 26, 23, .08);
}
<div class="cg-gs-layer">自然な多層シャドウ</div>
GROSS WT. 325 B ORIGINAL
CRG-16-005
発光するボックス

カラーグロー影Colored Glow

.cg-gs-glow {
  padding: 22px 32px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #E8590C, #C2426B);
  border-radius: 14px;
  box-shadow:
    0 6px 30px rgba(232, 89, 12, .45),
    0 2px 10px rgba(194, 66, 107, .35);
}
<div class="cg-gs-glow">発光するボックス</div>
GROSS WT. 299 B ORIGINAL
CRG-16-006
ぼかさない影

ハードオフセット影Hard Offset

.cg-gs-hard {
  padding: 22px 32px;
  font-weight: 800;
  background: #F2B707;
  border: 2.5px solid #1B1A17;
  border-radius: 10px;
  box-shadow: 8px 8px 0 #1B1A17;
}
<div class="cg-gs-hard">ぼかさない影</div>
GROSS WT. 215 B ORIGINAL
CRG-16-007
浮いてる

浮遊ドロップ影Floating Drop

.cg-gs-float {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.cg-gs-float .obj {
  padding: 18px 30px;
  font-weight: 800;
  color: #fff;
  background: #3A5A78;
  border-radius: 14px;
  animation: cg-gs-float-up 2.6s ease-in-out infinite;
}
.cg-gs-float i {
  width: 90px;
  height: 12px;
  margin-top: 16px;
  border-radius: 50%;
  background: rgba(27, 26, 23, .22);
  filter: blur(3px);
  animation: cg-gs-float-shadow 2.6s ease-in-out infinite;
}
@keyframes cg-gs-float-up {
  50% { transform: translateY(-10px); }
}
@keyframes cg-gs-float-shadow {
  50% { transform: scaleX(.75); opacity: .6; }
}
<div class="cg-gs-float"><div class="obj">浮いてる</div><i></i></div>
GROSS WT. 702 B ORIGINAL
CRG-16-008
内側から光る枠

インナーグロー枠Inner Glow

.cg-gs-inner {
  padding: 24px 34px;
  font-weight: 800;
  color: #EDEBE4;
  background: #14130F;
  border-radius: 14px;
  box-shadow:
    inset 0 0 24px rgba(232, 89, 12, .5),
    inset 0 0 4px rgba(242, 183, 7, .8);
}
<div class="cg-gs-inner">内側から光る枠</div>
GROSS WT. 271 B ORIGINAL
CRG-16-009

グラスナビバーGlass Navbar

.cg-gs-navbg {
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(120deg, #C2426B, #3A5A78);
}
.cg-gs-nav {
  display: flex;
  gap: 6px;
  padding: 8px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cg-gs-nav a {
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background .2s;
}
.cg-gs-nav a:hover { background: rgba(255, 255, 255, .22); }
<div class="cg-gs-navbg"><nav class="cg-gs-nav"><a href="#">Home</a><a href="#">Works</a><a href="#">About</a></nav></div>
GROSS WT. 703 B ORIGINAL
CRG-16-010
LONG

ロングシャドウ文字Long Shadow

.cg-gs-long {
  display: inline-block;
  padding: 22px 34px;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #fff;
  background: #E8590C;
  border-radius: 12px;
  overflow: hidden;
  text-shadow:
    2px 2px 0 #B84508, 4px 4px 0 #B84508, 6px 6px 0 #B84508,
    8px 8px 0 #B84508, 10px 10px 0 #B84508, 12px 12px 0 #B84508;
}
<div class="cg-gs-long">LONG</div>
GROSS WT. 382 B ORIGINAL
CRG-16-011
SUMMER COLLECTION2026.07.15 START

すりガラス帯バナーFrosted Banner

.cg-gs-frostbg {
  width: 280px;
  padding: 34px 0;
  border-radius: 16px;
  background:
    radial-gradient(at 20% 30%, #E8590C 0, transparent 55%),
    radial-gradient(at 80% 70%, #3A5A78 0, transparent 55%),
    #C2426B;
}
.cg-gs-frostbar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin: 0 22px;
  padding: 14px 0;
  color: #fff;
  text-align: center;
  background: rgba(255, 255, 255, .14);
  border-top: 1px solid rgba(255, 255, 255, .5);
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}
.cg-gs-frostbar b { font-size: 15px; letter-spacing: .12em; }
.cg-gs-frostbar span { font-size: 10.5px; letter-spacing: .2em; opacity: .85; }
<div class="cg-gs-frostbg"><div class="cg-gs-frostbar"><b>SUMMER COLLECTION</b><span>2026.07.15 START</span></div></div>
GROSS WT. 869 B ORIGINAL
CRG-16-012

エレベーション見本帳Elevation Scale

.cg-gs-elev { display: flex; gap: 20px; }
.cg-gs-elev i {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: #fff;
}
.cg-gs-elev .e1 { box-shadow: 0 1px 3px rgba(27, 26, 23, .14); }
.cg-gs-elev .e2 { box-shadow: 0 4px 10px rgba(27, 26, 23, .16); }
.cg-gs-elev .e3 { box-shadow: 0 12px 28px rgba(27, 26, 23, .2); }
<div class="cg-gs-elev"><i class="e1"></i><i class="e2"></i><i class="e3"></i></div>
GROSS WT. 414 B ORIGINAL
CRG-16-013
Liquid Glass

リキッドグラスLiquid Glass

/* blur+saturate+brightness の複合と内側ハイライトで「厚みのあるガラス」 */
.cg-gs-liquidbg {
  padding: 30px;
  border-radius: 18px;
  background:
    radial-gradient(at 25% 20%, #E8590C 0, transparent 55%),
    radial-gradient(at 80% 75%, #3A5A78 0, transparent 55%),
    #C2426B;
}
.cg-gs-liquid {
  padding: 22px 32px;
  font-weight: 800;
  color: #fff;
  border-radius: 20px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(14px) saturate(160%) brightness(1.08);
  -webkit-backdrop-filter: blur(14px) saturate(160%) brightness(1.08);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, .55),
    inset 0 -8px 18px rgba(255, 255, 255, .12),
    0 14px 34px rgba(0, 0, 0, .25);
}
<div class="cg-gs-liquidbg"><div class="cg-gs-liquid">Liquid Glass</div></div>
GROSS WT. 846 B ORIGINAL
CRG-16-014
2枚重ねの奥行き

積層グラスカードStacked Glass

.cg-gs-stackbg {
  padding: 34px 40px;
  border-radius: 18px;
  background: linear-gradient(135deg, #37787E, #1E3B47);
}
.cg-gs-stackset { position: relative; }
.cg-gs-stackset i {
  position: absolute;
  inset: -12px 14px auto -14px;
  height: 100%;
  border-radius: 14px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transform: rotate(-4deg);
}
.cg-gs-stackset span {
  position: relative;
  display: inline-block;
  padding: 18px 26px;
  font-size: 13.5px;
  font-weight: 800;
  color: #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}
<div class="cg-gs-stackbg"><div class="cg-gs-stackset"><i></i><span>2枚重ねの奥行き</span></div></div>
GROSS WT. 892 B ORIGINAL
CRG-16-015
すーはー

呼吸する影Breathing Shadow

.cg-gs-breathe {
  padding: 26px 40px;
  font-weight: 700;
  background: #fff;
  border-radius: 16px;
  animation: cg-gs-breathe-move 3.6s ease-in-out infinite;
}
@keyframes cg-gs-breathe-move {
  0%, 100% { box-shadow: 0 4px 12px rgba(27, 26, 23, .12); transform: scale(1); }
  50% { box-shadow: 0 22px 44px rgba(27, 26, 23, .18); transform: scale(1.03); }
}
<div class="cg-gs-breathe">すーはー</div>
GROSS WT. 404 B ORIGINAL
CRG-16-016
Glass Sheen

光が走るグラスカードGlass Sheen

.cg-gs-sheenbg {
  padding: 30px;
  border-radius: 16px;
  background: linear-gradient(135deg, #C2426B, #4C5FD5);
}
.cg-gs-sheen {
  position: relative;
  padding: 20px 32px;
  font-weight: 800;
  color: #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  overflow: hidden;
}
.cg-gs-sheen::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -80%;
  width: 40%;
  height: 160%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  animation: cg-gs-sheen-run 3.4s ease-in-out infinite;
}
@keyframes cg-gs-sheen-run {
  0%, 50% { left: -80%; }
  100% { left: 140%; }
}
<div class="cg-gs-sheenbg"><div class="cg-gs-sheen">Glass Sheen</div></div>
GROSS WT. 856 B ORIGINAL
CRG-16-017
NEON

明滅ネオン枠Neon Pulse Frame

.cg-gs-neonbg {
  padding: 26px 34px;
  border-radius: 16px;
  background: #14130F;
}
.cg-gs-neon {
  padding: 18px 38px;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: .22em;
  color: #7FD4FF;
  border: 2px solid #7FD4FF;
  border-radius: 12px;
  animation: cg-gs-neon-glow 2.2s ease-in-out infinite;
}
@keyframes cg-gs-neon-glow {
  0%, 100% {
    box-shadow: 0 0 6px rgba(127, 212, 255, .6), inset 0 0 6px rgba(127, 212, 255, .4);
    text-shadow: 0 0 8px rgba(127, 212, 255, .8);
  }
  50% {
    box-shadow: 0 0 22px rgba(127, 212, 255, .9), inset 0 0 14px rgba(127, 212, 255, .55);
    text-shadow: 0 0 18px rgba(127, 212, 255, 1);
  }
}
<div class="cg-gs-neonbg"><div class="cg-gs-neon">NEON</div></div>
GROSS WT. 718 B ORIGINAL
CRG-16-018
HOVER ME

ホバーでグロー浮上Lift & Glow

.cg-gs-liftglow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 24px 46px;
  font-weight: 900;
  letter-spacing: .12em;
  color: #fff;
  background: linear-gradient(135deg, #E8590C, #C2426B);
  border-radius: 16px;
  cursor: pointer;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 14px rgba(194, 66, 107, .3);
}
.cg-gs-liftglow:hover {
  transform: translateY(-6px);
  box-shadow:
    0 18px 38px rgba(232, 89, 12, .4),
    0 6px 16px rgba(194, 66, 107, .4);
}
<div class="cg-gs-liftglow">HOVER ME</div>
GROSS WT. 569 B ORIGINAL
CRG-16-019
AI ENGINE

背後で回るグローOrbiting Glow

.cg-gs-orbitglow {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 26px 44px;
  border-radius: 16px;
  background: #14130F;
  overflow: hidden;
}
.cg-gs-orbitglow i {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #4C5FD5;
  filter: blur(26px);
  animation: cg-gs-orbitglow-run 4s linear infinite;
}
.cg-gs-orbitglow span {
  position: relative;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .2em;
  color: #EAF2FF;
}
@keyframes cg-gs-orbitglow-run {
  0% { transform: rotate(0) translateX(52px); }
  100% { transform: rotate(360deg) translateX(52px); }
}
<div class="cg-gs-orbitglow"><i aria-hidden="true"></i><span>AI ENGINE</span></div>
GROSS WT. 750 B ORIGINAL
CRG-16-020
Floating

ゆらゆら浮くグラスFloating Glass

.cg-gs-fglassbg {
  padding: 30px 36px;
  border-radius: 16px;
  background: linear-gradient(160deg, #37787E, #14453C);
}
.cg-gs-fglass {
  padding: 20px 34px;
  font-weight: 800;
  color: #fff;
  border-radius: 14px;
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .42);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: cg-gs-fglass-sway 4s ease-in-out infinite;
}
@keyframes cg-gs-fglass-sway {
  0%, 100% { transform: translateY(0) rotate(-1.2deg); }
  50% { transform: translateY(-9px) rotate(1.2deg); }
}
<div class="cg-gs-fglassbg"><div class="cg-gs-fglass">Floating</div></div>
GROSS WT. 647 B ORIGINAL
CRG-16-021
Glow Border

流れるグラデ発光ボーダーFlowing Gradient Glow Border

/* 回転するconic-gradientをoverflow:hiddenでリング状に見せ、内側にガラスパネルを重ねる */
.cg-gs-gbbg {
  padding: 30px;
  border-radius: 18px;
  background: #14130F;
}
.cg-gs-gbwrap {
  position: relative;
  padding: 2.5px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
.cg-gs-gbwrap::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: conic-gradient(from 0deg, #E8590C, #F2B707, #4C5FD5, #C2426B, #E8590C);
  animation: cg-gs-gbwrap-spin 5s linear infinite;
  z-index: 0;
}
.cg-gs-gbinner {
  position: relative;
  z-index: 1;
  padding: 22px 34px;
  font-weight: 800;
  color: #fff;
  border-radius: 16px;
  background: rgba(20, 19, 15, .84);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
@keyframes cg-gs-gbwrap-spin {
  to { transform: rotate(360deg); }
}
<div class="cg-gs-gbbg"><div class="cg-gs-gbwrap"><div class="cg-gs-gbinner">Glow Border</div></div></div>
GROSS WT. 964 B ORIGINAL