/* 
 * Sections CSS - 全面リファクタリング版
 * ページセクション専用のスタイル
 * カタログページ仕様に合わせた統合実装
 */

/* ========================
   ヒーローセクション
   ======================== */

/* 削除: 旧hero-section実装はcomponents.cssに統一 */

/* スクロールインジケーター */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-2xl);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-white);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
    transform: rotate(45deg);
}

.scroll-text {
    font-size: var(--size-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.8;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* ========================
   会社情報・概要セクション
   ======================== */

.company-section {
    padding: var(--spacing-3xl) 0;
    background-color: var(--background-light);
}

.company-overview-section {
    padding: var(--spacing-3xl) 0;
}

.company-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin: var(--spacing-xl) 0;
}

.company-cards-compact {
    gap: var(--spacing-lg);
}


/* ========================
   選ばれる理由ページセクション
   ======================== */

#advantages-overview {
    padding-top: var(--spacing-3xl);
}

/* ========================
   コンタクトセクション
   ======================== */

.contact-simple-section {
    padding: var(--spacing-3xl) 0;
}

.contact-simple-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-heading {
    font-size: 3.5rem;
    font-weight: var(--weight-bold);
    color: var(--text-color);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.1em;
}

.contact-message {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: var(--line-relaxed);
}

.contact-link-wrapper {
    margin-top: var(--spacing-md);
}

/* ========================
   背景・セクション汎用クラス
   ======================== */

/* プライマリ背景セクション（再利用可能） */
.section-primary-bg {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-color);
    color: var(--text-white);
}

/* プライマリ背景セクション内のサブタイトル */
.section-primary-bg .section-subtitle {
    color: var(--secondary-color);
}

/* プライマリ背景セクション内のタイトル */
.section-primary-bg .section-title {
    color: var(--text-white);
}

/* プライマリ背景セクション内のタイトル装飾 */
.section-primary-bg .section-title::after {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--secondary-color) 100%);
}

/* ========================
   基底セクションクラス群（パディング制御）
   ======================== */

.section {
    padding: var(--spacing-3xl) 0;
}

.section-padding-sm {
    padding: var(--spacing-2xl) 0;
}

.section-padding-lg {
    padding: calc(var(--spacing-3xl) * 1.5) 0;
}

/* ========================
   背景色クラス群（色のみ・単一責任）
   ======================== */

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--background-light);
}

.bg-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

/* プライマリ背景内のセクションヘッダースタイル */
.bg-primary .section-subtitle {
    color: var(--secondary-color);
}

.bg-primary .section-title {
    color: var(--text-white);
}

.bg-primary .section-title::after {
    background: linear-gradient(135deg, var(--primary-color-light) 0%, var(--secondary-color) 100%);
}

/* ========================
   旧クラス（削除予定）
   ======================== */

/* 旧クラス削除完了 - 新しいモジュラーシステムに移行済み */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-xl);
    text-align: center;
}

.stat-item {
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: clamp(var(--size-3xl), 5vw, var(--size-4xl));
    font-weight: var(--weight-bold);
    margin-bottom: var(--spacing-xs);
    line-height: 1;
}

.stat-label {
    font-size: var(--size-sm);
    opacity: 0.9;
    font-weight: var(--weight-medium);
}

/* ========================
   サービス・技術セクション
   ======================== */

.services-section {
    padding: var(--spacing-3xl) 0;
}

/* ビジネスセクションのコンテナ幅調整 */
.business-section .container-wide {
    max-width: var(--container-base);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}


/* 回転ナビ連動インタラクティブコンテンツ */
.tech-interactive-content {
    position: relative;
    min-height: 450px;
    max-width: var(--container-base);
    margin: 0 auto;
}

.tech-content-layout {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    transition: all 0.5s ease;
    transform: translateY(20px);
    z-index: 1;
    box-sizing: border-box;
}

.tech-content-layout.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
    z-index: 2;
}

