body {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", Meiryo, "Noto Sans CJK JP", "Source Han Sans JP", sans-serif;
    line-height: 1.7;
}

.gradient-bg {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
}

.hero-overlay {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6));
}

.card-hover {
    transition: all 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.animate-counter {
    font-weight: bold;
    color: #4f46e5;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #059669, #0d9488);
}

/* スマホ表示では左寄せ（PCは中央寄せのまま） */
@media (max-width: 768px) {
    .section-title {
        text-align: left !important;
    }
    
    .section-title::after {
        left: 0 !important;
        transform: none !important;
    }
    
    /* 見出し直下のリード文のみ左寄せ（パネル内はセンタリング維持） */
    .section-title + p.text-center {
        text-align: left !important;
    }
}

/* アイコンの幅を統一してテキストの左端を揃える */
.flex.items-start i {
    width: 1.5rem;
    text-align: center;
    flex-shrink: 0;
}

/* モバイルでパネルを中央揃え */
@media (max-width: 768px) {
    .grid.md\\:grid-cols-3 {
        justify-items: center;
    }
    
    .grid.md\\:grid-cols-3 > div {
        width: 100%;
        max-width: 300px;
    }
}

.cta-button {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.3);
}

/* Header Styles */
.logo {
    height: 80px !important;
    width: auto !important;
    max-height: 80px !important;
}

.logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.nav-link {
    color: #333 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb !important;
}

/* ヘッダーの高さを元サイトに合わせて調整 */
header {
    height: 80px !important;
}

header .flex {
    height: 80px !important;
}

/* モバイルメニューボタン */
.mobile-menu-btn {
    background: white;
    padding: 8px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    color: #374151;
    transition: all 0.2s ease;
}

.mobile-menu-btn:hover {
    color: #6b7280;
    background: #f3f4f6;
}

/* モバイルメニューコンテンツ */
.mobile-menu-content {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

#mobileMenu:not(.hidden) .mobile-menu-content {
    transform: translateX(0);
}

/* モバイルメニューヘッダー */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.mobile-logo {
    display: flex;
    align-items: center;
}

.mobile-logo-img {
    height: 60px;
    width: auto;
    max-height: 60px;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.close-menu-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

/* モバイルメニューリスト */
.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list li a {
    display: block;
    padding: 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.mobile-menu-list li a:hover {
    background-color: #f8f9fa;
    color: #2563eb;
}

/* スクリーンリーダー用 */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Footer Styles */
.site-footer {
    background: #111111;
    color: #bbbbbb;
    font-size: 14px;
}
.site-footer a {
    color: #03c4eb;
}
.site-footer .site-info {
    position: relative;
    text-align: center;
    padding: 35px 0px;
    background: #222222;
    font-weight: 500;
    color: #bbbbbb;
}
.site-footer .site-info a {
    color: #dddddd;
}
.site-footer .site-info a:hover {
    text-decoration: underline;
}
.site-footer .site-info .container {
    position: initial;
}
.site-footer .btt a {
    border-radius: 0px 20px 0 0;
    color: #999999;
    background: #222222;
    display: block;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    margin: auto;
    position: absolute;
    right: 60px;
    top: -25px;
    transition: all 0.2s linear 0s;
    width: 50px;
    z-index: 99;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
}
.site-footer .btt a:hover {
    color: #03c4eb;
}
.site-footer .btt a i {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    margin-left: 3px;
}
@media screen and (max-width: 940px) {
    .site-footer .btt a {
        right: 0;
        left: 0;
    }
}
footer nav ul li {
    display: inline-block;
    margin-right: 20px;
}
@media (max-width: 991px) {
    footer nav ul li {
        margin-right: 10px;
    }
}
.list-unstyled {
    margin: 0 auto;
}
.copyright {
    margin-top: 2rem;
}

/* デモセクションのスタイル */
.demo-step-number {
    width: 2.5rem !important;
    height: 2.5rem !important;
    min-width: 2.5rem !important;
    min-height: 2.5rem !important;
    background-color: #10b981;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.125rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.demo-step-title {
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.demo-step-description {
    color: #6b7280;
    font-size: 1rem;
}

/* 観光協会向けAIチャットバッジ */
.ai-chat-badge {
    font-size: 20px;
    font-weight: bold;
    color: #475569;
    background-color: #f1f5f9;
    padding: 0.75rem 1rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
