/* 全ページ統合CSS - オールインワン - Updated v2 */

/* トップページ強化CSS */
.hero-enhanced {
    padding: 180px 0 80px;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    background: #000; /* フォールバック背景色 */
}

/* 動画背景ラッパー */
.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

/* 背景動画 */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* 動画オーバーレイ */
.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.7) 0%, rgba(118, 75, 162, 0.7) 100%);
    z-index: 1;
}

/* 未来的なグリッドパターン */
.hero-enhanced::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 20s linear infinite;
}

/* 浮遊する光の粒子 */
.hero-enhanced::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 90% 10%, white, transparent),
        radial-gradient(1px 1px at 15% 80%, white, transparent),
        radial-gradient(2px 2px at 80% 40%, white, transparent);
    background-size: 200% 200%;
    animation: particles 15s linear infinite;
    opacity: 0.3;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

@keyframes particles {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-100px);
    }
}

.hero-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title-main {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.hero-subtitle-main {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

.hero-stats-main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-item-main {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number-main {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-label-main {
    font-size: 12px;
    opacity: 0.9;
}

.hero-buttons-main {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #667eea;
}

.hero-visual {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-visual-card {
    background: rgba(255,255,255,0.1);
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1;
}

.hero-visual-card.solution {
    background: rgba(255,255,255,0.15);
}

.visual-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.hero-visual-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-visual-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.4;
}

.hero-visual-arrow {
    font-size: 24px;
    font-weight: bold;
}

/* サービスセクション強化 */
.services-enhanced {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
}

.section-badge.success {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.section-title-enhanced h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.section-title-enhanced p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.service-card.featured {
    border-color: #667eea;
    transform: scale(1.02);
}

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

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.service-icon {
    font-size: 40px;
}

.service-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.service-tag.consulting {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.service-tag.dx {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
    line-height: 1.3;
}

.service-subtitle {
    font-size: 16px;
    color: #667eea;
    font-weight: 500;
    margin-bottom: 16px;
}

.service-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    font-size: 14px;
    color: #666;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.price-period {
    font-size: 14px;
    color: #666;
}

.service-btn {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.3s;
}

.service-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.services-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.services-cta h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.services-cta p {
    color: #666;
    margin-bottom: 24px;
}

.btn-diagnosis {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-diagnosis:hover {
    transform: translateY(-2px);
    color: white;
}

/* 実績セクション強化 */
.works-showcase {
    padding: 80px 0;
}

.works-grid-enhanced {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.work-card-large {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.work-results {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-badge {
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

.result-stats {
    display: flex;
    gap: 30px;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 24px;
    font-weight: 700;
}

.stat-label {
    font-size: 12px;
    opacity: 0.9;
}

.work-content {
    padding: 30px;
}

.work-category {
    background: #f0f4ff;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
    display: inline-block;
}

.work-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}

.work-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.work-technologies {
    display: flex;
    gap: 8px;
    list-style: none;
    flex-wrap: wrap;
}

.work-technologies li {
    background: #f8f9fa;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    color: #666;
}

.work-card-small {
    background: white;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.work-card-small:hover {
    transform: translateY(-3px);
}

.work-result-mini {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mini-stat {
    font-size: 18px;
    font-weight: 700;
    color: #667eea;
}

.mini-label {
    font-size: 12px;
    color: #666;
}

.work-card-small h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}

.work-card-small p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.work-tag {
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
    color: white;
}

.work-tag.manufacturing {
    background: #667eea;
}

.work-tag.professional {
    background: #43e97b;
}

.work-tag.restaurant {
    background: #fa709a;
}

.works-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
}

.summary-stats {
    display: flex;
    gap: 60px;
}

.summary-stat {
    text-align: center;
}

.summary-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.summary-label {
    font-size: 14px;
    color: #666;
}

.btn-works-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.btn-works-all:hover {
    transform: translateY(-2px);
    color: white;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    /* モバイル動画対応 */
    .hero-video {
        min-width: auto;
        min-height: 100%;
        width: 100%;
        height: auto;
    }
    
    .hero-grid-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title-main {
        font-size: 32px;
    }
    
    .hero-visual {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-visual-arrow {
        transform: rotate(90deg);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .works-grid-enhanced {
        grid-template-columns: 1fr;
    }
    
    .works-summary {
        flex-direction: column;
        gap: 30px;
    }
    
    .summary-stats {
        gap: 30px;
    }
}

/* 採用ページCSS */
.recruit-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 160px;
}

.recruit-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: rgba(255,255,255,0.05);
    transform: rotate(35deg);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
    color: white;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 32px;
    color: white;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 25px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
    color: white;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    color: white;
}

.entry-cta {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.entry-cta h2 {
    color: #333;
    font-size: 28px;
    margin-bottom: 20px;
}

.entry-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.entry-method {
    display: flex;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    color: #333;
}

.entry-method:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(10px);
}

.entry-method:hover .method-info h3,
.entry-method:hover .method-info p {
    color: white;
}

.method-icon {
    font-size: 32px;
    margin-right: 20px;
    width: 50px;
    text-align: center;
}

.method-info h3 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #333;
}

.method-info p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
    color: #666;
}

.why-oteage {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.why-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.why-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #333;
}

.why-card p {
    color: #666;
    line-height: 1.6;
}

.positions-section {
    padding: 80px 0;
}

.positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.position-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

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

.position-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    color: white;
}

.position-tag {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 12px;
    color: white;
}

.position-title {
    font-size: 24px;
    margin-bottom: 8px;
    color: white;
}

.position-salary {
    font-size: 18px;
    opacity: 0.95;
    color: white;
}

.position-body {
    padding: 30px;
}

.position-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.highlight-tag {
    background: #f0f4ff;
    color: #667eea;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.position-details {
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    color: #666;
    font-size: 14px;
}

.detail-item i {
    margin-right: 10px;
    color: #667eea;
    width: 20px;
}

.apply-btn {
    display: block;
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
    margin-top: 20px;
}

.apply-btn:hover {
    opacity: 0.9;
    color: white;
}

.interviews-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.interviews-slider {
    margin-top: 50px;
    position: relative;
}

.interview-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 40px;
    align-items: start;
}

.interview-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: white;
}

.interview-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.interview-role {
    color: #667eea;
    font-weight: 500;
    margin-bottom: 20px;
}

.interview-quote {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.interview-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 48px;
    color: #667eea;
    opacity: 0.3;
}

.process-section {
    padding: 80px 0;
}

.process-timeline {
    margin-top: 50px;
    position: relative;
}

.process-line {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
}

.step-circle {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.step-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.step-description {
    font-size: 14px;
    color: #666;
}

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    padding: 30px;
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.faq-question i {
    color: #667eea;
    margin-right: 12px;
    margin-top: 3px;
    font-style: normal;
    font-weight: 700;
}

.faq-answer {
    color: #666;
    line-height: 1.6;
    padding-left: 32px;
}

.casual-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.casual-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: white;
}

.casual-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

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

.casual-btn {
    display: inline-block;
    padding: 18px 40px;
    background: white;
    color: #667eea;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

.casual-btn.outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.casual-btn:hover {
    transform: scale(1.05);
}

/* セクション共通 */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #333;
}

/* レスポンシブ */
/* 会社概要ページCSS */
.about-hero {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.92) 0%, rgba(118, 75, 162, 0.92) 100%),
        radial-gradient(circle at 10% 50%, rgba(120, 219, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(255, 119, 198, 0.3) 0%, transparent 40%),
        radial-gradient(circle at 50% 90%, rgba(120, 119, 198, 0.3) 0%, transparent 40%);
    padding: 180px 0 80px;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* ネオンライン効果 */
.about-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.1),
        transparent
    );
    animation: neon-sweep 8s linear infinite;
}

@keyframes neon-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

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

.hero-badge-about {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.hero-title-about {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle-about {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
    color: white;
}

.hero-stats-about {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-about {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 20px 15px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number-about {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.stat-label-about {
    font-size: 12px;
    opacity: 0.9;
    color: white;
}

/* 企業理念強化版 */
.philosophy-enhanced {
    padding: 80px 0;
    background: white;
}

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

.philosophy-label {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.philosophy-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #333;
    line-height: 1.3;
}

.philosophy-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.philosophy-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.philosophy-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.philosophy-card:hover {
    transform: translateY(-5px);
}

.card-icon-philosophy {
    font-size: 36px;
    margin-bottom: 16px;
}

.philosophy-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.philosophy-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* MVVセクション */
.mvv {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.mvv-item {
    text-align: center;
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.mvv-title {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.mvv-text {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.mvv-list {
    list-style: none;
    text-align: left;
}

.mvv-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.mvv-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* 会社情報強化版 */
.company-info-enhanced {
    padding: 80px 0;
    background: white;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.overview-card,
.detail-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
}

.overview-card h3,
.detail-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.info-grid {
    display: grid;
    gap: 16px;
}

.info-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-item:last-child {
    border-bottom: none;
}

.info-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.info-value {
    font-size: 14px;
    color: #333;
}

.business-list {
    list-style: none;
}

.business-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px;
    background: white;
    border-radius: 12px;
}

.business-icon {
    font-size: 24px;
    margin-top: 4px;
}

.business-list strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 16px;
}

.business-list p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.contact-info {
    background: white;
    border-radius: 12px;
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 20px;
    margin-top: 4px;
    color: #667eea;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
    color: #333;
    font-size: 14px;
    font-weight: 600;
}

.contact-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* 沿革強化版 */
.history-enhanced {
    padding: 80px 0;
    background: #f8f9fa;
}

.timeline {
    position: relative;
    margin-top: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
    padding-left: 80px;
}

.timeline-item.current .timeline-year {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 20px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid white;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.timeline-achievement {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* アクセス */
.access {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.access-map iframe {
    border-radius: 12px;
}

.access-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 16px;
}

.access-info h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.access-info dl {
    margin: 0;
}

.access-info dt {
    font-size: 14px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 4px;
    margin-top: 16px;
}

.access-info dt:first-child {
    margin-top: 0;
}

.access-info dd {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .positions-grid {
        grid-template-columns: 1fr;
    }
    
    .interview-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .interview-photo {
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-line {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .casual-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .casual-btn {
        width: 100%;
        max-width: 300px;
    }
    
    /* 実績ページCSS */
    .hero-title-works {
        font-size: 32px;
    }
    
    .hero-stats-works {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .featured-case {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .case-image {
        height: 200px;
    }
    
    .case-results {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number-large {
        font-size: 36px;
    }
    
    .cta-buttons-works {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    /* 会社概要ページレスポンシブ */
    .hero-title-about {
        font-size: 32px;
    }
    
    .hero-stats-about {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .philosophy-content-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .philosophy-title {
        font-size: 28px;
    }
    
    .mvv {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .company-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .info-item {
        grid-template-columns: 80px 1fr;
        gap: 12px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        padding-left: 60px;
    }
    
    .timeline-year {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
    
    .timeline-content::before {
        left: -6px;
        border-right-width: 6px;
        border-top-width: 6px;
        border-bottom-width: 6px;
    }
    
    .access {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* 実績ページヒーロー */
.works-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    margin-top: -80px;
    padding-top: 160px;
}

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

.hero-badge-works {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    color: white;
}

.hero-title-works {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: white;
}

.hero-subtitle-works {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

.hero-stats-works {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-works {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 25px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number-works {
    display: block;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.stat-label-works {
    font-size: 12px;
    opacity: 0.9;
    color: white;
}

/* 特別事例 */
.featured-cases {
    margin-bottom: 60px;
}

.featured-case {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.case-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-placeholder {
    font-size: 80px;
    color: white;
}

.case-content {
    padding: 40px;
}

.case-tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 16px;
}

.case-tag.ec {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.featured-case h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.featured-case p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

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

.result {
    text-align: center;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.result-value {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.result-label {
    font-size: 12px;
    color: #666;
}

.case-tech {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.case-tech span {
    padding: 4px 12px;
    background: #e0e7ff;
    color: #667eea;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}

/* 実績グリッド */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.work-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.work-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.work-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

/* ====================================
   パンくずリスト
==================================== */
.breadcrumb-wrapper {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 10;
}

.breadcrumb-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff !important;
    background-color: #ffffff !important;
    z-index: -1;
}

.breadcrumb {
    margin: 0;
    background: transparent !important;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 13px;
    line-height: 1;
    background: transparent !important;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    color: #666;
    line-height: 1;
}

/* WordPressや他の区切り文字を全て非表示 */
.breadcrumb-item::before,
.breadcrumb-item::after,
.breadcrumb-item:not(:last-child)::after {
    display: none !important;
    content: none !important;
}

/* カスタムの矢印区切りのみ表示 */
.breadcrumb-item + .breadcrumb-item::before {
    content: ">" !important;
    display: inline-block !important;
    margin: 0 8px;
    color: #666 !important;
    font-size: 12px;
    flex-shrink: 0;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    height: 20px;
}

.breadcrumb-item a:hover {
    color: #667eea;
}

.breadcrumb-item.active {
    color: #333;
    font-weight: 500;
}

.breadcrumb-item span {
    display: inline-block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    line-height: 20px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .breadcrumb-wrapper {
        padding: 12px 0;
        background: #ffffff !important;
    }
    
    .breadcrumb-list {
        font-size: 12px;
        background: transparent !important;
    }
    
    .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 8px;
    }
    
    .breadcrumb-item span {
        max-width: 150px;
    }
}

/* ====================================
   実績ページ - お問い合わせメッセージ
==================================== */

.works-contact-message {
    padding: 60px 0;
}

.works-contact-message .message-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.works-contact-message h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #333;
}

.works-contact-message p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 40px;
}

.works-contact-message .contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.works-contact-message .phone,
.works-contact-message .email {
    padding: 20px;
    background: white;
    border-radius: 8px;
}

.works-contact-message strong {
    display: block;
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

.works-contact-message .phone-number {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    text-decoration: none;
}

.works-contact-message .phone-number:hover {
    color: #5a67d8;
}

.works-contact-message .business-hours {
    font-size: 12px;
    color: #999;
}

.works-contact-message .email a {
    color: #667eea;
    text-decoration: none;
}

.works-contact-message .email a:hover {
    text-decoration: underline;
}

.works-contact-message .btn-large {
    padding: 18px 48px;
    font-size: 18px;
}

/* 実績カテゴリー紹介 */
.works-categories-intro {
    padding: 60px 0;
}

.works-categories-intro h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.works-categories-intro .category-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.works-categories-intro .category-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border: 1px solid #e0e7ff;
    border-radius: 12px;
    transition: all 0.3s;
}

.works-categories-intro .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.works-categories-intro .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.works-categories-intro .category-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.works-categories-intro .category-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* ====================================
   ニュース・お問い合わせページ ヒーローセクション
==================================== */

/* ニュースヒーローセクション */
.news-hero {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.93) 0%, rgba(118, 75, 162, 0.93) 100%),
        radial-gradient(ellipse at 30% 0%, rgba(255, 119, 198, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(120, 219, 255, 0.3) 0%, transparent 50%);
    padding: 180px 0 80px;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* デジタルパルス効果 */
.news-hero::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255,255,255,0.8), 
        transparent
    );
    animation: pulse-line 3s linear infinite;
}

@keyframes pulse-line {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* お問い合わせヒーローセクション */
.contact-hero {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.94) 0%, rgba(118, 75, 162, 0.94) 100%),
        radial-gradient(circle at 50% 50%, rgba(120, 219, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 119, 198, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 100% 0%, rgba(120, 119, 198, 0.2) 0%, transparent 40%);
    padding: 180px 0 80px;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* 回転する光輪 */
.contact-hero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    margin-left: -300px;
    margin-top: -300px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    animation: rotate-ring 20s linear infinite;
}

.contact-hero::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    margin-left: -400px;
    margin-top: -400px;
    border: 1px solid rgba(255,255,255,0.03);
    border-radius: 50%;
    animation: rotate-ring-reverse 25s linear infinite;
}

@keyframes rotate-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-ring-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

/* ====================================
   パンくず背景色統一（白背景のみ）
==================================== */

/* パンくず部分のみ白背景統一 */

/* ====================================
   サービスページ専用スタイル
==================================== */

/* サービスヒーローセクション */
.services-hero {
    background: 
        linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%),
        radial-gradient(ellipse at top right, rgba(255, 119, 198, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(120, 219, 255, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 180px 0 80px;
    color: white;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* 動く幾何学模様 */
.services-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255,255,255,0.02) 10px,
        rgba(255,255,255,0.02) 20px
    );
    animation: diagonal-move 30s linear infinite;
}

@keyframes diagonal-move {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    100% {
        transform: translate(50px, 50px) rotate(360deg);
    }
}

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

.hero-badge-services {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title-services {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 24px;
}

.hero-subtitle-services {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-subtitle-services strong {
    color: #ffd700;
    font-weight: 600;
}

.hero-stats-services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.stat-services {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: 24px 20px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.stat-number-services {
    display: block;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-label-services {
    font-size: 14px;
    opacity: 0.9;
}

/* サービス詳細セクション */
.service-detail {
    max-width: 1000px;
    margin: 0 auto;
}

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

.service-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.service-tagline {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.service-content {
    padding: 0 20px;
}

.service-description {
    text-align: center;
    margin-bottom: 60px;
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.service-description strong {
    color: #667eea;
    font-weight: 600;
}

/* サービス機能グリッド */
.service-features {
    margin-bottom: 60px;
}

.service-features h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

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

.feature-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* 料金プラン - OnePriceWeb */
.service-plans {
    margin-bottom: 60px;
}

.service-plans h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

/* OnePriceWeb価格表示 */
.oneprice-highlight {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f0f4ff 0%, #fff 100%);
    border-radius: 20px;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.1);
}

.price-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.oneprice-amount {
    font-size: 24px;
    color: #333;
    margin-bottom: 8px;
}

.price-number {
    font-size: 64px;
    font-weight: 700;
    color: #667eea;
    display: inline-block;
    margin-left: 10px;
}

.price-note {
    font-size: 14px;
    color: #999;
}

/* 機能グリッド */
.plan-features {
    margin-bottom: 60px;
}

.plan-features h4 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 40px;
    color: #333;
}

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

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-card li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
    text-align: left;
}

.feature-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 600;
}

/* CTA部分 */
.plan-cta {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

.cta-message {
    font-size: 20px;
    color: #333;
    margin-bottom: 24px;
    font-weight: 600;
}

.plan-btn-large {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 48px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.plan-btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

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

.plan-card {
    background: white;
    border: 2px solid #e0e7ff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
}

.plan-card.featured {
    border-color: #667eea;
    background: linear-gradient(to bottom, #f0f4ff, #fff);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.plan-card h4 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 12px;
}

.price-period-small {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.plan-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    text-align: left;
}

.plan-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    color: #444;
    position: relative;
    padding-left: 24px;
}

.plan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 600;
}

.plan-btn {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.plan-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.plan-btn.featured {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* コンサルティング結果 */
.consulting-results,
.dx-results,
.development-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 16px;
}

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

.result-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.result-text {
    font-size: 14px;
    color: #666;
}

/* プロセスタイムライン */
.consulting-process {
    margin: 60px 0;
}

.consulting-process h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e7ff;
    z-index: 0;
}

.process-item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.process-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 20px;
}

.process-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #333;
}

.process-item p {
    font-size: 14px;
    color: #666;
}

/* 対応領域グリッド */
.consulting-areas {
    margin: 60px 0;
}

.consulting-areas h3,
.dx-services h3,
.dev-tech h3,
.dev-types h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

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

.area-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    transition: all 0.3s;
}

.area-item:hover {
    border-color: #667eea;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.1);
}

.area-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.area-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* DXグリッド */
.dx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.dx-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dx-card h4 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
}

.dx-card ul {
    list-style: none;
    padding: 0;
}

.dx-card ul li {
    padding: 8px 0;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.dx-card ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* 導入事例 */
.dx-case {
    margin: 60px 0;
}

.dx-case h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

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

.case-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.case-industry {
    display: inline-block;
    background: #e0e7ff;
    color: #667eea;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 12px;
}

.case-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.case-item p {
    color: #666;
    line-height: 1.6;
}

/* 技術スタック */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tech-category {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.tech-category h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #333;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-tags span {
    display: inline-block;
    padding: 8px 16px;
    background: white;
    border: 1px solid #e0e7ff;
    border-radius: 20px;
    font-size: 14px;
    color: #444;
    transition: all 0.3s;
}

.tech-tags span:hover {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* 開発タイプ */
.type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.type-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e0e7ff;
    text-align: center;
}

.type-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #333;
}

.type-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 診断CTA */
.diagnosis-cta {
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    padding: 80px 0;
    margin-top: 80px;
}

.diagnosis-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.diagnosis-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.diagnosis-text p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.diagnosis-benefits {
    list-style: none;
    padding: 0;
}

.diagnosis-benefits li {
    padding: 12px 0;
    font-size: 16px;
    color: #444;
}

.diagnosis-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.diagnosis-steps {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.diagnosis-steps .step {
    font-size: 14px;
    color: #666;
}

.btn-diagnosis-large {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-diagnosis-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.diagnosis-note {
    margin-top: 20px;
    font-size: 12px;
    color: #999;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .hero-stats-services {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .consulting-results,
    .dx-results,
    .development-results {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }
    
    .dx-grid {
        grid-template-columns: 1fr;
    }
    
    .diagnosis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
}

/* ====================================
   法的ページ（プライバシーポリシー・利用規約）
==================================== */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
}

.page-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.95;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-date {
    text-align: right;
    color: #666;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e0e7ff;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-left: 12px;
    border-left: 4px solid #667eea;
}

.legal-section p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
}

.legal-list {
    list-style: none;
    padding-left: 24px;
    margin: 20px 0;
}

.legal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #444;
}

.legal-list li:before {
    content: "・";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 600;
}

.contact-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #444;
}

.contact-info strong {
    color: #333;
    font-size: 18px;
}

.text-right {
    text-align: right;
}

/* ====================================
   サイトマップページ
==================================== */
.sitemap-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.sitemap-section {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

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

.sitemap-heading {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #e0e7ff;
}

.sitemap-list {
    list-style: none;
    padding: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
}

.sitemap-list a {
    color: #666;
    text-decoration: none;
    display: inline-block;
    padding: 4px 0;
    transition: all 0.3s;
    position: relative;
}

.sitemap-list a:hover {
    color: #667eea;
    padding-left: 8px;
}

.sitemap-list a:before {
    content: "›";
    position: absolute;
    left: -12px;
    opacity: 0;
    transition: all 0.3s;
}

.sitemap-list a:hover:before {
    left: -4px;
    opacity: 1;
}

.sitemap-footer {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.sitemap-note {
    color: #666;
    font-size: 14px;
}

.sitemap-note a {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.sitemap-note a:hover {
    text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .legal-content {
        padding: 30px 15px;
    }
    
    .legal-section h2 {
        font-size: 20px;
    }
    
    .sitemap-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .sitemap-section {
        padding: 20px;
    }
}

.work-thumbnail {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.work-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.work-item:hover .work-thumbnail img {
    transform: scale(1.05);
}

.no-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.view-more {
    color: white;
    font-weight: 600;
    padding: 12px 24px;
    border: 2px solid white;
    border-radius: 25px;
}

.work-content {
    padding: 24px;
}

.work-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.work-categories {
    margin-bottom: 12px;
}

.category-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f0f4ff;
    color: #667eea;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 8px;
}

.work-excerpt {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* 成果統計 */
.results-stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.results-stats h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item-large {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-number-large {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.stat-label-large {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stat-item-large p {
    font-size: 12px;
    color: #666;
    line-height: 1.5;
}

/* CTA */
.works-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
}

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

.cta-content-works h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content-works p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
    color: white;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
}

.btn-cta-primary {
    background: white;
    color: #43e97b;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    color: #43e97b;
}

.btn-cta-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta-secondary:hover {
    background: white;
    color: #43e97b;
}
/* サービスページCSS（追加分）
========================================= */
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    font-size: 13px;
    color: #666;
}

.service-features li::before {
    content: "✓";
    color: #43e97b;
    font-weight: bold;
    margin-right: 8px;
}

.btn-service {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-service:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    color: white;
}

/* 診断CTA */
.diagnosis-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
}

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

.diagnosis-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.diagnosis-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 24px;
    line-height: 1.7;
}

.diagnosis-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.diagnosis-benefits li {
    padding: 12px 0;
    font-size: 14px;
    color: #333;
}

.diagnosis-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.diagnosis-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.diagnosis-steps .step {
    text-align: center;
    font-size: 14px;
    color: #666;
}

.btn-diagnosis-large {
    display: block;
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-diagnosis-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
    color: white;
}

.diagnosis-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 16px;
}

/* お問い合わせフォーム強化版 */
.contact-section {
    padding: 80px 0;
}

.contact-intro {
    text-align: center;
    margin-bottom: 50px;
}

.contact-intro h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.contact-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.contact-form.enhanced {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group.half {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.required-mark {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #fafafa;
}

.form-control:focus {
    outline: none;
    border-color: #667eea;
    background: white;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: '\25BC';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #667eea;
}

.char-count {
    text-align: right;
    font-size: 12px;
    color: #999;
    margin-top: 4px;
}

.checkbox-group {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    background: #fafafa;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #667eea;
    border-color: #667eea;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '\2713';
    color: white;
    font-weight: bold;
    font-size: 12px;
}

.form-submit {
    text-align: center;
    margin-top: 40px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.submit-note {
    font-size: 12px;
    color: #666;
    margin-top: 16px;
}

/* オンライン予約 */
.online-booking {
    margin-bottom: 60px;
    text-align: center;
}

.online-booking h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #333;
}

.online-booking p {
    color: #666;
    margin-bottom: 30px;
}

.booking-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
}

.booking-option {
    background: white;
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.booking-option h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: #333;
}

.booking-option p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.booking-btn {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    color: white;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 500;
    transition: transform 0.3s;
}

.booking-btn:hover {
    transform: translateY(-2px);
    color: white;
}

/* 連絡先情報 */
.contact-info {
    margin-bottom: 60px;
}

.contact-info h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-info-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.contact-info-item:hover {
    transform: translateY(-3px);
}

.info-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.contact-info-item h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #333;
}

.contact-phone a,
.contact-email a {
    color: #667eea;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.contact-phone a:hover,
.contact-email a:hover {
    text-decoration: underline;
}

.contact-hours,
.response-time,
.access-info {
    font-size: 12px;
    color: #999;
    margin-top: 8px;
}

.office-address {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* FAQセクション */
.faq-section h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
    color: #333;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    padding: 20px;
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.faq-answer {
    padding: 0 20px 20px;
}

.faq-answer p {
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* レスポンシブ調整 */
@media (max-width: 1024px) {
    .news-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .news-sidebar {
        position: static;
        top: auto;
    }
}

@media (max-width: 768px) {
    /* ヒーローセクション共通 */
    .hero-title-services,
    .hero-title-news,
    .hero-title-contact {
        font-size: 32px;
    }
    
    .hero-stats-services,
    .hero-stats-news,
    .hero-stats-contact {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    /* ニュースページ */
    .news-item.enhanced {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .news-header {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .news-date-enhanced {
        min-width: 60px;
        padding: 12px;
    }
    
    .date-day {
        font-size: 18px;
    }
    
    .news-title-enhanced {
        font-size: 18px;
    }
    
    .news-meta-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .news-sidebar {
        padding: 20px;
    }
    
    /* お問い合わせページ */
    .methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .method-card.recommended {
        transform: none;
    }
    
    .contact-form.enhanced {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group.half {
        margin-bottom: 24px;
    }
    
    .booking-options {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* サービスページ */
    .diagnosis-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .diagnosis-steps {
        flex-direction: column;
        gap: 12px;
    }
}
EOF < /dev/null
/* サービスページ追加CSS
========================================= */
/* プランカード */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
    text-align: center;
}

.plan-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.plan-card.featured {
    transform: scale(1.05);
    border: 2px solid #667eea;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.plan-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.plan-price {
    font-size: 36px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.price-period-small {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

.plan-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.plan-card ul {
    list-style: none;
    margin: 0 0 30px;
    padding: 0;
    text-align: left;
}

.plan-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 24px;
}

.plan-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #43e97b;
    font-weight: bold;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.plan-btn:hover {
    background: #667eea;
    color: white;
}

.plan-btn.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.plan-btn.featured:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

/* コンサルティング成果 */
.consulting-results,
.dx-results,
.development-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 30px 0;
    padding: 30px;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e7ff 100%);
    border-radius: 16px;
}

.result-item {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.result-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
}

.result-text {
    font-size: 14px;
    color: #666;
}

/* プロセスタイムライン */
.process-timeline {
    position: relative;
    margin: 50px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
}

.process-item {
    position: relative;
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    position: relative;
    z-index: 1;
}

.process-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.process-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

/* 対応領域グリッド */
.area-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.area-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.area-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.area-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* DXグリッド */
.dx-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.dx-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.dx-card h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.dx-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.dx-card ul li {
    padding: 8px 0;
    font-size: 14px;
    color: #666;
    position: relative;
    padding-left: 20px;
}

.dx-card ul li::before {
    content: "・";
    position: absolute;
    left: 0;
    color: #667eea;
}

/* ケースグリッド */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.case-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.case-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.case-industry {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 12px;
}

.case-item h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.case-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* 技術スタック */
.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.tech-category {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tech-category h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #333;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tags span {
    padding: 6px 14px;
    background: #e0e7ff;
    color: #667eea;
    border-radius: 16px;
    font-size: 13px;
    font-weight: 500;
}

/* 開発タイプグリッド */
.type-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.type-item {
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 3px solid #667eea;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.type-item h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #333;
}

.type-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* サービスページのレスポンシブ */
@media (max-width: 768px) {
    /* サービスヘッダー調整 */
    .service-title {
        font-size: 28px;
        margin-bottom: 16px;
        line-height: 1.3;
    }
    
    .service-tagline {
        font-size: 16px;
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    .service-icon {
        font-size: 48px;
        margin-bottom: 16px;
    }
    
    .service-header {
        margin-bottom: 40px;
    }
    
    /* OnePriceWeb価格セクション調整 */
    .oneprice-amount {
        font-size: 20px;
        margin-bottom: 12px;
        line-height: 1.4;
    }
    
    .price-number {
        font-size: 48px;
        margin-left: 8px;
        line-height: 1.1;
    }
    
    .price-note {
        margin-top: 8px;
        line-height: 1.4;
    }
    
    .oneprice-highlight {
        padding: 40px 20px;
        margin-bottom: 40px;
    }
    
    /* 機能カード調整 */
    .feature-item,
    .feature-card {
        padding: 24px 20px;
        margin-bottom: 20px;
    }
    
    .feature-item h4,
    .feature-card h5 {
        font-size: 18px;
        margin-bottom: 16px;
        line-height: 1.4;
    }
    
    .feature-grid,
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .area-grid,
    .type-grid {
        grid-template-columns: 1fr;
    }
    
    .dx-grid,
    .case-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .consulting-results,
    .dx-results,
    .development-results {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}