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

body {
    font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Genegram Brand Colors */
:root {
    --primary-gradient: linear-gradient(135deg, #4a90e2 0%, #00c4b8 50%, #00d4aa 100%);
    --primary-gradient-hover: linear-gradient(135deg, #357abd 0%, #00a396 50%, #00b894 100%);
    --primary-color: #4a90e2;
    --secondary-color: #00c4b8;
    --accent-color: #00d4aa;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.btn-primary:hover {
    background: var(--primary-gradient-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    background: linear-gradient(45deg, transparent 0%, transparent 100%);
    position: relative;
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: white;
    border-color: transparent;
}

.btn-info {
    background: linear-gradient(135deg, #17a2b8 0%, #00c4b8 100%);
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #138496 0%, #00a396 100%);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.header .logo{
    line-height: 0;
}

.logo img {
    height: 32px;
}

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

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

.nav-list a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.auth-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gradient);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    background-color: #f0f8ff;
    padding: 120px 0 100px;
    margin-top: 70px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
    margin-top: -40px;
}

.hero-label {
    display: inline-block;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4b8 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 2px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.hero-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: absolute;
    right: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 60px;
}

.hero-image-mobile {
    display: none;
}

/* Problem Section */
.problem {
    padding: 80px 0;
    background: #fff;
}

.problem h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 60px;
    color: #333;
}

.problem-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.problem-item {
    text-align: center;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.problem-item img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.problem-item h3 {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

/* Solution Section */
.solution {
    padding: 80px 0;
    background-color: #f8fcff;
}

.solution h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.solution p {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.solution-item {
    text-align: center;
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.solution-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
}

.solution-item h3 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.solution-item p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Features Section */
.features {
    padding: 80px 0 0;
    background-color: #f8f9fa;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.features-content {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

.features-content:last-child {
    margin-bottom: 0;
}

.features-image {
    flex: 1;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.features-text {
    flex: 1;
}

.features-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #333;
    position: relative;
    line-height: 1.3;
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
    text-align: left;
}

.features-text h2:hover {
    transform: translateY(-2px);
}

.features-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.features-text h2:hover::after {
    width: 80px;
}

.features-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* AI Support Section */
.features .ai-support {
    padding: 80px 0;
    background-color: #fff;
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + 20px);
    padding-right: calc(50vw - 50% + 20px);
}

.features .ai-support .features-content {
    margin-bottom: 0;
}

/* Report Card Section */
.features .report-card {
    padding: 80px 0;
    background-color: #f8f9fa;
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + 20px);
    padding-right: calc(50vw - 50% + 20px);
}

.features .report-card .features-content {
    margin-bottom: 0;
}

/* Performance Prediction Section */
.features .performance-prediction {
    padding: 80px 0;
    background-color: #fff;
    margin: 0 calc(-50vw + 50%);
    padding-left: calc(50vw - 50% + 20px);
    padding-right: calc(50vw - 50% + 20px);
}

.features .performance-prediction .features-content {
    margin-bottom: 0;
}

/* Task Gauge Section */
.task-gauge {
    padding: 80px 0;
    background-color: #fff;
    text-align: center;
    position: relative;
}

.task-gauge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.02) 0%, rgba(0, 196, 184, 0.02) 50%, rgba(0, 212, 170, 0.02) 100%);
    z-index: 1;
}

.task-gauge .container {
    position: relative;
    z-index: 2;
}

.task-gauge h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.task-gauge p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.gauge-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
}

.gauge-visual img {
    width: 300px;
    height: auto;
    border-radius: 12px;
}

.gauge-info {
    text-align: center;
}

.gauge-item {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
}

.gauge-number {
    font-size: 72px;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gauge-number::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.gauge-label {
    font-size: 24px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: 5px;
}

/* AI Ideas Section */
.ai-ideas {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.ai-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.ai-text {
    flex: 1;
}

.ai-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.ai-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.ai-image {
    flex: 1;
}

.ai-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #333 0%, #2c3e50 100%);
    color: white;
    padding: 40px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gradient);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
}

