/* ===========================
   レスポンシブ対応 - responsive.css
   =========================== */

/* タブレット対応 (768px以下) */
@media (max-width: 768px) {
    /* ヘッダー */
    .header {
        padding: 15px 20px;
    }

    .header-container {
        padding: 0;
    }

    /* ハンバーガーメニュー表示 */
    .hamburger {
        display: flex;
    }

    /* ナビゲーションを非表示 */
    .nav {
        display: none;
    }

    /* セクション共通 */
    section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* ヒーローセクション */
    .hero {
        height: 100vh;
    }

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

    /* 私たちについて */
    .about-flex {
        flex-direction: column;
        gap: 40px;
    }

    .about-image {
        width: 100%;
        height: 300px;
    }

    .about-image img {
        object-fit: cover;
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    /* 強み */
    .strengths-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* サービス */
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-item:nth-child(even) {
        direction: ltr;
    }

    .service-image {
        height: 250px;
    }

    .service-image img {
        object-fit: cover;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    /* 選ばれる理由 */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* フッター */
    footer {
        padding: 40px 20px;
    }

    .footer-nav {
        gap: 20px;
    }

    .footer-nav a {
        font-size: 14px;
    }
}

/* スマートフォン対応 (480px以下) */
@media (max-width: 480px) {
    /* ヘッダー */
    .logo {
        font-size: 24px;
    }

    /* モバイルメニュー */
    .mobile-menu {
        width: 100%;
        max-width: none;
    }

    /* セクション共通 */
    section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 40px;
    }

    /* ヒーローセクション */
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }

    /* 強み */
    .strength-card {
        padding: 30px 20px;
    }

    .strength-icon {
        font-size: 3rem;
    }

    .strength-card h3 {
        font-size: 1.3rem;
    }

    /* サービス */
    .service-content p {
        font-size: 0.95rem;
    }

    /* 選ばれる理由 */
    .reason-card {
        padding: 30px 20px;
    }

    .reason-image {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .reason-card h3 {
        font-size: 1.3rem;
    }

    /* お問い合わせ */
    .contact-form {
        padding: 0 10px;
    }

    .form-group label {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 0.95rem;
    }

    /* フッター */
    footer {
        padding: 30px 15px;
    }

    .footer-logo {
        font-size: 20px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 15px;
    }

    .copyright {
        font-size: 0.8rem;
    }
}

/* 大画面対応 (1200px以上) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-title {
        font-size: 4rem;
    }

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

    .section-title {
        font-size: 3rem;
    }

    .strengths-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reasons-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* 印刷用スタイル */
@media print {
    .header,
    footer,
    .hamburger,
    .aurora-bg,
    .glow-orbs,
    .particles {
        display: none;
    }

    body {
        background: white;
        color: #000;
    }

    section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    .section-title {
        color: #000;
        -webkit-text-fill-color: #000;
    }

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

/* モバイルファースト背景調整 */
@media (max-width: 768px) {
    .aurora {
        background: linear-gradient(
            45deg,
            transparent 0%,
            rgba(99, 102, 241, 0.05) 50%,
            transparent 100%
        );
    }

    .orb {
        filter: blur(60px);
    }

    .orb1 {
        width: 200px;
        height: 200px;
    }

    .orb2 {
        width: 150px;
        height: 150px;
    }

    .orb3 {
        width: 100px;
        height: 100px;
    }
}

/* アクセシビリティ対応 */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

