/*
Theme Name: DAREA_2
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
        
body {
	font-family: 'Noto Sans JP', sans-serif;
	background-color: #f8fafc;
	color: #1e293b;
}

.hero-bg {
	background: linear-gradient(135deg, #ff3838 0%, #8e1919 100%);
	position: relative;
	overflow: hidden;
}

.hero-bg::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-image: 
		radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
		radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.2) 0%, transparent 50%);
	z-index: 1;
}

#network-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	opacity: 0.6;
}

.hero-content {
	position: relative;
	z-index: 3;
}

.service-card {
	transition: all 0.3s ease;
}

.service-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

.nav-link {
	position: relative;
}

.nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	bottom: -4px;
	left: 0;
	background-color: #b91c1c;
	transition: width 0.3s ease;
}

.nav-link:hover::after {
	width: 100%;
}

html {
	scroll-behavior: smooth;
}

.prose h3 { font-size: 1.25rem; font-weight: 700; margin-top: 1rem; margin-bottom: 0.5rem; color: #1e293b; }
.prose p { margin-bottom: 0.75rem; color: #475569; }
.prose ul { list-style-type: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }
.prose strong { color: #b91c1c; }

.members_img {
	max-width: none;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.professionals_img {
	flex: 1;
	max-width: 366px;
	min-width: 200px;
}
@media screen and (max-width: 768px) {
	.professionals_img {
		flex: auto;
		max-width: 100%;
	}
}

.privacy_wrap ul {
	list-style: inside;
	margin-bottom: 1.5rem;
}

.privacy_wrap h3 {
	font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}
