/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width: 150px;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}


.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    transition: width 0.3s ease;
}

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

.cta-button {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white !important;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 0, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.4);
}

.cta-button::after {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    padding-top: 80px;
    background-color: #000;
    padding-bottom: 80px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 390px;
    align-items: self-start;
    position: relative;
    z-index: 2;
    margin-bottom: 51px;
}

.hero-title {
    font-size: clamp(43px, calc(3vw + 10px), 52px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
    padding-top: 121px;
}

.highlight {
    background: linear-gradient(135deg, #fe2c55, #948EA0, #25f4ee);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.accent {
    color: #ff0050;
    position: relative;
}

.accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.3), rgba(0, 242, 234, 0.3));
    z-index: -1;
}

.hero-subtitle {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

.hero-stats {
    margin-bottom: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    padding: 18px 36px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(255, 0, 80, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 80, 0.4);
}



/* Section Styles */
.section-header {
    text-align: left;
    margin-bottom: 91px;
}

.section-title {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
    letter-spacing: 0.04em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

.comparison-chart {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-chart h3 {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.chart-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.chart-item h4 {
    text-align: center;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.flow-step {
    background: #e3f2fd;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    min-width: 90px;
    white-space: nowrap;
}

.flow-step.unified {
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    color: white;
    min-width: 280px;
    padding: 18px 20px;
    font-size: 0.9rem;
    white-space: normal;
    line-height: 1.3;
}

.arrow {
    font-size: 1.1rem;
    color: #666;
    flex-shrink: 0;
}

/* Features Section */
.features-section {
    padding: 120px 0;
}

.ace-framework {
    margin-bottom: 80px;
}

.framework-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
}

.ace-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.ace-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ace-item:hover {
    transform: translateY(-10px);
}

.ace-letter {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 30px;
}

.ace-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.ace-item ul {
    list-style: none;
    text-align: left;
}

.ace-item li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.ace-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0050;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Cases Section */
.cases-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.case-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.case-card:hover {
    transform: translateY(-10px);
}

.case-card.featured {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    transform: scale(1.05);
}

.case-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.case-growth {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.case-card.featured .case-growth {
    color: white;
    -webkit-text-fill-color: white;
}

.case-details h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.case-details p {
    color: #666;
    margin-bottom: 20px;
}

.case-card.featured .case-details p {
    color: rgba(255, 255, 255, 0.9);
}

.case-services {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.case-services span {
    background: #e3f2fd;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #1976d2;
}

.case-card.featured .case-services span {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.company-logos {
    text-align: center;
}

.company-logos h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.logo-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    font-weight: 600;
    color: #666;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-5px);
}

/* Plans Section */
.plans-section {
    padding: 120px 0;
    background-color: #f5f5f5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.recommended {
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    transform: scale(1.05);
}

.plan-card.recommended:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00f2ea;
    color: white;
    padding: 8px 20px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 900;
}

.price-period {
    font-size: 1rem;
    color: #666;
}

.plan-card.recommended .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-features {
    margin-bottom: 30px;
}

.plan-detail {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.plan-card.recommended .plan-detail {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.detail-label {
    color: #666;
}

.plan-card.recommended .detail-label {
    color: rgba(255, 255, 255, 0.8);
}

.detail-value {
    font-weight: 600;
}

.plan-services {
    list-style: none;
}

.plan-services li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.plan-services li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff0050;
    font-weight: 700;
}

.plan-card.recommended .plan-services li::before {
    color: white;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    line-height: 1.3;
}

.contact-info p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-feature .feature-icon {
    font-size: 2rem;
    margin-top: 5px;
}

.contact-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-feature p {
    color: #000;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0050;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #ff0050, #ff4081);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 0, 80, 0.3);
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0C9AD5;
}

.footer-info p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-services h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-services ul {
    list-style: none;
}

.footer-services li {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #fff;
    color: #fff;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #333;
    padding: 10px;
}

.nav-list.mobile-open {
    display: flex !important;
    flex-direction: column !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    background: white !important;
    padding: 20px !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    z-index: 1000 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header {
        padding: 10px 0;
    }
    
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 20px;
    }
    
    .nav-list a {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    
    .nav-list a:last-child {
        border-bottom: none;
    }
    
    .cta-button {
        margin-top: 10px;
        display: block;
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-features,
    .ace-items,
    .services-grid,
    .cases-grid,
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
    }
    
    .logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.feature-item,
.service-card,
.case-card,
.plan-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}


/* 比較図のモバイル対応 */
@media (max-width: 768px) {
    .comparison-chart {
        padding: 30px 20px;
    }
    
    .chart-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .flow {
        flex-direction: column;
        gap: 15px;
    }
    
    .arrow {
        transform: rotate(90deg);
        font-size: 1.2rem;
    }
    
    .flow-step {
        min-width: 120px;
        font-size: 0.8rem;
        padding: 10px 15px;
    }
    
    .flow-step.unified {
        min-width: 200px;
        font-size: 0.85rem;
        padding: 15px 18px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .flow-step {
        font-size: 0.8rem;
        padding: 10px 14px;
        min-width: 80px;
    }
    
    .flow-step.unified {
        min-width: 250px;
        font-size: 0.85rem;
    }
}


.footer-nav li a {
    color: #fff;
}

.footer-nav {
    display: block;
}

/*==========デザイン変更CSS======================================*/
h1,h2,h3,h4,h5,h6,p,span,a,li {
    font-family: "M PLUS 2";
}

h2 {
    font-size: clamp(18px, calc(1.875vw + 10px), 30px); /* 最小18px, 基準計算式, 最大30px */
}

h3 {
    font-size: clamp(14px, calc(1.4vw + 6px), 22px); /* 最小14px, 基準計算式, 最大22px */
}

p {
    font-size: clamp(12px, calc(1.17vw + 4px), 16px); /* 最小12px, 基準計算式, 最大18px */
}

span {
    display: block;
}

.fw-r {
    font-weight: 500;
}

.color-red {
    color: #EE3A60;
}

.nav-list .neon-btn,
.neon-btn {
    display: inline-block;
    padding: 8px 24px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #FE2C55, #25F4EE);
    border: none;
    border-radius: 50px;
    text-align: center;
    animation: neonGlow 2s infinite ease-in-out alternate;
    font-family: "M PLUS 2";
    position: relative;
    z-index: 0;
    display: inline-block;
    height: 41.59px;
    line-height: 41.59px;
    padding-top: 0;
    padding-bottom: 0;
    background: transparent;
}

.nav-list .neon-btn::before,
.neon-btn::before,
.nav-list .neon-btn::after,
.neon-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.nav-list .neon-btn::before,
.neon-btn::before {
    transition: all 0.6s; /* アニメーション実行時間 */
    z-index: -1;
    background: linear-gradient(90deg, #FE2C55, #25F4EE);
    border-radius: 50px;
}

  /* グラデーション2 */
.nav-list .neon-btn::after,
.neon-btn::after {
    z-index: -2;
    background: linear-gradient(90deg, #25F4EE, #FE2C55);
    border-radius: 50px;
}

  /* ホバー時にグラデーション1を透明にする */
.nav-list .neon-btn:hover::before,
.neon-btn:hover::before {
    opacity: 0;
}

@keyframes neonGlow {
    0% {
        box-shadow:
        0 0 9px rgba(254, 44, 85, 0.5),
        0 0 15px rgba(37, 244, 238, 0.4),
        0 0 18px rgba(254, 44, 85, 0.3);
    }
    50% {
        box-shadow:
        0 0 9px rgba(254, 44, 85, 0.8),
        0 0 18px rgba(37, 244, 238, 0.6),
        0 0 225px rgba(254, 44, 85, 0.5);
    }
    100% {
        box-shadow:
        0 0 7px rgba(254, 44, 85, 0.4),
        0 0 12px rgba(37, 244, 238, 0.3),
        0 0 17px rgba(254, 44, 85, 0.2);
    }
}

.nav-list a:hover {
    color: #ff0050;
}
.nav-list .neon-btn:hover,
.neon-btn:hover {
    transform: none;
    box-shadow:
        0 0 20px rgba(254, 44, 85, 0.8),
        0 0 40px rgba(37, 244, 238, 0.6),
        0 0 60px rgba(254, 44, 85, 0.6);
}

/*==========FVセクション============================*/


/*FVグリッチアニメーション*/
/*=====glitch2===============================*/
.glitch2 {
    display: block;
    position: relative;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.03em;
    font-family: "Montserrat", sans-serif;
    z-index: 3;
}

.glitch2::before,
.glitch2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    background: transparent;
    overflow: hidden;
    width: 100%;
    pointer-events: none;
}

.glitch2::before {
    color: #f00;
    z-index: -1;
    animation: glitch2-red 2s infinite linear alternate-reverse;
}

.glitch2::after {
    color: #0ff;
    z-index: -2;
    animation: glitch2-blue 1.5s infinite linear alternate-reverse;
}

@keyframes glitch2-red {
    0% {
        clip-path: inset(80% 0 0 0);
        transform: translate(1px, -1px);
    }
    10% {
        clip-path: inset(10% 0 85% 0);
        transform: translate(-2px, 0);
    }
    20% {
        clip-path: inset(30% 0 50% 0);
        transform: translate(2px, 1px);
    }
    40% {
        clip-path: inset(0 0 0 0);
        transform: translate(-1px, -1px);
    }
    60% {
        clip-path: inset(50% 0 30% 0);
        transform: translate(3px, 0);
    }
    80% {
        clip-path: inset(0 0 80% 0);
        transform: translate(-1px, 1px);
    }
    100% {
        clip-path: inset(90% 0 0 0);
        transform: translate(1px, -2px);
    }
}

@keyframes glitch2-blue {
    0% {
        clip-path: inset(0 0 90% 0);
        transform: translate(-1px, 1px);
    }
    10% {
        clip-path: inset(80% 0 0 0);
        transform: translate(2px, -1px);
    }
    20% {
        clip-path: inset(0 0 60% 0);
        transform: translate(-2px, 2px);
    }
    40% {
        clip-path: inset(10% 0 85% 0);
        transform: translate(1px, 0);
    }
    60% {
        clip-path: inset(30% 0 40% 0);
        transform: translate(-3px, -1px);
    }
    80% {
        clip-path: inset(20% 0 40% 0);
        transform: translate(1px, 1px);
    }
    100% {
        clip-path: inset(0 0 80% 0);
        transform: translate(-1px, 2px);
    }
}

h1 {
    font-size: clamp(98px, calc(7.5vw + 20px), 116px);
    margin-bottom: 0;
}
.glitch2-2 {
    margin-top: -60px;
    margin-left: 21.5%;
}
.header {
    background: transparent;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(20px);
}
.hero-cta-box {
    text-align: center;
}

.hero-stats {
    position: relative;
    padding-top: 56px;
    padding-bottom: 56px;
    color: #fff;
    margin-bottom: 64px;
}

.hero-stats::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    z-index: 2;
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-stats::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    width: 0;
    background: linear-gradient(135deg, #ff0050, #00f2ea);
    z-index: 2;
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-stats.line-animated::before,
.hero-stats.line-animated::after {
    width: 100%;
}
.hero-stats ol {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    list-style: none;
    margin: 0;
    gap: 80px;
}
.hero-stats ol li {
    font-family: "M PLUS 2";
    font-size: 32px;
    font-weight: 700;
    padding-left: 32px;
    position: relative;
}
.hero-stats li::before {
    content: '・';
    position: absolute;
    left: -28px;
    top: -19px;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
    background: #EE3A60;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.anime-h {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.anime-h.animated-h {
    opacity: 1;
    transform: translateY(0);
}
.ace-box1 {
    margin-bottom: 52px;
}

.ace-img-box {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    margin-bottom: 120px;
}

.anime-time {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

  /* 表示状態（JSで追加） */
.anime-time.animated-time {
    opacity: 1;
    transform: translateY(0);
}

  /* 遅延（順番に出す用） */
.anime-time.delay-1 {
    transition-delay: 0.2s;
}
.anime-time.delay-2 {
    transition-delay: 0.4s;
}
.anime-time.delay-3 {
    transition-delay: 0.6s;
}
.anime-time.delay-4 {
    transition-delay: 0.8s;
}
.anime-time.delay-5 {
    transition-delay: 1s;
}

.h4-t {
    font-family: "M PLUS 2";
    font-size: 40px;
    font-weight: 900;
    text-align: center;
    letter-spacing: 0.04em;
}
.ace-h4 {
    margin-bottom: 53px;
}
.ace-h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
#features p {
    font-size: 16px;
}
.ace-box2 p {
    margin-bottom: 52px;
}
.ace-h4-2 {
    margin-bottom: 42px;
}
.plan-table {
    margin-bottom: 64px;
}
.plan-table2 {
    margin-bottom: 44px;
}
.footer-h {
    margin-bottom: 24px;
 }
.footer-h a{
    font-size: 24px;
    color: #0C9AD5;
    margin-bottom: 16px;
    text-decoration: none;
}
.contact-feature  p {
    font-size: 16px;
}
.footer-info a {
    color: #fff;
    transition: .2s all ease;
}
.kojin-hogo {
    text-decoration: none;
}
.footer-info a:hover {
    opacity: .7;
}
.footer-nav .cta-button {
    padding: 7px 24px 8px;
}
.footer-services .footer-li2 {
    margin-bottom: 26px;
}
.footer-services .neon-btn {
    line-height: 1.5;
}
.footer-kink h4 {
    text-align: center;
}
.footer-kink ul {
    list-style: none;
}
.footer-kink .nav-list a {
    color: #fff;
}
.footer-kink .nav-list {
    justify-content: center;
    margin-bottom: 24px;
}
.footer-kink h4 {
    margin-bottom: 24px;
}
.footer-kink .nav-list a:hover {
    color: rgb(255, 0, 80);
}
.footer-bottom p {
    color: #fff;
}
.contact-features h2 {
    text-align: left;
}
.hero-visual {
    width: 100%;
    margin-left: auto;
}
.s-text-cl {
    display: inline-block;
    font-size: 28px;
}
