/* ========================================
   リセット & 基本設定
======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* カラーパレット - 鮮やかなオレンジ→イエローグラデーション */
    --primary-color: #ff8800;
    --primary-dark: #ff6600;
    --secondary-color: #ffaa00;
    --accent-color: #ffcc00;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-light: #fff9f0;
    --bg-gray: #fff4e6;
    --border-color: #ffedd5;
    
    /* フォント */
    --font-main: 'Noto Sans JP', sans-serif;
    --font-en: 'Inter', sans-serif;
    
    /* スペーシング */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* ボーダー半径 */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    
    /* シャドウ */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

body {
    font-family: var(--font-main) !important;
    color: var(--text-color);
    line-height: 1.7;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* ========================================
   ヘッダー
======================================== */
.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo a {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-en);
}

.logo-sub {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-list > li {
    position: relative;
}

.nav-list a {
    font-weight: 500;
    color: var(--text-color);
    padding: 0.5rem 0;
    position: relative;
    display: block;
}

.nav-list > li > a {
    padding: 0.5rem 0.5rem;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: var(--primary-color);
}

/* ドロップダウンメニュー */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    list-style: none;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.25rem;
    color: var(--text-color);
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
}

/* ========================================
   サブナビゲーション（地域・カテゴリー）
======================================== */
.sub-navigation {
    background-color: var(--bg-gray);
    border-bottom: 2px solid var(--border-color);
    position: sticky;
    top: 70px;
    z-index: 999;
}

.sub-nav-wrapper {
    display: flex;
    gap: 0;
}

.sub-nav-section {
    position: relative;
    flex: 1;
}

.sub-nav-toggle {
    width: 100%;
    padding: 0.875rem var(--spacing-sm);
    background-color: var(--bg-gray);
    border: none;
    border-right: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    font-family: var(--font-main);
}

.sub-nav-toggle:hover {
    background-color: #e5e7eb;
}

.sub-nav-section:last-child .sub-nav-toggle {
    border-right: none;
}

.sub-nav-toggle i:first-child {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.toggle-icon {
    margin-left: auto;
    transition: transform 0.3s ease;
}

.sub-nav-toggle.active .toggle-icon {
    transform: rotate(180deg);
}

.sub-nav-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: var(--shadow-lg);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 998;
}

.sub-nav-dropdown.active {
    max-height: 500px;
    overflow-y: auto;
}

/* エリアドロップダウン */
.sub-nav-dropdown {
    padding: 0;
}

.sub-nav-dropdown.active {
    padding: var(--spacing-md);
}

.region-group {
    margin-bottom: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
    border-bottom: 1px solid var(--border-color);
}

.region-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.region-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
    background-color: var(--bg-light);
    border-radius: var(--radius-sm);
    display: inline-block;
}

.region-group a {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    margin: 0.25rem 0.25rem;
    font-size: 0.875rem;
    color: var(--text-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.region-group a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* カテゴリーグリッド */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.75rem;
}

.category-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
}

.category-item:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.category-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.category-item:hover i {
    color: white;
}

.category-item span {
    font-size: 0.875rem;
    font-weight: 600;
}

/* ========================================
   ヒーローセクション
======================================== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    padding: var(--spacing-xl) 0;
    min-height: 200px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><circle cx="100" cy="100" r="80" fill="rgba(255,255,255,0.05)"/><circle cx="900" cy="400" r="120" fill="rgba(255,255,255,0.05)"/><circle cx="300" cy="500" r="60" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* 起業家検索バナー */
.search-banner {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin: var(--spacing-lg) 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.search-form {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr auto;
    gap: var(--spacing-sm);
    align-items: center;
}

.search-input-group {
    position: relative;
}

.search-input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-main);
    transition: all 0.3s ease;
    background-color: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-input::placeholder {
    color: #9ca3af;
}

.search-select-group {
    position: relative;
}

.search-select {
    width: 100%;
    padding: 1rem 2.5rem 1rem 1.25rem;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: var(--font-main);
    background-color: white;
    cursor: pointer;
    appearance: none;
    transition: all 0.3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%236b7280' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.search-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-btn {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.search-btn i {
    margin-right: 0.5rem;
}

