/* 医療情報連携ページ専用スタイル */

/* ヒーローセクション */
.healthcare-hero {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.healthcare-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.healthcare-hero .hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

/* サービス概要 */
.healthcare-overview {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.overview-description {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.overview-description p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

/* 連携の種類 */
.integration-types {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
}

.type-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.type-icon {
    font-size: 4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.type-card h3 {
    color: #06b6d4;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 2px solid #06b6d4;
}

.type-content .type-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.type-content h4 {
    color: var(--text-dark);
    font-size: 1.125rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.type-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.type-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.type-content ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

.system-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.system-tags span {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: #0891b2;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* 採用技術 */
.healthcare-technologies {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.technologies-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.technology-card {
    background: white;
    border: 2px solid #e0f2fe;
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.technology-card:hover {
    border-color: #06b6d4;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.tech-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e0f2fe;
}

.tech-header h3 {
    color: #0891b2;
    font-size: 1.25rem;
    margin: 0;
}

.tech-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tech-badge.international {
    background-color: #dbeafe;
    color: #1e40af;
}

.tech-badge.iso {
    background-color: #fef3c7;
    color: #92400e;
}

.tech-badge.web {
    background-color: #d1fae5;
    color: #065f46;
}

.tech-badge.modeling {
    background-color: #e0e7ff;
    color: #4338ca;
}

.tech-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.tech-features h4 {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.tech-features ul {
    list-style: none;
    padding: 0;
}

.tech-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 0.95rem;
}

.tech-features ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* セキュリティ対策 */
.security-measures {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.security-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.security-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.security-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.security-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
}

.security-content h3 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.security-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* 開発実績 */
.project-case {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.case-study {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.case-header {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    padding: 2.5rem;
}

.case-header h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.case-tags span {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.tag-category {
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.tag-tech {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.case-content {
    padding: 2.5rem;
}

.case-overview h4 {
    color: #0891b2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.case-overview p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.case-features h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.case-results {
    margin-top: 2rem;
}

.case-results h4 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.result-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #06b6d4;
}

.result-label {
    color: #0891b2;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.result-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* 提供サービス */
.healthcare-services {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.healthcare-services .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.healthcare-services .service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.healthcare-services .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.healthcare-services .service-icon {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
}

.healthcare-services .service-card h3 {
    color: #0891b2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.healthcare-services .service-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.healthcare-services .service-card ul {
    list-style: none;
    padding: 0;
}

.healthcare-services .service-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.healthcare-services .service-card ul li::before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #06b6d4;
    font-weight: bold;
}

/* UMLモデリングの活用 */
.uml-application {
    padding: 5rem 0;
    background-color: var(--bg-white);
}

.uml-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
}

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

.uml-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.uml-benefit-item {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.uml-benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.uml-benefit-item h3 {
    color: #0891b2;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.uml-benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .security-grid {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .healthcare-services .services-grid {
        grid-template-columns: 1fr;
    }

    .uml-benefits {
        grid-template-columns: 1fr;
    }

    .security-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .healthcare-hero h1 {
        font-size: 2rem;
    }

    .healthcare-overview,
    .integration-types,
    .healthcare-technologies,
    .security-measures,
    .project-case,
    .healthcare-services,
    .uml-application {
        padding: 3rem 0;
    }

    .type-card,
    .technology-card,
    .case-content {
        padding: 1.5rem;
    }
}
