/* Form Bot Custom Styles */

body {
    font-family: "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
    margin-top: 60px;
    overflow-x: hidden;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
}

.hero-section img {
    width: 100%;
    height: auto;
    display: block;
}

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

/* Highlight Text */
.highlight {
    background: linear-gradient(to bottom, transparent 50%, #ffeb3b 50%);
    font-weight: bold;
    padding: 2px 4px;
}

/* Section Spacing */
section {
    padding: 60px 0;
}

/* Card Styles */
.card {
    border: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Button Styles */
.btn {
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-danger {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    border: none;
}

.btn-danger:hover {
    background: linear-gradient(45deg, #ff4b2b, #ff416c);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 65, 108, 0.4);
}

.btn-primary {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #764ba2, #667eea);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* Icons */
.step-icon {
    font-size: 3rem;
    color: #667eea;
    margin: 20px 0;
}

/* FAQ Accordion */
.accordion-button {
    background: #f8f9fa;
    border: none;
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
}

/* Pricing Cards */
.pricing-card {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
    border-color: #ff416c;
    position: relative;
}

.pricing-card.featured::before {
    content: "人気";
    position: absolute;
    top: 20px;
    right: -10px;
    background: #ff416c;
    color: white;
    padding: 5px 20px;
    font-size: 12px;
    font-weight: bold;
    transform: rotate(15deg);
}

/* Featurette Styles */
.featurette {
    margin: 80px 0;
}

.featurette-heading {
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.2;
}

/* YouTube Video Responsive */
.ratio {
    max-width: 800px;
    margin: 0 auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

footer a {
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #667eea !important;
}

/* List Styles */
ul.list-unstyled li {
    padding: 8px 0;
}

/* Text Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Heading Styles */
h1, h2, h3, h4, h5, h6 {
    color: #2c3e50;
    margin-bottom: 20px;
}

h2 {
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .lead {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .step-icon {
        font-size: 2rem;
    }

    section {
        padding: 40px 0;
    }
}

@media (max-width: 576px) {
    body {
        margin-top: 20px;
    }

    .hero-section {
        min-height: 50vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .card-body {
        padding: 20px 15px;
    }

    .btn {
        font-size: 12px;
        padding: 8px 20px;
    }
}

/* Custom animations for scroll effects */
.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading Animation */
.loading {
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Bot Specific Styles */
.form-bot-logo {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.product-feature {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin: 20px 0;
    transition: all 0.3s ease;
}

.product-feature:hover {
    background: #e9ecef;
    transform: translateY(-3px);
}

.pricing-badge {
    background: linear-gradient(45deg, #ff416c, #ff4b2b);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 10px;
}

/* Video container styles */
.video-container {
    position: relative;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Company info card styles */
.company-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
