body {
font-family: "Noto Sans JP", sans-serif;
color: #333333;
-webkit-font-smoothing: antialiased;
overflow-x: hidden;
}

.text-gradient {
background: linear-gradient(74deg, #34BFFF 0%, #00BFFF 58%, #65F7C6 100%);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

/* Webkit Mask Fix for Overflow Radius */
.card-mask-fix {
-webkit-mask-image: -webkit-radial-gradient(white, black);
mask-image: radial-gradient(white, black);
transform: translateZ(0);
}

/* Scroll Reveal Classes */
.scroll-reveal {
opacity: 0;
transform: translateY(2rem);
transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.scroll-reveal.visible {
opacity: 1;
transform: translateY(0);
}

/* Grid Lines for Hero */
.grid-line {
position: absolute;
background-color: rgba(255, 255, 255, 0.15);
pointer-events: none;
}
.v-line { width: 1px; top: 0; bottom: 0; }
.h-line { height: 1px; left: 0; right: 0; }

/* Hero Animation Styles */
@keyframes circleFloat {
0%, 100% { transform: translate(0, 0) rotate(0deg); }
33% { transform: translate(35px, -25px) rotate(120deg); }
66% { transform: translate(-25px, 35px) rotate(240deg); }
}

@keyframes dotPulse {
0%, 100% { opacity: 0.1; transform: scale(0.8); }
50% { opacity: 0.35; transform: scale(1.25); }
}

@keyframes meshMove1 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(55px, -35px); }
}

@keyframes meshMove2 {
0%, 100% { transform: translate(0, 0); }
50% { transform: translate(-45px, 45px); }
}

.animated-circle {
position: absolute;
border-radius: 50%;
transition: left 0.5s ease-out, top 0.5s ease-out;
pointer-events: none;
}

.animated-dot {
position: absolute;
border-radius: 50%;
background: linear-gradient(135deg, #34BFFF, #65F7C6);
opacity: 0.2;
animation: dotPulse 4s ease-in-out infinite;
transition: left 0.5s ease-out, top 0.5s ease-out;
pointer-events: none;
}

/* Form Specific Styles */
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
appearance: none;
background-color: #FAFAFA;
}

/* Custom Checkbox */
.custom-checkbox input:checked + div {
background-color: #42BFFF;
border-color: #42BFFF;
}
.custom-checkbox input:checked + div svg {
display: block;
}

/* Mobile Menu */
#mobile-menu {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100vh;
height: 100dvh;
}

#mobile-menu.menu-open {
opacity: 1;
transform: translateY(0);
pointer-events: auto;
}

#mobile-menu.menu-closed {
opacity: 0;
transform: translateY(-10px);
pointer-events: none;
}

@media (max-width: 768px) {
.animated-circle[data-circle="1"] {
    width: 400px !important;
    height: 400px !important;
}

.animated-circle[data-circle="2"] {
    width: 520px !important;
    height: 520px !important;
}
}