.tech-card-section {
    flex: 2;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    min-width: 0;
}

.tech-card-section .feature-card {
    max-width: 100%;
    width: 100%;
}

/* 技術セクション専用のfeature-card--serviceオーバーライド */
.tech-card-section .feature-card--service {
    text-align: left;
}

.tech-card-section .feature-card--service .feature-card__header {
    justify-content: flex-start;
    flex-direction: row;
    gap: var(--spacing-sm);
    align-items: center;
}

.tech-card-section .feature-card--service .feature-card__title {
    margin-bottom: 0;
    font-size: var(--size-xl);
    letter-spacing: var(--letter-spacing-wider);
}

.tech-card-section .feature-card--service .feature-card__features {
    justify-content: flex-start;
}

.tech-card-section .feature-card--service .feature-card__description {
    font-size: var(--size-lg);
    line-height: var(--line-readable);
    letter-spacing: var(--letter-spacing-wide);
}


.tech-image-section {
    flex: 1;
    display: block;
    min-width: 0;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}



/* 回転ナビヘッダーのスタイリング強化 */
.rotating-nav-header {
    margin-bottom: var(--spacing-xl);
}

.nav-arc {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    position: relative;
}

.nav-item {
    transition: all 0.3s ease;
    transform: scale(0.9);
    opacity: 0.7;
}

.nav-item.active {
    transform: scale(1.1);
    opacity: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-base);
    border: 1px solid var(--border-light);
}

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

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    border-radius: var(--border-radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: var(--size-2xl);
    backdrop-filter: blur(10px);
}

.service-title {
    font-size: var(--size-lg);
    font-weight: var(--weight-bold);
    margin-bottom: var(--spacing-sm);
}

.service-card-body {
    padding: var(--spacing-lg);
}

.service-description {
    color: var(--text-secondary);
    line-height: var(--line-relaxed);
    margin-bottom: var(--spacing-md);
}

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

.service-features li {
    padding: var(--spacing-xs) 0;
    font-size: var(--size-sm);
    color: var(--text-secondary);
    position: relative;
    padding-left: var(--spacing-lg);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: var(--weight-bold);
}

/* ========================
   ブランド・選ばれる理由セクション用コンポーネント
   ======================== */

.brand-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.brand-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* レスポンシブ対応 */
@media (max-width: 992px) {
    .brand-showcase {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
}


.contact-content {
    max-width: 800px;
}

.contact-title {
    font-size: clamp(var(--size-2xl), 4vw, var(--size-3xl));
    font-weight: var(--weight-bold);
    margin-bottom: var(--spacing-lg);
}

.contact-description {
    font-size: var(--size-lg);
    line-height: var(--line-relaxed);
    margin-bottom: var(--spacing-2xl);
    opacity: 0.9;
}

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

/* コンタクトボタンは components.css で統一定義済み */

/* ========================
   会社沿革・タイムライン
   ======================== */

.timeline-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg) 0;
    border-bottom: 1px solid var(--border-light);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(odd) { animation-delay: 0.1s; }
.timeline-item:nth-child(even) { animation-delay: 0.2s; }

.timeline-year {
    flex-shrink: 0;
    width: 80px;
    font-weight: var(--weight-semibold);
    color: var(--primary-color);
    font-size: var(--size-sm);
    text-align: right;
}

.timeline-content {
    flex: 1;
    padding-left: var(--spacing-lg);
    /* border-left: 2px solid var(--primary-color); ピンデザイン削除 */
    position: relative;
}

/* ピンデザイン削除 - 新しいタイムラインデザインに統合 */

