* {
    font-family: 'Noto Sans JP', sans-serif;
}

/* カラーパレット（参考サイト風）
 * プライマリ: #003d5c (濃紺 - 信頼感、落ち着き)
 * セカンダリ: #00704a (深緑 - 安定、成長)
 * アクセント: #e67e22 (オレンジ - 行動喚起)
 * 背景: #f5f7fa (薄いグレー - 清潔感)
 * テキスト: #2c3e50 (ダークグレー)
 */

/* スムーズスクロール */
html {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
    background-color: #f5f7fa;
    color: #2c3e50;
    line-height: 1.8;
}

/* ヘッダー */
header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* ボタンスタイル */
.btn-primary {
    background: #00704a;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #00704a;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #005a3c;
    border-color: #005a3c;
    box-shadow: 0 4px 12px rgba(0, 112, 74, 0.25);
}

.btn-secondary {
    background: #e67e22;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #e67e22;
}

.btn-secondary:hover {
    background: #d35400;
    border-color: #d35400;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.25);
}

.btn-outline {
    background: transparent;
    color: #003d5c;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #003d5c;
}

.btn-outline:hover {
    background: #003d5c;
    color: white;
}

/* ヘッダースクロール時の効果 */
.header-scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* ナビゲーションリンク */
.nav-link {
    position: relative;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #00704a;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #00704a;
}

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

/* セクション共通スタイル */
section {
    padding: 5rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }
}

/* カード共通スタイル */
.card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

/* サービスカード */
.service-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 61, 92, 0.12);
}

/* ベネフィットカード */
.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 112, 74, 0.12);
}

/* 車両カード */
.vehicle-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* FAQアコーディオン */
.faq-item {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-item.active .faq-question {
    background-color: #f0f9f6;
    color: #00704a;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #00704a;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

/* スクロールトップボタン */
#scroll-top {
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: #00704a;
}

#scroll-top.show {
    opacity: 1 !important;
    pointer-events: auto !important;
}

#scroll-top:hover {
    transform: translateY(-5px);
    background: #005a3c;
}

/* フォーム要素 */
input,
textarea,
select {
    border: 1px solid #d1d5db;
    border-radius: 6px;
    padding: 0.875rem 1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #00704a;
    box-shadow: 0 0 0 3px rgba(0, 112, 74, 0.1);
}

/* ヒーローセクション */
.hero-section {
    background: linear-gradient(135deg, #f0f9f6 0%, #ffffff 100%);
    border-bottom: 1px solid #e5e7eb;
}

/* ヒーローバナー */
.hero-section-banner {
    background: #f5f7fa;
    padding: 0;
}

.hero-banner-wrapper {
    max-width: 100%;
    margin: 0 auto;
}

.hero-banner-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* 音声解説ボタン */
.audio-guide-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    color: #003d5c;
    border: 2px solid #00704a;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.audio-guide-btn:hover {
    background: #00704a;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 112, 74, 0.2);
    transform: translateY(-2px);
}

.audio-guide-btn i {
    font-size: 1rem;
}

/* 統計セクション */
.stats-section {
    background: linear-gradient(135deg, #003d5c 0%, #005273 100%);
    color: white;
}

/* セクションタイトル */
.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    text-align: center;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.75rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #00704a;
    border-radius: 2px;
}

/* バッジ */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.badge-primary {
    background: #003d5c;
    color: white;
}

.badge-success {
    background: #00704a;
    color: white;
}

.badge-warning {
    background: #e67e22;
    color: white;
}

/* モバイルメニュー */
#mobile-menu {
    transition: all 0.3s ease;
}

/* カスタムスクロールバー */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f5f7fa;
}

::-webkit-scrollbar-thumb {
    background: #003d5c;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #005273;
}

/* テキストカラー */
.text-primary {
    color: #003d5c;
}

.text-secondary {
    color: #00704a;
}

.text-accent {
    color: #e67e22;
}

/* 背景カラー */
.bg-primary {
    background-color: #003d5c;
}

.bg-secondary {
    background-color: #00704a;
}

.bg-light {
    background-color: #f5f7fa;
}

/* アイコン装飾 */
.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.icon-box-primary {
    background: rgba(0, 61, 92, 0.1);
    color: #003d5c;
}

.icon-box-secondary {
    background: rgba(0, 112, 74, 0.1);
    color: #00704a;
}

.icon-box-accent {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
}

/* レスポンシブ調整 */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
}

/* フッター */
footer {
    background: #1a2332;
    color: #cbd5e1;
}

footer a {
    color: #cbd5e1;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #00704a;
}

/* アニメーション */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* ホバーエフェクト */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
}

/* 統計カウンター */
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

/* 影のバリエーション */
.shadow-sm {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.shadow-md {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.shadow-lg {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* コンタクトフォーム */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
}

@media (max-width: 768px) {
    .contact-form {
        padding: 2rem 1.5rem;
    }
}

/* プライスタグ */
.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #003d5c;
}

.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: #6b7280;
}
