@charset "UTF-8";

/* Glassmorphism Navigation */
.glass-nav {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid #e2e8f0;
}

/* Custom Grid Lines (GOFUND風の罫線) */
.grid-line {
    border-bottom: 1px solid #334155;
}
.grid-line-top {
    border-top: 1px solid #334155;
}
.vertical-line {
    border-right: 1px solid #334155;
}

/* Text Selection Color */
::selection {
    background-color: #3B82F6;
    color: #ffffff;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Fade In Animation Utility */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

/* 料金プラン：モバイル表示時の並び順（Standard → Light → Premium） */
@media (max-width: 1023px) {
    .plan-standard {
        order: 1;
    }
    .plan-light {
        order: 2;
    }
    .plan-premium {
        order: 3;
    }
}