/* ===================================
   レスポンシブデザイン
   =================================== */

/* タブレット (768px以下) */
@media (max-width: 768px) {
    /* ナビゲーション */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(100%);
        transition: transform var(--transition-normal);
        gap: 0;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    /* ヒーローセクション */
    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-title-sub {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* 統計セクション */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-card {
        flex-direction: column;
        text-align: center;
    }
    
    /* 自己紹介セクション */
    .about-intro-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-placeholder {
        width: 200px;
        height: 200px;
    }
    
    .image-placeholder i {
        font-size: 6rem;
    }
    
    /* サービスグリッド */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* 実績グリッド */
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    /* お客様の声 */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTAセクション */
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.05rem;
    }
    
    /* フッター */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* ページヘッダー */
    .page-header {
        padding: 6rem 0 3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    /* プロフィールページ */
    .profile-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-image {
        max-width: 250px;
    }
    
    .profile-image i {
        font-size: 8rem;
    }
    
    .profile-name {
        font-size: 2rem;
        text-align: center;
    }
    
    .profile-title-jp {
        text-align: center;
    }
    
    /* タイムライン */
    .career-timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 0;
    }
    
    /* 強み・専門分野 */
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    /* 受賞歴 */
    .awards-grid {
        grid-template-columns: 1fr;
    }
    
    /* 講演実績 */
    .lecture-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    /* サービスページ */
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-detail-title {
        font-size: 2rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .feature-icon {
        min-width: auto;
    }
    
    .feature-content ul {
        grid-template-columns: 1fr;
    }
    
    /* 講演統計 */
    .lecture-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* 講演形式 */
    .format-grid {
        grid-template-columns: 1fr;
    }
    
    /* サービスの流れ */
    .flow-step {
        flex-direction: column;
        gap: 1rem;
    }
    
    .flow-number {
        margin: 0 auto;
    }
    
    /* 実績紹介ページ */
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .achievement-detail {
        padding: 2rem;
    }
    
    .achievement-results {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* ケーススタディ */
    .case-studies-grid {
        grid-template-columns: 1fr;
    }
    
    /* お問い合わせページ */
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* ブログページ */
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-coming-soon {
        padding: 2rem;
    }
    
    /* セクション */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
}

/* スマートフォン (480px以下) */
@media (max-width: 480px) {
    /* コンテナ */
    .container {
        padding: 0 15px;
    }
    
    /* ナビゲーション */
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-subtitle {
        font-size: 0.7rem;
    }
    
    /* ヒーローセクション */
    .hero {
        min-height: 60vh;
        margin-top: 60px;
    }
    
    .hero-title-main {
        font-size: 2rem;
    }
    
    .hero-title-sub {
        font-size: 1.1rem;
    }
    
    .hero-motto {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .hero-motto i {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .hero-scroll-indicator {
        font-size: 1.5rem;
    }
    
    /* ボタン */
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* 統計カード */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* 画像プレースホルダー */
    .image-placeholder {
        width: 180px;
        height: 180px;
    }
    
    .image-placeholder i {
        font-size: 5rem;
    }
    
    /* プロフィール写真 */
    .about-intro-image img.profile-photo {
        width: 180px;
        height: 180px;
    }
    
    .achievement-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    /* サービスカード */
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 3rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    /* 実績カード */
    .achievement-card {
        padding: 1.5rem;
    }
    
    .achievement-title {
        font-size: 1.2rem;
    }
    
    /* お客様の声 */
    .testimonial-card {
        padding: 1.5rem;
    }
    
    /* CTAセクション */
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    /* フッター */
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    /* トップに戻るボタン */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 1.3rem;
    }
    
    /* ページヘッダー */
    .page-header {
        padding: 5rem 0 2.5rem;
        margin-top: 60px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    /* プロフィールページ */
    .profile-image {
        max-width: 200px;
    }
    
    .profile-image i {
        font-size: 6rem;
    }
    
    .profile-name {
        font-size: 1.8rem;
    }
    
    .profile-credentials {
        padding: 1.5rem;
    }
    
    /* タイムライン */
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-title {
        font-size: 1.2rem;
    }
    
    /* 強みカード */
    .expertise-card {
        padding: 1.5rem;
    }
    
    .expertise-icon {
        font-size: 2.5rem;
    }
    
    .expertise-title {
        font-size: 1.2rem;
    }
    
    .expertise-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* プロフィール詳細 */
    .profile-intro p {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    .profile-intro h3 {
        font-size: 1.3rem;
    }
    
    .profile-notice {
        padding: 1.25rem;
        gap: 0.875rem;
    }
    
    .profile-notice i {
        font-size: 1.75rem;
    }
    
    .profile-notice strong {
        font-size: 1rem;
    }
    
    .profile-credentials li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }
    
    /* タイムライン */
    .timeline-description {
        font-size: 0.95rem;
        line-height: 1.75;
    }
    
    /* 受賞歴 */
    .award-card {
        padding: 1.5rem;
    }
    
    .award-icon {
        font-size: 3rem;
    }
    
    .award-title {
        font-size: 1.2rem;
    }
    
    .award-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* 統計ボックス */
    .stat-box {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* サービス詳細 */
    .service-detail {
        padding: 3rem 0;
    }
    
    .service-detail-header {
        gap: 1rem;
    }
    
    .service-detail-icon {
        font-size: 3rem;
    }
    
    .service-detail-title {
        font-size: 1.75rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        font-size: 2.5rem;
    }
    
    /* テーマカード */
    .theme-card {
        padding: 1.5rem;
    }
    
    /* フォーマットカード */
    .format-card {
        padding: 1.5rem;
    }
    
    .format-card i {
        font-size: 2.5rem;
    }
    
    /* フローステップ */
    .flow-number {
        min-width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .flow-content {
        padding: 1.5rem;
    }
    
    /* FAQ */
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
    }
    
    /* 実績サマリー */
    .summary-card {
        padding: 2rem;
    }
    
    .summary-icon {
        font-size: 3rem;
    }
    
    .summary-number {
        font-size: 2.5rem;
    }
    
    /* 実績詳細 */
    .achievement-detail {
        padding: 1.5rem;
    }
    
    .achievement-detail-title {
        font-size: 1.5rem;
    }
    
    /* ケーススタディカード */
    .case-study-card {
        padding: 1.5rem;
    }
    
    .case-title {
        font-size: 1.2rem;
    }
    
    /* クライアントの声 */
    .testimonial-detailed {
        padding: 2rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .testimonial-text-detailed {
        font-size: 1rem;
    }
    
    /* お問い合わせ */
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 0.8rem;
        font-size: 0.95rem;
    }
    
    .btn-submit {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .info-box {
        padding: 1.5rem;
    }
    
    /* ブログ */
    .blog-filters {
        gap: 0.75rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .blog-card {
        font-size: 0.95rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
    
    .blog-title {
        font-size: 1.2rem;
    }
    
    .blog-coming-soon {
        padding: 1.5rem;
    }
    
    .coming-soon-content i {
        font-size: 3rem;
    }
    
    .coming-soon-content h3 {
        font-size: 1.75rem;
    }
    
    .coming-soon-content p {
        font-size: 1rem;
    }
    
    /* ニュースレター */
    .newsletter-title {
        font-size: 1.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-description {
        font-size: 1rem;
    }
    
    /* セクション */
    section {
        padding: 2.5rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* 強み・専門分野グリッド */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .expertise-title {
        font-size: 1.15rem;
    }
    
    .expertise-description {
        font-size: 0.85rem;
    }
    
    /* プロフィール詳細モバイル */
    .profile-intro p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }
    
    .profile-intro h3 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }
    
    .profile-notice {
        padding: 1rem;
        gap: 0.75rem;
        flex-direction: column;
        text-align: center;
    }
    
    .profile-notice i {
        font-size: 1.5rem;
        margin: 0 auto;
    }
    
    .profile-notice strong {
        font-size: 0.95rem;
    }
    
    .profile-notice p {
        font-size: 0.9rem;
    }
    
    .profile-credentials h3 {
        font-size: 1.1rem;
    }
    
    .profile-credentials li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    /* タイムラインモバイル */
    .timeline-description {
        font-size: 0.9rem;
        line-height: 1.7;
    }
    
    /* 受賞歴グリッド */
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .award-card {
        padding: 1.5rem;
    }
    
    .award-title {
        font-size: 1.15rem;
    }
    
    .award-description {
        font-size: 0.85rem;
    }
    
    /* 講演テーマタグ */
    .lecture-themes h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
    }
    
    .theme-tag {
        padding: 0.875rem 1.25rem;
        font-size: 0.9rem;
    }
    
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.15rem; }
    h5 { font-size: 1.05rem; }
}

/* 大画面 (1200px以上) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title-main {
        font-size: 4rem;
    }
    
    .hero-title-sub {
        font-size: 2rem;
    }
}

/* 印刷用スタイル */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .hero-scroll-indicator,
    .scroll-to-top,
    .cta-section,
    .footer-social,
    .btn,
    .contact-form {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
        padding: 0;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}