*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
font-family: 'Noto Sans JP', sans-serif;
background: #1a0505;
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.card {
background: linear-gradient(145deg, #2d0a0a, #1a0202);
border: 2px solid rgba(255, 80, 80, 0.4);
border-radius: 20px;
max-width: 480px;
width: 100%;
padding: 40px 32px;
box-shadow: 0 0 60px rgba(255, 80, 80, 0.15), 0 20px 60px rgba(0,0,0,0.5);
position: relative;
overflow: hidden;
animation: fadeIn 0.8s ease;
}
.card::before {
content: '';
position: absolute;
top: -50%;
left: -50%;
width: 200%;
height: 200%;
background: radial-gradient(circle at 60% 40%, rgba(255,80,80,0.06) 0%, transparent 60%);
pointer-events: none;
}
@keyframes fadeIn {
from { opacity: 0; transform: translateY(20px); }
to { opacity: 1; transform: translateY(0); }
}
.badge {
display: inline-block;
background: linear-gradient(90deg, #f7c500, #ff8c00);
color: #1a0a2e;
font-size: 12px;
font-weight: 900;
letter-spacing: 0.1em;
padding: 4px 14px;
border-radius: 20px;
margin-bottom: 16px;
}
.title {
color: #ffd700;
font-size: 26px;
font-weight: 900;
line-height: 1.4;
margin-bottom: 6px;
}
.subtitle {
color: rgba(255,255,255,0.7);
font-size: 14px;
margin-bottom: 28px;
}
.total {
background: rgba(255,215,0,0.1);
border: 1px solid rgba(255,215,0,0.35);
border-radius: 12px;
padding: 16px 20px;
margin-bottom: 20px;
display: flex;
align-items: center;
gap: 12px;
}
.total-icon { font-size: 28px; }
.total-label { color: rgba(255,255,255,0.7); font-size: 13px; }
.total-amount {
color: #ffd700;
font-size: 28px;
font-weight: 900;
}
.coupons {
display: flex;
flex-direction: column;
gap: 12px;
margin-bottom: 28px;
}
.coupon {
background: rgba(255,255,255,0.05);
border-left: 4px solid #f7c500;
border-radius: 0 10px 10px 0;
padding: 14px 18px;
display: flex;
justify-content: space-between;
align-items: center;
transition: background 0.2s;
}
.coupon:hover { background: rgba(255,255,255,0.09); }
.coupon-label { color: rgba(255,255,255,0.85); font-size: 14px; }
.coupon-num { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 2px; }
.coupon-value {
color: #ffd700;
font-size: 20px;
font-weight: 900;
}
.note-box {
background: rgba(255,255,255,0.04);
border: 1px solid rgba(255,255,255,0.1);
border-radius: 10px;
padding: 16px 18px;
margin-bottom: 24px;
}
.note-title {
color: rgba(255,255,255,0.6);
font-size: 12px;
font-weight: 700;
letter-spacing: 0.08em;
margin-bottom: 8px;
}
.note-item {
color: rgba(255,255,255,0.55);
font-size: 13px;
line-height: 1.8;
padding-left: 10px;
position: relative;
}
.note-item::before {
content: '・';
position: absolute;
left: 0;
}
.cta {
text-align: center;
color: rgba(255,255,255,0.6);
font-size: 14px;
line-height: 1.8;
}
.cta strong {
color: #ffd700;
display: block;
font-size: 16px;
margin-bottom: 4px;
}
...【全て表示する】