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

/* カラーパレット
 * ネイビー:  #003d5c / #002d45 (メインカラー - 信頼感・落ち着き)
 * 白:        #ffffff (ベース)
 * ティール:   #1a9090 / #127070 (アクセント - 行動喚起)
 * 背景:      #f5f7fa / #eef2f7 (薄いグレー・ネイビー系)
 * テキスト:  #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: #1a9090;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid #1a9090;
    font-size: 1rem;
}

.btn-primary:hover {
    background: #127070;
    border-color: #127070;
    box-shadow: 0 4px 12px rgba(26, 144, 144, 0.25);
}

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

.btn-secondary:hover {
    background: #127070;
    border-color: #127070;
    box-shadow: 0 4px 12px rgba(26, 144, 144, 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: #003d5c;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #003d5c;
}

.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, 61, 92, 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: #eef2f7;
    color: #003d5c;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #003d5c !important;
}

.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: #003d5c;
}

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

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

/* フォーム要素 */
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: #003d5c;
    box-shadow: 0 0 0 3px rgba(0, 61, 92, 0.1);
}

/* ヒーローセクション（旧） */
.hero-section {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
}

/* ヒーローセクション（新） */
.hero-section-main {
    min-height: 580px;
    display: flex;
    align-items: center;
}

.hero-cta-primary {
    background: #1a9090;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid #1a9090;
    display: inline-block;
}

.hero-cta-primary:hover {
    background: #127070;
    border-color: #127070;
    box-shadow: 0 6px 20px rgba(26, 144, 144, 0.4);
}

.hero-cta-secondary {
    background: transparent;
    color: #ffffff;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: inline-block;
}

.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

.hero-cta-secondary-light {
    background: transparent;
    color: #003d5c;
    padding: 1rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    border: 2px solid #003d5c;
    display: inline-block;
}

.hero-cta-secondary-light:hover {
    background: #003d5c;
    color: #ffffff;
}

/* ヒーローバナー（旧） */
.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 #003d5c;
    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: #003d5c;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 61, 92, 0.2);
    transform: translateY(-2px);
}

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

/* 統計セクション */
.stats-section {
    background: #003d5c;
    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: #1a9090;
    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: #003d5c;
    color: white;
}

.badge-warning {
    background: #1a9090;
    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: #003d5c;
}

.text-accent {
    color: #1a9090;
}

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

.bg-secondary {
    background-color: #003d5c;
}

.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, 61, 92, 0.1);
    color: #003d5c;
}

.icon-box-accent {
    background: rgba(26, 144, 144, 0.1);
    color: #1a9090;
}

/* モバイル用フローティングCTA分のbody下余白 */
@media (max-width: 1023px) {
    body {
        padding-bottom: 72px;
    }
}

/* レスポンシブ調整 */
@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: #1a9090;
}

/* アニメーション */
@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);
}

/* コンタクトフォーム - focusリングのTailwindオーバーライド */
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: #1a9090 !important;
    box-shadow: 0 0 0 3px rgba(26, 144, 144, 0.15) !important;
}

.contact-form-submit {
    background: #1a9090;
    transition: background 0.3s ease;
}

.contact-form-submit:hover {
    background: #127070;
}

/* コンタクトフォーム */
.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;
}
