/* 基本的なフォント */
body {
    font-family: 'Noto Sans JP', 'Inter', sans-serif;
}

/* グラデーションテキスト */
.gradient-text {
    background: -webkit-linear-gradient(45deg, #3b82f6, #14b8a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ナビゲーションリンク */
.nav-link {
    position: relative;
    color: #374151;
    text-decoration: none;
    transition: color 0.3s;
}
.nav-link:hover {
    color: #2563eb;
}
/* アクティブなリンクのスタイルを更新 */
.nav-link.active {
    color: #14b8a6;
    font-weight: 700;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    /* 色を更新 */
    background-color: #14b8a6;
}

/* チェックアイコンのスタイルを更新 */
.check-icon {
    color: #22c55e;
}

/* 比較表のスタイル */
.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: center;
}
/* 見出しのフォントサイズを追加 */
.comparison-table thead th {
    font-size: 1.125rem;
}

/* アコーディオン（FAQ）のスタイル */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* ヒーローセクション用のクラス (現在は未使用) */
.hero-bg {
    background-image: url('https://placehold.co/1200x600/e2e8f0/334155?text=新しいクルマとの生活');
    background-size: cover;
    background-position: center;
}

/* スマートフォンでの基本フォントサイズを調整 */
html {
    font-size: 16px; /* 16pxがデフォルトなので少し大きくする */
}

/* スマートフォン以外で適用 */
@media (min-width: 768px) {
    html {
        font-size: 16px; /* デスクトップではデフォルトに戻す */
    }
    body {
        zoom: 1.0; /* テキストを含むページ全体を2倍に拡大 */
    }
    footer {
        font-size: 150%;
    }
}

