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

:root {
    --primary-color: #7C3AED;
    --secondary-color: #06B6D4;
    --success-color: #00B900;
    --danger-color: #DC2626;
    --warning-color: #F59E0B;
    --dark-color: #1F2937;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;
    --gray-100: #F3F4F6;
    --gray-300: #D1D5DB;
    --gray-600: #4B5563;
    --gray-900: #111827;
}

body {
    font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Meiryo', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    font-size: 16px;
}

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

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo h1 {
    font-size: 20px;
    color: var(--primary-color);
}

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

.nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover,
.nav a.active {
    color: var(--primary-color);
}

.btn-header {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 20px;
    border-radius: 8px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9333EA 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.hero h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #FDE047;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background: #6D28D9;
    transform: translateY(-2px);
}

.btn-success {
    background: var(--success-color);
    color: var(--white);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--gray-600);
    color: var(--white);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Warning Section */
.warning-section {
    background: #FEF3C7;
    padding: 40px 0;
}

.warning-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    border-left: 5px solid var(--warning-color);
}

.warning-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--warning-color);
}

.checklist {
    list-style: none;
    margin-bottom: 20px;
}

.checklist li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    border-bottom: 1px solid var(--gray-300);
}

.checklist li i {
    position: absolute;
    left: 0;
    color: var(--danger-color);
}

.warning-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 20px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9333EA 100%);
    color: var(--white);
}

.stats-section .section-title {
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-unit {
    font-size: 32px;
}

.stat-label {
    font-size: 18px;
    opacity: 0.9;
}

/* Flow Steps */
.flow-steps {
    display: grid;
    gap: 40px;
}

.step {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
}

.step-number {
    background: var(--primary-color);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

/* Area Grid */
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 40px 0;
}

.area-item {
    background: var(--light-bg);
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.area-item i {
    color: var(--success-color);
    margin-right: 8px;
}

.area-note {
    text-align: center;
    color: var(--gray-600);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    background: var(--light-bg);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* FAQ Styles */
.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 28px;
    margin-bottom: 25px;
    color: var(--primary-color);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: background 0.3s;
}

.faq-question:hover {
    background: var(--light-bg);
}

.faq-question i {
    color: var(--primary-color);
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 1000px;
}

.faq-answer p {
    line-height: 1.8;
    color: var(--gray-600);
}

.faq-answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-badge.popular {
    background: var(--danger-color);
}

.plan-name {
    font-size: 24px;
    margin: 20px 0 15px;
}

.plan-price {
    margin: 25px 0;
}

.price-amount {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
}

.price-unit {
    font-size: 24px;
}

.price-tax {
    font-size: 14px;
    color: var(--gray-600);
}

.plan-desc {
    color: var(--gray-600);
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-300);
}

.plan-features i.fa-check {
    color: var(--success-color);
    margin-right: 10px;
}

.plan-features i.fa-times {
    color: var(--gray-300);
    margin-right: 10px;
}

.plan-note {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 15px;
}

/* Pricing Table */
.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
}

.pricing-table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: left;
}

.pricing-table td {
    padding: 20px;
    border-bottom: 1px solid var(--gray-300);
}

.pricing-table tr:hover {
    background: var(--light-bg);
}

.table-note {
    text-align: center;
    margin-top: 20px;
    color: var(--gray-600);
    font-size: 14px;
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full {
    width: 100%;
}

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

.required {
    color: var(--danger-color);
    font-size: 12px;
    margin-left: 5px;
}

.optional {
    color: var(--gray-600);
    font-size: 12px;
    margin-left: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-note {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--gray-600);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s;
}

.float-btn:hover {
    transform: scale(1.1);
}

.phone-btn {
    background: var(--primary-color);
}

.line-btn {
    background: var(--success-color);
}

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #9333EA 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

/* Service Cards Enhancement */
.service-location {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-points {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

.service-points li {
    padding: 8px 0;
    font-size: 14px;
}

.service-points i {
    color: var(--success-color);
    margin-right: 8px;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-lg {
        width: 100%;
    }
}