/* ========================================
   Page: free-consulting (無料オンラインミーティング)
   Page-specific styles only
   ======================================== */

        /* ========================================
           共通コンポーネント
        ======================================== */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 clamp(1.5rem, 4vw, 3rem);
        }

        .section {
            padding: clamp(5rem, 10vw, 8rem) 0;
            position: relative;
        }

        /* セクションラベル - 英語小文字スタイル */
        .section-label {
            display: inline-block;
            font-family: var(--font-en);
            font-size: var(--font-small-lg);
            font-weight: 600;
            color: var(--color-main);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1rem;
        }

        .section-title {
            margin-bottom: 1.25rem;
        }

        .section-title em {
            font-style: normal;
            color: var(--color-main);
        }

        .section-title .highlight,
        .hero__title .highlight {
            color: var(--color-main);
        }

        .section-desc {
            color: var(--color-text-sub);
            font-size: var(--font-body-md);
            max-width: 600px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-header .section-desc {
            margin: 0 auto;
        }

        /* 黄色い月デコレーション */
        .moon-decoration {
            position: absolute;
            width: 120px;
            height: 120px;
            background: var(--color-accent);
            border-radius: var(--radius-circle);
            opacity: 0.8;
            z-index: 0;
        }

        .moon-decoration.small {
            width: 80px;
            height: 80px;
        }

        .moon-decoration.large {
            width: 200px;
            height: 200px;
        }
        /* ========================================
           Hero Section (why-us-page.html準拠)
        ======================================== */
        .hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 10rem 0 5rem;
            background: linear-gradient(135deg, var(--color-bg) 0%, var(--color-sub) 100%);
            overflow: hidden;
        }

        .hero__bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                radial-gradient(circle at 20% 30%, var(--color-main-alpha-05) 0%, transparent 40%),
                radial-gradient(circle at 80% 70%, rgba(0, 132, 255, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero__content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 900px;
        }

        .hero__label {
            font-family: var(--font-en);
            font-size: var(--font-small-lg);
            font-weight: 600;
            color: var(--color-main);
            text-transform: uppercase;
            letter-spacing: 0.2em;
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 0.2s forwards;
        }

        .hero__title {
            margin-bottom: 1.5rem;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 0.4s forwards;
        }

        .hero__subtitle {
            font-size: var(--font-body-lg);
            color: var(--color-text-sub);
            line-height: 1.9;
            opacity: 0;
            animation: fadeInUp 1s var(--ease-out-expo) 0.6s forwards;
        }

        .hero__line {
            width: 60px;
            height: 3px;
            background: var(--color-main);
            margin: 2.5rem auto 0;
            transform-origin: center;
            transform: scaleX(0);
            animation: lineExpand 0.8s var(--ease-out-expo) 1s forwards;
        }

        /* lineExpandはcommon.cssから継承 */

        /* ========================================
           Concept Section - ピラミッド図解
        ======================================== */
        .concept-section {
            background: var(--color-bg);
        }

        .concept-pyramid {
            max-width: 900px;
            margin: 0 auto;
        }

        /* 頂点：VISION */
        .pyramid-top {
            display: flex;
            justify-content: center;
            margin-bottom: 1rem;
        }

        .pyramid-vision {
            background: linear-gradient(135deg, var(--color-main) 0%, var(--color-main-dark) 100%);
            color: white;
            border-radius: var(--radius-xl);
            padding: 2rem 3rem;
            text-align: center;
            max-width: 400px;
            position: relative;
            box-shadow: 0 12px 40px rgba(0, 132, 255, 0.25);
        }

        .pyramid-vision-label {
            font-family: var(--font-en);
            font-size: var(--font-small-lg);
            font-weight: 600;
            letter-spacing: 0.15em;
            opacity: 0.8;
            margin-bottom: 0.5rem;
        }

        .pyramid-vision-title {
            font-family: var(--font-mincho);
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            font-weight: 700;
            line-height: 1.4;
            margin-bottom: 0.75rem;
        }

        .pyramid-vision-sub {
            font-size: var(--font-small-lg);
            opacity: 0.8;
        }

        /* 接続矢印 */
        .pyramid-connector {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.25rem;
            margin: 1rem 0;
        }

        .pyramid-arrow {
            color: var(--color-main);
            font-size: var(--font-heading-md);
        }

        .pyramid-connector-text {
            font-size: var(--font-small-lg);
            color: var(--color-text-sub);
        }

        /* 第2層：守りと攻め */
        .pyramid-middle {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .pyramid-card {
            flex: 1;
            max-width: 360px;
            background: var(--color-sub);
            border-radius: var(--radius-lg);
            padding: 1.5rem;
            border: 2px solid rgba(0, 132, 255, 0.2);
            position: relative;
        }

        .pyramid-card--offense {
            background: rgba(245, 158, 11, 0.08);
            border-color: rgba(250, 210, 0, 0.3);
        }

        .pyramid-card-badge {
            position: absolute;
            top: -12px;
            left: 24px;
            background: var(--color-main);
            color: white;
            font-size: var(--font-small-md);
            font-weight: 700;
            padding: 4px 12px;
            border-radius: var(--radius-xl);
        }

        .pyramid-card-badge--offense {
            background: var(--color-offense);
        }

        .pyramid-card-header {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-top: 0.5rem;
            margin-bottom: 1rem;
        }

        .pyramid-card-icon {
            font-size: var(--font-display-sm);
        }

        .pyramid-card-title {
            font-size: var(--font-heading-md);
            font-weight: 700;
            margin-bottom: 2px;
        }

        .pyramid-card-subtitle {
            font-size: var(--font-small-md);
            color: var(--color-text-sub);
        }

        .pyramid-card-desc {
            font-size: var(--font-small-lg);
            color: var(--color-text-sub);
            margin-bottom: 0.75rem;
            line-height: 1.7;
        }

        .pyramid-card-desc strong {
            color: var(--color-text);
        }

        .pyramid-card-result {
            font-size: var(--font-small-lg);
            font-weight: 600;
            color: var(--color-main);
        }

        .pyramid-card-result--offense {
            color: var(--color-offense-dark);
        }

        /* × 記号 */
        .pyramid-multiply {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .pyramid-multiply span {
            font-size: var(--font-heading-lg);
            font-weight: 700;
            color: var(--color-text);
        }

        /* 第3層：4サービス */
        .pyramid-bottom {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .pyramid-service {
            background: white;
            border: 2px solid var(--color-main-alpha-15);
            border-radius: var(--radius-md);
            padding: 20px 16px;
            text-align: center;
            transition: all 0.3s var(--ease-out-expo);
        }

        .pyramid-service:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .pyramid-service--offense {
            border-color: rgba(250, 210, 0, 0.3);
        }

        .pyramid-service-icon {
            font-size: var(--font-display-sm);
            margin-bottom: 0.5rem;
        }

        .pyramid-service-step {
            font-family: var(--font-en);
            font-size: var(--font-tiny);
            font-weight: 700;
            color: var(--color-main);
            letter-spacing: 0.05em;
            margin-bottom: 4px;
        }

        .pyramid-service--offense .pyramid-service-step {
            color: var(--color-offense-dark);
        }

        .pyramid-service-title {
            font-size: var(--font-body-sm-lg);
            font-weight: 700;
            margin-bottom: 0.5rem;
        }

        .pyramid-service-desc {
            font-size: var(--font-small-md);
            color: var(--color-text-sub);
            line-height: 1.6;
        }

        /* 凡例 */
        .pyramid-legend {
            display: flex;
            justify-content: center;
            gap: 2rem;
        }

        .pyramid-legend-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: var(--font-small-lg);
            color: var(--color-text-sub);
        }

        .pyramid-legend-dot {
            width: 10px;
            height: 10px;
            border-radius: var(--radius-circle);
            background: var(--color-main);
        }

        .pyramid-legend-item--offense .pyramid-legend-dot {
            background: var(--color-offense);
        }

        .pyramid-legend-item strong {
            color: var(--color-main);
        }

        .pyramid-legend-item--offense strong {
            color: var(--color-offense-dark);
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .pyramid-middle {
                flex-direction: column;
                gap: 0.75rem;
            }

            .pyramid-card {
                max-width: 100%;
            }

            .pyramid-multiply span {
                font-size: 1.5rem;
            }

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

            .pyramid-legend {
                flex-direction: column;
                align-items: center;
                gap: 0.75rem;
            }
        }

        /* ========================================
           Before Consultation - 3つのポイント
        ======================================== */
        .before-section {
            background: var(--color-bg);
        }

        .point-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
        }

        .point-card {
            background: var(--color-sub-light);
            border-radius: var(--radius-lg);
            padding: 2.5rem 2rem;
            position: relative;
            transition: all 0.3s var(--ease-out-expo);
        }

        .point-card:hover {
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transform: translateY(-4px);
        }

        .point-number {
            position: absolute;
            top: -16px;
            left: 32px;
            width: 40px;
            height: 40px;
            background: var(--color-main);
            color: white;
            font-family: var(--font-en);
            font-size: var(--font-body-md);
            font-weight: 700;
            border-radius: var(--radius-circle);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .point-icon {
            font-size: var(--font-display-md);
            margin-bottom: 1.25rem;
        }

        .point-title {
            margin-bottom: 0.75rem;
        }

        .point-desc {
            font-size: var(--font-body-md);
            color: var(--color-text-sub);
            line-height: 1.8;
        }

        /* ========================================
           導入ステップセクション
        ======================================== */
        .step-section {
            background: var(--color-sub);
            position: relative;
            overflow: hidden;
        }

        .step-section .moon-decoration {
            bottom: -60px;
            left: -60px;
            opacity: 0.5;
        }

        .step-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            position: relative;
            z-index: 1;
        }

        .step-card {
            text-align: center;
            position: relative;
        }

        .step-card::after {
            content: '';
            position: absolute;
            top: 3.125rem;
            right: -20px;
            width: 40px;
            height: 2px;
            background: var(--color-border);
        }

        .step-card:last-child::after {
            display: none;
        }

        .step-number-wrapper {
            width: 100px;
            height: 100px;
            background: white;
            border-radius: var(--radius-circle);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            position: relative;
        }

        .step-number-badge {
            position: absolute;
            top: -8px;
            right: -8px;
            width: 36px;
            height: 36px;
            background: var(--color-main);
            color: white;
            font-family: var(--font-en);
            font-size: var(--font-small-lg);
            font-weight: 700;
            border-radius: var(--radius-circle);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .step-icon {
            font-size: var(--font-display-md);
        }

        .step-title {
            margin-bottom: 0.75rem;
        }

        .step-desc {
            font-size: var(--font-body-sm);
            color: var(--color-text-sub);
            line-height: 1.7;
        }

        /* ========================================
           FAQ Section
        ======================================== */
        .faq {
            padding: clamp(5rem, 10vw, 8rem) 0;
            background: var(--color-bg);
        }

        .faq__inner {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .faq__header {
            position: sticky;
            top: 120px;
        }

        .faq__subtitle {
            font-size: var(--font-body-lg);
            color: var(--color-text-sub);
            line-height: 1.9;
        }

        .faq__list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .faq-item {
            background: white;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.04);
            transition: all 0.4s var(--ease-out-expo);
        }

        .faq-item:hover {
            box-shadow: 0 8px 30px rgba(0,132,255,0.1);
        }

        .faq-item__question {
            width: 100%;
            padding: 1.5rem 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            background: none;
            border: none;
            cursor: pointer;
            text-align: left;
            font-size: var(--font-body-lg);
            font-weight: 600;
            color: var(--color-text);
            transition: color 0.3s;
        }

        .faq-item__question:hover {
            color: var(--color-main);
        }

        .faq-item__icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: transform 0.3s;
        }

        .faq-item.is-open .faq-item__icon {
            transform: rotate(45deg);
        }

        .faq-item__answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s var(--ease-out-expo);
        }

        .faq-item.is-open .faq-item__answer {
            max-height: 500px;
        }

        .faq-item__answer-inner {
            padding: 0 2rem 1.5rem;
            font-size: var(--font-body-md);
            color: var(--color-text-sub);
            line-height: 1.9;
        }

        /* ========================================
           Booking Section
        ======================================== */
        .booking-section {
            background: var(--color-sub);
            color: var(--color-text);
            position: relative;
            overflow: hidden;
        }

        .booking-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(0, 132, 255, 0.08) 0%, transparent 70%);
            border-radius: var(--radius-circle);
        }

        .booking-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(250, 210, 0, 0.1) 0%, transparent 70%);
            border-radius: var(--radius-circle);
        }

        .booking-inner {
            position: relative;
            z-index: 1;
        }

        .booking-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .booking-header .section-label {
            color: var(--color-main);
        }

        .booking-header .section-title {
            color: var(--color-text);
        }

        .booking-header .section-desc {
            color: var(--color-text-sub);
            margin: 0 auto;
        }

        .booking-card {
            background: white;
            border-radius: var(--radius-xl);
            overflow: hidden;
            max-width: 900px;
            margin: 0 auto;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .booking-card-header {
            background: var(--color-main);
            padding: 24px 32px;
            text-align: center;
        }

        .booking-card-header h3 {
            color: white;
        }

        .booking-card-body {
            padding: 32px;
        }

        .calendar-embed {
            width: 100%;
            min-height: 550px;
            border: none;
            border-radius: var(--radius-md);
            background: var(--color-sub-light);
        }

        .booking-note {
            text-align: center;
            margin-top: 2.5rem;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .booking-note-text {
            display: flex;
            align-items: center;
            gap: 0.625rem;
            font-size: var(--font-body-sm);
            color: var(--color-text-sub);
        }

        .booking-note-text svg {
            width: 18px;
            height: 18px;
            stroke: var(--color-main);
        }

        .booking-mail-link {
            color: var(--color-main);
            text-decoration: none;
            font-size: var(--font-body-sm);
            font-weight: 500;
            transition: all 0.3s var(--ease-out-expo);
        }

        .booking-mail-link:hover {
            text-decoration: underline;
        }

        /* サブヘッダーのスタイル - CTA3: 左ボーダー付きカード風 */
        .booking-sub-header {
            background: white;
            border-left: 5px solid var(--color-main);
            padding: 20px 28px;
            font-size: var(--font-body-xs);
            font-weight: 600;
            color: var(--color-text);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            max-width: 700px;
            margin: 0 auto 24px;
            text-align: left;
            box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
        }

        /* 説明文のスタイル */
        .booking-description {
            font-size: var(--font-body-md);
            line-height: 1.9;
            max-width: 700px;
        }

        /* カレンダー下のテキスト */
        .booking-reassurance {
            text-align: center;
            font-size: var(--font-body-sm);
            color: var(--color-text-sub);
            line-height: 1.8;
        }

        /* ========================================
           Animations (fadeInUpはcommon.cssから継承)
        ======================================== */

        /* Stagger delays */
        .point-card:nth-child(1) { transition-delay: 0.1s; }
        .point-card:nth-child(2) { transition-delay: 0.2s; }
        .point-card:nth-child(3) { transition-delay: 0.3s; }

        .step-card:nth-child(1) { transition-delay: 0.1s; }
        .step-card:nth-child(2) { transition-delay: 0.2s; }
        .step-card:nth-child(3) { transition-delay: 0.3s; }

        /* ========================================
           Responsive
        ======================================== */
        @media (max-width: 1280px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-stats {
                max-width: 480px;
                margin: 0 auto;
            }

            .point-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin: 0 auto;
            }

            .step-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
                gap: 3rem;
            }

            .step-card::after {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: clamp(4rem, 8vw, 6rem) 0;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .hero-cta {
                flex-direction: column;
            }

            .hero-stats {
                grid-template-columns: 1fr;
            }

            .stat-card.featured {
                grid-column: span 1;
            }

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

            .faq__header {
                position: static;
                text-align: center;
            }

        }

        @media (max-width: 375px) {
            .stat-number {
                font-size: var(--font-display-sm);
            }

            .booking-card-body {
                padding: 20px;
            }

            .moon-decoration {
                display: none;
            }
        }
