/* Service Pages Styles */

/* Section title underlines - removed */
.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 40px;

}

/* Services Overview */
.services-overview {
    padding: 0 0 var(--spacing-3xl); /* 上部パディング削除、セクション間の重複解消 */
}

/* パンくず直後の最初のセクションのみ上部パディング追加 */
.breadcrumb + .services-overview {
    padding-top: var(--spacing-3xl);
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.intro-text p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Business Diagram */
.business-diagram {
    max-width: 800px;
    margin: var(--spacing-3xl) auto;
    text-align: center;
}

.diagram-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

/* Services Main Grid */
.services-main-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
}

.service-main-card {
    background: var(--gray-100);
    border: 2px solid var(--gray-200);
    border-radius: 16px;
    overflow: hidden;
    transition: all var(--transition-normal);
    position: relative;
}

.service-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
}

.service-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-main-card:hover::before {
    transform: scaleX(1);
}

.card-link {
    display: block;
    padding: var(--spacing-xl);
    height: 100%;
    color: var(--text-dark);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-main-card h2 {
    font-size: 1.75rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.card-subtitle {
    font-size: 1.125rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-lg);
    font-weight: var(--font-weight-medium);
}

.card-description {
    margin-bottom: var(--spacing-lg);
}

.card-description p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.card-features ul {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.card-features li {
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
    font-size: 0.95rem;
}

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

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--primary-color);
    font-weight: var(--font-weight-bold);
    transition: all var(--transition-normal);
}

.service-main-card:hover .card-cta {
    transform: translateX(5px);
}

/* Service CTA Section */
.service-cta {
    background: linear-gradient(135deg, var(--black) 0%, rgba(69, 238, 255, 0.05) 100%);
    color: var(--text-dark);
    padding: 0 0 var(--spacing-3xl); /* 上部パディング削除、セクション間の重複解消 */
    text-align: center;
}

.service-cta h2 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.service-cta p {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    color: var(--gray-200);
}

/* Service Detail Page Styles */
.service-hero {
    background: linear-gradient(135deg, var(--black) 0%, rgba(69, 238, 255, 0.1) 100%);
    padding: 0; /* 余白なし：ヘッダー裏から開始 */
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

/* すべてのサービス詳細ページでFVをフルブリード＆絶対配置の基準にする */
.service-hero .container {
    position: relative;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
}

/* Product (3rd layer) hero common layout */
.product-hero {
    padding: 0;
    background: transparent;
    position: relative;
}

/* FV image should scale full width and not exceed viewport height */
.product-hero .service-fv-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
}

/* PCは従来の幅のまま（全画面にしない） */
@media (min-width: 769px) {
    .product-hero {
        margin-top: 80px; /* ヘッダー分下げる（各ページの既存インラインと整合） */
        height: auto; /* 高さは画像に従う */
        overflow: visible;
    }
    .product-hero .container {
        max-width: 1200px; /* 既存のサイト幅 */
        width: 100%;
        margin: 0 auto;
        padding: 0 var(--spacing-md);
        height: auto;
    }
}

/* PC: place download button absolute in hero (left 140px, bottom 80px) */
.product-hero .download-button-section {
    position: absolute;
    left: 140px;
    bottom: 80px;
    z-index: 10;
}

.product-hero .download-button-section .fv-cta-button {
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease;
}

.product-hero .download-button-section .fv-cta-button:hover {
    transform: translateY(-5px);
}

.product-hero .download-button-section .fv-cta-button img {
    width: 280px;
    height: auto;
    display: block;
}

/* Hidden by default; shown on mobile as independent section under FV */
.download-button-mobile {
    display: none;
}

@media (max-width: 768px) {
    /* About準拠: 画像の最大高さをヘッダー控除で制限、幅は100% */
    .product-hero {
        padding: 0;
        position: relative;
        overflow: hidden;
        margin-top: 0; /* body.hero-under-header側でヘッダー余白を管理 */
    }

    .product-hero .container {
        max-width: none;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        height: auto;
    }

    .product-hero .service-fv-image {
        position: static;
        width: 100%;
        height: auto;
        display: block;
        max-height: calc(100svh - 60px);
        object-fit: cover;
    }

    /* Hide PC button in hero on mobile */
    .product-hero .download-button-section {
        display: none;
    }

    /* Show mobile independent section under FV */
    .download-button-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
        background: transparent;
    }

    .download-button-mobile .fv-cta-button img {
        max-width: 280px;
        width: 80vw;
        height: auto;
    }
}

