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

/* ページヒーロー */
.page-hero {
    padding: 150px 20px 80px;
    text-align: center;
    color: white;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(45, 80, 22, 0.9);
    padding: 50px 60px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.page-number {
    font-size: 80px;
    font-weight: 800;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.95;
}

/* 事業概要 */
.service-overview {
    padding: 80px 0;
    background-color: #FAF9F6;
}

.overview-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.overview-text {
    font-size: 17px;
    line-height: 2;
    color: #2C3E50;
    margin-bottom: 25px;
}

.overview-text:last-child {
    margin-bottom: 0;
}

/* 特徴セクション */
.service-features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-item {
    background-color: #FAF9F6;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #62b850;
    box-shadow: 0 10px 30px rgba(98, 184, 80, 0.1);
}

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

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.8;
    color: #6C757D;
}

/* サービス詳細 */
.service-details {
    padding: 80px 0;
    background-color: #FAF9F6;
}

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

.detail-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 15px;
    border-left: 4px solid #62b850;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.detail-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(98, 184, 80, 0.15);
}

.detail-title {
    font-size: 18px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 12px;
}

.detail-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6C757D;
}

/* プロセスタイムライン */
.service-process {
    padding: 80px 0;
    background-color: white;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 50px auto 0;
}

.process-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 30px;
    background-color: #FAF9F6;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.process-item:hover {
    background-color: #f0f8ed;
    transform: translateX(10px);
}

.process-step {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #62b850, #7dd868);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
}

.process-description {
    font-size: 15px;
    line-height: 1.7;
    color: #6C757D;
}

/* 店舗情報 */
.service-info {
    padding: 80px 0;
    background-color: white;
}

.info-box {
    max-width: 800px;
    margin: 50px auto 0;
    background-color: #FAF9F6;
    border-radius: 20px;
    padding: 40px;
}

.info-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid #E8E8E8;
}

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

.info-label {
    font-weight: 700;
    color: #2C3E50;
    font-size: 16px;
}

.info-value {
    color: #6C757D;
    font-size: 16px;
    line-height: 1.7;
}

/* クライアント向けセクション */
.service-clients {
    padding: 80px 0;
    background-color: #FAF9F6;
}

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

.client-item {
    background-color: white;
    padding: 35px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-item:hover {
    border-color: #62b850;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(98, 184, 80, 0.1);
}

.client-title {
    font-size: 18px;
    font-weight: 700;
    color: #62b850;
    margin-bottom: 15px;
}

.client-text {
    font-size: 14px;
    line-height: 1.8;
    color: #6C757D;
}

/* CTA セクション */
.service-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #62b850 0%, #7dd868 100%);
    text-align: center;
    color: white;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.service-cta .btn {
    background-color: white;
    color: #62b850;
    padding: 18px 50px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.service-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ナビゲーションロゴのリンク */
.nav-logo a {
    color: inherit;
    text-decoration: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .page-hero {
        padding: 120px 20px 60px;
        min-height: 350px;
    }

    .page-hero-content {
        padding: 40px 30px;
    }

    .page-number {
        font-size: 60px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }

    .overview-content {
        padding: 40px 30px;
    }

    .overview-text {
        font-size: 15px;
    }

    .features-grid,
    .details-grid,
    .clients-grid {
        grid-template-columns: 1fr;
    }

    .process-item {
        flex-direction: column;
        gap: 20px;
    }

    .info-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        min-height: 300px;
    }

    .page-hero-content {
        padding: 30px 25px;
    }

    .page-number {
        font-size: 50px;
    }

    .page-title {
        font-size: 28px;
    }

    .overview-content {
        padding: 30px 20px;
    }

    .feature-item,
    .detail-card,
    .client-item {
        padding: 30px 20px;
    }

    .process-step {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .info-box {
        padding: 30px 20px;
    }
}