.page-hero {
                background: linear-gradient(135deg, #2e7d32 0%, #43a047 50%, #66bb6a 100%);
                padding: 60px 40px 80px;
                text-align: center;
                position: relative;
                overflow: hidden;
            }
            .page-hero::before {
                content: "";
                position: absolute;
                inset: 0;
                background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1.5px, transparent 1.5px);
                background-size: 28px 28px;
            }
            .page-hero h1 {
                font-size: clamp(32px, 5vw, 52px);
                font-weight: 800;
                color: #fff;
                letter-spacing: 0.05em;
                margin-bottom: 8px;
                position: relative;
            }
            .page-hero p {
                font-size: 13px;
                color: rgba(255, 255, 255, 0.7);
                letter-spacing: 0.2em;
                position: relative;
            }
            /* 波型区切り */
            .page-hero-wave {
                display: block;
                margin-top: -2px;
                width: 100%;
                line-height: 0;
            }

            .contact-main {
                max-width: 1100px;
                margin: -20px auto 80px;
                padding: 0 40px;
                position: relative;
                z-index: 1;
            }

            /* 2カラムレイアウト */
            .contact-layout {
                display: grid;
                grid-template-columns: 280px 1fr;
                gap: 28px;
                align-items: start;
            }

            /* 左カラム */
            .contact-side {
                display: flex;
                flex-direction: column;
                gap: 16px;
            }

            /* 電話お問い合わせカード */
            .tel-card {
                background: #fff;
                border-radius: 16px;
                padding: 28px 24px;
                box-shadow: 0 4px 20px rgba(76, 175, 80, 0.12);
                text-align: center;
            }
            .tel-card-title {
                font-size: 13px;
                font-weight: 700;
                color: #4caf50;
                letter-spacing: 0.08em;
                margin-bottom: 8px;
            }
            .tel-card-hours {
                font-size: 11px;
                color: #999;
                margin-bottom: 14px;
            }
            .tel-card-num {
                font-size: 22px;
                font-weight: 800;
                color: #2e7d32;
                letter-spacing: 0.04em;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }
            .tel-card-num svg {
                color: #4caf50;
            }
            .tel-card-note {
                font-size: 11px;
                color: #aaa;
                margin-top: 10px;
                line-height: 1.6;
            }

            /* 案内カード */
            .info-card {
                background: #fff;
                border-radius: 16px;
                padding: 24px;
                box-shadow: 0 4px 20px rgba(76, 175, 80, 0.12);
            }
            .info-card-title {
                font-size: 13px;
                font-weight: 700;
                color: #2e7d32;
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                gap: 6px;
            }
            .info-card-title::before {
                content: "";
                display: inline-block;
                width: 4px;
                height: 14px;
                background: #4caf50;
                border-radius: 2px;
            }
            .info-card ul {
                list-style: none;
                padding: 0;
                margin: 0;
                display: flex;
                flex-direction: column;
                gap: 8px;
            }
            .info-card ul li {
                font-size: 12.5px;
                color: #555;
                padding-left: 18px;
                position: relative;
                line-height: 1.6;
            }
            .info-card ul li::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #4caf50;
                font-weight: 700;
                font-size: 11px;
            }

            /* ページタイトル（旧・削除） */
            .page-title-section {
                display: none;
            }

            /* 確認モーダル */
            .confirm-overlay {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(0, 0, 0, 0.55);
                z-index: 1000;
                align-items: center;
                justify-content: center;
                padding: 20px;
            }
            .confirm-overlay.active {
                display: flex;
            }
            .confirm-modal {
                background: #fff;
                border-radius: 16px;
                width: 100%;
                max-width: 520px;
                max-height: 85vh;
                overflow-y: auto;
                box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
                animation: modalIn 0.3s cubic-bezier(0.34, 1.2, 0.64, 1);
            }
            @keyframes modalIn {
                from {
                    transform: scale(0.92) translateY(20px);
                    opacity: 0;
                }
                to {
                    transform: scale(1) translateY(0);
                    opacity: 1;
                }
            }
            .confirm-modal-header {
                background: linear-gradient(135deg, #43a047, #66bb6a);
                padding: 24px 28px;
                border-radius: 16px 16px 0 0;
                display: flex;
                align-items: center;
                justify-content: space-between;
            }
            .confirm-modal-header h3 {
                color: #fff;
                font-size: 18px;
                font-weight: 700;
            }
            .confirm-modal-header p {
                color: rgba(255, 255, 255, 0.8);
                font-size: 12px;
                margin-top: 4px;
            }
            .confirm-modal-close {
                background: rgba(255, 255, 255, 0.2);
                border: none;
                border-radius: 50%;
                width: 32px;
                height: 32px;
                color: #fff;
                font-size: 16px;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
                transition: background 0.2s;
            }
            .confirm-modal-close:hover {
                background: rgba(255, 255, 255, 0.35);
            }
            .confirm-modal-body {
                padding: 24px 28px;
            }
            .confirm-row {
                display: flex;
                gap: 16px;
                padding: 12px 0;
                border-bottom: 1px solid #f0f0f0;
                font-size: 14px;
                align-items: flex-start;
            }
            .confirm-row:last-child {
                border-bottom: none;
            }
            .confirm-label {
                flex: 0 0 120px;
                font-weight: 600;
                color: #2e7d32;
                font-size: 13px;
            }
            .confirm-value {
                flex: 1;
                color: #333;
                line-height: 1.6;
                word-break: break-all;
            }
            .confirm-modal-footer {
                padding: 16px 28px 28px;
                display: flex;
                gap: 12px;
            }
            .confirm-back-btn {
                flex: 1;
                padding: 12px;
                background: #f5f5f5;
                border: 1.5px solid #ddd;
                border-radius: 8px;
                font-size: 14px;
                font-weight: 600;
                color: #666;
                cursor: pointer;
                transition: all 0.2s;
            }
            .confirm-back-btn:hover {
                background: #ebebeb;
            }
            .confirm-submit-btn {
                flex: 2;
                padding: 12px;
                background: linear-gradient(135deg, #43a047, #66bb6a);
                border: none;
                border-radius: 8px;
                font-size: 14px;
                font-weight: 700;
                color: #fff;
                cursor: pointer;
                transition: all 0.2s;
                box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
            }
            .confirm-submit-btn:hover {
                opacity: 0.9;
                transform: translateY(-1px);
            }

            .info-description {
                font-size: 16px;
                color: #555;
                line-height: 2;
                margin-bottom: 40px;
            }

            .info-description p {
                margin-bottom: 20px;
            }

            .info-features {
                background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
                padding: 30px;
                border-radius: 15px;
                border-left: 4px solid #4caf50;
                margin-bottom: 30px;
            }

            .info-features h3 {
                font-size: 18px;
                color: #2e7d32;
                margin-bottom: 15px;
                font-weight: 700;
            }

            .feature-list {
                list-style: none;
                padding: 0;
            }

            .feature-list li {
                font-size: 15px;
                color: #555;
                padding: 10px 0 10px 30px;
                position: relative;
                line-height: 1.6;
            }

            .feature-list li::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #4caf50;
                font-weight: 700;
                font-size: 18px;
            }

            .info-note {
                background: white;
                padding: 25px;
                border-radius: 12px;
                box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
            }

            .info-note-title {
                font-size: 16px;
                font-weight: 700;
                color: #2e7d32;
                margin-bottom: 12px;
                display: flex;
                align-items: center;
                gap: 8px;
            }

            .info-note p {
                font-size: 14px;
                color: #666;
                line-height: 1.8;
            }

            .info-note-emoji {
                font-size: 20px;
            }

            /* 右側：フォームセクション */
            .form-section {
                background: white;
                padding: 50px;
                border-radius: 20px;
                box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            }

            .form-section h2 {
                font-size: 24px;
                color: #2e7d32;
                margin-bottom: 10px;
                font-weight: 700;
            }

            .form-subtitle {
                font-size: 14px;
                color: #888;
                margin-bottom: 30px;
            }

            /* フォーム */
            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 25px;
            }

            .form-group {
                display: flex;
                flex-direction: column;
            }

            .form-label {
                font-size: 15px;
                font-weight: 600;
                color: #2e7d32;
                margin-bottom: 8px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

            .required {
                color: #e53935;
                font-size: 12px;
            }

            .form-input,
            .form-select,
            .form-textarea {
                padding: 14px 18px;
                border: 2px solid #e0e0e0;
                border-radius: 10px;
                font-size: 15px;
                font-family: "Zen Maru Gothic", sans-serif;
                transition: all 0.3s;
                background-color: #fafafa;
            }

            .form-input:focus,
            .form-select:focus,
            .form-textarea:focus {
                outline: none;
                border-color: #4caf50;
                box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
                background-color: white;
            }

            .form-textarea {
                min-height: 150px;
                resize: vertical;
            }

            .form-helper {
                font-size: 13px;
                color: #999;
                margin-top: 5px;
            }

            .form-checkbox-group {
                display: flex;
                align-items: start;
                gap: 10px;
                padding: 15px;
                background-color: #f5f5f5;
                border-radius: 8px;
            }

            .form-checkbox {
                margin-top: 5px;
                width: 18px;
                height: 18px;
                cursor: pointer;
                accent-color: #4caf50;
            }

            .checkbox-label {
                font-size: 14px;
                color: #555;
                line-height: 1.6;
                cursor: pointer;
            }

            .checkbox-label a {
                color: #4caf50;
                text-decoration: underline;
            }

            /* 送信ボタン */
            .submit-button {
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                color: white;
                padding: 18px 40px;
                border: none;
                border-radius: 30px;
                font-size: 18px;
                font-weight: 700;
                cursor: pointer;
                transition: all 0.3s;
                box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
                margin-top: 10px;
            }

            .submit-button:hover {
                background: linear-gradient(135deg, #45a049 0%, #5cb85c 100%);
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
            }

            .submit-button:active {
                transform: translateY(0);
            }

            .submit-button:disabled {
                opacity: 0.6;
                cursor: not-allowed;
            }

            /* フッター */
            /* フッター */

.form-tabs-wrap {
                margin: 0 auto 24px;
                display: flex;
                justify-content: center;
            }
            .form-tabs {
                display: inline-flex;
                background: #e8f5e9;
                border-radius: 30px;
                padding: 4px;
                gap: 4px;
            }
            .form-tab-btn {
                padding: 10px 24px;
                background: transparent;
                border: none;
                border-radius: 26px;
                cursor: pointer;
                font-family: inherit;
                font-size: 14px;
                font-weight: 600;
                color: #4a7c59;
                transition: all 0.25s;
                white-space: nowrap;
            }
            .form-tab-btn .tab-en {
                font-size: 10px;
                font-weight: 700;
                letter-spacing: 0.12em;
                color: #81c784;
                text-transform: uppercase;
                margin-left: 6px;
            }
            .form-tab-btn.active {
                background: #4caf50;
                color: #fff;
                box-shadow: 0 2px 12px rgba(76, 175, 80, 0.35);
            }
            .form-tab-btn.active .tab-en {
                color: rgba(255, 255, 255, 0.8);
            }
            .form-tab-btn:not(.active):hover {
                background: #c8e6c9;
                color: #2e7d32;
            }
            .form-tab-panel {
                display: none;
                background: #fff;
                border-radius: 16px;
                box-shadow: 0 4px 24px rgba(76, 175, 80, 0.1);
                border: 1px solid #e8f5e9;
                padding: 36px 40px 44px;
            }
            .form-tab-panel.active {
                display: block;
            }

            /* レスポンシブ */

@media (max-width: 768px) {
                nav {
                    padding: 14px 20px;
                }
                .logo img {
                    max-width: 120px;
                    margin-right: 10px;
                }
                .team-name {
                    font-size: 18px;
                }
                .nav-links {
                    display: none;
                }
                .hamburger {
                    display: flex;
                }
                .contact-main {
                    padding: 0 16px;
                    margin: -10px auto 60px;
                }
                .contact-layout {
                    grid-template-columns: 1fr;
                }
                .page-hero {
                    padding: 44px 20px 60px;
                }
                .form-tabs {
                    flex-direction: column;
                    border-radius: 16px;
                    width: 100%;
                }
                .form-tab-btn {
                    font-size: 13px;
                    padding: 10px 14px;
                }
                .form-tab-panel {
                    padding: 24px 18px 32px;
                }
                .footer-top {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .footer-nav-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 24px;
                }
                .footer-bottom {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;
                }
                .footer-inner {
                    padding: 40px 24px 32px;
                }
            }