/* ===== リセット・ベーススタイル ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    background-color: #fff;
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

/* ===== コンテナ ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ユーティリティクラス ===== */
.text-danger { color: #dc3545; }
.text-success { color: #28a745; }
.text-primary { color: #007bff; }

.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.accent {
    color: #007bff;
    font-weight: 600;
}

.required {
    color: #dc3545;
}

/* ===== ボタン ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.btn-secondary:hover {
    background: #007bff;
    color: #fff;
    transform: translateY(-2px);
}

/* ===== セクション共通 ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== ヘッダー ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.navbar-menu {
    display: flex;
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.navbar-nav a {
    font-weight: 500;
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-nav a:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.1);
}

.navbar-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* ===== ヒーローセクション ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #333333;
    margin-bottom: 30px;
    font-weight: 500;
    line-height: 1.4;
}

.hero-service {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.service-name {
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    background: linear-gradient(135deg, #007bff 0%, #667eea 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-features {
    margin-bottom: 40px;
    display: grid;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #1a1a1a;
    padding: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    border-left: 4px solid #007bff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    color: #007bff;
    font-size: 1.2rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-contact {
    background: linear-gradient(135deg, #dc3545, #c82333) !important;
    color: #fff !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    min-width: 80px;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #007bff;
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: #666;
    font-weight: 600;
}

.hero-problems {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-problems h4 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    color: #2c3e50;
    padding: 15px;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.problem-item.urgent {
    animation: pulse-urgent 2s infinite;
}

.problem-item i {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.emergency-notice {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 30px;
}

.emergency-notice p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-emergency {
    background: #fff;
    color: #dc3545;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-emergency:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@keyframes pulse-urgent {
    0% { border-color: #dc3545; }
    50% { border-color: #ff6b7a; }
    100% { border-color: #dc3545; }
}

/* ===== サービスセクション ===== */
.services {
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #667eea);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-card p {
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-check {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
}

/* ===== 士業向けサービス ===== */
.shigyou-services {
    background: #fff;
}

.shigyou-overview {
    margin-bottom: 60px;
}

.shigyou-stats h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 10px;
}

.stat-card .stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

.challenge-description {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #dc3545;
}

.challenge-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.shigyou-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.service-group {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
    border: 1px solid #e9ecef;
}

.service-group h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-group h3 i {
    color: #007bff;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

.service-features h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-features ul {
    margin-bottom: 30px;
}

.service-features li {
    padding: 10px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
}

.service-features li strong {
    color: #007bff;
    font-weight: 600;
}

.feature-detail {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
    padding-left: 20px;
}

.service-benefits h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.benefit-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-number {
    width: 80px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.step-content ul li {
    padding: 5px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
    border-bottom: none;
}

.step-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 600;
}

.value-maximization {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.value-maximization h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
    text-align: center;
}

.value-cases {
    display: grid;
    gap: 20px;
}

.value-case {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #28a745;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.case-type {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.case-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #28a745;
    margin-bottom: 5px;
}

.case-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.shigyou-image {
    position: sticky;
    top: 100px;
}

.shigyou-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.shigyou-testimonials h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.testimonial {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #007bff;
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c3e50;
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial cite {
    font-size: 0.85rem;
    color: #666;
    font-weight: 600;
}

.shigyou-cta {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.shigyou-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.shigyou-cta p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.consultation-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.consult-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.consult-benefit i {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.consult-benefit h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.consult-benefit p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.shigyou-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== 経営課題・危機分析セクション ===== */
.crisis-analysis {
    background: #fff;
}

.crisis-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 60px;
}

.crisis-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.crisis-analysis-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.crisis-point {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 15px;
    border-left: 4px solid #dc3545;
}

.crisis-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    flex-shrink: 0;
}

.crisis-details h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.crisis-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.crisis-details ul {
    list-style: none;
}

.crisis-details li {
    padding: 5px 0;
    color: #666;
    padding-left: 20px;
    position: relative;
}

.crisis-details li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: #dc3545;
    font-size: 0.8rem;
}

.crisis-impact {
    margin: 60px 0;
}

.crisis-impact h3 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #2c3e50;
}

.impact-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.impact-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid #f8f9fa;
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.impact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.flow-arrow {
    font-size: 2rem;
    color: #dc3545;
    font-weight: bold;
}

.solution-preview {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
}

.solution-preview h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.solution-preview p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.preview-cta .btn {
    margin-bottom: 15px;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== 新しいサービスセクション強化 ===== */
.services-overview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.services-overview img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.overview-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.approach-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.approach-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.approach-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.service-card.featured {
    border: 3px solid #007bff;
    position: relative;
}

.service-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #dc3545;
    color: #fff;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.service-timeline {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.service-details {
    margin: 20px 0;
}

.service-details h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-details ul {
    margin-bottom: 20px;
}

.service-details li {
    padding: 8px 0;
    line-height: 1.5;
}

.effects {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.effect-tag {
    background: #e8f5e8;
    color: #28a745;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.result-item {
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.result-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007bff;
}

.result-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.service-cta {
    margin-top: 20px;
    text-align: center;
}

.service-guarantee {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.service-guarantee h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.guarantee-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.guarantee-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.guarantee-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

/* ===== 社会課題・経済情勢分析セクション ===== */
.social-economic-analysis {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.social-analysis-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
}

.analysis-section {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 40px;
}

.analysis-header {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 20px;
    margin: -40px -40px 30px -40px;
    border-radius: 15px 15px 0 0;
}

.analysis-category {
    font-size: 1.1rem;
    font-weight: 500;
}

.analysis-status {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.analysis-content {
    padding: 0;
}

.case-image {
    float: right;
    margin: 0 0 20px 20px;
    width: 300px;
}

.case-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.analysis-section h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
    clear: both;
}

.case-crisis,
.case-solution,
.case-results {
    margin-bottom: 30px;
}

.case-crisis h4,
.case-solution h4,
.case-results h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #2c3e50;
}

.case-crisis {
    border-left: 4px solid #dc3545;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(220, 53, 69, 0.1), transparent);
}

.case-solution {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.1), transparent);
}

.case-results {
    border-left: 4px solid #28a745;
    padding-left: 20px;
    background: linear-gradient(90deg, rgba(40, 167, 69, 0.1), transparent);
}

.timeline {
    display: grid;
    gap: 15px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.timeline-date {
    background: #007bff;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.timeline-content {
    font-size: 0.95rem;
    color: #666;
}

.results-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.metric {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #28a745;
    display: block;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.improvement-grid {
    display: grid;
    gap: 15px;
}

.improvement-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
}

.improvement-before {
    color: #dc3545;
    font-weight: 600;
}

.improvement-arrow {
    color: #007bff;
    font-size: 1.2rem;
    font-weight: 700;
}

.improvement-after {
    color: #28a745;
    font-weight: 600;
}

.case-testimonial {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    position: relative;
}

.case-testimonial::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 3rem;
    color: #007bff;
    opacity: 0.3;
    font-family: serif;
}

.case-testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 15px;
    padding-left: 40px;
}

.case-testimonial cite {
    font-size: 0.95rem;
    color: #666;
    font-weight: 600;
    padding-left: 40px;
}

.analysis-summary {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 40px;
}

.analysis-summary h3 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.analysis-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.factor-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
}

