/* 大画面デバイス (1200px以上) のスタイルは既存のままです */

/* 共通のブレイクポイント */
/* デスクトップ (1200px以上) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* ラップトップ (992px-1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }

    .logo-image {
        height: 8rem;
    }

    .service-content {
        gap: 2rem;
    }
}

/* タブレット (768px-991px) */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }

    .logo-image {
        height: 7rem;
    }

    .service-content {
        flex-direction: column;
    }

    .image-container {
        max-width: 100%;
    }

    .feature-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.8rem;
    }
}

/* モバイル (576px-767px) */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
    }

    nav {
        flex-direction: column;
        padding: 1rem;
    }

    nav ul {
        margin-top: 1rem;
        gap: 1rem;
    }

    .logo-image {
        height: 6rem;
    }

    .service-intro h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .feature-container {
        grid-template-columns: 1fr;
    }

    .cta {
        padding: 2rem 1rem;
    }

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

/* 小型モバイル (575px以下) */
@media (max-width: 575px) {
    .container {
        width: 100%;
        padding: 0 1rem;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.4rem;
    }

    .service-phase h3 {
        font-size: 1.2rem;
    }

    .cta-button {
        width: 100%;
    }

    .service-list li {
        font-size: 0.9rem;
    }

    form {
        padding: 0 1rem;
    }
}

/* 印刷用スタイル */
@media print {
    body {
        color: #000;
        background: #fff;
    }

    nav, .cta, .features {
        display: none;
    }

    .container {
        width: 100%;
        max-width: none;
    }

    a {
        text-decoration: none;
        color: #000;
    }

    .hero {
        height: auto;
        padding: 2rem 0;
    }
} 