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

/* ヒーローセクションの背景画像 */
.hero-bg {
    background-image: url('https://placehold.co/1200x600/e2e8f0/334155?text=新しいクルマとの生活');
    background-size: cover;
    background-position: center;
}

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

/* アクティブなナビゲーションリンクのスタイル */
.nav-link.active {
    color: #14b8a6;
    border-bottom: 2px solid #14b8a6;
    font-weight: 700;
    padding-bottom: 4px;
}

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

/* 比較表のスタイル */
.comparison-table th, .comparison-table td {
    padding: 1rem;
    text-align: center;
}
.comparison-table thead th {
    font-size: 1.125rem;
}

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

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

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