.factor-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.factor-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.analysis-cta {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
}

.cta-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* ===== お問い合わせ ===== */
.contact {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #fff;
}

.contact .section-header h2,
.contact .section-subtitle {
    color: #fff;
}

.contact-urgency {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.urgency-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.urgency-item i {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #dc3545, #c82333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.urgency-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #fff;
}

.urgency-item p {
    color: #bdc3c7;
    line-height: 1.5;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #fff;
}

.contact-methods {
    margin: 40px 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.contact-method.priority {
    border: 2px solid #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #007bff;
    flex-shrink: 0;
}

.contact-method.priority i {
    background: #dc3545;
    color: #fff;
}

.contact-method h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.phone-number {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.availability {
    color: #bdc3c7;
    font-size: 0.95rem;
    line-height: 1.4;
}

.emergency-note {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

.contact-method p {
    color: #bdc3c7;
}

.qr-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.qr-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fff;
}

.qr-code {
    margin: 20px 0;
}

.qr-code img {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    border-radius: 10px;
}

.line-id {
    font-size: 1.1rem;
    font-weight: 600;
    color: #28a745;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.form-description {
    color: #bdc3c7;
    margin-bottom: 30px;
    line-height: 1.5;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #fff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.3);
}

.form-note {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin-top: 5px;
    line-height: 1.4;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-label {
    display: flex !important;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #007bff;
    text-decoration: underline;
}

.form-actions {
    text-align: center;
    margin-top: 30px;
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

.contact-assurance {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 15px;
    margin-top: 60px;
}

.contact-assurance h3 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
}

.assurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.assurance-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
}

.assurance-item i {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 20px;
}

.assurance-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.assurance-item p {
    color: #bdc3c7;
    line-height: 1.5;
}

/* ===== フッター ===== */
.footer {
    background: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.company-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-info p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #007bff;
}

.emergency-contact {
    background: rgba(220, 53, 69, 0.1);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #dc3545;
    margin-bottom: 20px;
}

.emergency-phone {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin-bottom: 10px !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.emergency-note {
    color: #dc3545 !important;
    font-weight: 600 !important;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #007bff;
    transform: translateY(-3px);
}

.social-line:hover {
    background: #00C300 !important;
}

.business-hours {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
}

.business-hours p {
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.emergency-hours {
    color: #dc3545 !important;
    font-weight: 600 !important;
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #bdc3c7;
    margin: 0;
}

.footer-nav {
    display: flex;
    gap: 20px;
}

.footer-nav a {
    color: #bdc3c7;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #007bff;
}

/* ===== レスポンシブデザイン ===== */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navbar-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .navbar-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .navbar-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-name {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        position: static;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
    }
    
    .crisis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .impact-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .services-overview {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .results-grid,
    .results-metrics {
        grid-template-columns: 1fr;
    }
    
    .analysis-section .case-image {
        float: none;
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .timeline {
        gap: 10px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
    }
    
    .shigyou-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefit-grid,
    .success-factors,
    .guarantee-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-urgency {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .assurance-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .service-name {
        font-size: 1.8rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .service-card,
    .plan-card {
        padding: 30px 20px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
}

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

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

/* ===== スクロール時のヘッダー ===== */
.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* ===== 新しい社会課題セクション用スタイル ===== */
.extended-social-issues {
    background: #f8f9fa;
    padding: 60px 0;
    margin-top: 60px;
}

.social-issue-detail {
    background: #fff;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #007bff;
}

.issue-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.issue-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.issue-header h4 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.issue-statistics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    border: 2px solid #dee2e6;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: #dc3545;
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #495057;
    font-weight: 600;
}

.issue-analysis h5,
.solution-framework h5 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.issue-analysis ul li {
    padding: 8px 0;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.solution-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid #28a745;
}

.solution-item h6 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.solution-item h6 i {
    color: #28a745;
}

.implementation-tip {
    background: #e8f5e8;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #155724;
    margin-top: 10px;
    font-weight: 500;
}

.government-policy-utilization {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 50px 0;
    margin-top: 60px;
}

.policy-category h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.subsidy-item,
.tax-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 5px solid #007bff;
}

.subsidy-details {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}

.amount,
.condition {
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.amount {
    background: #28a745;
    color: #fff;
}

.condition {
    background: #ffc107;
    color: #212529;
}

.application-strategy,
.utilization-tip {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 3px solid #2196f3;
}

/* ===== 士業セクション強化スタイル ===== */
.shigyou-challenges {
    background: linear-gradient(135deg, #fff8e1, #ffecb3);
    padding: 60px 0;
}

.challenge-grid {
    display: grid;
    gap: 40px;
    margin-top: 40px;
}

.challenge-item {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 6px solid #ff9800;
}

.challenge-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff9800, #e65100);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.challenge-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.stat-highlight {
    background: linear-gradient(135deg, #ffebee, #ffcdd2);
    padding: 12px;
    border-radius: 8px;
    font-weight: 600;
    color: #c62828;
    text-align: center;
    border: 2px solid #ef5350;
}

.shigyou-process {
    background: #fff;
    padding: 60px 0;
}

.process-timeline {
    margin-top: 40px;
}

.process-phase {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 6px solid #007bff;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.phase-number {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.phase-duration {
    background: #28a745;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
}

.phase-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 20px;
}

.deliverable-item {
    background: #e8f5e8;
    padding: 10px 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border-left: 3px solid #28a745;
    font-weight: 500;
}

.services-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.service-tab {
    padding: 15px 25px;
    background: #e9ecef;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-tab.active,
.service-tab:hover {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
}

.service-content {
    display: none;
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-content.active {
    display: block;
}

.service-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.highlight-stat {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #e3f2fd, #bbdefb);
    border-radius: 12px;
    border: 2px solid #2196f3;
}

.specialized-services {
    margin-top: 30px;
}

.specialized-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #17a2b8;
}

.specialized-item h5 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* ===== フォーカス時のアクセシビリティ ===== */
*:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}

.btn:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 3px solid rgba(0, 123, 255, 0.5);
    outline-offset: 2px;
}