/* レスポンシブ対応 - 検索バナー */
@media (max-width: 992px) {
    .search-form {
        grid-template-columns: 1fr 1fr;
        gap: var(--spacing-sm);
    }
    
    .search-input-group {
        grid-column: 1 / -1;
    }
    
    .search-btn {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .search-banner {
        padding: var(--spacing-sm);
    }
    
    .search-form {
        grid-template-columns: 1fr;
    }
    
    .search-input-group,
    .search-select-group,
    .search-btn {
        grid-column: 1;
    }
}

/* ========================================
   ボタンスタイル
======================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color) !important;
    color: white !important; text-decoration:none !important;
    box-shadow: var(--shadow-md)  !important;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: white !important;
    color: var(--primary-color) !important;
    border-color: white !important;
}

.btn-secondary:hover {
    background-color: var(--bg-light) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-lg) !important;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ========================================
   セクション共通スタイル
======================================== */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: var(--spacing-sm) !important;
    color: var(--text-color) !important;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   理念セクション
======================================== */
.mission {
    background-color: var(--bg-light);
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-text {
    font-size: 1.125rem;
    line-height: 2;
    color: var(--text-color);
}

.mission-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* ========================================
   課題解決セクション
======================================== */
.problems {
    background-color: var(--bg-color);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.problem-card {
    background-color: var(--bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.problem-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.problem-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
    line-height: 1.4;
}

.problem-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

.problems-solution {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.solution-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

/* ========================================
   特徴セクション
======================================== */
.features {
    background: linear-gradient(to bottom, var(--bg-color), var(--bg-light));
}

.home .features-grid {
    display: grid ;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background-color: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-number {
    position: absolute;
    top: -15px;
    left: var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin: var(--spacing-md) 0 var(--spacing-sm);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-color);
}

.feature-text {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ========================================
   CTAセクション
======================================== */
.cta {
   
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.5rem !important;
    font-weight: 900 !important;
    margin-bottom: var(--spacing-sm) !important;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   最新トピックス
======================================== */
.topics {
    background-color: var(--bg-light);
}

.topics-list {
    max-width: 900px;
    margin: 0 auto;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: white;
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-sm);
    transition: all 0.3s ease;
}

.topic-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.topic-date {
    font-size: 0.875rem;
    color: var(--text-light);
    min-width: 100px;
}

.topic-category {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
    min-width: 100px;
    text-align: center;
}

.topic-link {
    flex: 1;
    color: var(--text-color);
}

.topic-link:hover {
    color: var(--primary-color);
}

/* ========================================
   フッター
======================================== */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: var(--spacing-sm);
    color: var(--secondary-color);
}

.footer-text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contact {
    font-size: 0.875rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-right: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   レスポンシブデザイン
======================================== */
@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        z-index: 1001;
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0;
    }
    
    .nav-list li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-list a {
        display: block;
        padding: var(--spacing-sm) 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    /* サブナビゲーションのモバイル対応 */
    .sub-navigation {
        top: 60px;
    }
    
    .sub-nav-wrapper {
        flex-direction: column;
    }
    
    .sub-nav-toggle {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sub-nav-section:last-child .sub-nav-toggle {
        border-bottom: none;
    }
    
    .sub-nav-dropdown {
        position: relative;
    }
    
    .sub-nav-dropdown.active {
        max-height: 300px;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .region-group {
        margin-bottom: var(--spacing-xs);
        padding-bottom: var(--spacing-xs);
    }
    
    .region-group a {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .problems-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .topic-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .news-grid,
    .success-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   全国地域ニューズセクション
======================================== */
.news-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--bg-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.news-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-region {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.news-date {
    display: inline-block;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-left: var(--spacing-sm);
}

.news-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-color);
    margin: var(--spacing-sm) 0;
    line-height: 1.5;
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.news-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-link:hover {
    color: var(--primary-dark);
}

.news-more {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* ========================================
   成功事例セクション
======================================== */
.success-section {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
}

.success-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.success-image {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: var(--spacing-lg);
    text-align: center;
}

.success-image i {
    font-size: 5rem;
    color: white;
}

.success-content {
    padding: var(--spacing-md);
}

.success-category {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.success-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.success-company {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-sm);
}

.success-media {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.media-badge {
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.success-comment {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    background: white;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--primary-color);
}

.success-result {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.result-item {
    flex: 1;
    text-align: center;
}

.result-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.result-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.success-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.success-cta-text {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
}



/* ========================================
   トップページ追加
======================================== */
#cb_0 {background: linear-gradient(135deg, #ff8800 0%,#ffcc00 100%); padding-top:70px; padding-bottom:35px; margin-bottom:0 !important;}
#cb_1 { background-color:#fff9f0}
#cb_5 {margin-bottom:0 !important}
.features { padding-top:0 !important; background:none;padding-bottom:0 !important;}
#cb_6 {background: linear-gradient(to bottom, #FFF, #fff9f0);margin-bottom:0 !important;}
#cb_7 {background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);margin-bottom:0 !important;}
#main_col {margin-bottom:0 !important;}
.cb_headline { font-weight:bold!important; color:#333 !important}
.feature-title { font-weight:bold!important}
.problem-title { font-weight:bold!important; font-size:20px;}
.cb_content-blog_list .archive_link a { background:#f59e0b !important;  }
ul.meta li.cat a, ul.meta li.cat span {background:#f59e0b !important;  }

/* ========================================
   第2階層追加
======================================== */
#post_title { display:none !important;}
.post_content p { line-height:1.8; margin:0 01.8em 0; }
.cta_second {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
}
.cta_second .cta-buttons { margin-top:20px;}


.wp-block-code { display:none !important}
#footer { margin-top:60px !important; }
    #global_menu ul ul a {background-color: #f59e0b !important;}
	
.wpcf7 { background-color: #FFF !important; border:none !important}  

#interview .wpcf7 { background-color: #fff9f0 !important;}  

div#privcontents { margin:0 20px 0 20px;}
.privcont {font-size:120%; color:#069; border-bottom:#7AB9D8 solid 2px; margin-bottom:10px; padding-bottom:5px; margin:0 !important; margin-top:30px !important}
ul.pridul li { text-align:left; margin:0 !important;}