.timeline-content h4 {
    font-size: var(--size-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.timeline-content p {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    line-height: var(--line-relaxed);
    margin: 0;
}

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

/* ========================
   技術仕様・特徴セクション
   ======================== */

.tech-specs-section {
    padding: var(--spacing-3xl) 0;
}

.tech-specs-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.tech-specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.spec-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: rgba(var(--primary-color-rgb), 0.05);
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(var(--primary-color-rgb), 0.1);
    transition: var(--transition-base);
}

.spec-item:hover {
    background: rgba(var(--primary-color-rgb), 0.08);
    transform: translateY(-2px);
}

.spec-item h4 {
    font-size: var(--size-sm);
    font-weight: var(--weight-semibold);
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
}

.spec-item p {
    font-size: var(--size-lg);
    font-weight: var(--weight-bold);
    color: var(--text-color);
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-item {
    padding: var(--spacing-lg);
    background: var(--white);
    border-radius: var(--border-radius-md);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-white);
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: var(--size-lg);
}

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

.feature-description {
    font-size: var(--size-sm);
    color: var(--text-secondary);
    line-height: var(--line-relaxed);
    margin: 0;
}

/* ========================
   画像・メディアセクション
   ======================== */

.media-section {
    padding: var(--spacing-3xl) 0;
    background: var(--background-light);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.media-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.media-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.media-placeholder {
    width: 100%;
    height: 200px;
    background: var(--background-light);
    border: 2px dashed var(--border-color);
    border-radius: var(--border-radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    color: var(--text-secondary);
    transition: var(--transition-base);
}

.media-placeholder:hover {
    border-color: var(--primary-color);
    background: rgba(var(--primary-color-rgb), 0.02);
}

.media-placeholder i {
    font-size: var(--size-3xl);
    color: var(--primary-color);
    opacity: 0.7;
}

.media-placeholder p {
    font-size: var(--size-sm);
    font-weight: var(--weight-medium);
    margin: 0;
    text-align: center;
}

/* ========================
   レスポンシブデザイン
   ======================== */

@media (max-width: 1024px) {
    .tech-specs-layout {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .company-cards-horizontal {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 70vh;
        padding: var(--spacing-xl) 0;
    }
    
    .hero-title {
        font-size: clamp(var(--size-2xl), 6vw, var(--size-3xl));
    }
    
    .hero-subtitle {
        font-size: var(--size-base);
    }
    
    .company-cards-horizontal,
    .services-grid,
    .stats-grid,
    .features-grid,
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    /* 回転ナビ連動コンテンツのモバイル対応 */
    .tech-content-layout {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .tech-card-section,
    .tech-image-section {
        flex: none;
        width: 100%;
    }
    
    .tech-interactive-content {
        min-height: 600px;
    }
    
    .tech-image img {
        height: 250px;
        max-width: 100%;
    }
    
    .nav-arc {
        flex-wrap: wrap;
        gap: var(--spacing-sm);
    }
    
    .nav-item {
        flex: 1;
        min-width: 120px;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .timeline-year {
        width: auto;
        text-align: left;
    }
    
    .timeline-content {
        padding-left: 0;
        border-left: none;
        /* border-top: 2px solid var(--primary-color); ピンデザイン削除 */
        padding-top: var(--spacing-sm);
    }
    
    /* ピンデザイン削除 - モバイル版も削除 */
    
    .tech-specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .company-card-h {
        min-height: 250px;
        padding: var(--spacing-lg);
    }
    
    .service-card-header,
    .service-card-body {
        padding: var(--spacing-md);
    }
    
    .spec-item,
    .feature-item {
        padding: var(--spacing-md);
    }
    
    .media-placeholder {
        height: 150px;
    }
    
    .scroll-indicator {
        bottom: var(--spacing-lg);
    }
}

/* ========================
   印刷用スタイル
   ======================== */

@media print {
    .hero-section,
    .section-primary-bg,
    .bg-primary {
        background: none !important;
        color: var(--text-color) !important;
    }
    
    .hero-section::before,
    .page-hero-section::before {
        display: none !important;
    }
    
    .scroll-indicator {
        display: none !important;
    }
    
    .contact-btn,
    .hero-contact-btn {
        border: 2px solid var(--text-color) !important;
        color: var(--text-color) !important;
    }
}