/* trial.html専用CSS */

/* 比較表セクション */
.comparison-section {
    margin: 50px 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.comparison-section h3 {
    font-size: 1.8rem;
    color: #0277bd;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.comparison-table {
    overflow-x: auto;
    margin-bottom: 20px;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.comparison-table th {
    background: linear-gradient(135deg, #0277bd, #29b6f6);
    color: white;
    padding: 20px 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.comparison-table th:first-child {
    width: 25%;
    background: #37474f;
}

.free-column {
    background: linear-gradient(135deg, #4caf50, #66bb6a) !important;
}

.pro-column {
    background: linear-gradient(135deg, #ff9800, #ffb74d) !important;
}

.comparison-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #e0e0e0;
    vertical-align: top;
    line-height: 1.6;
}

.comparison-table td:first-child {
    background: #f8f9fa;
    font-weight: bold;
    color: #37474f;
    border-right: 2px solid #e0e0e0;
}

.comparison-table td:nth-child(2) {
    background: #f1f8e9;
}

.comparison-table td:nth-child(3) {
    background: #fff8e1;
}

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

.comparison-table tr:hover td:not(:first-child) {
    background-color: rgba(41, 182, 246, 0.05);
}

.table-note {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    margin: 15px 0 0 0;
    font-style: italic;
}

/* マサルくん固定画像 */
.masaru-fixed {
    position: fixed;
    bottom: -20px;
    right: 20px;
    z-index: 1500;
    pointer-events: auto;
}

.masaru-link {
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.masaru-link:hover {
    transform: translateY(-10px) scale(1.05);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.masaru-character {
    height: 35vh;
    width: auto;
    opacity: 1;
    transition: all 0.3s ease;
    max-width: none;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .comparison-section {
        padding: 30px;
        margin: 40px 0;
    }
    
    .comparison-table th {
        padding: 15px 10px;
        font-size: 1rem;
    }
    
    .comparison-table td {
        padding: 15px 10px;
    }
}

@media (max-width: 768px) {
    .masaru-fixed {
        right: 15px;
        bottom: -15px;
    }
    
    .masaru-character {
        height: 25vh;
        width: auto;
        max-width: 140px;
    }
    
    .comparison-section {
        padding: 20px;
        margin: 30px 0;
    }
    
    .comparison-section h3 {
        font-size: 1.4rem;
        margin-bottom: 20px;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-table th {
        padding: 12px 8px;
        font-size: 0.9rem;
    }
    
    .comparison-table td {
        padding: 12px 8px;
    }
    
    .comparison-table th:first-child {
        width: 30%;
    }
}

@media (max-width: 480px) {
    .masaru-fixed {
        right: 10px;
        bottom: -10px;
    }
    
    .masaru-character {
        height: 20vh;
        width: auto;
        max-width: 120px;
    }
    
    .comparison-section {
        padding: 15px;
        margin: 20px 0;
    }
    
    .comparison-section h3 {
        font-size: 1.2rem;
        line-height: 1.4;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
    
    .comparison-table td {
        padding: 10px 6px;
    }
    
    .comparison-table th:first-child,
    .comparison-table td:first-child {
        width: 35%;
    }
}

/* ページ固有のスタイルをここに記述 */