/* Service specific hero backgrounds */
.service-hero.ai-marketing-hero,
.service-hero.art-hero,
.service-hero.ai-development-hero,
.service-hero.incubation-hero {
    position: relative;
    background: transparent !important;
    padding: 0;
    margin-top: 0;
}

/* パンくずは直後に密着させる */
.service-hero + .breadcrumb {
    margin-top: 0 !important;
    padding-top: 0; /* FVはヘッダー裏開始のため余白なし */
}

.ai-marketing-hero .container,
.art-hero .container,
.ai-development-hero .container,
.incubation-hero .container {
    max-width: none; /* FVはフルブリード */
    width: 100%;
    margin: 0 auto;
    padding: 0; /* 余白をなくす */
    text-align: center;
}

.service-fv-image {
    max-width: none;
    width: 100%;
    height: auto; /* 画像の実高さに合わせる */
    display: block;
    margin: 0 auto;
    max-height: calc(100svh - 80px); /* 画面高を超えない */
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .service-fv-image {
        max-height: calc(100svh - 60px);
    }
}

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

/* Small background image icon above title */
.service-hero-content::before {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background: url('../images/ai-marketing-hero-bg.jpg') center center no-repeat;
    background-size: cover;
    border-radius: 8px;
    margin: 0 auto 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.service-title-image {
    max-width: 1200px;
    width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    position: relative;
}

.ai-marketing-hero .service-subtitle {
    color: #fff;
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

.ai-marketing-hero .service-tagline {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 10;
}

/* Section Title Centering */
.section-title {
    text-align: center;
}

.section-title-left {
    text-align: left;
}

.section-title-left::after {
    left: 0;
    transform: translateX(0);
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: var(--spacing-lg);
    display: inline-block;
}

.service-hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--spacing-md);
}

.service-subtitle {
    font-size: 1.75rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.service-tagline {
    font-size: 1.5rem;
    font-weight: var(--font-weight-light);
    margin-bottom: var(--spacing-xl);
}

/* Value Proposition Section */
.value-proposition {
    padding: var(--spacing-xl) 0 var(--spacing-3xl); /* 上部パディング追加 */
    background: transparent;
}

/* パンくず直後の最初のセクションのみ上部パディング追加 */
.breadcrumb + .value-proposition {
    padding-top: var(--spacing-3xl);
}

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

/* Lead text styling */
.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-top: var(--spacing-lg); /* 上部スペース追加 */
}

.value-content h2 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-xl);
}

.value-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: var(--spacing-md);
}

/* Service Lineup */
.service-lineup {
    padding: 0 0 var(--spacing-3xl); /* 上部パディング削除、セクション間の重複解消 */
}

.lineup-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.lineup-item {
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.lineup-item-image {
    width: 100%;
    overflow: hidden;
}

.lineup-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lineup-item-content {
    padding: 20px 25px;
}

.lineup-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.lineup-item h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.lineup-item .for-text {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-md);
}

.lineup-item ul {
    list-style: none;
}

.lineup-item li {
    padding-left: var(--spacing-lg);
    position: relative;
    margin-bottom: var(--spacing-sm);
    line-height: 1.6;
    color: var(--text-light);
}

.lineup-item li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Results Section */
.results-section {
    padding: 0 0 var(--spacing-3xl); /* 上部パディング削除、セクション間の重複解消 */
    background: transparent;
}

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

.result-card {
    background: transparent;
    padding: var(--spacing-xl);
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.result-number {
    font-size: 3rem;
    font-weight: var(--font-weight-black);
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.result-label {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* Contact Form */
.service-contact {
    padding: 0 0 var(--spacing-3xl); /* 上部パディング削除、セクション間の重複解消 */
}

.service-contact .section-title {
    text-align: center !important;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    margin-top: var(--spacing-xl);
}

.form-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-xl);
}

/* Responsive */
@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .form-buttons {
        flex-direction: column;
    }
    
    .card-icon {
        font-size: 3rem;
    }
    
    .service-main-card h2 {
        font-size: 1.5rem;
    }
    
    /* レスポンシブ文字サイズ調整 */
    .lead-text {
        font-size: 1rem; /* モバイルで小さく */
        line-height: 1.7;
        margin-top: var(--spacing-md); /* モバイルでスペース調整 */
    }
    
    .value-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    /* セクションパディング調整 */
    .value-proposition {
        padding: var(--spacing-lg) var(--spacing-md) var(--spacing-xl);
    }
    
    .services-overview {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    /* その他の要素の文字サイズ調整 */
    .value-content p,
    .intro-text p {
        font-size: 0.95rem;
    }
    
    h3 {
        font-size: 1.25rem;
    }
    
    p {
        font-size: 0.9rem;
    }
}