@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');

body {
	font-family: 'Noto Sans JP', sans-serif;
}

html {
	scroll-behavior: smooth;
}

.gradient-bg {
	background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
	position: relative;
}

.gradient-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
	background-size: 30px 30px;
}

.shadow-custom {
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.phone-mockup {
	width: 280px;
	height: 560px;
	background: #1f2937;
	border-radius: 40px;
	padding: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	position: relative;
}

.phone-screen {
	width: 100%;
	height: 100%;
	background: linear-gradient(to bottom, #f8fafc, #e2e8f0);
	border-radius: 32px;
	overflow: hidden;
	position: relative;
}

.phone-notch {
	width: 120px;
	height: 28px;
	background: #1f2937;
	border-radius: 0 0 20px 20px;
	margin: 0 auto;
	position: relative;
}

.notification-card {
	background: white;
	margin: 60px 20px 20px;
	padding: 16px;
	border-radius: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	animation: slideIn 1s ease-out;
}

@keyframes slideIn {
	from {
		transform: translateY(-20px);
		opacity: 0;
	}

	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.star-rating {
	color: #f59e0b;
}

.pulse-dot {
	animation: pulse 2s infinite;
}

@keyframes pulse {

	0%,
	100% {
		opacity: 1;
	}

	50% {
		opacity: 0.5;
	}
}

h1.text-3xl {
	line-height: 1.8;
}

@media (max-width:500px) {
	h2.text-gray-800 {
		text-align: left;
	}
}