        /* Custom Styles to Preserve Original Design */
        .hidden {
            display: none;
        }
        
        .pharmacist-list, .consultation-form-pharmacist {
            padding: 2rem 0;
            background-color: #fafbfc;
            min-height: 70vh;
        }
        
        .pharmacist-card {
            background: #ffffff;
            border-radius: 0px;
            box-shadow: 0 2px 16px rgba(26, 141, 109, 0.08);
            padding: 1.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e8ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }
        
        .pharmacist-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(26, 141, 109, 0.15);
            border-color: #c6f3e6;
        }
        
        .pharmacist-image {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1rem;
            border: 2px solid #1a8d6d;
        }
        
        .pharmacist-name {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 0.5rem;
        }
        
        .pharmacist-title {
            font-size: 0.9rem;
            color: #4a5568;
            margin-bottom: 0.3rem;
        }
        
        .pharmacist-license {
            font-size: 0.8rem;
            color: #718096;
            margin-bottom: 1.2rem;
        }
        
        .consult-now-btn-pharmacist {
            background: #1a8d6d;
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 0px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            font-size: 0.9rem;
            margin-top: auto;
        }
        
        .consult-now-btn-pharmacist:hover {
            background: #157d5d;
            transform: translateY(-2px);
        }
        
        .footer-note-pharmacist {
            text-align: center;
            margin-top: 2rem;
            color: #4a5568;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 2rem;
        }
        
        .footer-note-pharmacist p {
            margin-bottom: 0.5rem;
        }
        
        .footer-note-pharmacist .small {
            font-size: 0.85rem;
            color: #718096;
        }
        
        /* 相談フォームのスタイル */
        .consultation-layout-pharmacist {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        .pharmacist-profile-large {
            background: #ffffff;
            border-radius: 0px;
            box-shadow: 0 2px 16px rgba(26, 141, 109, 0.08);
            padding: 2rem;
            text-align: center;
            border: 1px solid #e8ecef;
            height: fit-content;
        }
        
        .pharmacist-image-large {
            width: 150px;
            height: 150px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 1.5rem;
            border: 3px solid #1a8d6d;
        }
        
        .connection-steps-pharmacist {
            background: #ffffff;
            border-radius: 0px;
            box-shadow: 0 2px 16px rgba(26, 141, 109, 0.08);
            padding: 2rem;
            border: 1px solid #e8ecef;
        }
        
        .steps-title-pharmacist {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .steps-list-pharmacist {
            list-style: none;
            padding: 0;
        }
        
        .steps-list-pharmacist li {
            display: flex;
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid #f1f5f9;
        }
        
        .steps-list-pharmacist li:last-child {
            margin-bottom: 0;
            padding-bottom: 0;
            border-bottom: none;
        }
        
        .step-number-pharmacist {
            background: #1a8d6d;
            color: white;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 1rem;
            flex-shrink: 0;
        }
        
        .step-content-pharmacist {
            flex: 1;
        }
        
        .step-content-pharmacist p {
            margin: 0.3rem 0;
            color: #4a5568;
            line-height: 1.6;
        }
        
        .step-content-pharmacist .jp {
            font-weight: 500;
        }
        
        .step-content-pharmacist .en {
            font-size: 0.85rem;
            color: #718096;
        }
        
        .consultation-form-fields-pharmacist {
            background: #ffffff;
            border-radius: 0px;
            box-shadow: 0 2px 16px rgba(26, 141, 109, 0.08);
            padding: 2rem;
            border: 1px solid #e8ecef;
            margin-top: 1rem;
        }
        
        .form-title-pharmacist {
            font-size: 1.3rem;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 1.5rem;
            text-align: center;
        }
        
        .form-label-pharmacist {
            font-size: 0.9rem;
            font-weight: 500;
            color: #4a5568;
            margin-bottom: 0.5rem;
        }
        
        .form-label-pharmacist.required::after {
            content: " *";
            color: #e53e3e;
        }
        
        .form-input-pharmacist {
            padding: 0.8rem 1rem;
            border: 1px solid #e8ecef;
            border-radius: 0px;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            font-family: inherit;
        }
        
        .form-input-pharmacist:focus {
            outline: none;
            border-color: #1a8d6d;
            box-shadow: 0 0 0 2px rgba(26, 141, 109, 0.1);
        }
        
        .file-upload-box-pharmacist {
            border: 2px dashed #e8ecef;
            border-radius: 0px;
            padding: 2rem;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            background: #fafafa;
        }
        
        .file-upload-box-pharmacist:hover {
            border-color: #1a8d6d;
            background: rgba(26, 141, 109, 0.02);
        }
        
        .file-upload-box-pharmacist.required {
            border-color: #fed7d7;
            background: #fff5f5;
        }
        
        .file-upload-box-pharmacist.required:hover {
            border-color: #e53e3e;
        }
        
        .upload-icon-pharmacist {
            font-size: 2rem;
            color: #718096;
            margin-bottom: 1rem;
        }
        
        .upload-text-pharmacist {
            color: #4a5568;
            margin-bottom: 0.5rem;
        }
        
        .upload-subtext-pharmacist {
            font-size: 0.85rem;
            color: #718096;
        }
        
        .upload-subtext-pharmacist.required {
            color: #e53e3e;
            font-weight: 500;
        }
        
        .connect-btn-pharmacist {
            background: #1a8d6d;
            color: white;
            border: none;
            padding: 1rem 2rem;
            border-radius: 0px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
            margin-top: 1.5rem;
        }
        
        .connect-btn-pharmacist:hover {
            background: #157d5d;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(26, 141, 109, 0.15);
        }
        
        .connect-btn-pharmacist:disabled {
            background: #a0aec0;
            cursor: not-allowed;
            transform: none;
            box-shadow: none;
        }
        
        .dev-note-pharmacist {
            background: #f8fafc;
            border: 1px solid #e8ecef;
            border-radius: 0px;
            padding: 1rem;
            margin-top: 1.5rem;
            font-size: 0.85rem;
            color: #718096;
        }
        
        .back-btn-pharmacist {
            background: #ffffff;
            color: #1a8d6d;
            border: 1.5px solid #1a8d6d;
            padding: 0.7rem 1.5rem;
            border-radius: 0px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .back-btn-pharmacist:hover {
            background: #1a8d6d;
            color: #ffffff;
        }
        
        .error-message {
            color: #e53e3e;
            font-size: 0.85rem;
            margin-top: 0.5rem;
            display: none;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 2rem;
        }
        
        .section-title-p {
            font-size: 2rem;
            font-weight: 700;
            color: #1a8d6d;
            margin-bottom: 0.5rem;
        }
        
        .section-accent {
            width: 60px;
            height: 4px;
            background: #1a8d6d;
            margin: 0 auto 1rem;
        }
        
        .feature-intro {
            color: #4a5568;
            font-size: 1rem;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .pharmacist-image-large {
                width: 120px;
                height: 120px;
            }
            
            .consultation-form-fields-pharmacist,
            .pharmacist-profile-large,
            .connection-steps-pharmacist {
                padding: 1.5rem;
            }
        }