.footer-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav a:hover {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .auth-buttons {
        display: flex;
        gap: 8px;
        align-items: center;
    }
    
    .auth-buttons .btn {
        font-size: 12px;
        padding: 6px 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 32px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo img {
        height: 28px;
    }
    
    .hero {
        padding: 80px 0 50px;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        margin-top: 0;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-image-mobile {
        display: block;
        margin: 30px 0;
    }
    
    .hero-image-mobile img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        max-width: 400px;
    }
    
    .hero-label {
        font-size: 16px;
        padding: 10px 20px;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text h1:after {
        right: 0;
        margin: 0 auto;
    }

    
    .hero-text p {
        font-size: 16px;
        margin-bottom: 0;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .problem-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .solution-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .ai-support .features-content,
    .performance-prediction .features-content {
        flex-direction: column-reverse;
    }
    
    .features-text h2 {
        font-size: 28px;
        text-align: center;
    }
    
    .features-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .report-card .features-text h2,
    .ai-support .features-text h2,
    .performance-prediction .features-text h2 {
        text-align: center;
    }
    
    .report-card .features-text h2::after,
    .ai-support .features-text h2::after,
    .performance-prediction .features-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .gauge-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .gauge-visual img {
        width: 250px;
    }
    
    .gauge-number {
        font-size: 48px;
    }
    
    .ai-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    
    .ai-text h2 {
        font-size: 28px;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .hero-text p {
        font-size: 15px;
    }
    
    .problem, .solution, .features, .task-gauge, .ai-ideas, .pricing {
        padding: 60px 0;
    }
    
    .problem h2, .solution h2, .features h2, .features-text h2, .task-gauge h2, .ai-text h2, .pricing h2 {
        font-size: 24px;
        text-align: center;
    }

    .problem h2,
    .features-text h2{
        font-size: 20px;
    }

    .features-text p {
        margin-bottom: 0;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .solution-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .features-text h2::after,
    .report-card .features-text h2::after,
    .ai-support .features-text h2::after,
    .performance-prediction .features-text h2::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }
    
    /* Conversion Section Small Mobile Styles */
    .conversion-header h2 {
        font-size: 28px;
    }
    
    .conversion-subtitle {
        font-size: 14px;
    }
    
    .benefit-item {
        padding: 25px 20px;
    }
    
    .benefit-icon {
        font-size: 36px;
    }
    
    .benefit-item h3 {
        font-size: 18px;
    }
    
    .card-header {
        padding: 25px 20px;
    }
    
    .card-header h3 {
        font-size: 20px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .conversion-cta {
        padding: 30px 20px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
    
    .cta-highlight {
        font-size: 18px;
    }
    
    .btn-extra-large {
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .testimonial {
        padding: 25px 20px;
    }
}

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

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

.problem-item, .solution-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.problem-item:hover, .solution-item:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

.problem-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.solution-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #357abd 0%, #00a396 50%, #00b894 100%) !important;
    transform: scale(1.1);
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #333;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 0;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.pricing-card.popular {
    border: 1px solid var(--secondary-color);
    transform: scale(1.05);
    position: relative;
}

.pricing-card.popular::before {
    display: none;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    background: #f8f9fa;
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.pricing-card.popular .pricing-header {
    background: var(--primary-gradient);
    color: white;
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff5722;
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10;
}

.pricing-features {
    padding: 10px 20px;
}

.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f3f4;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-name {
    font-size: 16px;
    color: #333;
    font-weight: 500;
}

.feature-status {
    font-size: 24px;
    font-weight: 600;
}

.feature-status.available {
    color: var(--secondary-color);
}

.feature-status.unavailable {
    color: #dc3545;
}

.feature-value {
    display: block;
    font-size: 16px;
    color: #666;
    text-align: left
}

span span.feature-value   {
    font-size: 13px;
}

.pricing-campaign {
    background-color: #f8f9fa;
    padding: 15px 20px;
    text-align: center;
    border-top: 1px solid #f1f3f4;
}

.campaign-text {
    font-size: 14px;
    color: #666;
    margin: 0 0 5px 0;
    font-weight: 500;
}

.campaign-discount {
    font-size: 16px;
    color: var(--secondary-color);
    font-weight: 600;
    margin: 0;
}

.pricing-final {
    background: white;
    padding: 20px;
    text-align: center;
    border-top: 1px solid #f1f3f4;
}

.final-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
}

.pricing-note {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 1.6;
    font-weight: 500;
}

.note-highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 24px;
}

/* Conversion Area: 豢礼ｷｴ縺輔ｌ縺溘く繝｣繝ｳ繝壹�繝ｳ繝舌リ繝ｼ鬚ｨ */
.conversion-area {
    background: #fff;
    color: #222;
    border-radius: 0;
    padding: 48px 32px 40px 32px;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}
.conversion-area-arch {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 48px;
    z-index: 1;
    pointer-events: none;
}
.conversion-area-arch svg {
    display: block;
    width: 100%;
    height: 100%;
}
.conversion-limited {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin-bottom: 14px;
    opacity: 0.92;
    text-shadow: none;
    display: inline-block;
    position: relative;
}
.conversion-limited::after {
    content: '';
    display: block;
    margin: 2px 0 0 0;
    width: 100%;
    height: 4px;
    background: #ffd600;
    border-radius: 2px;
}
.conversion-main-message .main-lead {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    display: inline-block;
    line-height: 1.4;
    text-shadow: none;
}
.conversion-pricing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin: 22px 0 28px 0;
    padding-bottom: 14px;
    position: relative;
}
.price-label, .price-arrow {
    color: #222 !important;
    font-size: 1.2rem;
    font-weight: 600;
}
.price-strike {
    color: rgba(34,34,34,0.5) !important;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0 8px;
    opacity: 0.8;
}
.price-zero {
    font-size: 2.8rem;
    font-weight: 900;
    color: #222;
    letter-spacing: 0.04em;
    margin-left: 10px;
}
.cta-button {
    background: var(--primary-gradient);
    color: #fff !important;
    border: none;
    font-weight: 700;
    font-size: 1.2rem;
    padding: 18px 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(74,144,226,0.10);
    transition: background 0.2s, color 0.2s, border 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none !important;
}
.cta-button * {
    color: #fff !important;
    transition: color 0.2s;
}
.cta-button:hover {
    background: var(--primary-gradient-hover);
    color: #fff !important;
    border: none;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 32px rgba(74,144,226,0.18);
    text-decoration: none !important;
}
.cta-button:hover * {
    color: #fff !important;
}

@media (max-width: 768px) {
    .conversion-area {
        padding: 28px 8px 24px 8px;
    }
    .conversion-main-message .main-lead {
        font-size: 1.1rem;
    }
    .conversion-pricing {
        gap: 8px;
        padding-bottom: 10px;
    }
    .price-label, .price-arrow {
        font-size: 1rem;
    }
    .price-strike {
        font-size: 1rem;
    }
    .price-zero {
        font-size: 1.7rem;
    }
    .cta-button {
        font-size: 1rem;
        padding: 12px 24px;
    }
}

/* 譌ｧurgency-banner縺ｮ蠖ｱ髻ｿ繧呈ｶ医☆ */
.urgency-banner { display: none !important; }

/* Mobile Responsive for Conversion Area */
@media (max-width: 768px) {
    .conversion-area {
        padding: 25px;
        margin-bottom: 30px;
    }
    
    .social-proof {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats {
        flex-direction: row;
        justify-content: space-around;
    }
    
    .risk-free-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cta-button {
        padding: 16px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .conversion-area {
        padding: 20px;
    }
    
    .stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-item {
        padding: 12px;
    }
    
    .testimonial-preview {
        padding: 15px;
    }
    
    .cta-button {
        padding: 14px 25px;
        font-size: 15px;
    }
}

/* Terms Page Styles */
.main-content {
    margin-top: 70px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f8ff 100%);
    min-height: calc(100vh - 70px - 200px); /* Account for header and footer */
}

.main-content .container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(74, 144, 226, 0.1);
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

.main-content .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary-gradient);
}

.main-content h1 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.main-content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.terms-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.terms-header {
    text-align: center;
    margin-bottom: 15px;
}

.terms-header p {
    margin: 4px 0;
    font-size: 16px;
    color: #666;
    font-weight: 400;
}

.terms-content p {
    margin-bottom: 20px;
    color: #444;
    font-size: 16px;
}

.terms-content h2 {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.terms-content h2::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-gradient);
}

.terms-content ol {
    margin: 20px 0;
    padding-left: 20px;
}

.terms-content ol li {
    margin-bottom: 16px;
    color: #444;
    font-size: 16px;
    line-height: 1.7;
}

.terms-content ol ol {
    margin: 12px 0;
    padding-left: 20px;
}

.terms-content ol ol li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.terms-content ul {
    margin: 12px 0;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 8px;
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.terms-date {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    color: #666;
    font-size: 14px;
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .main-content {
        padding: 40px 0;
    }
    
    .main-content .container {
        padding: 40px 20px;
        margin: 0 10px;
    }
    
    .main-content h1 {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .terms-content h2 {
        font-size: 20px;
        margin: 30px 0 15px 0;
    }
    
    .terms-header {
        margin-bottom: 15px;
    }
    
    .terms-content p,
    .terms-content ol li {
        font-size: 15px;
    }
    
    .terms-content ol ol li,
    .terms-content ul li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .main-content {
        padding: 30px 0;
    }
    
    .main-content .container {
        padding: 30px 15px;
        margin: 0 5px;
    }
    
    .main-content h1 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .terms-content h2 {
        font-size: 18px;
        margin: 25px 0 12px 0;
    }
    
    .terms-header {
        margin-bottom: 15px;
    }
    
    .terms-header p {
        font-size: 14px;
    }
    
    .terms-content p,
    .terms-content ol li {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .terms-content ol ol li,
    .terms-content ul li {
        font-size: 13px;
        margin-bottom: 6px;
    }
    
    .terms-date {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 12px;
    }
}

/* Conversion Area New Design */
.conversion-main-message {
  text-align: center;
}
.main-lead {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  letter-spacing: 0.02em;
  display: inline-block;
}
.conversion-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin:  0;
}
.price-label {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}
.price-strike {
  font-size: 1.7rem;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 600;
  margin: 0 8px;
}
.price-arrow {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
}
.price-zero {
  font-size: 3.2rem;
  font-weight: 900;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .main-lead { font-size: 1.2rem; }
  .conversion-pricing { gap: 8px; }
  .price-label { font-size: 1rem; }
  .price-strike { font-size: 1.1rem; }
  .price-arrow { font-size: 1.3rem; }
  .price-zero { font-size: 2rem; }
}

/* Security Table Styles */
.security-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.security-table th {
    background: var(--primary-gradient);
    color: white;
    padding: 15px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 14px;
    min-width: 200px;
}

.security-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.5;
}

.security-table tr:last-child td {
    border-bottom: none;
}

.security-table tr:hover td {
    background-color: #f8f9fa;
}

@media (max-width: 768px) {
    .security-table {
        font-size: 12px;
    }
    
    .security-table th,
    .security-table td {
        padding: 10px 15px;
    }
    
    .security-table th {
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .security-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .security-table th,
    .security-table td {
        padding: 8px 12px;
        font-size: 11px;
    }
}

/* Commercial Code Page Styles */
.commercial-section {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.commercial-section h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
    position: relative;
}

.commercial-section h2::before {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.commercial-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.commercial-table th {
    background: var(--primary-gradient);
    color: white;
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    min-width: 200px;
    vertical-align: top;
}

.commercial-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
    vertical-align: top;
}

.commercial-table tr:last-child td {
    border-bottom: none;
}

.commercial-table tr:hover td {
    background-color: #f8f9fa;
}

.commercial-table a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.commercial-table a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.policy-content {
    margin-top: 20px;
}

.policy-content h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    margin: 25px 0 15px 0;
    padding-left: 15px;
    border-left: 4px solid var(--secondary-color);
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #333;
}

.note {
    background: #f8f9fa;
    border-left: 4px solid var(--secondary-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .commercial-section {
        margin: 30px 0;
        padding: 20px;
    }
    
    .commercial-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .commercial-table {
        font-size: 13px;
    }
    
    .commercial-table th,
    .commercial-table td {
        padding: 12px 15px;
    }
    
    .commercial-table th {
        min-width: 120px;
    }
    
    .policy-content h3 {
        font-size: 16px;
        margin: 20px 0 12px 0;
    }
    
    .note {
        font-size: 13px;
        padding: 12px 15px;
    }
}

@media (max-width: 480px) {
    .commercial-section {
        margin: 20px 0;
        padding: 15px;
    }
    
    .commercial-section h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .commercial-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        font-size: 12px;
    }
    
    .commercial-table th,
    .commercial-table td {
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .policy-content h3 {
        font-size: 15px;
        margin: 15px 0 10px 0;
    }
    
    .policy-content ul li {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .note {
        font-size: 12px;
        padding: 10px 12px;
    }
}

/* Responsive Display Classes */
/* PC用クラス - デフォルトで表示 */
.pc {
    display: block;
}

/* SP用クラス - デフォルトで非表示 */
.sp {
    display: none;
}

/* スマホ時（768px以下）でPC用を非表示、SP用を表示 */
@media (max-width: 768px) {
    .pc {
        display: none !important;
    }
    
    .sp {
        display: block !important;
    }
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #f8fbff;
    position: relative;
}


.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-header p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.contact-info-summary {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.info-label {
    font-weight: 600;
    color: #333;
    margin-right: 8px;
}

.info-text {
    color: #666;
}

.info-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: start;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.1);
    width: 100%;
    max-width: 800px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

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

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

.required {
    color: #e74c3c;
    font-weight: 700;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8f0fe;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #fff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #d1e7fd;
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

.form-textarea::placeholder {
    color: #999;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #e8f0fe;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background: var(--primary-gradient);
    border-color: transparent;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-weight: 700;
    font-size: 12px;
}

.checkbox-text {
    color: #555;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

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

.onlyPC {
    display: block;
}

.onlySP {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .onlyPC {
        display: none;
    }

    .onlySP {
        display: block;
    }

    .contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 32px;
    }
    
    .contact-header p {
        font-size: 14px;
    }
    
    .contact-info-summary {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .info-item {
        font-size: 13px;
    }
    
    .contact-form-wrapper {
        justify-content: center;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 40px 0;
    }
    
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-info-summary {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .info-item {
        font-size: 12px;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 12px 14px;
        font-size: 13px;
    }
    
    .form-label {
        font-size: 13px;
    }
    
    .checkbox-label {
        font-size: 13px;
    }
} 